hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
c143f7d08e2aaeccf835a01254fae4b6b29e8c29
diff --git a/lib/spatial_features/has_spatial_features.rb b/lib/spatial_features/has_spatial_features.rb index <HASH>..<HASH> 100644 --- a/lib/spatial_features/has_spatial_features.rb +++ b/lib/spatial_features/has_spatial_features.rb @@ -113,8 +113,6 @@ module SpatialFeatures def cached_spatial_join(other) ...
Allow spatial caching on own class We used to raise an exception when intersecting on the same class. There doesn’t see to be any technical limitation that necessitated this, but rather it was implemented as a sanity check because we didn’t initially intend it to be used in this way.
culturecode_spatial_features
train
rb
411ae230ade5c09cff05c2d2a571e9727d3cbd54
diff --git a/pstats_print2list/pstats_print2list.py b/pstats_print2list/pstats_print2list.py index <HASH>..<HASH> 100755 --- a/pstats_print2list/pstats_print2list.py +++ b/pstats_print2list/pstats_print2list.py @@ -95,7 +95,7 @@ def get_pstats_print2list(fnames, filter_fnames=None, exclude_fnames=None, stream.seek...
[FIX] pstats_print2list: Fix regex to support ncalls without '/'
Vauxoo_pstats-print2list
train
py
4b0a3b2d84cf3847dc9cef5263bbb6740e58cb7d
diff --git a/peewee.py b/peewee.py index <HASH>..<HASH> 100644 --- a/peewee.py +++ b/peewee.py @@ -1686,7 +1686,7 @@ class MySQLDatabase(Database): 'primary_key': 'INTEGER AUTO_INCREMENT', 'text': 'LONGTEXT', } - for_update_support = True + for_update = True interpolation = '%s' o...
Fix for_update support for MySQL
coleifer_peewee
train
py
c8526170d580eea5b401ceb114ac3562ac3d96b7
diff --git a/src/org/dita/dost/reader/MergeMapParser.java b/src/org/dita/dost/reader/MergeMapParser.java index <HASH>..<HASH> 100644 --- a/src/org/dita/dost/reader/MergeMapParser.java +++ b/src/org/dita/dost/reader/MergeMapParser.java @@ -122,6 +122,7 @@ public class MergeMapParser extends AbstractXMLReader { int at...
fix bug # <I> Image referenced in map is not found, topicmerge breaks
dita-ot_dita-ot
train
java
e5654394a36ef5253c6cd858df1824f4a0032d36
diff --git a/fluent_contents/models/fields.py b/fluent_contents/models/fields.py index <HASH>..<HASH> 100644 --- a/fluent_contents/models/fields.py +++ b/fluent_contents/models/fields.py @@ -178,6 +178,12 @@ class PlaceholderField(PlaceholderRelation): slot=self.slot ) + # Rem...
Fix <I> error at delete page with PlaceholderField in use. The forward-relation of the reverse-relation needs to exist, however it is not that important right now. Leave it as None for the moment.
django-fluent_django-fluent-contents
train
py
2ababfa53c2c030d94d1a92d6a8646f5ee07b631
diff --git a/contactform/controllers/ContactFormController.php b/contactform/controllers/ContactFormController.php index <HASH>..<HASH> 100644 --- a/contactform/controllers/ContactFormController.php +++ b/contactform/controllers/ContactFormController.php @@ -30,7 +30,11 @@ class ContactFormController extends BaseContro...
Fix a bug where the "allowAttachments" setting wasn't being enforced.
craftcms_contact-form
train
php
72af507f4ab2ed852c5974fc1df595e3799a6017
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ CLASS_VERSION = '2.5.0' MAJOR = 0 MINOR = 1 MICRO = 15 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) DISTNAME = 'classylss'
remove dev from <I>
nickhand_classylss
train
py
83dc2654644c5a6d6679cc74ab515f5f9ef07c9c
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -384,7 +384,7 @@ exports.extend = function extend(newConf) { }; var isLocalUIUrl = function(url) { var host = getHostname(url); - return isWebUIHost() || !!config.pluginHostMap[host]; + ret...
feat: Support custom the hostname of plugin by cli
avwo_whistle
train
js
a3ee9d21dd90f91e2b857e4606f599f5d8d4b7b4
diff --git a/main.py b/main.py index <HASH>..<HASH> 100644 --- a/main.py +++ b/main.py @@ -10,9 +10,9 @@ def main(filename=""): return renderer.render(markdown) if __name__ == "__main__": - try: + if len(sys.argv) > 1: print(main(sys.argv[1])) - except IndexError: + else: try: ...
🐛 removed try-except as control structure
miyuchina_mistletoe
train
py
4a5fc6590e2150d86550de181c3281d09d4e1412
diff --git a/src/auth/log-out.js b/src/auth/log-out.js index <HASH>..<HASH> 100644 --- a/src/auth/log-out.js +++ b/src/auth/log-out.js @@ -13,7 +13,7 @@ export default function logOut () { log.debug('API: Log out successful.') return getSession() }, function onError (error) { - log.debug('Log out error....
Makes logout method always return stringifiable error
archilogic-com_3dio-js
train
js
d8aafe7e19daf24f7cea75ac3535c935aefb4ef3
diff --git a/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/InstrumentsReflected.java b/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/InstrumentsReflected.java index <HASH>..<HASH> 100644 --- a/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/Instrumen...
Removed unnecessary logs while trying to check instruments for android
wix_Detox
train
java
5c9ed1200719f20e8e8edb2901b943c63102fd97
diff --git a/cronofy.php b/cronofy.php index <HASH>..<HASH> 100644 --- a/cronofy.php +++ b/cronofy.php @@ -339,6 +339,7 @@ class Cronofy String location.long : The String describing the event's longitude. OPTIONAL Array reminders : An array of arrays detailing a length of time and a quantity. OPTI...
Add transparency to upsert_event
cronofy_cronofy-php
train
php
97ce3fb5f60c2de4d2d76e7201b01212b64361c2
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index <HASH>..<HASH> 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -10587,8 +10587,10 @@ class NDFrame(PandasObject, SelectionMixin, indexing.IndexingMixin): # [assignment] cls.all = all # type: ignore[assignment] + ...
BUG: Placeholders not being filled on docstrings (#<I>)
pandas-dev_pandas
train
py
c8277e1b02b91731d11c750181b38d7128d18b7b
diff --git a/etcdmain/config_test.go b/etcdmain/config_test.go index <HASH>..<HASH> 100644 --- a/etcdmain/config_test.go +++ b/etcdmain/config_test.go @@ -460,8 +460,19 @@ func TestConfigFileElectionTimeout(t *testing.T) { }, { ElectionMs: 60000, + TickMs: 10000, errStr: "is too long, and should...
etcdmain: test wrong heartbeat-interval, election-timeout in TestConfigFileElectionTimeout
etcd-io_etcd
train
go
2c0e2df02d3c970606e384b3fdccec42e06fd1f9
diff --git a/src/Search/Services/SearchableService.php b/src/Search/Services/SearchableService.php index <HASH>..<HASH> 100644 --- a/src/Search/Services/SearchableService.php +++ b/src/Search/Services/SearchableService.php @@ -151,12 +151,12 @@ class SearchableService // Anonymous member canView() for ...
FIX Don't assume DataObject::canView always returns bool (#<I>) Because there is no return value typehinting in DataObject::canView, the value returned from that method can be of any type. We must cast to boolean before returning the value to avoid possible errors with non-boolean return types.
silverstripe_silverstripe-fulltextsearch
train
php
507df51bdab093f9c39bd3a8295aefa76da903be
diff --git a/src/BoomCMS/Database/Models/Chunk/Linkset.php b/src/BoomCMS/Database/Models/Chunk/Linkset.php index <HASH>..<HASH> 100644 --- a/src/BoomCMS/Database/Models/Chunk/Linkset.php +++ b/src/BoomCMS/Database/Models/Chunk/Linkset.php @@ -6,7 +6,7 @@ class Linkset extends BaseChunk { protected $table = 'chunk...
Fixed declaration of model create methods not compatible with Illuminate\Database\Eloquent\Model
boomcms_boom-core
train
php,php
9f28f7bed8d734bffda5ad72dfd0550a24876ead
diff --git a/test/integration/test-property-types.js b/test/integration/test-property-types.js index <HASH>..<HASH> 100644 --- a/test/integration/test-property-types.js +++ b/test/integration/test-property-types.js @@ -6,11 +6,16 @@ assert.equal(Property.check(String).type, "text"); assert.equal(Property.check(Number)...
Updates tests for property types to include enum and object
dresende_node-orm2
train
js
e7e179d93c7c5a991adb9486fd713271f9202086
diff --git a/lints/lint_dnsname_bad_character_in_label.go b/lints/lint_dnsname_bad_character_in_label.go index <HASH>..<HASH> 100644 --- a/lints/lint_dnsname_bad_character_in_label.go +++ b/lints/lint_dnsname_bad_character_in_label.go @@ -12,7 +12,7 @@ type DNSNameProperCharacters struct { } func (l *DNSNameProperC...
Add missing [ to dnsNameRegexp. (#<I>)
zmap_zlint
train
go
4c89ed2e27fb1ae69cffb3ef66956b17abac8782
diff --git a/lib/node_modules/@stdlib/regexp/native-function/lib/index.js b/lib/node_modules/@stdlib/regexp/native-function/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/node_modules/@stdlib/regexp/native-function/lib/index.js +++ b/lib/node_modules/@stdlib/regexp/native-function/lib/index.js @@ -60,8 +60,3 @@ set...
Delete duplicated module.exports
stdlib-js_stdlib
train
js
3cf7ea55d3acbce0968dca8208d6c0911fff90fb
diff --git a/application/tests/Bootstrap.php b/application/tests/Bootstrap.php index <HASH>..<HASH> 100644 --- a/application/tests/Bootstrap.php +++ b/application/tests/Bootstrap.php @@ -324,6 +324,9 @@ switch (ENVIRONMENT) /* require __DIR__ . '/_ci_phpunit_test/patcher/bootstrap.php'; MonkeyPatchManager::init([ + ...
docs: how to enable debug mode and set the log file path, as comment
kenjis_ci-phpunit-test
train
php
084897378ec187db62b1f6f3ea8570dde93547f2
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,7 +1,7 @@ /** * Pon task for file system * @module pon-task-fs - * @version 2.1.0 + * @version 2.1.1 */ 'use strict'
[ci skip] Travis CI committed after build
realglobe-Inc_pon-task-fs
train
js
e66eddb15d8a3d8eb74bdc09b3d339130bc05ab3
diff --git a/js/lib/mediawiki.Util.js b/js/lib/mediawiki.Util.js index <HASH>..<HASH> 100644 --- a/js/lib/mediawiki.Util.js +++ b/js/lib/mediawiki.Util.js @@ -187,7 +187,7 @@ var HTML5 = require( 'html5' ).HTML5, Object.freeze(o); // First freeze the object. for (var propKey in o) { var prop = o[propKey]; - ...
Fix a deepFreeze crash This fixes a crasher from a client log where isFrozen was called on a non-object. 'foo instanceof Object' seems to be the better test for freeze, and is used to test the top-level object anyway. Change-Id: Ice<I>c<I>d<I>df<I>edc5a7f1ec4df<I>e<I>e<I>c
wikimedia_parsoid
train
js
0a9e9f6c0e1001e66e606c9f2fded08c8829ccad
diff --git a/src/Uri.php b/src/Uri.php index <HASH>..<HASH> 100644 --- a/src/Uri.php +++ b/src/Uri.php @@ -669,7 +669,7 @@ class Uri implements UriInterface return preg_replace_callback( '/(?:[^' . self::CHAR_UNRESERVED . ':@&=\+\$,\/;%]+|%(?![A-Fa-f0-9]{2}))/', - [$this, 'encodeUrl']...
Renamed `encodeUrl` to `urlEncodeChar` - to better describe what it's actually doing (it's not encoding a full URL)
phly_http
train
php
090a397e3f9273c610ba4f2cf497f96c9eca4c64
diff --git a/oplus/version.py b/oplus/version.py index <HASH>..<HASH> 100644 --- a/oplus/version.py +++ b/oplus/version.py @@ -1 +1 @@ -version='6.0.2.dev2' +version='6.0.2.dev3'
[skip ci] updated version as <I>.dev3
openergy_oplus
train
py
02c564c1df4fbda3480ac4aee5ae8ba59563cbd8
diff --git a/pharen.php b/pharen.php index <HASH>..<HASH> 100755 --- a/pharen.php +++ b/pharen.php @@ -281,7 +281,7 @@ class Scope{ public function get_lexing($var_name){ $value = $this->bindings[$var_name]->compile(); - return 'Lexical::$scopes['.$this->id.']["'.$var_name.'"] = '.$value.';'; + ...
Fixed bug where lexings were referring to the value used for the binding, not the variable itself.
Scriptor_pharen
train
php
583ba1f6d7b4ecd9a79598dcfede8cf6ac48f811
diff --git a/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java b/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java index <HASH>..<HASH> 100644 --- a/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java +++ b/src/main/java/moe/tristan/easyfxml/spring/SpringContext.java @@ -31,7 +31,7 @@ pub...
Slight signature change to apply to referring JavaDoc
Tristan971_EasyFXML
train
java
db20620281ea229b6222d04ab22bcd5d9d8585cb
diff --git a/hazelcast/src/main/java/com/hazelcast/client/impl/ClientHeartbeatMonitor.java b/hazelcast/src/main/java/com/hazelcast/client/impl/ClientHeartbeatMonitor.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/client/impl/ClientHeartbeatMonitor.java +++ b/hazelcast/src/main/java/com/haz...
Include owner connection to heart beat check When client is inactive, server needs to close the connection so that resources(e.g locks) associated with that connection can be released. When there are 2 connection from client to server, we did not want to check owner connection since there were no heartbeat send over i...
hazelcast_hazelcast
train
java
a745076dc32fb10ff3471b016e8fa463a5c14dd7
diff --git a/lib/gemsmith/cli.rb b/lib/gemsmith/cli.rb index <HASH>..<HASH> 100644 --- a/lib/gemsmith/cli.rb +++ b/lib/gemsmith/cli.rb @@ -111,7 +111,7 @@ module Gemsmith desc "-v, [version]", "Show version." map "-v" => :version def version - print_version + say "Gemsmith " + VERSION end ...
Removed the print_version method.
bkuhlmann_gemsmith
train
rb
bbe331d6ac6976aae997ce712fb431186cec4f9f
diff --git a/lib/webpacker/compiler.rb b/lib/webpacker/compiler.rb index <HASH>..<HASH> 100644 --- a/lib/webpacker/compiler.rb +++ b/lib/webpacker/compiler.rb @@ -87,7 +87,7 @@ class Webpacker::Compiler end def compilation_digest_path - config.cache_path.join(".last-compilation-digest-#{Webpacker.env}"...
Make compilation digest file visible (#<I>)
rails_webpacker
train
rb,rb
4adaa875b72c61fa6df4156dd18fa8e5f957f034
diff --git a/lib/paper_trail/version.rb b/lib/paper_trail/version.rb index <HASH>..<HASH> 100644 --- a/lib/paper_trail/version.rb +++ b/lib/paper_trail/version.rb @@ -116,7 +116,8 @@ class Version < ActiveRecord::Base end def index - sibling_versions.select(:id).order("id ASC").map(&:id).index(self.id) + ...
Refactor index method on version to call the model's primary key instead of assuming it is "id."
paper-trail-gem_paper_trail
train
rb
b866b33dee5bad568f1533f45b3f36ecca9c05be
diff --git a/superset/jinja_context.py b/superset/jinja_context.py index <HASH>..<HASH> 100644 --- a/superset/jinja_context.py +++ b/superset/jinja_context.py @@ -43,7 +43,7 @@ def url_param(param, default=None): def current_user_id(): """The id of the user who is currently logged in""" - if g.user: + if ...
[bugfix] Template rendering failed: '_AppCtxGlobals' object has no attribute 'user' (#<I>) Somehow the nature of `g` in Flask has changed where `g.user` used to be provided outside the web request scope and its not anymore. The fix here should address that.
apache_incubator-superset
train
py
b21762f91cbd18d81637843aecba454ff8b5dea3
diff --git a/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTest.java b/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTest.java index <HASH>..<HASH> 100644 --- a/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTest.java +++ b/okhttp-tests/src/test/java/okhttp3/internal/tls/ClientAuthTes...
Fix master build for JDK <I>
square_okhttp
train
java
1a32d9a7e1a89ef1d9d944e6ac23f5bf5d81b3ee
diff --git a/salt/modules/yumpkg.py b/salt/modules/yumpkg.py index <HASH>..<HASH> 100644 --- a/salt/modules/yumpkg.py +++ b/salt/modules/yumpkg.py @@ -5,6 +5,8 @@ Support for YUM - rpm Python module - rpmUtils Python module ''' +import re + try: import yum import rpm
Add missing re import to yumpkg
saltstack_salt
train
py
c41652878c969db1423a5dd2803c8a4f7d46ea78
diff --git a/PHPStan/PropertyReflectionExtension.php b/PHPStan/PropertyReflectionExtension.php index <HASH>..<HASH> 100644 --- a/PHPStan/PropertyReflectionExtension.php +++ b/PHPStan/PropertyReflectionExtension.php @@ -20,8 +20,6 @@ use SignpostMarv\DaftObject\TypeParanoia; */ class PropertyReflectionExtension extend...
removing unreferenced const
SignpostMarv_daft-object
train
php
3ae90859f317c898fcf5b836c3fc1311ad5a5a8e
diff --git a/provider/joyent/provider.go b/provider/joyent/provider.go index <HASH>..<HASH> 100644 --- a/provider/joyent/provider.go +++ b/provider/joyent/provider.go @@ -30,7 +30,7 @@ var _ simplestreams.HasRegion = (*joyentEnviron)(nil) // RestrictedConfigAttributes is specified in the EnvironProvider interface. ...
lp<I>: Use controller region for hosted models Hosted models in joyent were not using the same region as the controller. sdc-url should not be overwritten / set to default for hosted models.
juju_juju
train
go
ecfb5eb9b66769dc335d71b230eb6036a6308973
diff --git a/lib/seahorse/client/handler_list.rb b/lib/seahorse/client/handler_list.rb index <HASH>..<HASH> 100644 --- a/lib/seahorse/client/handler_list.rb +++ b/lib/seahorse/client/handler_list.rb @@ -13,7 +13,6 @@ module Seahorse class Client - # @api private class HandlerList include Enumerab...
HandlerList is now publically documented.
aws_aws-sdk-ruby
train
rb
1356ebbef0c709001d0e95049d3a0ad7a29e0a49
diff --git a/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.php b/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.php +++ b/tests/Unit/Suites/Product/ProductDetailViewSnippetRendererTest.p...
Issue #<I>: Don't abuse carry and initial value for snippet key
lizards-and-pumpkins_catalog
train
php
6662293b1b4041ec279eb236beb33f42b708982d
diff --git a/container/docker/engine.py b/container/docker/engine.py index <HASH>..<HASH> 100644 --- a/container/docker/engine.py +++ b/container/docker/engine.py @@ -557,7 +557,7 @@ class Engine(BaseEngine, DockerSecretsMixin): repo = image tag = 'latest' if ':' in image: - repo, ...
Update split in docker pull (#<I>)
ansible_ansible-container
train
py
9a8057074bacbd1983c379b30a447808f52ee3af
diff --git a/pyrogram/client/methods/users/set_profile_photo.py b/pyrogram/client/methods/users/set_profile_photo.py index <HASH>..<HASH> 100644 --- a/pyrogram/client/methods/users/set_profile_photo.py +++ b/pyrogram/client/methods/users/set_profile_photo.py @@ -18,22 +18,26 @@ from pyrogram.api import functions fr...
Allow uploading profile photos using file-like objects
pyrogram_pyrogram
train
py
e257b346375b695e438490c7def42ad704ec7092
diff --git a/src/jquery.webui-popover.js b/src/jquery.webui-popover.js index <HASH>..<HASH> 100644 --- a/src/jquery.webui-popover.js +++ b/src/jquery.webui-popover.js @@ -421,6 +421,8 @@ if (that.options.async.success) { that.options.async.success(that, data); ...
resetting xhr on complete callback
sandywalker_webui-popover
train
js
fd6641703b942fb8b014ecc2486a8203c851a508
diff --git a/axiom/batch.py b/axiom/batch.py index <HASH>..<HASH> 100644 --- a/axiom/batch.py +++ b/axiom/batch.py @@ -22,9 +22,7 @@ except ImportError: manhole_ssh = None from twisted.conch import interfaces as iconch -from epsilon import extime, process, cooperator, modal - -from vertex import juice +from eps...
Re-merge vertex=>epsilon juice move. Fixes #<I> (again) Author: glyph Reviewer: mithrandi Hope that it doesn't break anything significant this time...
twisted_axiom
train
py
a0f608146e204b6c87488ad9a9ea987a30d90037
diff --git a/src/Vector.php b/src/Vector.php index <HASH>..<HASH> 100644 --- a/src/Vector.php +++ b/src/Vector.php @@ -68,7 +68,7 @@ class Vector * Check whether the given vector is the same as this vector. * * @api - * @param self $b The vector to check for equality. + * @param \Nubs\Vectorix...
Use fully qualified class name to make php analyzer happy.
nubs_vectorix
train
php
901a7241973d85f9734d66bc56946e1e417087ec
diff --git a/integrationtests/integrationtests_suite_test.go b/integrationtests/integrationtests_suite_test.go index <HASH>..<HASH> 100644 --- a/integrationtests/integrationtests_suite_test.go +++ b/integrationtests/integrationtests_suite_test.go @@ -5,7 +5,6 @@ import ( "crypto/md5" "encoding/hex" "fmt" - "go/bu...
determine the path to the quic_clients at runtime in integration tests
lucas-clemente_quic-go
train
go
b6ede26635c9d2e211cfb5f8ec907b100481e83f
diff --git a/memorious/operations/aleph.py b/memorious/operations/aleph.py index <HASH>..<HASH> 100644 --- a/memorious/operations/aleph.py +++ b/memorious/operations/aleph.py @@ -78,4 +78,4 @@ def get_collection_id(context, session): def make_url(path): - return urljoin(settings.ALEPH_HOST, '/api/1/%s' % path) ...
Env for aleph api version
alephdata_memorious
train
py,py
cbe621247e83e4218a5909a7248a6f45ef8671c1
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -161,14 +161,14 @@ export class Driver { if (this.config.missing === false) { if (options.missing === true) { - return fn(err, results, misses); + return fn(errors, r...
fix to properly return the errors i get multi case
bojand_couchbase-driver
train
js
6e9bb05b3b0fca7a42a12ca84a9813edd152e055
diff --git a/tests/index.js b/tests/index.js index <HASH>..<HASH> 100644 --- a/tests/index.js +++ b/tests/index.js @@ -35,6 +35,6 @@ if( hasQuietFlag() ) { await Promise.all( (await readdir(testdir)) .filter(name => name.endsWith(TEST_SUFFIX)) - .map(testscript => harness.spawn(NODE_BINARY, [...exec...
tests: arguably, `testfile` fits better with `testdir` than `testscript`
apparebit_js-junction
train
js
e9dfccc61632aafeb7ee79de29df397e2430b409
diff --git a/runtime/default.go b/runtime/default.go index <HASH>..<HASH> 100644 --- a/runtime/default.go +++ b/runtime/default.go @@ -85,6 +85,7 @@ func newService(s *Service, c CreateOptions) *service { Env: c.Env, Args: args, }, + closed: make(chan bool), output: c.Output, } }
Fix panic caused when ctrl+c a non started service
micro_go-micro
train
go
a225bac31321efdc3211409945f75bfc4b499faa
diff --git a/src/python/dxpy/cli/exec_io.py b/src/python/dxpy/cli/exec_io.py index <HASH>..<HASH> 100644 --- a/src/python/dxpy/cli/exec_io.py +++ b/src/python/dxpy/cli/exec_io.py @@ -402,7 +402,7 @@ def get_input_single(param_desc): + BOLD() + param_desc['name'] + ENDC() + ' is not in the li...
dx run: Avoid stack trace on ^D
dnanexus_dx-toolkit
train
py
506ea1e5ba1755c0c4a8c14ca02559837caa3548
diff --git a/nurbs/__init__.py b/nurbs/__init__.py index <HASH>..<HASH> 100644 --- a/nurbs/__init__.py +++ b/nurbs/__init__.py @@ -24,4 +24,4 @@ Of course you can :-) Please feel free to contact me about the NURBS-Python pack """ -__version__ = "2.3" +__version__ = "2.3.1"
Version bumped to <I>
orbingol_NURBS-Python
train
py
6772bf3896b672165ad4c237e893b8a6170d4f1d
diff --git a/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php b/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php index <HASH>..<HASH> 100644 --- a/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php +++ b/lib/AktiveMerchant/Billing/Gateways/HsbcSecureEpayments.php @@ -260,8 +260,7 @@ XML; ...
hsbc secure epayments country method call fix
akDeveloper_Aktive-Merchant
train
php
7857b048b7c9f2ef84c5a939f7ebed0cf2af11b9
diff --git a/src/Krystal/Db/Tests/QueryBuilderTest.php b/src/Krystal/Db/Tests/QueryBuilderTest.php index <HASH>..<HASH> 100644 --- a/src/Krystal/Db/Tests/QueryBuilderTest.php +++ b/src/Krystal/Db/Tests/QueryBuilderTest.php @@ -146,6 +146,14 @@ class QueryBuilderTest extends \PHPUnit_Framework_TestCase $this->v...
Added test case for selected table name
krystal-framework_krystal.framework
train
php
71fae7b27f3299b01b155fde9fa20d83b14eb4ef
diff --git a/lib/actions.js b/lib/actions.js index <HASH>..<HASH> 100644 --- a/lib/actions.js +++ b/lib/actions.js @@ -501,6 +501,20 @@ exports.injectJs = function(file) { }; /* + * Includes javascript script from a url on the page. + * @param {string} url - The url to a javascript file to include o the page. + */ ...
Add includeJs action Fixes #<I>
johntitus_node-horseman
train
js
6ffc1d5bcabd1d797feaf96f4ff3ee33ae0fbbaf
diff --git a/actor-apps/core/src/main/java/im/actor/core/modules/internal/messages/OwnReadActor.java b/actor-apps/core/src/main/java/im/actor/core/modules/internal/messages/OwnReadActor.java index <HASH>..<HASH> 100644 --- a/actor-apps/core/src/main/java/im/actor/core/modules/internal/messages/OwnReadActor.java +++ b/a...
fix(core): Fixing notifications
actorapp_actor-platform
train
java
92b23673e60569b74ac48304579866c839008e1a
diff --git a/src/data.js b/src/data.js index <HASH>..<HASH> 100644 --- a/src/data.js +++ b/src/data.js @@ -29,10 +29,10 @@ Data.prototype = { // If not, create one if ( !unlock ) { unlock = Data.uid++; - descriptor[ this.expando ] = { value: unlock }; // Secure it in a non-enumerable, non-writable pro...
No ticket: Move property descriptor assignment to save a byte. Close gh-<I>.
jquery_jquery
train
js
d60b2631f5a7af65c78da3350553a538cbadb368
diff --git a/lib/builderator/control/version/git.rb b/lib/builderator/control/version/git.rb index <HASH>..<HASH> 100644 --- a/lib/builderator/control/version/git.rb +++ b/lib/builderator/control/version/git.rb @@ -16,6 +16,8 @@ module Builderator ## Is there a .git repo in the project root? def sel...
Support setting GIT_DIR for git scm provider
rapid7_builderator
train
rb
8db01976b417578badbbe0104d9b91909f6d130c
diff --git a/Kwf/Controller/Action/User/BackendLoginController.php b/Kwf/Controller/Action/User/BackendLoginController.php index <HASH>..<HASH> 100644 --- a/Kwf/Controller/Action/User/BackendLoginController.php +++ b/Kwf/Controller/Action/User/BackendLoginController.php @@ -115,6 +115,11 @@ class Kwf_Controller_Action_...
Implement fallback for auth-method with missing login-redirect-url
koala-framework_koala-framework
train
php
2f3258e93eba5a8227f1e64fefde6e563d68e823
diff --git a/boot/boot.go b/boot/boot.go index <HASH>..<HASH> 100644 --- a/boot/boot.go +++ b/boot/boot.go @@ -55,19 +55,19 @@ func All() error { } help("Setup complete!\n\nNext steps: \n - apex infra plan - show an execution plan for Terraform configs\n - apex infra apply - apply Terraform configs\n - apex ...
remove else branch to de-nest
apex_apex
train
go
0eafabe15d16f54217d3a5f514c245c236f1a303
diff --git a/src/trumbowyg.js b/src/trumbowyg.js index <HASH>..<HASH> 100644 --- a/src/trumbowyg.js +++ b/src/trumbowyg.js @@ -1021,8 +1021,8 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', { $('body', d).on('mousedown.' + t.eventNamespace, function (e) { if (!$dropd...
allow Trumbowyg working with shadow dom
Alex-D_Trumbowyg
train
js
e9c9952fb7f8afe5aa37d0ed7d9c78879b2b09a7
diff --git a/blockstack_cli_0.14.1/blockstack_client/proxy.py b/blockstack_cli_0.14.1/blockstack_client/proxy.py index <HASH>..<HASH> 100644 --- a/blockstack_cli_0.14.1/blockstack_client/proxy.py +++ b/blockstack_cli_0.14.1/blockstack_client/proxy.py @@ -686,12 +686,12 @@ def ping(proxy=None): schema = { ...
update `ping()` response schema to match <I> server response
blockstack_blockstack-core
train
py
b2eeff0f7b31478b83994d3376c3ef1bdbb76e24
diff --git a/lib/sequent/core/transactions/no_transactions.rb b/lib/sequent/core/transactions/no_transactions.rb index <HASH>..<HASH> 100644 --- a/lib/sequent/core/transactions/no_transactions.rb +++ b/lib/sequent/core/transactions/no_transactions.rb @@ -1,7 +1,11 @@ module Sequent module Core module Transacti...
Add comment to clarify intent of NoTransactions
zilverline_sequent
train
rb
94d6c61b66e7499396a6c5d6bccb4ab5846cb1a6
diff --git a/asyncio_xmpp/callbacks.py b/asyncio_xmpp/callbacks.py index <HASH>..<HASH> 100644 --- a/asyncio_xmpp/callbacks.py +++ b/asyncio_xmpp/callbacks.py @@ -33,6 +33,9 @@ class CallbacksWithToken: def remove_callback(self, token): self._callbacks[token.key].pop(token) + def remove_callback_fn(s...
Allow to remove callbacks without token if they match exactly
horazont_aioxmpp
train
py
4f27123e3318dc3f4870cd8b1984b492af772ce2
diff --git a/ontrack-web/src/app/service/service.buildfilter.js b/ontrack-web/src/app/service/service.buildfilter.js index <HASH>..<HASH> 100644 --- a/ontrack-web/src/app/service/service.buildfilter.js +++ b/ontrack-web/src/app/service/service.buildfilter.js @@ -113,6 +113,10 @@ angular.module('ot.service.buildfilter',...
#<I> Editing shared filters
nemerosa_ontrack
train
js
d51ee3111e4b7b53d03537530857b2f9ef64be93
diff --git a/builtin/providers/openstack/resource_openstack_compute_secgroup_v2.go b/builtin/providers/openstack/resource_openstack_compute_secgroup_v2.go index <HASH>..<HASH> 100644 --- a/builtin/providers/openstack/resource_openstack_compute_secgroup_v2.go +++ b/builtin/providers/openstack/resource_openstack_compute_...
always need both name and description when updating
hashicorp_terraform
train
go
02d526c0b7dc68558c3dc104dbd63b610d8c7e08
diff --git a/aiortc/rtcrtpreceiver.py b/aiortc/rtcrtpreceiver.py index <HASH>..<HASH> 100644 --- a/aiortc/rtcrtpreceiver.py +++ b/aiortc/rtcrtpreceiver.py @@ -69,7 +69,11 @@ class RTCRtpReceiver: # skip RTCP for now if is_rtcp(data): - for packet in RtcpPacket.parse(data): + ...
[rtp] don't bomb when receiving malformed RTCP
aiortc_aiortc
train
py,py
1474bb412d4accc3597065f207cecc3edf20178b
diff --git a/couchbase/tests/cases/append_t.py b/couchbase/tests/cases/append_t.py index <HASH>..<HASH> 100644 --- a/couchbase/tests/cases/append_t.py +++ b/couchbase/tests/cases/append_t.py @@ -19,7 +19,7 @@ from couchbase import FMT_JSON, FMT_PICKLE, FMT_BYTES, FMT_UTF8 from couchbase.exceptions import (KeyExistsE...
append_t: Newer server build returns ENOENT rather than NOT_STORED The latest builds of the server return this error code (which is actually more correct anyway). Change-Id: I<I>e<I>b<I>b<I>bf<I>dab<I>bf<I>c Reviewed-on: <URL>
couchbase_couchbase-python-client
train
py
01407520719e9784c884f5aacfa0fa5db2908f7b
diff --git a/lib/webspicy/version.rb b/lib/webspicy/version.rb index <HASH>..<HASH> 100644 --- a/lib/webspicy/version.rb +++ b/lib/webspicy/version.rb @@ -2,7 +2,7 @@ module Webspicy module Version MAJOR = 0 MINOR = 20 - TINY = 15 + TINY = 16 end VERSION = "#{Version::MAJOR}.#{Version::MINOR}...
Bump to <I> and release.
enspirit_webspicy
train
rb
a225633050e0501a187c9ccb9a8b167327f31e5c
diff --git a/lib/reporters/dot_reporter.js b/lib/reporters/dot_reporter.js index <HASH>..<HASH> 100644 --- a/lib/reporters/dot_reporter.js +++ b/lib/reporters/dot_reporter.js @@ -84,7 +84,7 @@ DotReporter.prototype = { printf(this.out, '\n%s', indent(error.stack, 5)); } - this.out.write('\n'); + ...
separate each test failure report by an empty line
testem_testem
train
js
3ed03bcd5a5b4f92aa295299dc69d9dc7f110281
diff --git a/cliTool/argumentParser.js b/cliTool/argumentParser.js index <HASH>..<HASH> 100644 --- a/cliTool/argumentParser.js +++ b/cliTool/argumentParser.js @@ -63,7 +63,9 @@ function getFormat(formatString) { else if(format == 'chicago' || format == 'c') { return require('../core/model/formats/chicago'); } - ...
added bibtexmisc formatting style to the parser
mozillascience_software-citation-tools
train
js
31cf0a1563f4b4119750dd6b7f125fc543e96923
diff --git a/packages/bonde-admin/src/mobilizations/paths.js b/packages/bonde-admin/src/mobilizations/paths.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin/src/mobilizations/paths.js +++ b/packages/bonde-admin/src/mobilizations/paths.js @@ -1,5 +1,5 @@ export const mobilizations = () => '/mobilizations' -exp...
fix(admin): change env redirect to mobilization on public version
nossas_bonde-client
train
js
b96d1d4657eb621c2a13699a951fb22d997d1e86
diff --git a/examples/WhenTest.php b/examples/WhenTest.php index <HASH>..<HASH> 100644 --- a/examples/WhenTest.php +++ b/examples/WhenTest.php @@ -1,10 +1,5 @@ <?php -/** - * Some of these would make good unit tests, but importing them - * doesn't solve the problem as the more important ones are the failures - * We ...
Removing comment about end2end testing, which has been addresses by test/Eris/ExampleEnd2EndTest.php
giorgiosironi_eris
train
php
68c31c8f6c7f62204e9d91f9d05574bfc438a867
diff --git a/dolo/tests/test_customdr.py b/dolo/tests/test_customdr.py index <HASH>..<HASH> 100644 --- a/dolo/tests/test_customdr.py +++ b/dolo/tests/test_customdr.py @@ -1,6 +1,6 @@ def test_custom_dr(): - from dolo import yaml_import + from dolo import yaml_import, simulate, time_iteration import numpy ...
FIX: missing imports in tests.
EconForge_dolo
train
py
5854be258739cdca941994b209957df4553279b5
diff --git a/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js b/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js index <HASH>..<HASH> 100644 --- a/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js +++ b/lib/editor/tinymce/plugins/moodlenolink/tinymce/editor_plugin.js @@ -4...
MDL-<I> fix JS error when moodlenolink button not present in toolbar Thanks Rossiani Wijaya for discovering this issue!
moodle_moodle
train
js
c7421ae143c45b3e75c2bd6dcc86eba0d39bcf59
diff --git a/google-api-client/src/main/java/com/google/api/client/googleapis/auth/oauth2/OAuth2Utils.java b/google-api-client/src/main/java/com/google/api/client/googleapis/auth/oauth2/OAuth2Utils.java index <HASH>..<HASH> 100644 --- a/google-api-client/src/main/java/com/google/api/client/googleapis/auth/oauth2/OAuth2...
Mark OAuth2Utils as Beta It isn't really meant to be used generally, but needs to be exposed for the different components to reuse code.
googleapis_google-api-java-client
train
java
eeffea997e9c340bac30174ad15d0c6e00950687
diff --git a/visidata/settings.py b/visidata/settings.py index <HASH>..<HASH> 100644 --- a/visidata/settings.py +++ b/visidata/settings.py @@ -308,8 +308,8 @@ def loadConfigAndPlugins(vd, args): options.visidata_dir = args.visidata_dir or os.getenv('VD_DIR', '') or options.visidata_dir options.config = args.c...
[plugins-] sys.path needs str #<I>
saulpw_visidata
train
py
a24de4baf50ad3b7d77e765b3bde24231dd46b32
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -9,19 +9,16 @@ var normalizeArgs = require('./normalize-args'); module.exports = function (opts) { opts = normalizeArgs(arguments); - var cliPath; - var location; + var cliPath = resolveSync(opts.path, process.cwd()); + v...
return null from `resolveSync` instead of throwing an error
jamestalmage_fallback-cli
train
js
f3cf96cc38baa24a41bf60b59f4adec556397645
diff --git a/src/primitives/a-tube.js b/src/primitives/a-tube.js index <HASH>..<HASH> 100644 --- a/src/primitives/a-tube.js +++ b/src/primitives/a-tube.js @@ -15,7 +15,7 @@ module.exports.Primitive = AFRAME.registerPrimitive('a-tube', { path: 'tube.path', segments: 'tube.segments', radius...
[a-tube] Fix primitive and update issues. (fixes #<I>, #<I>)
donmccurdy_aframe-extras
train
js
1c882c8c9c255178ce93b1b21684547a1d9b5acb
diff --git a/swim/heal_via_discover_provider.go b/swim/heal_via_discover_provider.go index <HASH>..<HASH> 100644 --- a/swim/heal_via_discover_provider.go +++ b/swim/heal_via_discover_provider.go @@ -131,7 +131,6 @@ func (h *discoverProviderHealer) Heal() ([]string, error) { } h.previousHostListSize = len(hostList...
Don’t change the hostlist in place to prevent race conditions when a discovery provider returns the reference to a static hostlist. (#<I>)
uber_ringpop-go
train
go
9e6a0558af8994d9e0fbe99d0d3c0bf9475cb81b
diff --git a/lib/fog/aws/requests/rds/describe_db_instances.rb b/lib/fog/aws/requests/rds/describe_db_instances.rb index <HASH>..<HASH> 100644 --- a/lib/fog/aws/requests/rds/describe_db_instances.rb +++ b/lib/fog/aws/requests/rds/describe_db_instances.rb @@ -58,7 +58,7 @@ module Fog end ...
fix for RDS mocking to avoid state flipping between "modifying" and "available"
fog_fog
train
rb
4e4cc616577625925a4d30429df4e7af8eb8008b
diff --git a/everest/entities/aggregates.py b/everest/entities/aggregates.py index <HASH>..<HASH> 100644 --- a/everest/entities/aggregates.py +++ b/everest/entities/aggregates.py @@ -168,18 +168,14 @@ class OrmAggregate(Aggregate): return ent def iterator(self): - if not self._relationship is Non...
Optimized OrmAggregate.iterator.
helixyte_everest
train
py
f58088def544fb08af927568b4b42e321628a1f9
diff --git a/app/lib/actions/katello/repository/import_upload.rb b/app/lib/actions/katello/repository/import_upload.rb index <HASH>..<HASH> 100644 --- a/app/lib/actions/katello/repository/import_upload.rb +++ b/app/lib/actions/katello/repository/import_upload.rb @@ -13,6 +13,10 @@ module Actions plan_action(...
Fixes #<I> - Handle bad upload errors (#<I>)
Katello_katello
train
rb
16a34ea626c60c2643c108cf69bdc2c4fbfce506
diff --git a/src/mako/session/Session.php b/src/mako/session/Session.php index <HASH>..<HASH> 100644 --- a/src/mako/session/Session.php +++ b/src/mako/session/Session.php @@ -198,7 +198,7 @@ class Session protected function generateId() { - return md5(UUID::v4()); + return sha1(UUID::v4() . uniqid('session', tr...
Added more randomness to session IDs
mako-framework_framework
train
php
c21df32ef7167e6c94a16648f3688c1d9c27c08b
diff --git a/test/host/node_loader.js b/test/host/node_loader.js index <HASH>..<HASH> 100644 --- a/test/host/node_loader.js +++ b/test/host/node_loader.js @@ -42,12 +42,15 @@ global.gpfSourcesPath = "../../src/"; } - if ("release" === global.version) { + if (options.release) { + console.log...
Implemented version switch was not working...
ArnaudBuchholz_gpf-js
train
js
38ff23041636f8469c14be6766ebd79c253f027b
diff --git a/Gemfile b/Gemfile index <HASH>..<HASH> 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ source "https://rubygems.org" -# Specify your gem"s dependencies in sensu-transport.gemspec +# Specify your gem's dependencies in sensu-transport.gemspec gemspec diff --git a/lib/sensu/transport/base.rb b/lib/sens...
[redis-transport] updated transport api reconnect() to include force param
sensu_sensu-transport
train
Gemfile,rb,rb
9b7bbc619b4fe328188d9f12a438e148436fc9a6
diff --git a/event/event.js b/event/event.js index <HASH>..<HASH> 100644 --- a/event/event.js +++ b/event/event.js @@ -56,7 +56,7 @@ $.ready = function() { }; // If Mozilla is used -if ( $.browser == "mozilla" ) { +if ( $.browser == "mozilla" || $.browser == "opera" ) { // Use the handy event callback document....
DOMContentLoaded works in Opera 9b2+, so I have it firing for that now too - the means that there is a DOM Ready solution for every major browser! (Older version of Opera simply fallback to window.onload)
jquery_jquery
train
js
1ccd91ce66f32b332388afb7b250513dc0bbd3bd
diff --git a/runtests.py b/runtests.py index <HASH>..<HASH> 100644 --- a/runtests.py +++ b/runtests.py @@ -30,6 +30,7 @@ if not settings.configured: ROOT_URLCONF='allaccess.tests.urls', LOGIN_URL='/login/', LOGIN_REDIRECT_URL='/', + USE_TZ=True, )
Ensure tests are run with timezone support active. Currently passes without any warnings. Fixes #<I>
mlavin_django-all-access
train
py
757ebcdf4f1d04cff1734fe0246b12f5a3694295
diff --git a/src/lib/skemer.js b/src/lib/skemer.js index <HASH>..<HASH> 100644 --- a/src/lib/skemer.js +++ b/src/lib/skemer.js @@ -55,7 +55,7 @@ function shouldReplace(context) { * new value or a default value. Otherwise, the new value */ function setValueToType(context) { - var t, value; + var t, value, ...
- Fixed duplicated var declaration
MeldCE_skemer
train
js
2d5988d1cea9be72b2177118520337f70f61a965
diff --git a/src/mustache_core.js b/src/mustache_core.js index <HASH>..<HASH> 100644 --- a/src/mustache_core.js +++ b/src/mustache_core.js @@ -26,7 +26,7 @@ var canReflect = require("can-reflect"); // ## Helpers -var mustacheLineBreakRegExp = /(?:(^|(?:\r?)\n)(\s*)(\{\{([\s\S]*)\}\}\}?)([^\S\n\r]*)($|\r?\n))|(\{\{...
ungroup carriage return at beginning of mustacheLineBreakRegExp
canjs_can-stache
train
js
09f54b367430e44ee8f6da8261249b5cc0553b8f
diff --git a/packages/react-impression/src/components/Popover/Popover.js b/packages/react-impression/src/components/Popover/Popover.js index <HASH>..<HASH> 100644 --- a/packages/react-impression/src/components/Popover/Popover.js +++ b/packages/react-impression/src/components/Popover/Popover.js @@ -153,6 +153,7 @@ expor...
fix popover (#<I>)
NewDadaFE_react-impression
train
js
7b378405756d7863067402f106b2414fb152b66a
diff --git a/edc_notification/settings.py b/edc_notification/settings.py index <HASH>..<HASH> 100644 --- a/edc_notification/settings.py +++ b/edc_notification/settings.py @@ -10,7 +10,10 @@ APP_NAME = 'edc_notification' env = environ.Env() -ENVFILE = os.environ['ENVFILE'] or 'env.sample' +try: + ENVFILE = os.en...
refer to env.sample in travis tests
clinicedc_edc-notification
train
py
0682401413856ddde917c75e5100f172a74a7def
diff --git a/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBaseContentFields.php b/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBaseContentFields.php index <HASH>..<HASH> 100644 --- a/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBaseContentFields.php +++ b/lib/FieldMapper/ContentFieldMapper/BlockDocumentsBas...
EZP-<I>: Skipped empty object state groups during indexing (#<I>)
ezsystems_ezplatform-solr-search-engine
train
php
4eab6fec0820c625af2a4bdb1fbabe78604bcbda
diff --git a/libraries/common/components/Image/style.js b/libraries/common/components/Image/style.js index <HASH>..<HASH> 100644 --- a/libraries/common/components/Image/style.js +++ b/libraries/common/components/Image/style.js @@ -24,6 +24,9 @@ const image = css({ * Before there was a left:50%, translateX(-50%) hac...
PWA-<I> - even better comment
shopgate_pwa
train
js
1d01c657dd1168193abea47bb46756510957f522
diff --git a/wire/msgtx.go b/wire/msgtx.go index <HASH>..<HASH> 100644 --- a/wire/msgtx.go +++ b/wire/msgtx.go @@ -314,6 +314,21 @@ func (msg *MsgTx) TxHash() chainhash.Hash { return chainhash.DoubleHashH(buf.Bytes()) } +// WitnessHash generates the hash of the transaction serialized according to +// the new witne...
BIP<I>+wire: add a WitnessHash method to tx
btcsuite_btcd
train
go
83294d31fa2c8d06d6930636ba4620b1743160fa
diff --git a/spec/unit/knife/bootstrap_spec.rb b/spec/unit/knife/bootstrap_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/knife/bootstrap_spec.rb +++ b/spec/unit/knife/bootstrap_spec.rb @@ -1661,7 +1661,7 @@ describe Chef::Knife::Bootstrap do before do Chef::Config[:validation_key] = "/blah" ...
Relax the match for validation key path Because we expand the path to the validation key, the exact match of "/blah" under Windows was failing, because it expanded to "C:/blah"
chef_chef
train
rb
8acf76e94a8223b9c2c918593527fefa3d3f2c62
diff --git a/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/startup/SipHostConfig.java b/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/startup/SipHostConfig.java index <HASH>..<HASH> 100644 --- a/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/startup/SipHostConfig.java +++ b/sip-servle...
Fix for exploded directory deployment in Tomcat provided by Thomas Lenesey from Nexcom Systems git-svn-id: <URL>
RestComm_sip-servlets
train
java
768459a31c397ac35e478c557cebd0920cf6cd81
diff --git a/benchexec/tools/ultimate.py b/benchexec/tools/ultimate.py index <HASH>..<HASH> 100644 --- a/benchexec/tools/ultimate.py +++ b/benchexec/tools/ultimate.py @@ -131,7 +131,7 @@ class UltimateTool(benchexec.tools.template.BaseTool): launcher_jar = os.path.join(ultimatedir, jar) if os....
more verbosity for launcher jar error
sosy-lab_benchexec
train
py
ccaaa709dff7205c4a578a9047a6bb6c11e35fb1
diff --git a/pyodesys/tests/test_symbolic.py b/pyodesys/tests/test_symbolic.py index <HASH>..<HASH> 100644 --- a/pyodesys/tests/test_symbolic.py +++ b/pyodesys/tests/test_symbolic.py @@ -395,7 +395,7 @@ def test_long_chain_banded_scipy(n): min_time_band = min(min_time_band, time_band) check(yout_dens[-1, ...
add safety factor for timings in test suite
bjodah_pyodesys
train
py
ae26b481c9be9738e8d206fbfa5a2244219d5ce3
diff --git a/tests/test_goea_statsmodels.py b/tests/test_goea_statsmodels.py index <HASH>..<HASH> 100755 --- a/tests/test_goea_statsmodels.py +++ b/tests/test_goea_statsmodels.py @@ -18,7 +18,7 @@ def test_goea_statsmodels(log=sys.stdout): prt_if = lambda nt: nt.p_uncorrected < 0.0005 ## These will specify to...
Add multiple-test method, FDR adaptive Gavrilov-Benjamini-Sarkar to tests.
tanghaibao_goatools
train
py
907c17366aa1e83ec55c0687c80cf32abbb60e57
diff --git a/src/Schema/Generators/SchemaGenerator.php b/src/Schema/Generators/SchemaGenerator.php index <HASH>..<HASH> 100644 --- a/src/Schema/Generators/SchemaGenerator.php +++ b/src/Schema/Generators/SchemaGenerator.php @@ -10,7 +10,7 @@ class SchemaGenerator * @param string $version * @return boolean ...
revert to introspection <I>
nuwave_lighthouse
train
php
03259e803d01b1e5ed900c20258431357a2fd14a
diff --git a/packages/site/pages/core/motion.js b/packages/site/pages/core/motion.js index <HASH>..<HASH> 100644 --- a/packages/site/pages/core/motion.js +++ b/packages/site/pages/core/motion.js @@ -181,15 +181,15 @@ const Travel = _ => ( } .pill1 { width: 50%; - animation: 3000ms 500ms in...
refactor(site): add more time to motion travel example
pluralsight_design-system
train
js
239747c2c7a45a55304b14061dd09e2945372a0f
diff --git a/spec/acceptance/neovim-ruby-host_spec.rb b/spec/acceptance/neovim-ruby-host_spec.rb index <HASH>..<HASH> 100644 --- a/spec/acceptance/neovim-ruby-host_spec.rb +++ b/spec/acceptance/neovim-ruby-host_spec.rb @@ -34,7 +34,7 @@ RSpec.describe "neovim-ruby-host" do # Start the remote host host_nvim....
Add extra sleep to acceptance test to debug travis failures
neovim_neovim-ruby
train
rb