hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
e20019e0cd75ce0475d639ff0aab829999a32913
diff --git a/lib/annotate_yaml/annotate_yaml.rb b/lib/annotate_yaml/annotate_yaml.rb index <HASH>..<HASH> 100644 --- a/lib/annotate_yaml/annotate_yaml.rb +++ b/lib/annotate_yaml/annotate_yaml.rb @@ -1,58 +1,114 @@ module AnnotateYaml require 'yaml' - class << self - def annotate_locales + DEFAULT_YML_LOOKUP ...
refactored method to objects
purban_annotate_yaml
train
34845ae33c3070d93526aa012db67f61894b26d5
diff --git a/lib/neo4apis/cli/base.rb b/lib/neo4apis/cli/base.rb index <HASH>..<HASH> 100644 --- a/lib/neo4apis/cli/base.rb +++ b/lib/neo4apis/cli/base.rb @@ -2,6 +2,12 @@ module Neo4Apis module CLI class Base < ::Thor class_option :neo4j_url, type: :string, default: 'http://localhost:7474' + class...
Make a neo4j_session method for the Thor Base class and introduce username and password options
neo4jrb_neo4apis
train
c7026321591c4fc88f6b8e4300c2a91967e93d37
diff --git a/tests/Queries/QueryTest.php b/tests/Queries/QueryTest.php index <HASH>..<HASH> 100644 --- a/tests/Queries/QueryTest.php +++ b/tests/Queries/QueryTest.php @@ -2,13 +2,60 @@ class QueryTest extends ElasticSearcherTestCase { + public function setUp() + { + parent::setUp(); + + // Create our example inde...
Tests: test building of query.
madewithlove_elasticsearcher
train
04c314ab01a2c6df828ef51108063002c44e2195
diff --git a/lib/node_modules/@stdlib/stats/base/dnanmin/lib/dnanmin.js b/lib/node_modules/@stdlib/stats/base/dnanmin/lib/dnanmin.js index <HASH>..<HASH> 100644 --- a/lib/node_modules/@stdlib/stats/base/dnanmin/lib/dnanmin.js +++ b/lib/node_modules/@stdlib/stats/base/dnanmin/lib/dnanmin.js @@ -60,14 +60,25 @@ function ...
Refactor to perform initial search for first non-NaN value
stdlib-js_stdlib
train
898cd973046c20d48f5a0bed24df1c91277ae154
diff --git a/backend/server_test.py b/backend/server_test.py index <HASH>..<HASH> 100644 --- a/backend/server_test.py +++ b/backend/server_test.py @@ -168,9 +168,9 @@ class TensorboardServerTest(tf.test.TestCase): self.assertEqual(graph.node[1].name, 'b') # Make sure the second node has an attribute that was ...
Merge changes from github, some fixes to adhere somewhat to our requirements for skflow. Change: <I>
tensorflow_tensorboard
train
5037f00b302ba0cf6eef8c42dede8ce2330ed631
diff --git a/server/jetstream.go b/server/jetstream.go index <HASH>..<HASH> 100644 --- a/server/jetstream.go +++ b/server/jetstream.go @@ -773,11 +773,11 @@ func (jsa *jsAccount) limitsExceeded(storeType StorageType) bool { var exceeded bool jsa.mu.Lock() if storeType == MemoryStorage { - if jsa.memUsed > jsa.li...
ensure unlimited account limits are calculated correctly Previously unlimited accounts - ones who inherit server values - would be unable to publish any messags at all
nats-io_gnatsd
train
43eeb433636f4b6aaddd85936f4c2bbdafee2672
diff --git a/tests/testlib.py b/tests/testlib.py index <HASH>..<HASH> 100644 --- a/tests/testlib.py +++ b/tests/testlib.py @@ -259,6 +259,6 @@ class SDKTestCase(unittest.TestCase): except HTTPError as error: if not (os.name == 'nt' and error.status == 500): ...
Fix for running tests on Windows under Python <I> TODO: * Track down the source of this error which occurs on OS X, Windows, and--presumably--Linux when running against Splunk <I> or <I> under Python <I>; AttributeError: 'TestCookieAuthentication' object has no attribute 'assertIsNotNone' * Test with Python <I> ...
splunk_splunk-sdk-python
train
470c1b293808ce995e243e494e8584ddb567cc6b
diff --git a/airflow/utils/json.py b/airflow/utils/json.py index <HASH>..<HASH> 100644 --- a/airflow/utils/json.py +++ b/airflow/utils/json.py @@ -54,6 +54,6 @@ class AirflowJsonEncoder(json.JSONEncoder): return float(obj) elif k8s is not None and isinstance(obj, k8s.V1Pod): from airf...
Fix issue rendering k8s V1Pod (#<I>) * Fix issue rendering k8s V1Pod Adds return statement for json serialization of k8s.V1Pod that previously caused errors in UI * fix task_instances
apache_airflow
train
de16097e2d4c1da1809a1c9d774e65b51994859c
diff --git a/resources/views/tools/database/edit-add.blade.php b/resources/views/tools/database/edit-add.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/tools/database/edit-add.blade.php +++ b/resources/views/tools/database/edit-add.blade.php @@ -117,13 +117,22 @@ ...
Adding functionality to generate migration when creating DB table
the-control-group_voyager
train
6a1f4242be39cb42496390556b5105c7260fca9a
diff --git a/lib/NoErrorsPlugin.js b/lib/NoErrorsPlugin.js index <HASH>..<HASH> 100644 --- a/lib/NoErrorsPlugin.js +++ b/lib/NoErrorsPlugin.js @@ -4,18 +4,19 @@ */ "use strict"; -const util = require("util"); +let deprecationReported = false; class NoErrorsPlugin { apply(compiler) { - compiler.plugin("should-...
Improvement: Ensure util.depracation use for deprecation warnings: revert NoErrors plugin
webpack_webpack
train
10ee3b4c57f60335898135ed7e779e71c74c022a
diff --git a/mrcrowbar/fields.py b/mrcrowbar/fields.py index <HASH>..<HASH> 100644 --- a/mrcrowbar/fields.py +++ b/mrcrowbar/fields.py @@ -20,7 +20,7 @@ class EmptyFieldError( Exception ): class Field( object ): - def __init__( self, default=None, **kwargs ): + def __init__( self, *, default=None, **kwargs )...
fields: be more of a jerk about disallowing positional arguments
moralrecordings_mrcrowbar
train
657e6ba85727118cfbf766c643a4c8a9f8c8fa9c
diff --git a/abydos/phonetic.py b/abydos/phonetic.py index <HASH>..<HASH> 100644 --- a/abydos/phonetic.py +++ b/abydos/phonetic.py @@ -2049,7 +2049,7 @@ def phonix(word, maxlength=4, zero_pad=True): (_end_repl, 'GN', 'N'), (_start_repl, 'PS', 'S'), ...
bugfix: was passing _con instead of 'C', which now causes a crash (thankfully)
chrislit_abydos
train
85bd19b51a728b08e51bc0d054daf39b2881c404
diff --git a/src/modelFactory.js b/src/modelFactory.js index <HASH>..<HASH> 100644 --- a/src/modelFactory.js +++ b/src/modelFactory.js @@ -381,7 +381,7 @@ module.provider('$modelFactory', function(){ // Map all the objects to new names or relationships forEach(options.map, function(v...
fix for Model and ModelCollection map expressions
swimlane_angular-model-factory
train
6289768fc244fd4d5a1904bb92ac37fdd600fcc6
diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js index <HASH>..<HASH> 100644 --- a/build/gulpfile.reh.js +++ b/build/gulpfile.reh.js @@ -39,7 +39,7 @@ const REMOTE_FOLDER = path.join(REPO_ROOT, 'remote'); const BUILD_TARGETS = [ { platform: 'win32', arch: 'ia32' }, { platform: 'win32', arch: 'x64' }, - {...
Force using `x<I>` when running `yarn` on the `remote` folder on macOS
Microsoft_vscode
train
6c4d27954619c7908843e71d1efb03393558557e
diff --git a/src/main/java/org/springframework/retry/annotation/AnnotationAwareRetryOperationsInterceptor.java b/src/main/java/org/springframework/retry/annotation/AnnotationAwareRetryOperationsInterceptor.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/springframework/retry/annotation/AnnotationAwareRetryOper...
Ensure label is used if available in stateful retry interceptor
spring-projects_spring-retry
train
83192953a583ff1e89e94e66d6f34987faad9881
diff --git a/lib/graphql/activerecord.rb b/lib/graphql/activerecord.rb index <HASH>..<HASH> 100644 --- a/lib/graphql/activerecord.rb +++ b/lib/graphql/activerecord.rb @@ -16,5 +16,6 @@ require 'graphql/models/identification/model_types' require 'graphql/models/proxy_block' require 'graphql/models/definition_helpers' ...
Fixing bug with duplicate enum's
goco-inc_graphql-activerecord
train
0ef99bda64bb429a94a86fe42d01f4fe0e5ef33f
diff --git a/Resources/public/js/directives/datagrid.js b/Resources/public/js/directives/datagrid.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/directives/datagrid.js +++ b/Resources/public/js/directives/datagrid.js @@ -258,7 +258,9 @@ angular.module('Samson.DataGrid') $scope.editing.pus...
have create methods return the thing they created
SamsonIT_DataGridBundle
train
fd8bee4612d9551925238dae81f1dea76146efa7
diff --git a/siphon/simplewebservice/acis.py b/siphon/simplewebservice/acis.py index <HASH>..<HASH> 100644 --- a/siphon/simplewebservice/acis.py +++ b/siphon/simplewebservice/acis.py @@ -6,7 +6,7 @@ from ..http_util import create_http_session def acis_request(method, params): - """Requests data from the ACIS We...
Fixes PEP-8 style issues found by Travis-CI
Unidata_siphon
train
b77dd718226291bd699cb5d3a8eebda8cb05c275
diff --git a/src/cf/terminal/ui.go b/src/cf/terminal/ui.go index <HASH>..<HASH> 100644 --- a/src/cf/terminal/ui.go +++ b/src/cf/terminal/ui.go @@ -50,8 +50,7 @@ func (c TerminalUI) Ok() { func (c TerminalUI) Failed(message string) { c.Say(FailureColor("FAILED")) c.Say(message) - - return + os.Exit(1) } func (c...
exit with status 1 on failure [#<I>]
cloudfoundry_cli
train
f3a057ad31be507c828c143dff7943a148646171
diff --git a/charmhelpers/contrib/openstack/utils.py b/charmhelpers/contrib/openstack/utils.py index <HASH>..<HASH> 100644 --- a/charmhelpers/contrib/openstack/utils.py +++ b/charmhelpers/contrib/openstack/utils.py @@ -220,7 +220,6 @@ GIT_DEFAULT_REPOS = { } GIT_DEFAULT_BRANCHES = { - 'kilo': 'stable/kilo', ...
Drop kilo DFS default because upper constraints doesn't work in kilo for openstack-dashboard and glance.
juju_charm-helpers
train
f38ab9ebcf9a308b7719222f95b1f7412def34f7
diff --git a/org.redmine.ta.api/src/main/java/org/redmine/ta/RedmineManager.java b/org.redmine.ta.api/src/main/java/org/redmine/ta/RedmineManager.java index <HASH>..<HASH> 100644 --- a/org.redmine.ta.api/src/main/java/org/redmine/ta/RedmineManager.java +++ b/org.redmine.ta.api/src/main/java/org/redmine/ta/RedmineManage...
Issue <I>: changed the error message to be >Authorization error. Please check if you provided a valid API access key or Login and Password and REST API service is enabled on the server.
taskadapter_redmine-java-api
train
c03d88ddece0ff665c65873fea128e84ec590b37
diff --git a/lib/vraptor-scaffold/runner/start.rb b/lib/vraptor-scaffold/runner/start.rb index <HASH>..<HASH> 100644 --- a/lib/vraptor-scaffold/runner/start.rb +++ b/lib/vraptor-scaffold/runner/start.rb @@ -3,6 +3,10 @@ module VraptorScaffold class Start def run(args) + if File.exist?(:src) + ...
should not start a app outside root directory
caelum_vraptor-scaffold
train
640a6c4faca4b88051d6b8619f201dfc19b7d142
diff --git a/reactor-net/src/test/java/reactor/io/net/tcp/ClientServerHttpTests.java b/reactor-net/src/test/java/reactor/io/net/tcp/ClientServerHttpTests.java index <HASH>..<HASH> 100644 --- a/reactor-net/src/test/java/reactor/io/net/tcp/ClientServerHttpTests.java +++ b/reactor-net/src/test/java/reactor/io/net/tcp/Clie...
fix timer issues sync reactor-core
reactor-attic_reactor-ipc
train
d89ac6a2c7fa85f018cdf47570ccd408fc1fd393
diff --git a/lib/childprocess/jruby/process.rb b/lib/childprocess/jruby/process.rb index <HASH>..<HASH> 100755 --- a/lib/childprocess/jruby/process.rb +++ b/lib/childprocess/jruby/process.rb @@ -80,8 +80,8 @@ module ChildProcess def setup_io if @io - @pumps << redirect(@process.getErrorStream...
Fix #stop on JRuby when only one IO stream is redirected.
enkessler_childprocess
train
c14f65b86ec241f4706a35b6ce7c0c34f6daad96
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -137,10 +137,10 @@ function printToConsole(maxLocaleTimeLength, width, slim, slots, slot, colorizer } breakLines(message, messageWidth, (line, i, lines) => { - let _meta = meta(i, lin...
Prefix variables that get printed with "$"
PabloSichert_concurrency-logger
train
27d15e61420e9b10468985949de7444fcb3e8d03
diff --git a/future/tests/test_pasteurize.py b/future/tests/test_pasteurize.py index <HASH>..<HASH> 100644 --- a/future/tests/test_pasteurize.py +++ b/future/tests/test_pasteurize.py @@ -54,6 +54,7 @@ class TestPasteurize(CodeHandler): ''' self.unchanged(code, from3=True) + # TODO: write / fix th...
Make a note of a libpasteurize fixer that needs work
PythonCharmers_python-future
train
4d75acce5c49908daa828b4f0ed0c3cfdfdc808d
diff --git a/src/main/java/net/dv8tion/jda/api/Permission.java b/src/main/java/net/dv8tion/jda/api/Permission.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/dv8tion/jda/api/Permission.java +++ b/src/main/java/net/dv8tion/jda/api/Permission.java @@ -109,7 +109,7 @@ public enum Permission */ public s...
Fix Permission.ALL_VOICE_PERMISSIONS not including Permission.PRIORITY_SPEAKER
DV8FromTheWorld_JDA
train
834ce08e705ef4c4fd7f7eb3d552368bee69d70d
diff --git a/lang/tl_utf8/moodle.php b/lang/tl_utf8/moodle.php index <HASH>..<HASH> 100644 --- a/lang/tl_utf8/moodle.php +++ b/lang/tl_utf8/moodle.php @@ -1155,7 +1155,7 @@ $string['thanks'] = 'Salamat'; $string['theme'] = 'Tema'; $string['themes'] = 'Mga tema'; $string['themesaved'] = 'Nasave na ang bagong tema'; -...
i failed to set thischarset to utf-8 again, grrrr!
moodle_moodle
train
685c5f04457300c9babd9fb3586fddb9f809dfb9
diff --git a/chainlet/funclink.py b/chainlet/funclink.py index <HASH>..<HASH> 100644 --- a/chainlet/funclink.py +++ b/chainlet/funclink.py @@ -47,7 +47,7 @@ class FunctionLink(chainlet.wrapper.WrapperMixin, chainlink.ChainLink): :param args: positional arguments for the slave :param kwargs: keyword arguments ...
[docs] fixed references and formatting
maxfischer2781_chainlet
train
13f8207abe901bbc1ff196783473b84044a88bc0
diff --git a/launch_control/sample.py b/launch_control/sample.py index <HASH>..<HASH> 100644 --- a/launch_control/sample.py +++ b/launch_control/sample.py @@ -172,7 +172,7 @@ class QualitativeSample(_Sample): raise TypeError("Test result must be a string or unicode object") if test_result not in s...
Do not force the value of QualitativeSample.test_result into str()
zyga_json-schema-validator
train
2afd3de630bc75fc1e723de8a6d87287eb942e0a
diff --git a/lib/assertion.js b/lib/assertion.js index <HASH>..<HASH> 100644 --- a/lib/assertion.js +++ b/lib/assertion.js @@ -48,8 +48,6 @@ var AssertionError = require('./error') , toString = Object.prototype.toString , util = require('./utils') - , inspect = util.inspect - , eql = util.eql , flag = util....
[refactor] object to test is now stored in flag, with ssfi and custom message
chaijs_chai
train
4671e49b9c07063f4c8002de4b7b393525effb92
diff --git a/src/bosh/agent/action/concrete_factory.go b/src/bosh/agent/action/concrete_factory.go index <HASH>..<HASH> 100644 --- a/src/bosh/agent/action/concrete_factory.go +++ b/src/bosh/agent/action/concrete_factory.go @@ -45,7 +45,7 @@ func NewFactory( "get_task": newGetTask(taskService), "get_state": ...
remove settings service from migrate disk It was not used by this action.
cloudfoundry_bosh-agent
train
b3fe8de7fb86f88b4c8090b4ce09362ceb17d587
diff --git a/modules/backend/behaviors/RelationController.php b/modules/backend/behaviors/RelationController.php index <HASH>..<HASH> 100644 --- a/modules/backend/behaviors/RelationController.php +++ b/modules/backend/behaviors/RelationController.php @@ -399,10 +399,9 @@ class RelationController extends ControllerBehav...
Prevent extra config from bleeding to other definitions
octobercms_october
train
6248abcb99cf059a17bf4d2298faa4658101fe1f
diff --git a/retrofit/src/main/java/retrofit/http/Platform.java b/retrofit/src/main/java/retrofit/http/Platform.java index <HASH>..<HASH> 100644 --- a/retrofit/src/main/java/retrofit/http/Platform.java +++ b/retrofit/src/main/java/retrofit/http/Platform.java @@ -7,7 +7,6 @@ import com.google.gson.Gson; import java.uti...
Reset thread name to idle when not in use. Closes #<I>.
square_retrofit
train
af9358375be3c23b85ceed330077f3acd751bad4
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,7 @@ const fs = require('fs'); -const AggregateError = require('./lib/aggregate-error'); +const AggregateError = require('./lib/aggregate-error.js'); /** Combines one or more errors into a single error. * dif...
Add extensions to require() module specs To satisfy import/extensions and prepare for ESM.
kevinoid_nodecat
train
a539242b73c25b02d9026a08452e8e54b5edd0e4
diff --git a/spec/test_helper.rb b/spec/test_helper.rb index <HASH>..<HASH> 100644 --- a/spec/test_helper.rb +++ b/spec/test_helper.rb @@ -1,3 +1,4 @@ +require 'pry' require 'rspec/autorun' require 'ripper'
require pry for tests allows dropping binding.pry wherever while testing
makaroni4_sandi_meter
train
56c17a4c9b9fd862bc73b5b6283f53f34a80a9a7
diff --git a/spec/lib/oauth/access_token_request_spec.rb b/spec/lib/oauth/access_token_request_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/oauth/access_token_request_spec.rb +++ b/spec/lib/oauth/access_token_request_spec.rb @@ -56,16 +56,19 @@ module Doorkeeper::OAuth end describe "with a valid autho...
Fix issue with Rails <I> and Mongoid
doorkeeper-gem_doorkeeper
train
acf02afa4840cbdb59040ce5f4a399b51617a97d
diff --git a/gist/client.py b/gist/client.py index <HASH>..<HASH> 100644 --- a/gist/client.py +++ b/gist/client.py @@ -161,10 +161,17 @@ if sys.version_info < (3, 2): logger = logging.getLogger('gist') -# We need to wrap stdout in order to properly handle piping uincode output -stream = sys.stdout.detach() if sys....
client: put stdout wrapper in function The purpose of placing the wrapper logic into a function is so that the function can be disabled during testing. Detaching from stdout can cause problems otherwise.
jdowner_gist
train
e3cb1c5b35c626b352629af700d5d5ef871a8a84
diff --git a/openquake/hazardlib/gsim/climent_1994.py b/openquake/hazardlib/gsim/climent_1994.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/gsim/climent_1994.py +++ b/openquake/hazardlib/gsim/climent_1994.py @@ -1,5 +1,5 @@ # The Hazard Library -# Copyright (C) 2013 GEM Foundation +# Copyright (C) 2014 GEM ...
Update climent_<I>.py
gem_oq-engine
train
45abab62f854bebf8bfade70fc3e353459577f2c
diff --git a/src/DAV/QueryParser.php b/src/DAV/QueryParser.php index <HASH>..<HASH> 100644 --- a/src/DAV/QueryParser.php +++ b/src/DAV/QueryParser.php @@ -70,7 +70,8 @@ class QueryParser extends Service { '{DAV:}or' => Operator::class, '{DAV:}like' => Operator::class, '{DAV:}contains' => Operator::class, - ...
add is-collection as valid operator
icewind1991_SearchDAV
train
ab64e284db14a654a8dd8ebae1a04b2efa54912f
diff --git a/nipap/nipap/xmlrpc.py b/nipap/nipap/xmlrpc.py index <HASH>..<HASH> 100644 --- a/nipap/nipap/xmlrpc.py +++ b/nipap/nipap/xmlrpc.py @@ -26,6 +26,7 @@ """ from twisted.web import http, xmlrpc, server from twisted.internet import defer, protocol, reactor +from twisted.python import log import logging impo...
Make twisted log to Python standard logger Disabled Twisted's default logging observer which logs to STDERR and instead pass log messages to Python's standard logging facilities.
SpriteLink_NIPAP
train
5c6eaec5bc5301ab5e83b4d5a0de000080f3f99c
diff --git a/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php b/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php +++ b/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php @@ -66,7 +66,...
Update Pusher and Redis Broadcaster to call getAuthIdentifier instead of getKey per Authenticatable contract. (#<I>)
laravel_framework
train
346b4b11f367e4f36b5b7a160fc9698116f9446f
diff --git a/lib/site_prism/section.rb b/lib/site_prism/section.rb index <HASH>..<HASH> 100644 --- a/lib/site_prism/section.rb +++ b/lib/site_prism/section.rb @@ -11,7 +11,7 @@ module SitePrism end def visible? - @root_element.visible? + root_element.visible? end def execute_script inp...
section now uses root_element method rather than instance var
natritmeyer_site_prism
train
518e1f2c7585b040f36942be0bf10fce8cab9ccf
diff --git a/lib/gcli/history.js b/lib/gcli/history.js index <HASH>..<HASH> 100644 --- a/lib/gcli/history.js +++ b/lib/gcli/history.js @@ -20,7 +20,7 @@ function History(options) { // `this._buffer[0]` should always be equal the empty string. This is so // that when you try to go in to the "future", you will just...
Tidyup: Replace other stray " with '
joewalker_gcli
train
d8cb60615ba84017c1470e69df00073269f76563
diff --git a/lib/travis/model/build/matrix.rb b/lib/travis/model/build/matrix.rb index <HASH>..<HASH> 100644 --- a/lib/travis/model/build/matrix.rb +++ b/lib/travis/model/build/matrix.rb @@ -55,6 +55,15 @@ class Build attributes.merge!(:number => "#{number}.#{ix + 1}", :config => config.merge(Hash[*row.flatt...
set allow_failure flag from the matrix config
travis-ci_travis-core
train
61998e1d9543b6765557c86ea283535ab298fecf
diff --git a/pysat/instruments/superdarn_grdex.py b/pysat/instruments/superdarn_grdex.py index <HASH>..<HASH> 100644 --- a/pysat/instruments/superdarn_grdex.py +++ b/pysat/instruments/superdarn_grdex.py @@ -187,7 +187,7 @@ def clean(self): def download(date_array, tag, data_path, user=None, password=None): ...
Corrected docstring for download method
rstoneback_pysat
train
5dea3b51dfe28e24f737d5fbf81c2e5b12e52c9f
diff --git a/hellocharts-library/src/lecho/lib/hellocharts/LineChartRenderer.java b/hellocharts-library/src/lecho/lib/hellocharts/LineChartRenderer.java index <HASH>..<HASH> 100644 --- a/hellocharts-library/src/lecho/lib/hellocharts/LineChartRenderer.java +++ b/hellocharts-library/src/lecho/lib/hellocharts/LineChartRen...
Added isInArea method for LineChartRenderer All renderers will have to provide method that checks if touch is within single chart element area for example within dot for line chart or within bar for bar chart.
lecho_hellocharts-android
train
6a01ab726bf9c5a9c0da3fa18386045245d22333
diff --git a/perceval/backends/gerrit.py b/perceval/backends/gerrit.py index <HASH>..<HASH> 100644 --- a/perceval/backends/gerrit.py +++ b/perceval/backends/gerrit.py @@ -186,7 +186,7 @@ class GerritClient(): CMD_VERSION = 'version' PORT = '29418' - def __init__(self, repository, user, max_reviews, black...
[gerrit] Use [] as default value for blacklist reviews
chaoss_grimoirelab-perceval
train
02750f9a0f5b2965d7e6bfc0341f42151f569fe6
diff --git a/lib/devise_g5_authenticatable/models/g5_authenticatable.rb b/lib/devise_g5_authenticatable/models/g5_authenticatable.rb index <HASH>..<HASH> 100644 --- a/lib/devise_g5_authenticatable/models/g5_authenticatable.rb +++ b/lib/devise_g5_authenticatable/models/g5_authenticatable.rb @@ -4,8 +4,8 @@ module Devise...
Add password_confirmation to model mixin
G5_devise_g5_authenticatable
train
17687ec086130cd285599fdf4a266f957fc4a2c9
diff --git a/robe-admin/src/main/java/io/robe/admin/resources/MenuResource.java b/robe-admin/src/main/java/io/robe/admin/resources/MenuResource.java index <HASH>..<HASH> 100644 --- a/robe-admin/src/main/java/io/robe/admin/resources/MenuResource.java +++ b/robe-admin/src/main/java/io/robe/admin/resources/MenuResource.ja...
<I> error response fixed in menu resource
robeio_robe
train
7571bc0c7f61982b9805951a8fc945be08ca2f6e
diff --git a/bundles/org.eclipse.orion.client.core/web/orion/problems.js b/bundles/org.eclipse.orion.client.core/web/orion/problems.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.core/web/orion/problems.js +++ b/bundles/org.eclipse.orion.client.core/web/orion/problems.js @@ -1,6 +1,6 @@ /*******...
Bug <I> - Merge LSP support into master - problems.js changes
eclipse_orion.client
train
dc6c143491ae8b719b28216900abd00f9d415aab
diff --git a/lib/mongoid/slug/unique_slug.rb b/lib/mongoid/slug/unique_slug.rb index <HASH>..<HASH> 100644 --- a/lib/mongoid/slug/unique_slug.rb +++ b/lib/mongoid/slug/unique_slug.rb @@ -69,6 +69,16 @@ module Mongoid def prep_compare obj (@pattern.match(obj)[1] || -1).to_i end + + de...
fix comma missing and add inspect method
mongoid_mongoid-slug
train
e74859720ed6958bad28ef2c046122835dff96ab
diff --git a/src/Psy/Configuration.php b/src/Psy/Configuration.php index <HASH>..<HASH> 100644 --- a/src/Psy/Configuration.php +++ b/src/Psy/Configuration.php @@ -44,7 +44,7 @@ class Configuration 'loop', 'configDir', 'dataDir', 'runtimeDir', 'manualDbFile', 'requireSemicolons', 'useUnicode', 'history...
Add bracketed paste support. (for GNU readline, for now) See laravel/tinker#<I>
bobthecow_psysh
train
c718e39b4c50612bf5edcf30cf583a762fa054ea
diff --git a/lib/janky/chat_service/hipchat.rb b/lib/janky/chat_service/hipchat.rb index <HASH>..<HASH> 100644 --- a/lib/janky/chat_service/hipchat.rb +++ b/lib/janky/chat_service/hipchat.rb @@ -13,7 +13,11 @@ module Janky @from = settings["JANKY_CHAT_HIPCHAT_FROM"] || "CI" end - def speak(messag...
Display output URLs as hyperlinks in Hipchat By default the output URLs are displayed in Hipchat as plain text and must be copy pasted into a browser. This change allows Hipchat to transform them into clickable hyperlinks (by default, you can turn it off). *Tech Notes* Hipchat now allows API messages to be processed ...
github_janky
train
6a382a511d82d452331add702827643cf7abdd8b
diff --git a/tasks/tasks.js b/tasks/tasks.js index <HASH>..<HASH> 100644 --- a/tasks/tasks.js +++ b/tasks/tasks.js @@ -92,7 +92,6 @@ module.exports = function(grunt) { cmd += ' ' + url; var child = childProcess.exec(cmd, [], function (err, stdout, stderr) { - // console.log('inside, cmd', cmd, ...
adding call to done function for async task
andyshora_grunt-yslow
train
62818c327997e804090ad8fab328e05410d65d89
diff --git a/resolwe/flow/tests/test_backend.py b/resolwe/flow/tests/test_backend.py index <HASH>..<HASH> 100644 --- a/resolwe/flow/tests/test_backend.py +++ b/resolwe/flow/tests/test_backend.py @@ -27,12 +27,6 @@ class BackendTest(TestCase): contributor=u, process=self.p) ...
Remove (potentialy dangerous) data path recreation
genialis_resolwe
train
640af41fe8e30d8b044ff0587273bc4d1c3a7ebd
diff --git a/java/client/src/org/openqa/selenium/Capabilities.java b/java/client/src/org/openqa/selenium/Capabilities.java index <HASH>..<HASH> 100644 --- a/java/client/src/org/openqa/selenium/Capabilities.java +++ b/java/client/src/org/openqa/selenium/Capabilities.java @@ -48,7 +48,7 @@ public interface Capabilities {...
Fix issues in comments and exception messages.
SeleniumHQ_selenium
train
18decdfb745efae626edf761406bc17622899713
diff --git a/pyatv/core/__init__.py b/pyatv/core/__init__.py index <HASH>..<HASH> 100644 --- a/pyatv/core/__init__.py +++ b/pyatv/core/__init__.py @@ -71,6 +71,10 @@ class ProtocolStateDispatcher: self._protocol = protocol self._core_dispatcher = core_dispatcher + def create_copy(self, protocol: ...
mrp: Fix protocol bug in state dispatcher The wrong protocol was used in the ProtocolStateDispatcher passed to MRP, so play state updates didn't reach the power implementation in facade. Hopefully this will make the implementation more stable. Relates to #<I>
postlund_pyatv
train
0ad4b4aded695bdb8ffafc0c69bfb507aa8a65dc
diff --git a/tests/base.py b/tests/base.py index <HASH>..<HASH> 100644 --- a/tests/base.py +++ b/tests/base.py @@ -1,6 +1,6 @@ import lxml.html from should_dsl import should, should_not -from fake_webapp import EXAMPLE_APP, EXAMPLE_HTML +from fake_webapp import EXAMPLE_HTML, start_server, stop_server import shutil...
Setup fake web server to up in another process
cobrateam_splinter
train
703a5c0eafd90ccd0502abcabfb125225bd7b9e9
diff --git a/test/test_pooling.py b/test/test_pooling.py index <HASH>..<HASH> 100644 --- a/test/test_pooling.py +++ b/test/test_pooling.py @@ -32,9 +32,10 @@ class TestPooling(unittest.TestCase): default_connection = Connection(self.host, self.port) no_auto_connection = Connection(self.host, self.port...
don't timeout when testing pooling
mongodb_mongo-python-driver
train
13847deac0fce437e28f060965d936cd7bb925a1
diff --git a/src/Nbobtc/Bitcoind/Client.php b/src/Nbobtc/Bitcoind/Client.php index <HASH>..<HASH> 100644 --- a/src/Nbobtc/Bitcoind/Client.php +++ b/src/Nbobtc/Bitcoind/Client.php @@ -12,13 +12,20 @@ class Client implements ClientInterface * @var string */ protected $dsn; + + /** + * @var str...
include optional cacert Allows a user to include an optional certificate file for ssl verification. Useful when you don't have access to curls cacert file (ie shared hosting).
nbobtc_bitcoind-php
train
0aa1b3b0bfc4eef105388a590a8796e1638d5d83
diff --git a/test/integration/endpoints/endpoints_test.go b/test/integration/endpoints/endpoints_test.go index <HASH>..<HASH> 100644 --- a/test/integration/endpoints/endpoints_test.go +++ b/test/integration/endpoints/endpoints_test.go @@ -156,6 +156,160 @@ func TestEndpointUpdates(t *testing.T) { } +// TestEndpoin...
test/integration/endpoints: add a test to ensure Endpoints does not include terminating pods
kubernetes_kubernetes
train
9da42fba5b70167dc760e6e6ae7b03f1aa0d46d8
diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index <HASH>..<HASH> 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -275,7 +275,7 @@ module Linguist end disambiguate "NL", "NewLisp" do |data| - if /^g3 /.match(data) + if /^(b|g)[0-9]+ /.match(data)...
Improve NL/NewLisp disambiguation heuristic NL files start with either 'b' or 'g' followed by an unsigned integer.
github_linguist
train
bf57c132cde405dd9ffe64b1dface9df3693b8de
diff --git a/src/tooltip.js b/src/tooltip.js index <HASH>..<HASH> 100644 --- a/src/tooltip.js +++ b/src/tooltip.js @@ -72,6 +72,8 @@ export default class Tooltip { // set initial state this._isOpen = false + this._isDisposed = false + // set event listeners this._setEventListeners(reference, events, opti...
Fix cases of tooltips not being disposed on Firefox
Akryum_v-tooltip
train
913e9f8db89a942a6add77bcba4f02e394b7056e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup(name='wallaby-base', - version='0.1.49', + version='0.1.50', url='https://github.com/FreshXOpenSource/wallaby-base', author='FreshX GbR...
minor bugfix in relation and bugfix in lazy loading of data in query results
FreshXOpenSource_wallaby-base
train
f9f3f4e3c94dbe7b7894cef9f91197a1f1cb637c
diff --git a/stan/aio/client.py b/stan/aio/client.py index <HASH>..<HASH> 100644 --- a/stan/aio/client.py +++ b/stan/aio/client.py @@ -15,10 +15,12 @@ import asyncio import logging import random -import stan.pb.protocol_pb2 as protocol -from stan.aio.errors import * from time import time as now + +import stan.pb.pr...
Add support for non-borrowed NATS connection.
nats-io_asyncio-nats-streaming
train
451e4199528d9e81d0cc9165bfdad0d1d9bee495
diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/projectCommands.js b/bundles/org.eclipse.orion.client.ui/web/orion/projectCommands.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/orion/projectCommands.js +++ b/bundles/org.eclipse.orion.client.ui/web/orion/projectCommands.js @@ -1...
update deploy command visibleWhen function because the validate item has changed
eclipse_orion.client
train
5f63e65c80bc953681f0e734ae3a1ec89b039efa
diff --git a/lib/comma.rb b/lib/comma.rb index <HASH>..<HASH> 100644 --- a/lib/comma.rb +++ b/lib/comma.rb @@ -20,6 +20,7 @@ class Array if filename FasterCSV.open(filename, 'w'){ |csv| append_csv(csv, style) } + return true else FasterCSV.generate(options){ |csv| append_csv(csv, style) }...
Return true, not the CSV object when done writing a file
comma-csv_comma
train
02bd17978152900ad3abc2b821505b857c2f3a0a
diff --git a/www/javascript/swat-table-view-checkbox-column.js b/www/javascript/swat-table-view-checkbox-column.js index <HASH>..<HASH> 100644 --- a/www/javascript/swat-table-view-checkbox-column.js +++ b/www/javascript/swat-table-view-checkbox-column.js @@ -1,40 +1,44 @@ /** * Javascript SwatTableViewCheckboxColumn...
Make this better. - Fix documentation and brace style. - Use array.push() instead of adding with indexes. I can't believe this ever worked. - Put initialization loop stuff inside the list finding loop. This is a bit more efficient. svn commit r<I>
silverorange_swat
train
b085b5922a69f1cadfa2bb72519c19dafebb2e39
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,6 +36,8 @@ matrix: - python: 3.6 env: DJANGO=2.2 - python: 3.6 + env: DJANGO=3.0 + - python: 3.6 env: DJANGO=master - python: 3.7 @@ -47,6 +49,8 @@ matrix: - python: ...
add Django <I> to the test matrix (#<I>) * add Django <I> to the test matrix * fix six imports
graphql-python_graphene-django
train
5db556594b050b1bb980fbae7c5725411cfbdba5
diff --git a/python_modules/dagster/dagster/core/definitions/solid_invocation.py b/python_modules/dagster/dagster/core/definitions/solid_invocation.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster/core/definitions/solid_invocation.py +++ b/python_modules/dagster/dagster/core/definitions/solid_invocat...
Fix coroutine bug for solid invocation Summary: Previously, if someone tried to await from an invocation of async solid, and had a type on their outputs, we would fail. This fixes to wrap the resulting coroutine and type check properly, and also cleans up a bit of code along the way. Test Plan: added unit test for co...
dagster-io_dagster
train
9125ff23eeb21d3ce46b37f3a62d000325bc33f1
diff --git a/prefix_test.go b/prefix_test.go index <HASH>..<HASH> 100644 --- a/prefix_test.go +++ b/prefix_test.go @@ -7,13 +7,14 @@ import ( "github.com/stretchr/testify/assert" ) -func TestPrefixLog(t *testing.T) { +func TestPrefixConcurrentLog(t *testing.T) { for _, c := range addPrefixCases { assert := as...
3 birds one stone testing all but color
dixonwille_wlog
train
204191145056e0d030efbba011ac7bc22c471621
diff --git a/tests/conftest.py b/tests/conftest.py index <HASH>..<HASH> 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -25,19 +25,22 @@ def pytest_configure(config): def pytest_collection_modifyitems(config, items): if config.getoption(SKIP_EXE): - def get_xfail(*, xfail: bool = False) -> bool...
allow passing keyword arguments such as raises though pytest.mark.exe
xflr6_graphviz
train
0a16ab1eee2fa166c670fa983151021e90b0c994
diff --git a/bcbio/variation/population.py b/bcbio/variation/population.py index <HASH>..<HASH> 100644 --- a/bcbio/variation/population.py +++ b/bcbio/variation/population.py @@ -179,7 +179,11 @@ def _group_by_batches(samples, check_fn): return batch_groups, singles, out_retrieve, extras def _has_variant_calls(...
Fix population database preparation when some called outputs have no variants
bcbio_bcbio-nextgen
train
69b1aa9840c513d8a3d4f0cf82835d2920b940d2
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -151,6 +151,7 @@ def get_version_tofu(path=_HERE): # Try from git isgit = ".git" in os.listdir(path) if isgit: + print(">>>> is git branch") try: git_branch = ( subp...
adding prints to see whats happening in travis
ToFuProject_tofu
train
b54205a2357af90660734bbb59ecf8215451c8d2
diff --git a/core/src/main/java/org/bitcoinj/core/Peer.java b/core/src/main/java/org/bitcoinj/core/Peer.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/bitcoinj/core/Peer.java +++ b/core/src/main/java/org/bitcoinj/core/Peer.java @@ -45,10 +45,10 @@ import javax.annotation.Nullable; import java.net.Socket...
Peer: Simplify needToRequest set of hashes * Make “more immutable” by using stream/toSet * Eliminate unnecessary use of CopyOnWriteArraySet
bitcoinj_bitcoinj
train
17d6dabb183971290caf17ae516742f79fd251fb
diff --git a/lib/emites.rb b/lib/emites.rb index <HASH>..<HASH> 100644 --- a/lib/emites.rb +++ b/lib/emites.rb @@ -8,6 +8,7 @@ require "emites/http" require "emites/resources/base" require "emites/resources/emitter" +require "emites/entities/base" require "emites/entities/emitter" require "emites/entities/taker" ...
Moved entities/base require to main module
myfreecomm_emites-client-ruby
train
f1866bad8e362367f7b96a404c4625532804ff20
diff --git a/SplitwiseTokenExample/src/main/java/com/tokenautocomplete/TokenCompleteTextView.java b/SplitwiseTokenExample/src/main/java/com/tokenautocomplete/TokenCompleteTextView.java index <HASH>..<HASH> 100644 --- a/SplitwiseTokenExample/src/main/java/com/tokenautocomplete/TokenCompleteTextView.java +++ b/SplitwiseT...
comment a bad interaction between replaceTextWith(), prefix, and hint
splitwise_TokenAutoComplete
train
23f1364700e57d43d0cc439e0ce7db78a3ea689f
diff --git a/src/Form.php b/src/Form.php index <HASH>..<HASH> 100644 --- a/src/Form.php +++ b/src/Form.php @@ -72,10 +72,7 @@ class Form implements IForm */ public function addField($name, $value = '') { - $this->fields[] = [ - 'name' => $name, - 'value' => $value, - ...
Add methods to PayProtocol to work with systems need payment form
SergioMadness_payment-laravel
train
36b37f0cd038c312630d4d8ccbbb5e553baf7f76
diff --git a/src/react-native/rollbar.js b/src/react-native/rollbar.js index <HASH>..<HASH> 100644 --- a/src/react-native/rollbar.js +++ b/src/react-native/rollbar.js @@ -223,6 +223,28 @@ Rollbar.captureEvent = function(metadata, level) { } }; +Rollbar.prototype.setPerson = function(personInfo) { + this.configur...
add {set|clear}Person to the react-native notifier
rollbar_rollbar.js
train
24fdf4b6248b38bdc7e08d2ba72f52f8a4a2e17a
diff --git a/src/svg/graphic.js b/src/svg/graphic.js index <HASH>..<HASH> 100644 --- a/src/svg/graphic.js +++ b/src/svg/graphic.js @@ -5,6 +5,7 @@ define(function (require) { var svgCore = require('./core'); var CMD = require('../core/PathProxy').CMD; + var BoundingRect = require('../core/BoundingRect');...
fix text transform for graph-grid
ecomfe_zrender
train
20d7d810d10c322c5a69fae4f22e5953b87a9c49
diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php index <HASH>..<HASH> 100644 --- a/features/bootstrap/FeatureContext.php +++ b/features/bootstrap/FeatureContext.php @@ -1,4 +1,6 @@ <?php +namespace PaulGibbs\WordpressBehatExtension; + use PaulGibbs\WordpressBehatExtension\Con...
Add namespace to bootstrap/FeatureContext to keep out of global namespace, and static analyisers, happy.
paulgibbs_behat-wordpress-extension
train
e4c3687fd8a933995fe5f6276c64a19c12e2544d
diff --git a/src/sap.m/src/sap/m/Table.js b/src/sap.m/src/sap/m/Table.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/Table.js +++ b/src/sap.m/src/sap/m/Table.js @@ -1120,16 +1120,18 @@ sap.ui.define([ // check if table has inset var iInset = this.getInset() ? 4 : 0; + var iThemeDensityWidth = this.$(...
[INTERNAL] Table: autoPopinMode fix The _getInitialAccumulatedWidth did not consider the theme size density. So in compact theme density, the column move the popin-area earlier than expected. This is now fixed, since the popin calculation now also considers the theme density. BCP: <I> Change-Id: I<I>e9bb<I>acbf0f5fe6...
SAP_openui5
train
0d60f6326a9faa4aba0f2ad2b90a4d665aca9535
diff --git a/code/editor/EditableDropdown.php b/code/editor/EditableDropdown.php index <HASH>..<HASH> 100755 --- a/code/editor/EditableDropdown.php +++ b/code/editor/EditableDropdown.php @@ -43,7 +43,7 @@ class EditableDropdown extends EditableFormField { continue; } - if(isset($data[$option->ID])) { + ...
BUGFIX added isset option to if statement to stop errors
silverstripe_silverstripe-userforms
train
717e21cadc6210cc8c8d08fb639eb61b3c3eec49
diff --git a/src/test/java/io/github/bonigarcia/wdm/test/versions/BrowserVersionDetectionTest.java b/src/test/java/io/github/bonigarcia/wdm/test/versions/BrowserVersionDetectionTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/io/github/bonigarcia/wdm/test/versions/BrowserVersionDetectionTest.java +++ b/src/tes...
Remove non-necessary trown exception
bonigarcia_webdrivermanager
train
9898726d579a1a968c58e3cd57d04c351bb7f832
diff --git a/cli/api/api.go b/cli/api/api.go index <HASH>..<HASH> 100644 --- a/cli/api/api.go +++ b/cli/api/api.go @@ -4,6 +4,7 @@ import ( "fmt" "github.com/zenoss/glog" + docker "github.com/zenoss/go-dockerclient" "github.com/zenoss/serviced" "github.com/zenoss/serviced/dao" "github.com/zenoss/serviced/rp...
created connectDocker() in api
control-center_serviced
train
6e9ec1e0134c6b76edbfb1255e5a3b6fcae784d9
diff --git a/src/models/configuration.js b/src/models/configuration.js index <HASH>..<HASH> 100644 --- a/src/models/configuration.js +++ b/src/models/configuration.js @@ -1,13 +1,7 @@ 'use strict'; -const fs = require('fs'); +const { promises: fs } = require('fs'); const path = require('path'); -const util = requir...
use fs/promises instead of promisify
CleverCloud_clever-tools
train
4df75cb969c2a519285c0f0fa26909c00a4c5c8c
diff --git a/CHANGELOG b/CHANGELOG index <HASH>..<HASH> 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,7 @@ -v0.x.x. Cleanup: move to Rspec; remove GemLoger +v0.x.x. Overall cleanup and making things safer: + - move to Rspec + - remove GemLoger + - don't mixin in a logger method to Object, ever -- too dangerous. ...
Remove logger method that was getting mixed in everywhere.... - bad idea and too dangerous - move version to Version class
relevance_log_buddy
train
1817afdba8304fd54aa6592e3af993555850c4dd
diff --git a/src/Phossa2/Shared/Base/ClassNameInterface.php b/src/Phossa2/Shared/Base/ClassNameInterface.php index <HASH>..<HASH> 100644 --- a/src/Phossa2/Shared/Base/ClassNameInterface.php +++ b/src/Phossa2/Shared/Base/ClassNameInterface.php @@ -23,6 +23,7 @@ namespace Phossa2\Shared\Base; * @author Hong Zhang <pho...
added setProperties() in ObjectAbstract
phossa2_shared
train
df0a349f42e62cf0b980853e64f490d0479d0f8d
diff --git a/views/build.gradle b/views/build.gradle index <HASH>..<HASH> 100644 --- a/views/build.gradle +++ b/views/build.gradle @@ -10,6 +10,7 @@ dependencies { compileOnly "org.apache.velocity:velocity-engine-core:$velocityEngine" compileOnly "com.github.jknack:handlebars:${handlebarsVersion}" compil...
Add ViewsFilterOrderProvider so the view filter will be set to run after the security filter. Fixes #<I>
micronaut-projects_micronaut-core
train
8abc45c420f1ea27b771584c5a56d8b966342e90
diff --git a/src/main/java/io/innerloop/neo4j/ogm/impl/mapping/CypherQueryMapper.java b/src/main/java/io/innerloop/neo4j/ogm/impl/mapping/CypherQueryMapper.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/innerloop/neo4j/ogm/impl/mapping/CypherQueryMapper.java +++ b/src/main/java/io/innerloop/neo4j/ogm/impl/mapp...
Added first support for @Aggregate. - Only works to 1 level at the moment. - Still have to add the @Property "follow" field to automatically load related entities and aggregate roots.
mangrish_java-neo4j-ogm
train
4c964b0a6fcd5bc012bc497a4f8715daf6cf3e44
diff --git a/choix/__init__.py b/choix/__init__.py index <HASH>..<HASH> 100644 --- a/choix/__init__.py +++ b/choix/__init__.py @@ -23,6 +23,7 @@ from .mm import ( from .utils import ( footrule_dist, kendalltau_dist, + rmse, log_likelihood_pairwise, log_likelihood_rankings, log_likelihood_to...
Compute RMSE between two parameter vectors. Add a small utility function that enables to compute the root mean squared error between two parameter vectors (i.e., the L2 norm of the difference vector).
lucasmaystre_choix
train
7a2c5c2d9f390fd024282812ffbe5faa3be35a3e
diff --git a/tests/test_vega.py b/tests/test_vega.py index <HASH>..<HASH> 100644 --- a/tests/test_vega.py +++ b/tests/test_vega.py @@ -3,7 +3,7 @@ from datetime import datetime, timedelta from itertools import product import json -from vincent.vega import grammar, Data, ValueRef, Mark, PropertySet +from vincent.veg...
Started to write KeyedList test. Didn't get too far.
wrobstory_vincent
train
b1e2918c791b1de319babed4e935e75b3d4d5969
diff --git a/src/main/java/com/codeborne/selenide/impl/Events.java b/src/main/java/com/codeborne/selenide/impl/Events.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/codeborne/selenide/impl/Events.java +++ b/src/main/java/com/codeborne/selenide/impl/Events.java @@ -17,7 +17,7 @@ public class Events { this...
Events jsCodeToTriggerEvent must be static
selenide_selenide
train
cb999781a69830a6ae911510d466ab353b02103e
diff --git a/system/Debug/Toolbar/View/toolbar.js b/system/Debug/Toolbar/View/toolbar.js index <HASH>..<HASH> 100644 --- a/system/Debug/Toolbar/View/toolbar.js +++ b/system/Debug/Toolbar/View/toolbar.js @@ -37,6 +37,9 @@ var ciDebugBar = { // Get the target tab, if any var tab = this.getAttribute('dat...
Show/hide toolbar tabs when clicking on same element more than once.
codeigniter4_CodeIgniter4
train
9274fc67b292d86287f66e6d007e25678507b362
diff --git a/util/src/main/java/org/killbill/billing/util/security/api/DefaultSecurityApi.java b/util/src/main/java/org/killbill/billing/util/security/api/DefaultSecurityApi.java index <HASH>..<HASH> 100644 --- a/util/src/main/java/org/killbill/billing/util/security/api/DefaultSecurityApi.java +++ b/util/src/main/java/...
shiro: Swallow unknown session during login
killbill_killbill
train
7b8b197dc8acc737eddeab092330537e84c90570
diff --git a/entity-store/src/main/java/jetbrains/exodus/entitystore/iterate/EntityIterableBase.java b/entity-store/src/main/java/jetbrains/exodus/entitystore/iterate/EntityIterableBase.java index <HASH>..<HASH> 100644 --- a/entity-store/src/main/java/jetbrains/exodus/entitystore/iterate/EntityIterableBase.java +++ b/e...
in getOrCreateCachedWrapper(), check whether cached wrapper is already available in the transaction before creating it
JetBrains_xodus
train
db5b3e7e126fb9d7d3b7925a89a4e49bdfe96915
diff --git a/client/driver/qemu.go b/client/driver/qemu.go index <HASH>..<HASH> 100644 --- a/client/driver/qemu.go +++ b/client/driver/qemu.go @@ -81,6 +81,12 @@ func (d *QemuDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, return nil, fmt.Errorf("Missing source image Qemu driver") } + // Qemu...
driver/qemu: Require a memory resource on the task
hashicorp_nomad
train
8fba209db7dca0a5f23d9e5a2053cb5dbb0ce42b
diff --git a/pipe2py/modules/pipefetch.py b/pipe2py/modules/pipefetch.py index <HASH>..<HASH> 100644 --- a/pipe2py/modules/pipefetch.py +++ b/pipe2py/modules/pipefetch.py @@ -22,34 +22,20 @@ from pipe2py.twisted.utils import asyncImap # Common functions -def get_abs_urls(_INPUT, conf, **kwargs): +def get_urls(_INP...
Optimize to fetch/parse urls cooperatively
ggaughan_pipe2py
train
15e0d48ccd5389a064d51089c73b2e350bbe3b38
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index <HASH>..<HASH> 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Release History =============== -DEV ---- +0.5.0 (2020-05-01) +------------------ * Bugfix #304 - Remove shadow object linkages with aggregates * Raise InvalidDataError on invalid attri...
Changelog for <I> and tox fixes
proteanhq_protean
train