hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
df0ce4db0c5784d4bf8e476c07d9828acea651a1
diff --git a/lib/objects/registry/command/external.rb b/lib/objects/registry/command/external.rb index <HASH>..<HASH> 100644 --- a/lib/objects/registry/command/external.rb +++ b/lib/objects/registry/command/external.rb @@ -19,7 +19,7 @@ module Bcome::Registry::Command end def construct_substituted_command(a...
fixed bugs where overriden default values in context commands was cached and then re-used the next time, irrespective of alternative override
webzakimbo_bcome-kontrol
train
45d376cb0b35d0ca6cd73ad4f1c388cf706923ae
diff --git a/allauth/utils.py b/allauth/utils.py index <HASH>..<HASH> 100644 --- a/allauth/utils.py +++ b/allauth/utils.py @@ -191,7 +191,7 @@ def serialize_instance(instance): continue try: if isinstance(instance._meta.get_field(k), BinaryField): - v = force_text(base6...
BinaryField fix for py<I>
pennersr_django-allauth
train
5a716e99258341b56f51bb97e345da6e62205c41
diff --git a/superset/viz.py b/superset/viz.py index <HASH>..<HASH> 100644 --- a/superset/viz.py +++ b/superset/viz.py @@ -721,14 +721,13 @@ class WordCloudViz(BaseViz): def query_obj(self): d = super(WordCloudViz, self).query_obj() - - d['metrics'] = [self.form_data.get('metric')] d['gr...
[bugfix] get word_cloud to support complex metrics (#<I>)
apache_incubator-superset
train
2c922000a1e6220bbf1a1148b23ad617b9beaa6e
diff --git a/lib/util/array_utils.js b/lib/util/array_utils.js index <HASH>..<HASH> 100644 --- a/lib/util/array_utils.js +++ b/lib/util/array_utils.js @@ -25,6 +25,23 @@ goog.provide('shaka.util.ArrayUtils'); /** + * Returns whether the two values contain the same value. This correctly + * handles comparisons inv...
Fix equality check in removeDuplicates. Now it will correctly remove duplicate NaN entries. This also updates it to use ES6 and uses indexOf instead of an explicit inner loop. Change-Id: I<I>e<I>bd<I>c<I>c9a1c<I>ca4d3cc0e
google_shaka-player
train
3393df5cd120da4447aa1b1723850e1904e25fb3
diff --git a/src/main/java/uk/org/okapibarcode/backend/DataMatrix.java b/src/main/java/uk/org/okapibarcode/backend/DataMatrix.java index <HASH>..<HASH> 100644 --- a/src/main/java/uk/org/okapibarcode/backend/DataMatrix.java +++ b/src/main/java/uk/org/okapibarcode/backend/DataMatrix.java @@ -135,6 +135,7 @@ public class ...
Improve end-of-data buffer handling Ensure symbol is large enough to include buffered data Only flush if buffer is not empty
woo-j_OkapiBarcode
train
5d6940ef80c46a54c2e70f8db93b97265b84e5f3
diff --git a/lib/validation.js b/lib/validation.js index <HASH>..<HASH> 100644 --- a/lib/validation.js +++ b/lib/validation.js @@ -77,10 +77,22 @@ module.exports.validateAttribute = function (key, validationRules, validationMod var result; if (doSingleCheck) { - result = validator.fn.call...
add handlers to catch validation errors (specifically arrays)
z0mt3c_node-restify-validation
train
63586d72ff66cdb1bbb6a599022f4712c622777a
diff --git a/spectrum.js b/spectrum.js index <HASH>..<HASH> 100644 --- a/spectrum.js +++ b/spectrum.js @@ -49,6 +49,10 @@ style.cssText = 'background-color:rgba(0,0,0,.5)'; return contains(style.backgroundColor, 'rgba') || contains(style.backgroundColor, 'hsla'); })(), + inputTypeColorSupport ...
move input type color support to top, dont allow empty on input type = color. Issue #<I>
bgrins_spectrum
train
b8b0fceeb11797df4625f0521fcf9f51f4ba3a4f
diff --git a/lib/sender/spmsender.js b/lib/sender/spmsender.js index <HASH>..<HASH> 100644 --- a/lib/sender/spmsender.js +++ b/lib/sender/spmsender.js @@ -78,6 +78,7 @@ function SpmSender (spmToken, processMetricsInterval, metricsApiEndpoint) { this.MAX_DATAPOINTS = config.maxDataPoints || 100 this.MAX_WAIT_TIME ...
reduce transmission time, initialize timer correctly
sematext_spm-agent
train
4c57c0666e77b442013cb658a750b40afc466ea6
diff --git a/bcbio/pipeline/run_info.py b/bcbio/pipeline/run_info.py index <HASH>..<HASH> 100644 --- a/bcbio/pipeline/run_info.py +++ b/bcbio/pipeline/run_info.py @@ -152,7 +152,7 @@ def add_reference_resources(data): data = _fill_prioritization_targets(data) # Re-enable when we have ability to re-define gemi...
Correctly check for GEMINI data with new install The new installer always adds the GEMINI conda python libraries, but only downloads the data if requested. This updates the checks for GEMINI to look for data instead of the executable.
bcbio_bcbio-nextgen
train
eb8078c2acd4ab59db2fd08a343ab89e86f2c37e
diff --git a/deepwalk/graph.py b/deepwalk/graph.py index <HASH>..<HASH> 100644 --- a/deepwalk/graph.py +++ b/deepwalk/graph.py @@ -12,18 +12,12 @@ from glob import glob from six.moves import range, zip, zip_longest from six import iterkeys from collections import defaultdict, Iterable -from multiprocessing import cp...
Remove multiprocessing Based on time check from @ozlemmuslu, the speed-up is negligible for multiprocessing. I would guess this is due to the overhead in spawning new processes and pipes.
phanein_deepwalk
train
684afb059c93f142150043cafac09b7fd52bfa27
diff --git a/sgqlc/types/__init__.py b/sgqlc/types/__init__.py index <HASH>..<HASH> 100644 --- a/sgqlc/types/__init__.py +++ b/sgqlc/types/__init__.py @@ -1201,6 +1201,7 @@ class Scalar(BaseType): ''' __kind__ = 'scalar' + __json_dump_args__ = {} # given to json.dumps(obj, **args) def converter(v...
types: allow json.dumps() arguments to be specified Eventually user wants/needs to tweak the options given to json.dumps(), such as encoding or `ensure_ascii=False` for broken servers. Closes #<I>
profusion_sgqlc
train
eda1e5db218aad1db63ca4642c8906b26bcf2744
diff --git a/handlers.go b/handlers.go index <HASH>..<HASH> 100644 --- a/handlers.go +++ b/handlers.go @@ -27,17 +27,22 @@ func PrintablePathCheckHandler(next http.Handler, input *HandlerInput) http.Hand } return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - // Check URL path for non-printabl...
Fix a panic if the request passed in is nil
hashicorp_go-cleanhttp
train
23901228c409a43c4e4df9a01626d2ad141a391f
diff --git a/urbansim/models/supplydemand.py b/urbansim/models/supplydemand.py index <HASH>..<HASH> 100644 --- a/urbansim/models/supplydemand.py +++ b/urbansim/models/supplydemand.py @@ -64,7 +64,7 @@ def _calculate_adjustment_ratio( def supply_and_demand( - lcm, choosers, alternatives, alt_segmenter, price...
Allow specifying a base multiplier in supply_and_demand
UDST_urbansim
train
275ea4713e2feaad2417151c729d1a0526127673
diff --git a/holoviews/plotting/bokeh/chart.py b/holoviews/plotting/bokeh/chart.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/bokeh/chart.py +++ b/holoviews/plotting/bokeh/chart.py @@ -47,7 +47,8 @@ class PointPlot(ElementPlot): line_properties + fill_properties) _plot_method = 'scat...
Added bokeh PointPlot batched mode
pyviz_holoviews
train
4c00a4fc61e7cddd25cb35de1f52163935473d51
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,10 @@ generated files. Yeah, this is much better. History ------- +### 0.17.0 (2015 Aug 17) + +- Fixed, now passing correct array to exchangeArray + ### 0.16.1 (2015 Aug 1) - Improved on the e...
- Fixed, now passing correct array to exchangeArray
CathedralCode_Builder
train
6b029168cf54a0cf4ad5090bc5310d99999df5a3
diff --git a/ChangeLog b/ChangeLog index <HASH>..<HASH> 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,7 +3,8 @@ ChangeLog - 0.22.0 - - fix not thread-safe of Websocket.close() (#120) + - Fix not thread-safe of Websocket.close() (#120) + - Try to get proxy info from environment if not explicitly provided (#124...
fixed #<I> merge and add some test cases
websocket-client_websocket-client
train
346d4704d21e0aea9fd85c5bdc02ce6883fd0c11
diff --git a/tests/testapp/settings.py b/tests/testapp/settings.py index <HASH>..<HASH> 100644 --- a/tests/testapp/settings.py +++ b/tests/testapp/settings.py @@ -1,6 +1,6 @@ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) -import secrets +import uuid BASE_DIR = os.path.dirname(os...
Drop secrets dependency in docs Read the docs still uses Python <I>. Secrests was only introduced in Python <I>
Thermondo_django-heroku-connect
train
cd1d75230bd1a9b1421160bf3f65a40a9e2252e9
diff --git a/src/events/http/lambda-events/LambdaProxyIntegrationEvent.js b/src/events/http/lambda-events/LambdaProxyIntegrationEvent.js index <HASH>..<HASH> 100644 --- a/src/events/http/lambda-events/LambdaProxyIntegrationEvent.js +++ b/src/events/http/lambda-events/LambdaProxyIntegrationEvent.js @@ -128,6 +128,7 @@ e...
Get event.resource by removing stage from route.path
dherault_serverless-offline
train
495dd51bb4926679a9c0ab1da926cbfcf4df88e1
diff --git a/indra/tests/test_reading_scripts_aws.py b/indra/tests/test_reading_scripts_aws.py index <HASH>..<HASH> 100644 --- a/indra/tests/test_reading_scripts_aws.py +++ b/indra/tests/test_reading_scripts_aws.py @@ -36,9 +36,8 @@ def test_normal_db_reading_call(): # Put an id file on s3 basename = 'local...
Fix the tests to match the input file placement.
sorgerlab_indra
train
7db44b56b05a0b859e4d369736cdb86d35cbb860
diff --git a/ethutil/script_unix.go b/ethutil/script_unix.go index <HASH>..<HASH> 100644 --- a/ethutil/script_unix.go +++ b/ethutil/script_unix.go @@ -6,9 +6,9 @@ import ( "fmt" "strings" + "github.com/ethereum/serpent-go" "github.com/obscuren/mutan" "github.com/obscuren/mutan/backends" - "github.com/obscuren...
Updated to ethereum serpent
ethereum_go-ethereum
train
595ac808d15da6840cafa420d2fbbc567207f2bd
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ Thanks to [#5342](https://github.com/decidim/decidim/pull/5342), Decidim now sup **Added**: +- **decidim-proposals**: Add images to proposal cards [\#5640](https://github.com/decidim/decidim...
[Feature] Add images to proposal cards (#<I>) * Add images to proposal cards * Added CHANGELOG entry * Fixed typo * Added content type check * Fixed typo
decidim_decidim
train
59c2c98b6fa7f0aa5dafa30ac0926de1f0cc7f66
diff --git a/src/sap.uxap/src/sap/uxap/ObjectPageLayout.js b/src/sap.uxap/src/sap/uxap/ObjectPageLayout.js index <HASH>..<HASH> 100644 --- a/src/sap.uxap/src/sap/uxap/ObjectPageLayout.js +++ b/src/sap.uxap/src/sap/uxap/ObjectPageLayout.js @@ -3520,14 +3520,21 @@ sap.ui.define([ */ ObjectPageLayout.prototype.clone ...
[INTERNAL][FIX] sap.uxap.ObjectPageLayout: Clone logic fix The _headerContent aggregation was found to be cloned twice and a check is added to ensure that it is not cloned if not necessary Change-Id: I<I>b<I>e<I>e7aa<I>db<I>ae2e<I>dee BCP: <I>
SAP_openui5
train
2265fd1a5a335ce5356f591eb6ef319503d7daf2
diff --git a/backlash/tracing/reporters/mail.py b/backlash/tracing/reporters/mail.py index <HASH>..<HASH> 100644 --- a/backlash/tracing/reporters/mail.py +++ b/backlash/tracing/reporters/mail.py @@ -69,11 +69,11 @@ class EmailReporter(object): def _format_cgi(self, environ): return '\n'.join( - ...
sort keys to make easier to look them up in mails
TurboGears_backlash
train
6580f0de92a10799ae3baf253bbe34721202ef30
diff --git a/src/Util/Caliper.php b/src/Util/Caliper.php index <HASH>..<HASH> 100644 --- a/src/Util/Caliper.php +++ b/src/Util/Caliper.php @@ -16,16 +16,34 @@ use \Tsugi\Util\LTI; */ class Caliper { - /** -$json->data[0]->actor->{'@id'} = $user; -$json->eventTime = $iso8601; -$json->data[0]->object->{'@id'} = $...
Slight refactor of Caliper of code into objects
tsugiproject_tsugi-php
train
6baafd0987ecb1d1f8dd8a10769545608fc7120a
diff --git a/config/module.config.php b/config/module.config.php index <HASH>..<HASH> 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -188,40 +188,6 @@ return array( 'zfcDatagrid.examples.data.doctrine2' => 'ZfcDatagrid\Examples\Data\Doctrine2', 'zfcDatagrid.examples.da...
move factories to the Module.php so that when ('config_cache_enabled' => true) we will not have errors from the functions in the merged config
zfc-datagrid_zfc-datagrid
train
d91c14eb30ea6745422c7bb7cf59b14ff7c7fb2e
diff --git a/client/grpc/grpc.go b/client/grpc/grpc.go index <HASH>..<HASH> 100644 --- a/client/grpc/grpc.go +++ b/client/grpc/grpc.go @@ -445,6 +445,10 @@ func (g *grpcClient) Call(ctx context.Context, req client.Request, rsp interface // call backoff first. Someone may want an initial start delay t, err := call...
grpc client error fix (#<I>)
micro_go-micro
train
56f87c767bc71158461c42014e6a38901812eb48
diff --git a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/SARLEclipseConfig.java b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/SARLEclipseConfig.java index <HASH>..<HASH> 100644 --- a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/SARLEclipseConfig.java +++ b/main/coreplugins/io.sarl.eclipse/src/...
[eclipse][m2e] Replace SARLEclipseConstants.MINIMAL_JRE_VERSION. The replacement is SARLVersion.MINIMAL_JDK_VERSION. close #<I>
sarl_sarl
train
a84aa18291d003655584262872004c3c835fa70d
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -93,7 +93,8 @@ class AppiumLibCoreTest newCommandTimeout: 300, systemPort: get_system_port, language: 'en', - locale: 'US' + locale...
add adbExecTimeout as an example for test
appium_ruby_lib_core
train
2842cbb36e16c874cae0fa9a28a51e15aa6bd7e4
diff --git a/src/FieldHandlers/MoneyFieldHandler.php b/src/FieldHandlers/MoneyFieldHandler.php index <HASH>..<HASH> 100644 --- a/src/FieldHandlers/MoneyFieldHandler.php +++ b/src/FieldHandlers/MoneyFieldHandler.php @@ -7,6 +7,11 @@ use CsvMigrations\FieldHandlers\ListFieldHandler; class MoneyFieldHandler extends ListF...
get list name from field type (task #<I>)
QoboLtd_cakephp-csv-migrations
train
29bf725ddd7c80562f7a16eeccb1ec3b7c728277
diff --git a/lib/mock.js b/lib/mock.js index <HASH>..<HASH> 100644 --- a/lib/mock.js +++ b/lib/mock.js @@ -244,13 +244,17 @@ S3Mock.prototype = { return new FakeStream(search); } else { - fs.readFile(search.Bucket + '/' + search.Key, function (err, data) { + var path = search.Bucket + '/' + search.Key;...
Add a statSync to get the file mtime and set LastModified (#<I>)
MathieuLoutre_mock-aws-s3
train
d1aa1ed0bf080ff968cd6a2d8cd0c5a09ccaa2b4
diff --git a/package.php b/package.php index <HASH>..<HASH> 100644 --- a/package.php +++ b/package.php @@ -4,7 +4,7 @@ require_once 'PEAR/PackageFileManager2.php'; -$version = '1.4.12'; +$version = '1.4.13'; $notes = <<<EOT No release notes for you! EOT;
prepare for release of <I> svn commit r<I>
silverorange_swat
train
15f0c37e68d210e54f75c9b03f5db9176d782709
diff --git a/connector-commons-ftest/src/test/java/com/stratio/connector/commons/ftest/functionalDelete/GenericDeleteTest.java b/connector-commons-ftest/src/test/java/com/stratio/connector/commons/ftest/functionalDelete/GenericDeleteTest.java index <HASH>..<HASH> 100644 --- a/connector-commons-ftest/src/test/java/com/s...
Switch from IntegerSelector to StringSelector
Stratio_stratio-connector-commons
train
5b8f0a5e6b90faee239943ad3e2b75f757b46784
diff --git a/openstack/types.go b/openstack/types.go index <HASH>..<HASH> 100644 --- a/openstack/types.go +++ b/openstack/types.go @@ -157,6 +157,14 @@ func (lrt *LogRoundTripper) formatJSON(raw []byte) string { // Mask known password fields if v, ok := data["auth"].(map[string]interface{}); ok { + // v2 auth me...
Mask identity v2 auth credentials (#<I>)
terraform-providers_terraform-provider-openstack
train
89327d2a0722581a08e933346f6952e94827b2d1
diff --git a/lib/acts_as_graph_object/base.rb b/lib/acts_as_graph_object/base.rb index <HASH>..<HASH> 100644 --- a/lib/acts_as_graph_object/base.rb +++ b/lib/acts_as_graph_object/base.rb @@ -26,7 +26,7 @@ module ActsAsGraphObject # standard object properties & alternative names default_properties = { ...
Fixed issue with override previously not set attributes from view helper.
fredkelly_acts_as_graph_object
train
ea60de77f932a12a1d8830faace484bd516c2d8c
diff --git a/flip.gemspec b/flip.gemspec index <HASH>..<HASH> 100644 --- a/flip.gemspec +++ b/flip.gemspec @@ -24,4 +24,6 @@ Gem::Specification.new do |s| s.add_development_dependency("rspec", "~> 2.5") s.add_development_dependency("rspec-its") s.add_development_dependency("rake") + s.add_development_dependen...
Cookies can only be deleted if the domain specified when creating the cookie is provided.
voormedia_flipflop
train
fd0939de2dd09fa24b9f8c935ebeedfcf8afaeb6
diff --git a/demonoid/urls.py b/demonoid/urls.py index <HASH>..<HASH> 100644 --- a/demonoid/urls.py +++ b/demonoid/urls.py @@ -7,10 +7,10 @@ BASE_URL = 'http://www.demonoid.pw/' class URL: - def __init__(self, base_url=None, path='', params={}): + def __init__(self, base_url=None, path=None, params=None): ...
Added more urls tests and fixed bugs
syndbg_demonoid-api
train
6664e32863be328c2cac03c933c44e0c926678d2
diff --git a/src/Uri/Uri.php b/src/Uri/Uri.php index <HASH>..<HASH> 100644 --- a/src/Uri/Uri.php +++ b/src/Uri/Uri.php @@ -131,7 +131,7 @@ class Uri */ public static function assets($data = null) { - $data = (!is_null($data)) ? self::$url . '/assets/' . $data : self::$url . '/assets/'; + $d...
assets methods updated. now, assets folder's adjustable.
izniburak_nur-core
train
0e0079bcae818b86e13a71d4a3cede6765be8bbd
diff --git a/framework/CHANGELOG.md b/framework/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/framework/CHANGELOG.md +++ b/framework/CHANGELOG.md @@ -59,6 +59,7 @@ Yii Framework 2 Change Log - Enh #9337: Added `yii\db\ColumnSchemaBuilder::defaultExpression()` to support DB Expression as default value (kotchuprik) - ...
Fixes #<I>: Added `yii\rbac\ManagerInterface::getUserIDsByRole()` and implementations
yiisoft_yii2
train
be14fd1dcc49b2806b3275b91cb74a8803de1c32
diff --git a/discord/channel.py b/discord/channel.py index <HASH>..<HASH> 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -56,10 +56,15 @@ class Channel(object): An array of :class:`Roles` that have been overridden from their default values in the :attr:`Server.roles` attribute. + .. ...
Add Channel.voice_members This allows you to see which members are currently in a voice channel.
Rapptz_discord.py
train
c2ec29d44085ea17e5dbba7fc19085fce2d560c1
diff --git a/tang/src/main/java/com/microsoft/tang/implementation/Constructor.java b/tang/src/main/java/com/microsoft/tang/implementation/Constructor.java index <HASH>..<HASH> 100644 --- a/tang/src/main/java/com/microsoft/tang/implementation/Constructor.java +++ b/tang/src/main/java/com/microsoft/tang/implementation/Co...
rename Constructor fields back to the original names; don't use m* naming (recommended by Checkstyle)
apache_reef
train
a5716f819a4c6438914794a26f958cb73ac44c66
diff --git a/src/Version.php b/src/Version.php index <HASH>..<HASH> 100644 --- a/src/Version.php +++ b/src/Version.php @@ -18,5 +18,5 @@ namespace Leafo\ScssPhp; */ class Version { - const VERSION = 'v0.7.9'; + const VERSION = 'v0.8.0'; }
Version <I> as we pushed a lot of improvments and fixes and now includes BS4 & Foundation in test case
leafo_scssphp
train
4c78ae049c19bf21151d0b70c2f8d3967d4ff21b
diff --git a/core/src/main/java/com/google/instrumentation/tags/TagSet.java b/core/src/main/java/com/google/instrumentation/tags/TagSet.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/instrumentation/tags/TagSet.java +++ b/core/src/main/java/com/google/instrumentation/tags/TagSet.java @@ -33,7 +33,...
Reword Javadocs for TagSet "get" methods.
census-instrumentation_opencensus-java
train
b905e047dd27ce76e139cdd37eeb4c05d77d36bb
diff --git a/doc/source/gen_example.py b/doc/source/gen_example.py index <HASH>..<HASH> 100644 --- a/doc/source/gen_example.py +++ b/doc/source/gen_example.py @@ -128,7 +128,7 @@ def render_snippet( # * 3rd in the same position with button pressed still to finally # trigger the "clicked" state. ...
fix rendering of some widgets that require multiple frames to be rendered properly
swistakm_pyimgui
train
cf69fa3d0fb270e84f85be6d24ffa6dd853552f8
diff --git a/lib/schema-evolution-manager/migration_file.rb b/lib/schema-evolution-manager/migration_file.rb index <HASH>..<HASH> 100644 --- a/lib/schema-evolution-manager/migration_file.rb +++ b/lib/schema-evolution-manager/migration_file.rb @@ -44,17 +44,20 @@ module SchemaEvolutionManager DEFAULTS = [Attribut...
Parse file attribute values immediately, so you can reuse w/out reparsing
mbryzek_schema-evolution-manager
train
0af128bc8f7096344f166c8265443e44d34b475a
diff --git a/pypreprocessor/__init__.py b/pypreprocessor/__init__.py index <HASH>..<HASH> 100644 --- a/pypreprocessor/__init__.py +++ b/pypreprocessor/__init__.py @@ -110,8 +110,23 @@ class preprocessor: else: self.__excludeblock = False return False, True + # han...
Changed order, now implemented with elias instead of if, if , if, only one case can be true May now other: Einstufung of Metadata of ifdefs, depending on if used or not
interpreters_pypreprocessor
train
546e319a5fd1d3a21d6e11dced2379e55a633f1d
diff --git a/activesupport/test/load_paths_test.rb b/activesupport/test/load_paths_test.rb index <HASH>..<HASH> 100644 --- a/activesupport/test/load_paths_test.rb +++ b/activesupport/test/load_paths_test.rb @@ -9,6 +9,7 @@ class LoadPathsTest < Test::Unit::TestCase paths } - assert_equal [], load_paths...
CI has a bunch of duplicate load paths
rails_rails
train
e62f8663e625a5d4f979a1b1295b4bc6d0fec24a
diff --git a/aiotg/bot.py b/aiotg/bot.py index <HASH>..<HASH> 100644 --- a/aiotg/bot.py +++ b/aiotg/bot.py @@ -44,17 +44,22 @@ class Bot: :param int api_timeout: Timeout for long polling :param str botan_token: Token for http://botan.io :param str name: Bot name + :param callable json_serialize: Json ...
Possibility to use any json library (#<I>) * Added possibility to use any json library
szastupov_aiotg
train
a59664ce4a2a01d823003a799aa7e4e8892bd4f0
diff --git a/lib/util.js b/lib/util.js index <HASH>..<HASH> 100644 --- a/lib/util.js +++ b/lib/util.js @@ -193,6 +193,26 @@ var self = module.exports = { if (path.isAbsolute(pathToResolve)) return pathToResolve; return path.resolve(baseFolder, pathToResolve); - } + }, + makeSerializable: function(err) { ...
Added helper function for making objects serializable
oxygenhq_oxygen
train
14951e0e4c7e15221881077498437d5fca732198
diff --git a/service/rpc2/server.go b/service/rpc2/server.go index <HASH>..<HASH> 100644 --- a/service/rpc2/server.go +++ b/service/rpc2/server.go @@ -471,8 +471,8 @@ type EvalOut struct { // EvalVariable returns a variable in the specified context. // -// See https://github.com/go-delve/delve/wiki/Expressions for ...
service: fix link to eval expression documentation (#<I>) The wiki was removed a long time ago.
go-delve_delve
train
8718f8642a0f793445d65f0c98f382d5fabbd445
diff --git a/src/Psy/ExecutionLoop/Loop.php b/src/Psy/ExecutionLoop/Loop.php index <HASH>..<HASH> 100644 --- a/src/Psy/ExecutionLoop/Loop.php +++ b/src/Psy/ExecutionLoop/Loop.php @@ -78,11 +78,17 @@ class Loop $__psysh__->writeReturnValue($_); } catch (BreakException $__psysh_e__) ...
Fixed showing a prompt after the throwing ErrorException
bobthecow_psysh
train
4aee7a4dae89373c4e35bf2a7844d9cf03e20e7f
diff --git a/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php b/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php +++ b/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php @@ -3603,7 +3603,7 @@ abstract class AbstractPlatform /** ...
use array as return type hint array_merge will not work with any iterable
doctrine_dbal
train
131cc36144902290980280083182325528b9c5be
diff --git a/tests/Fixture/CalendarEventsFixture.php b/tests/Fixture/CalendarEventsFixture.php index <HASH>..<HASH> 100644 --- a/tests/Fixture/CalendarEventsFixture.php +++ b/tests/Fixture/CalendarEventsFixture.php @@ -122,7 +122,5 @@ class CalendarEventsFixture extends TestFixture 'is_recurring' => 1, ...
fixed phpcs extra empty lines
QoboLtd_cakephp-calendar
train
f1f8e468f4b7edab980c9adbcdc8b83848a1a348
diff --git a/lib/her/model/orm.rb b/lib/her/model/orm.rb index <HASH>..<HASH> 100644 --- a/lib/her/model/orm.rb +++ b/lib/her/model/orm.rb @@ -7,18 +7,16 @@ module Her # Initialize a new object with data received from an HTTP request # @private - def initialize(data={}) # {{{ + def initialize(...
Speed up init with a refactor
remiprev_her
train
d215acb983219a94b11e2e332263aa190c34e488
diff --git a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/language/Ukrainian.java b/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/language/Ukrainian.java index <HASH>..<HASH> 100644 --- a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/language/Ukrainian.java +++ b/trunk/JLanguageTool/sr...
[uk] Initial SRX segment rules for Ukrainian
languagetool-org_languagetool
train
56419ded8e69d1cfa997e7fa6fa475a627a25771
diff --git a/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java b/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java +++ b/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java @@ -41,7 +41,...
TransactionBroadcast: fix missing brace in JavaDoc
bitcoinj_bitcoinj
train
8e5d604263922f1ca372ccd20a2fd497278da94e
diff --git a/mod/scorm/datamodels/scorm_13.js.php b/mod/scorm/datamodels/scorm_13.js.php index <HASH>..<HASH> 100644 --- a/mod/scorm/datamodels/scorm_13.js.php +++ b/mod/scorm/datamodels/scorm_13.js.php @@ -1,9 +1,9 @@ <?php if (isset($userdata->status)) { - if ($userdata->status == '') { - $use...
Fixed problem with the update of cmi.entry adding conditions in the first php block
moodle_moodle
train
85cabc775cd51e277e3d56e6e28f32b43a5df869
diff --git a/packages/mangojuice-core/src/classes/Process.js b/packages/mangojuice-core/src/classes/Process.js index <HASH>..<HASH> 100644 --- a/packages/mangojuice-core/src/classes/Process.js +++ b/packages/mangojuice-core/src/classes/Process.js @@ -3,7 +3,7 @@ import Command from './Command'; import DefaultLogger fr...
feat(core): update batched observers at the end of the commands exec stack
mangojuicejs_mangojuice
train
e7843aebf00274bf47a5954552b3d60e40c4bb70
diff --git a/component-status.yml b/component-status.yml index <HASH>..<HASH> 100644 --- a/component-status.yml +++ b/component-status.yml @@ -166,7 +166,7 @@ MDC: N Priority: medium Completeness: - Notes: + Notes: https://ahlechandre.github.io/mdl-stepper/ - Components: Subheaders Im...
Fixed error with <I> hour time not being defined in the correct locations.
rx_presenters
train
556cee7f05ee0d7fb9b720715a1f7cb6a4fafaf0
diff --git a/src/Popup.js b/src/Popup.js index <HASH>..<HASH> 100644 --- a/src/Popup.js +++ b/src/Popup.js @@ -21,6 +21,7 @@ class Popup extends Component { onMouseEnter: PropTypes.func, onMouseLeave: PropTypes.func, onMouseDown: PropTypes.func, + onTouchStart: PropTypes.func, stretch: PropTypes....
fix ant-design/ant-design#<I>. Listen onTouchStart event for popup
react-component_trigger
train
f8e7638445853d643bba0691f57432050b0fb5a0
diff --git a/code/DebugBar.php b/code/DebugBar.php index <HASH>..<HASH> 100644 --- a/code/DebugBar.php +++ b/code/DebugBar.php @@ -11,6 +11,12 @@ class DebugBar extends Object protected static $debugbar = null; /** + * + * @var bool + */ + public static $bufferingEnabled = false; + + /** ...
do not trigger buffering if no debug request is made
lekoala_silverstripe-debugbar
train
f01699df4fba1dfab69739d764b3cf8b8acd0743
diff --git a/examples/python/example-networkx.py b/examples/python/example-networkx.py index <HASH>..<HASH> 100755 --- a/examples/python/example-networkx.py +++ b/examples/python/example-networkx.py @@ -3,7 +3,6 @@ import networkx as nx import matplotlib.pyplot as plt import matplotlib.colors as colors -import matpl...
Removed unneccessary complicated python code.
mapequation_infomap
train
c20f5328609d13790075a8846970641955d9498a
diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OMatchStatement.java b/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OMatchStatement.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OMatchStatement.java +++ b/core/src/m...
Optimize MATCH statement avoid to create a new document for each projection field in the RETURN
orientechnologies_orientdb
train
57c2e4f025b2ed35911c4a9fbb277b226e19cbae
diff --git a/Behavioral/Iterator/BookList.php b/Behavioral/Iterator/BookList.php index <HASH>..<HASH> 100644 --- a/Behavioral/Iterator/BookList.php +++ b/Behavioral/Iterator/BookList.php @@ -7,7 +7,7 @@ class BookList implements \Countable, \Iterator /** * @var Book[] */ - private $books; + priva...
#<I> simplified things a bit
domnikl_DesignPatternsPHP
train
fac8b7d9140fd87df7b08e1ebc6d620d8d14e66f
diff --git a/src/dependencies/_checks/links.py b/src/dependencies/_checks/links.py index <HASH>..<HASH> 100644 --- a/src/dependencies/_checks/links.py +++ b/src/dependencies/_checks/links.py @@ -61,9 +61,6 @@ def check_links_for(class_name, argument_name, dependencies, origin, expression) def filter_expression(link)...
Store "this" parent as part of expression.
dry-python_dependencies
train
d69a901ee0d8ac28b4364f8073daaa9b526fcaf4
diff --git a/client/state/ui/first-view/selectors.js b/client/state/ui/first-view/selectors.js index <HASH>..<HASH> 100644 --- a/client/state/ui/first-view/selectors.js +++ b/client/state/ui/first-view/selectors.js @@ -47,7 +47,7 @@ export function isUserEligible( state, config ) { return false; } - return momen...
Using UTC rather than local time to determine whether or not first-view should be shown (#<I>)
Automattic_wp-calypso
train
c4bf86c9ad200ae8c325f8c4b95b0050b8d3e790
diff --git a/ob1k-cache/src/main/java/com/outbrain/ob1k/cache/memcache/folsom/MemcachedClientBuilder.java b/ob1k-cache/src/main/java/com/outbrain/ob1k/cache/memcache/folsom/MemcachedClientBuilder.java index <HASH>..<HASH> 100644 --- a/ob1k-cache/src/main/java/com/outbrain/ob1k/cache/memcache/folsom/MemcachedClientBuild...
Expose support for message pack generic types in the builder
outbrain_ob1k
train
5487062e31c58675cfbb112327fc465842c34ee6
diff --git a/src/types/label.js b/src/types/label.js index <HASH>..<HASH> 100644 --- a/src/types/label.js +++ b/src/types/label.js @@ -221,7 +221,7 @@ function getCalloutSideAdjust(position, options) { function resolveCalloutPosition(element, options) { const position = options.position; - if (position === 'left...
Reduce complexity for resolving the label callout position (#<I>) * Reduce complexity for resolving the label callout position * fixes lint * uses includes instead of indexOf
chartjs_chartjs-plugin-annotation
train
4a7c86d433afdb4adff22bd92ceac173356a09ff
diff --git a/lib/midi.js b/lib/midi.js index <HASH>..<HASH> 100644 --- a/lib/midi.js +++ b/lib/midi.js @@ -1,6 +1,7 @@ 'use strict' const Transform = require('stream').Transform +const Writable = require('stream').Writable const chalk = require('chalk') const teoria = require('teoria') @@ -69,9 +70,14 @@ module...
Ensure toPiano stream only emits after it finishes writing
justinjmoses_node-keyboard
train
6727be090012f9ff8da2bb5512a94d2b74c38bb1
diff --git a/rest_social_auth/views.py b/rest_social_auth/views.py index <HASH>..<HASH> 100644 --- a/rest_social_auth/views.py +++ b/rest_social_auth/views.py @@ -20,6 +20,7 @@ from social.exceptions import AuthException from rest_framework.generics import GenericAPIView from rest_framework.response import Response ...
explicitly use TokenAuthentication for token urls
st4lk_django-rest-social-auth
train
5c042befee5306bb552be98538dca7abb312006f
diff --git a/Minecraft/src/main/java/com/microsoft/Malmo/MissionHandlers/DiscreteMovementCommandsImplementation.java b/Minecraft/src/main/java/com/microsoft/Malmo/MissionHandlers/DiscreteMovementCommandsImplementation.java index <HASH>..<HASH> 100755 --- a/Minecraft/src/main/java/com/microsoft/Malmo/MissionHandlers/Dis...
Less stupid fix for discrete -ve movement.
Microsoft_malmo
train
1ea0c73346782ea409a43db0a355ec7758d278cb
diff --git a/Gemfile.lock b/Gemfile.lock index <HASH>..<HASH> 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - scorpion-ioc (1.0.0) + scorpion-ioc (1.0.1) rails (>= 4.0) GEM diff --git a/lib/scorpion/object.rb b/lib/scorpion/object.rb index <HASH>..<HASH> 10064...
Fix options for attr_dependency
phallguy_scorpion
train
cec84e1b920b68cb9529b76152ea5c3177111f1f
diff --git a/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/task/OTransactionPhase1Task.java b/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/task/OTransactionPhase1Task.java index <HASH>..<HASH> 100755 --- a/distributed/src/main/java/com/orientechnologies...
removed quorum all for index changes
orientechnologies_orientdb
train
70b015daa0168ad9062efe6ac3f0580f778f1626
diff --git a/dateparser/date.py b/dateparser/date.py index <HASH>..<HASH> 100644 --- a/dateparser/date.py +++ b/dateparser/date.py @@ -6,6 +6,7 @@ from dateutil.relativedelta import relativedelta from .date_parser import DateParser from .freshness_date_parser import freshness_date_parser +import calendar def s...
proposal to fix handling of format without day
scrapinghub_dateparser
train
2645c8fe09444a1312727fdcd86273b2ce088e46
diff --git a/Form/FrameworkType.php b/Form/FrameworkType.php index <HASH>..<HASH> 100644 --- a/Form/FrameworkType.php +++ b/Form/FrameworkType.php @@ -44,7 +44,7 @@ class FrameworkType extends AbstractType 'constraints' => [ new UniqueEntity([ 'fields' => 'name', - ...
[CompetencyBundle] Fix typo in method name
claroline_Distribution
train
212605b98ad048554263dffb0292beea2f8ec7fa
diff --git a/code/site/components/com_default/dispatcher.php b/code/site/components/com_default/dispatcher.php index <HASH>..<HASH> 100644 --- a/code/site/components/com_default/dispatcher.php +++ b/code/site/components/com_default/dispatcher.php @@ -39,8 +39,10 @@ class ComDefaultDispatcher extends KDispatcherDefault ...
Changed the redirect in the dispatcher to add the view information to the existing url instead of trying to rebuild it.
timble_kodekit
train
52b288c3d7270725f12e98775d09cdb735b054b7
diff --git a/library/modules/es6.date.now.js b/library/modules/es6.date.now.js index <HASH>..<HASH> 100644 --- a/library/modules/es6.date.now.js +++ b/library/modules/es6.date.now.js @@ -1,4 +1,4 @@ // 20.3.3.1 / 15.9.4.4 Date.now() var $export = require('./_export'); -$export($export.S, 'Date', {now: function(){ r...
Add fallback for Qt Script bug with wrong conversion date to number, #<I>
zloirock_core-js
train
9eba90ca6ce47c40fb21722b60489007ca53324e
diff --git a/spec/support/spec_helper.js b/spec/support/spec_helper.js index <HASH>..<HASH> 100644 --- a/spec/support/spec_helper.js +++ b/spec/support/spec_helper.js @@ -26,30 +26,28 @@ var clearWorkingDir = function () { module.exports.clearWorkingDir = clearWorkingDir; -module.exports.beforeEach = function (...
Async before and after each test
szwacz_fs-jetpack
train
18e2c457c4a93071539a67f4e848b39a00247cd9
diff --git a/pytmatrix/quadrature/quadrature.py b/pytmatrix/quadrature/quadrature.py index <HASH>..<HASH> 100644 --- a/pytmatrix/quadrature/quadrature.py +++ b/pytmatrix/quadrature/quadrature.py @@ -33,9 +33,11 @@ def discrete_gautschi(z, w, n_iter): b = np.empty(n_iter) if sys.version_info[0] > 2: - ...
Fix scoping issue with xrange stub Created a variable prange to prevent shadowing the built in xrange when working with python2
jleinonen_pytmatrix
train
b8a3f19ae857b2e81efb67081b15445335e5b343
diff --git a/ChangeLog b/ChangeLog index <HASH>..<HASH> 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2011-07-28 TADA Tadashi <t@tdtds.jp> + * js/01conf.js: reloaded after savng when sp plugin only. #76 + 2011-07-26 TADA Tadashi <t@tdtds.jp> * plugin/00default.rb: added js_url method lile theme_url. * ...
reloaded after savng when sp plugin only. #<I>
tdiary_tdiary-core
train
0de69613940f58093cbc02b3540ff69897328382
diff --git a/integration/yarn/src/main/java/alluxio/yarn/ApplicationMaster.java b/integration/yarn/src/main/java/alluxio/yarn/ApplicationMaster.java index <HASH>..<HASH> 100644 --- a/integration/yarn/src/main/java/alluxio/yarn/ApplicationMaster.java +++ b/integration/yarn/src/main/java/alluxio/yarn/ApplicationMaster.ja...
Update for aaudiber and apc<I>'s review
Alluxio_alluxio
train
2dca4f4f6d442ec24346e32b76d2c7996c471284
diff --git a/Gemfile b/Gemfile index <HASH>..<HASH> 100644 --- a/Gemfile +++ b/Gemfile @@ -5,6 +5,7 @@ gemspec gem "nokogiri" gem "capybara" gem "rspec", "~> 3.6.0" +gem "arel", github: "rails/arel" gem "rails", github: "rails/rails" gem 'rack' gem "shoulda-matchers", "~> 2.0" diff --git a/lib/blocks/renderers/pa...
Passing the runtime_context to an overrides block
hunterae_blocks
train
1c05b4e99e0d710bf4d5ef681fcf297788b05d6a
diff --git a/aeron-system-tests/src/test/java/io/aeron/MinFlowControlSystemTest.java b/aeron-system-tests/src/test/java/io/aeron/MinFlowControlSystemTest.java index <HASH>..<HASH> 100644 --- a/aeron-system-tests/src/test/java/io/aeron/MinFlowControlSystemTest.java +++ b/aeron-system-tests/src/test/java/io/aeron/MinFlow...
[Java] Check that receivers are added to flow control before progressing with flow control test.
real-logic_aeron
train
0c8299f1331ad7f20c3e13898eb54f432a8873ab
diff --git a/raiden/tests/unit/transfer/mediated_transfer/test_mediation_fee.py b/raiden/tests/unit/transfer/mediated_transfer/test_mediation_fee.py index <HASH>..<HASH> 100644 --- a/raiden/tests/unit/transfer/mediated_transfer/test_mediation_fee.py +++ b/raiden/tests/unit/transfer/mediated_transfer/test_mediation_fee....
Fix `calculate_imbalance_fees` to use channel capacity
raiden-network_raiden
train
4ed2df435b273d7fc96ffae64023d22a9125894f
diff --git a/pac4j-saml/src/main/java/org/pac4j/saml/transport/Pac4jHTTPPostEncoder.java b/pac4j-saml/src/main/java/org/pac4j/saml/transport/Pac4jHTTPPostEncoder.java index <HASH>..<HASH> 100644 --- a/pac4j-saml/src/main/java/org/pac4j/saml/transport/Pac4jHTTPPostEncoder.java +++ b/pac4j-saml/src/main/java/org/pac4j/sa...
Log SAML XML requests (#<I>)
pac4j_pac4j
train
001d17057efc41decddbc22d2d993630b5efcb40
diff --git a/manager/state/raft/raft.go b/manager/state/raft/raft.go index <HASH>..<HASH> 100644 --- a/manager/state/raft/raft.go +++ b/manager/state/raft/raft.go @@ -842,7 +842,7 @@ func (n *Node) sendToMember(members map[uint64]*membership.Member, m raftpb.Mess } } - if queryMember == nil { + if queryMembe...
raft: Fix edge case panic The logic in sendToMember is slightly wrong. We look for a member other than ourself to query, but there's no error case if we are the only member in the list. Add a check to make sure This code should normally not be reached if we are the only member, but appears to run when an invalid addr...
docker_swarmkit
train
6fe45c17ffc29b59d1b4725496d32de2bad78432
diff --git a/test/babelish/test_strings2csv.rb b/test/babelish/test_strings2csv.rb index <HASH>..<HASH> 100644 --- a/test/babelish/test_strings2csv.rb +++ b/test/babelish/test_strings2csv.rb @@ -40,6 +40,15 @@ class TestStrings2CSV < Test::Unit::TestCase assert_nil output, "output should be nil with wrong syntax" ...
Add unit test for ignoring comment lines
netbe_Babelish
train
94015a390ae6b0040106ae6af04c9219a70f48e7
diff --git a/hazelcast/src/test/java/com/hazelcast/jet/core/SplitBrainTest.java b/hazelcast/src/test/java/com/hazelcast/jet/core/SplitBrainTest.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/test/java/com/hazelcast/jet/core/SplitBrainTest.java +++ b/hazelcast/src/test/java/com/hazelcast/jet/core/SplitBrainTest.ja...
Fix failure in SplitBrainTest (#<I>) The test ends with a job in NOT_RUNNING state and termination mode RESTART_FORCEFUL, so it cannot be cancelled in the test cleanup. Fixes #<I>
hazelcast_hazelcast
train
01d7854a71c3704f72af713847bb75419dcf7676
diff --git a/digest.js b/digest.js index <HASH>..<HASH> 100644 --- a/digest.js +++ b/digest.js @@ -196,6 +196,7 @@ var Digest = (function () { md5Engine.prototype.reset = function () { this.currentLen = 0; + this.inLen = 0; this.current = new Uint32Array(new ArrayBuffer(16)); th...
Fix #1 (MAC init/reset issue and digest reset issue)
jcsirot_digest.js
train
78a8113607c0778330da809c4f19ac3cd4330d4f
diff --git a/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/impl/model/xml/JaxbTask.java b/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/impl/model/xml/JaxbTask.java index <HASH>..<HASH> 100644 --- a/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/servi...
BPMSPL-<I> - adding new command comments by id: bugfix in JaxbTask
kiegroup_jbpm
train
dff7dafa8600d8cd1f06b67900dd3e8820690c89
diff --git a/src/Gaufrette/Adapter/Base.php b/src/Gaufrette/Adapter/Base.php index <HASH>..<HASH> 100644 --- a/src/Gaufrette/Adapter/Base.php +++ b/src/Gaufrette/Adapter/Base.php @@ -22,6 +22,6 @@ abstract class Base implements Adapter */ public function createFileStream($key, Filesystem $filesystem) { ...
Update in memory buffer to work with the adapter instead of filesystem
KnpLabs_Gaufrette
train
e0cfe4b36ae51d5d9d63fcf13f0557d41375e40b
diff --git a/lib/minicron/cron.rb b/lib/minicron/cron.rb index <HASH>..<HASH> 100644 --- a/lib/minicron/cron.rb +++ b/lib/minicron/cron.rb @@ -32,8 +32,6 @@ module Minicron # @param find [String] # @param replace [String] def find_and_replace(conn, find, replace) - # TODO: move ssh test here for cro...
Detailed in #<I> now
jamesrwhite_minicron
train
287e5d28b8a5a876a1fecd0a04eff6d448fc0fd0
diff --git a/library/WT/GedcomRecord.php b/library/WT/GedcomRecord.php index <HASH>..<HASH> 100644 --- a/library/WT/GedcomRecord.php +++ b/library/WT/GedcomRecord.php @@ -90,14 +90,7 @@ class WT_GedcomRecord { // Look for the record in the database if (!is_array($data)) { - if (version_compare(PHP_VERSION, '5...
Remove special code for PHP<I>
fisharebest_webtrees
train
19a6ca0b68839e8d8903e99c336e1c1b1df624e1
diff --git a/searx/webapp.py b/searx/webapp.py index <HASH>..<HASH> 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -22,10 +22,11 @@ if __name__ == '__main__': from os.path import realpath, dirname path.append(realpath(dirname(realpath(__file__)) + '/../')) -import json import cStringIO -import os i...
[enh] use HMAC for image proxy url verification
asciimoo_searx
train
30a63b2c46cd12f370a602d6b89273dc039167d4
diff --git a/externs/window.js b/externs/window.js index <HASH>..<HASH> 100644 --- a/externs/window.js +++ b/externs/window.js @@ -55,7 +55,8 @@ var document; var location; /** - * @see https://developer.mozilla.org/En/DOM/Window.screen + * @type {!Screen} + * @see https://developer.mozilla.org/En/DOM/window.screen...
Add type information to extern for screen ------------- Created by MOE: <URL>
google_closure-compiler
train
b96262756c8080f1602240cd90f59bf7435cbe6a
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -8,6 +8,11 @@ var jscs = require('gulp-jscs'); var istanbul = require('gulp-istanbul'); var coveralls = require('gulp-coveralls'); +var handleErr = function (err) { + console.log(err.message); + process.exit(...
Fail build if static analysis doesn't pass
yeoman_environment
train
3ca6ad5b9e6e37766d26c29f6a99bbd80961473c
diff --git a/daemon/oci_windows.go b/daemon/oci_windows.go index <HASH>..<HASH> 100644 --- a/daemon/oci_windows.go +++ b/daemon/oci_windows.go @@ -175,23 +175,6 @@ func (daemon *Daemon) createSpec(c *container.Container) (*libcontainerd.Spec, e //TODO SandboxSize: ..., }, } - - // BUGBUG - Next problem. This wa...
Windows: Tidy after libcontainerd
containers_storage
train
48f10ee58271819dcca7badd4b61efd06afb89e1
diff --git a/context/context.go b/context/context.go index <HASH>..<HASH> 100644 --- a/context/context.go +++ b/context/context.go @@ -56,9 +56,8 @@ func CloseAfterContext(p goprocess.Process, ctx context.Context) { panic("nil Context") } - // context.Background(). if ctx.Done() is nil, it will never be done. - ...
avoid a goroutine when a process can't close
jbenet_goprocess
train
f76c1bbaf419838b5c859fa2297b7dd50a0b2340
diff --git a/tests/framework/web/CActiveDataProviderTest.php b/tests/framework/web/CActiveDataProviderTest.php index <HASH>..<HASH> 100644 --- a/tests/framework/web/CActiveDataProviderTest.php +++ b/tests/framework/web/CActiveDataProviderTest.php @@ -1,8 +1,5 @@ <?php -Yii::import('system.db.CDbConnection'); -Yii::i...
Remove superfluous and erroneous imports.
yiisoft_yii
train
d40e3883961cd45ad47c18e3b58a2d5adb5fe185
diff --git a/trinary/trinary.go b/trinary/trinary.go index <HASH>..<HASH> 100644 --- a/trinary/trinary.go +++ b/trinary/trinary.go @@ -3,7 +3,6 @@ package trinary import ( "math" - "regexp" "strings" . "github.com/iotaledger/iota.go/consts" @@ -465,13 +464,16 @@ type Hash = Trytes // Hashes is a slice of Ha...
Improved ValidTrytes implementation - got rid of regexp (#<I>)
iotaledger_iota.go
train
ea649501c7caa9899ea67dc068fb3dd082bc99c0
diff --git a/app/models/travel_advice_edition.rb b/app/models/travel_advice_edition.rb index <HASH>..<HASH> 100644 --- a/app/models/travel_advice_edition.rb +++ b/app/models/travel_advice_edition.rb @@ -1,3 +1,4 @@ +require 'attachable' require 'parted' require 'state_machine' require 'safe_html' @@ -7,6 +8,7 @@ cla...
Set up attachable fields for travel advice edition These are the same as the current fields defined in travel advice publisher
alphagov_govuk_content_models
train