hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
b7f632087e85e71c257a74eaf6a0172e28ce7ebd
diff --git a/js/snippetPreview.js b/js/snippetPreview.js index <HASH>..<HASH> 100644 --- a/js/snippetPreview.js +++ b/js/snippetPreview.js @@ -1163,7 +1163,9 @@ SnippetPreview.prototype.createMeasurementElements = function() { * Copies the title text to the title measure element to calculate the width in pixels. */...
Prevents setting the width to 0 when not empty
Yoast_YoastSEO.js
train
5c262c75176cdcc9c54ff1ddecf6a65c23662569
diff --git a/src/node/obfuscate.js b/src/node/obfuscate.js index <HASH>..<HASH> 100644 --- a/src/node/obfuscate.js +++ b/src/node/obfuscate.js @@ -1,11 +1,24 @@ var VirgilCrypto = require('../../virgil_js.node'); var u = require('./utils'); +/** + * Obfuscates data + * + * @param {Buffer} value - Value to be obfusc...
Crypto v2 node: obfuscate accepts value and salt params as Buffers
VirgilSecurity_virgil-crypto-javascript
train
ed208aac7505d61ded1148b934c7f5154e8829f8
diff --git a/virtualbox/library_ext/vbox.py b/virtualbox/library_ext/vbox.py index <HASH>..<HASH> 100644 --- a/virtualbox/library_ext/vbox.py +++ b/virtualbox/library_ext/vbox.py @@ -7,6 +7,10 @@ Add helper code to the default ISession class. # Configure IVirtualBox bootstrap to build from vboxapi getVirtualBox cla...
Add assertion in IVirtualBox constructor to check the system's running VirtualBox is the same version as the virtualbox source base used to build virtualbox.library. Also add option to turn off assertion by setting vbox.VirtualBox.assert_version = False.
sethmlarson_virtualbox-python
train
8af7da372b0510a049bf2f6e356ee52a9df74a3a
diff --git a/src/urh/settings.py b/src/urh/settings.py index <HASH>..<HASH> 100644 --- a/src/urh/settings.py +++ b/src/urh/settings.py @@ -57,9 +57,9 @@ SELECTION_OPACITY = 1 NOISE_OPACITY = 0.33 # SEPARATION COLORS -ONES_AREA_COLOR = Qt.darkGreen -ZEROS_AREA_COLOR = Qt.darkRed -SEPARATION_OPACITY = 0.25 +ONES_AREA...
change separation colors to green and magenta
jopohl_urh
train
f1fb5589f5da241bbe7da554fcf99f86efe25b16
diff --git a/Entity/EventRepository.php b/Entity/EventRepository.php index <HASH>..<HASH> 100644 --- a/Entity/EventRepository.php +++ b/Entity/EventRepository.php @@ -96,13 +96,13 @@ class EventRepository extends CommonRepository if (!empty($options['fromDate']) && !empty($options['toDate'])) { $q...
[ENG-<I>] dateTo fix for filtering
TheDMSGroup_mautic-contact-client
train
827d91a9a9845cdbcb7c95e18c0c4fd48bce2cc6
diff --git a/docs/Valid.php b/docs/Valid.php index <HASH>..<HASH> 100644 --- a/docs/Valid.php +++ b/docs/Valid.php @@ -18,7 +18,7 @@ class Valid * * @return Valid */ - public static function new(array $data): self + public static function create(array $data): self { return new stat...
update some logic for unit tests and add new helper func
inhere_php-validate
train
486e78f3eef3712e194351201613362165fc158a
diff --git a/Command/PopulateCommand.php b/Command/PopulateCommand.php index <HASH>..<HASH> 100644 --- a/Command/PopulateCommand.php +++ b/Command/PopulateCommand.php @@ -38,6 +38,7 @@ class PopulateCommand extends ContainerAwareCommand ->setName('foq:elastica:populate') ->addOption('index', n...
New Option no-reset for the populate command
FriendsOfSymfony_FOSElasticaBundle
train
42506158efd0418b7826195f2636dc04b6c0a834
diff --git a/pwkit/bblocks.py b/pwkit/bblocks.py index <HASH>..<HASH> 100644 --- a/pwkit/bblocks.py +++ b/pwkit/bblocks.py @@ -244,7 +244,7 @@ def tt_bblock (tstarts, tstops, times, p0=0.05): j = wafter[0] else: j = utimes.size - assert i == 0 or np.where (utime...
pwkit/bblocks.py: fix corner case handling bug Reported by Maïca Clavel and collaborators of the Laboratoire AstroParticule et Cosmologie, Université Paris Diderot. They say that the previous code will crash if there are no events in the first two GTIs of an observation.
pkgw_pwkit
train
04652b73a81296c0339204b3be3f9dc7dfea67db
diff --git a/lib/git_org_file_scanner.rb b/lib/git_org_file_scanner.rb index <HASH>..<HASH> 100644 --- a/lib/git_org_file_scanner.rb +++ b/lib/git_org_file_scanner.rb @@ -6,9 +6,10 @@ module GitOrgFileScanner class Scanner attr_accessor :org - def initialize(access_token, org) + def initialize(access_to...
Setup the scanner to default to non-fork repos We care less about things in forks. This also allows you to scan for public repos only, which most of the time is REALLY what we care about.
nellshamrell_git_org_file_scanner
train
b70d77b9133f6d6e2eae511b0c7f979242d67ffc
diff --git a/lib/codemirror-client.js b/lib/codemirror-client.js index <HASH>..<HASH> 100644 --- a/lib/codemirror-client.js +++ b/lib/codemirror-client.js @@ -112,7 +112,24 @@ ot.CodeMirrorClient = (function () { this.updateUserMark(user); }; + function cleanNoops (stack) { + function isNoop (operation) {...
[codemirror-client] clean noops from undo stack; a noop can result from a client making one edit and another client reverting this change manually
Operational-Transformation_ot.js
train
ca56068e191be6ed4ec42a365f7be666bbae26d6
diff --git a/lib/article.js b/lib/article.js index <HASH>..<HASH> 100644 --- a/lib/article.js +++ b/lib/article.js @@ -236,6 +236,6 @@ Article.prototype._end = function () { } this._callback(null, { - title: articleHeader.text + title: articleHeader === null ? null : articleHeader.text }); };
[fix] a bug when no title was found
AndreasMadsen_article
train
41e8ef8e82a472e6d5e4d9046708e7a45abfb7ab
diff --git a/salt/client/ssh/ssh_py_shim.py b/salt/client/ssh/ssh_py_shim.py index <HASH>..<HASH> 100644 --- a/salt/client/ssh/ssh_py_shim.py +++ b/salt/client/ssh/ssh_py_shim.py @@ -237,7 +237,7 @@ def get_executable(): continue c_vn = tuple([int(x) for x in stdout.split(':')]) for ns in...
require same major version while minor is allowed to be higher
saltstack_salt
train
a4bf541fb4d163bf597d5352e80d6c3a85604624
diff --git a/lib/iron_worker/api.rb b/lib/iron_worker/api.rb index <HASH>..<HASH> 100644 --- a/lib/iron_worker/api.rb +++ b/lib/iron_worker/api.rb @@ -54,12 +54,15 @@ module IronWorker @version = options[:version] #@logger = options[:logger] - @base_url = "#{@scheme}://#{@host}:#{@port}/#{@ve...
Fixed but when created rest client exception wrapper, undefined method RestClientExceptionWrapper. Didn't have .new()
iron-io_iron_worker_ruby
train
e8ae5376c0be81c4d38a9128ea034c422aeeb226
diff --git a/perspective-shell/src/main/java/org/meridor/perspective/shell/commands/EntityFormatter.java b/perspective-shell/src/main/java/org/meridor/perspective/shell/commands/EntityFormatter.java index <HASH>..<HASH> 100644 --- a/perspective-shell/src/main/java/org/meridor/perspective/shell/commands/EntityFormatter....
Fixed NPE in show images command (fixes #<I>)
meridor_perspective-backend
train
401fb558f7eed62ca587c6751d6b4ae1ba60ffbf
diff --git a/packages/NodeTypeResolver/src/NodeVisitor/MethodResolver.php b/packages/NodeTypeResolver/src/NodeVisitor/MethodResolver.php index <HASH>..<HASH> 100644 --- a/packages/NodeTypeResolver/src/NodeVisitor/MethodResolver.php +++ b/packages/NodeTypeResolver/src/NodeVisitor/MethodResolver.php @@ -3,7 +3,9 @@ name...
add METHOD_CALL to MethodResolver
rectorphp_rector
train
cb17b6a60015902297cc2a2fe27fea4ac23ce542
diff --git a/compiler/prelude.go b/compiler/prelude.go index <HASH>..<HASH> 100644 --- a/compiler/prelude.go +++ b/compiler/prelude.go @@ -955,7 +955,7 @@ var $externalize = function(v, t) { } args.push($internalize(arguments[i], t.params[i])); } - var result = v.apply(undefined, args); + var result =...
preserve "this" when externalising functions
gopherjs_gopherjs
train
ce0e5380684fd593e2839ad1d954e1218224246c
diff --git a/spacy/gold.pyx b/spacy/gold.pyx index <HASH>..<HASH> 100644 --- a/spacy/gold.pyx +++ b/spacy/gold.pyx @@ -834,7 +834,7 @@ cdef class Example: if merge: t = self.token_annotation doc = self.doc - if not self.doc: + if self.doc is None: ...
Check whether doc is instantiated in Example.get_gold_parses() (#<I>) * Check whether doc is instantiated When creating docs to pair with gold parses, modify test to check whether a doc is unset rather than whether it contains tokens. * Restore test of evaluate on an empty doc * Set a minimal gold.orig for t...
explosion_spaCy
train
40c90bbcc76291c589fc50f375b51bb80746a322
diff --git a/src/blocks/scratch3_event.js b/src/blocks/scratch3_event.js index <HASH>..<HASH> 100644 --- a/src/blocks/scratch3_event.js +++ b/src/blocks/scratch3_event.js @@ -71,14 +71,10 @@ Scratch3EventBlocks.prototype.broadcastAndWait = function (args, util) { } } // We've run before; check if the...
Add `isActiveThread` and simplify broadcast-and-wait accordingly
LLK_scratch-vm
train
f33aa9c94557e634e72caf868872d7d8662cc24a
diff --git a/neurom/core/__init__.py b/neurom/core/__init__.py index <HASH>..<HASH> 100644 --- a/neurom/core/__init__.py +++ b/neurom/core/__init__.py @@ -30,7 +30,6 @@ from .tree import i_chain2 as _chain_neurites from .tree import Tree as _Tree -from .types import NeuriteType def iter_neurites(obj, mapfun=No...
Remove import of core.types.NeuriteTypes in core.__init__.py This import was causing problems in setup.py, which is run before the Enum<I> package has been installed.
BlueBrain_NeuroM
train
24bcac42be0e2fbac621baf8f753ef2e6c1eb68d
diff --git a/builtin/providers/aws/resource_aws_eip.go b/builtin/providers/aws/resource_aws_eip.go index <HASH>..<HASH> 100644 --- a/builtin/providers/aws/resource_aws_eip.go +++ b/builtin/providers/aws/resource_aws_eip.go @@ -208,8 +208,20 @@ func resourceAwsEipUpdate(d *schema.ResourceData, meta interface{}) error { ...
provider/aws: Retry EIP association (#<I>)
hashicorp_terraform
train
be0cba7a4a2bdf42f238e2d438c2014f0f57482d
diff --git a/MAVProxy/modules/mavproxy_asterix.py b/MAVProxy/modules/mavproxy_asterix.py index <HASH>..<HASH> 100644 --- a/MAVProxy/modules/mavproxy_asterix.py +++ b/MAVProxy/modules/mavproxy_asterix.py @@ -148,7 +148,10 @@ class AsterixModule(mp_module.MPModule): self.tracks[icao_address] = Track(adsb...
asterix: send pkts to all links
ArduPilot_MAVProxy
train
8199602c94146777aa0d8476f14aac62f92e4ca6
diff --git a/src/createLambdaProxyContext.js b/src/createLambdaProxyContext.js index <HASH>..<HASH> 100644 --- a/src/createLambdaProxyContext.js +++ b/src/createLambdaProxyContext.js @@ -60,7 +60,11 @@ module.exports = function createLambdaProxyContext(request, options, stageVariab let claims; if (token) { - ...
Prevent uncaught error with invalid token Should an invalid token be passed in the headers, the handler fails with an uncaught error. The error should be ignored instead.
dherault_serverless-offline
train
12bc32dcd060f9178aa118cd7a795f7ed7266df5
diff --git a/manifest.php b/manifest.php index <HASH>..<HASH> 100755 --- a/manifest.php +++ b/manifest.php @@ -27,7 +27,7 @@ return array( 'version' => '2.1.2', 'author' => 'Open Assessment Technologies SA', 'requires' => array( - 'tao' => '>=3.5.0', + 'tao' => '>=7.0.0', 'taoItems' => '*', ...
Updated tao fs support required
oat-sa_extension-tao-revision
train
ce9967808ff13e4826d194a4945ce1136b76c1cb
diff --git a/cdmbriefparser.py b/cdmbriefparser.py index <HASH>..<HASH> 100644 --- a/cdmbriefparser.py +++ b/cdmbriefparser.py @@ -53,9 +53,9 @@ def trim_docstring( docstring ): # Strip off trailing and leading blank lines: while trimmed and not trimmed[ -1 ]: - trimmed.pop() + del trimmed[ -1...
del is faster than list.pop()
SergeySatskiy_cdm-pythonparser
train
70e0e38783a7c2d9b330aa0beb85d7f900cf3e13
diff --git a/healthcheck/__init__.py b/healthcheck/__init__.py index <HASH>..<HASH> 100644 --- a/healthcheck/__init__.py +++ b/healthcheck/__init__.py @@ -95,8 +95,8 @@ class HealthCheck(object): results.append(result) - fn = lambda result, passed: passed and (result.get('passed'...
Fix healthcheck when there aren't any check functions defined
ateliedocodigo_py-healthcheck
train
64ca4a902f5922532f040889c64e1b62a117ffb4
diff --git a/parler/models.py b/parler/models.py index <HASH>..<HASH> 100644 --- a/parler/models.py +++ b/parler/models.py @@ -221,7 +221,11 @@ class TranslatableModel(models.Model): Return the language codes of all translated variations. """ accessor = getattr(self, self._translations_field)...
Fix prefetched translations for Django <I> and Django <I>
django-parler_django-parler
train
59c8076367c346465844d6abc28f4b189e2960c3
diff --git a/test/server.py b/test/server.py index <HASH>..<HASH> 100644 --- a/test/server.py +++ b/test/server.py @@ -5,13 +5,19 @@ import urlparse import urllib def test(): + sv_url = 'http://id.server.url/' + id_url = 'http://foo.com/' + rt_url = 'http://return.to/' + store = _memstore.MemoryStore(...
[project @ Clean up server test a bit]
necaris_python3-openid
train
da4b4bfc5d96305f55e8e1e692780b8e93d725ee
diff --git a/aws/resource_aws_glue_crawler_test.go b/aws/resource_aws_glue_crawler_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_glue_crawler_test.go +++ b/aws/resource_aws_glue_crawler_test.go @@ -1762,7 +1762,7 @@ resource "aws_glue_connection" "test" { connection_type = "NETWORK" - name = "%s" +...
f/aws_glue_crawler:support for s3_target connection_name
terraform-providers_terraform-provider-aws
train
576ec3582370fa627b06dcbe4fa384d82cda6048
diff --git a/classes/core_mysql.php b/classes/core_mysql.php index <HASH>..<HASH> 100644 --- a/classes/core_mysql.php +++ b/classes/core_mysql.php @@ -86,7 +86,7 @@ class core_mysql } else { - if ($params == true) { + if ($params === true) { $resulting[] = @mysql_fetch_array($this->result,MYSQL_ASSOC)...
Making sure that the system runs a type check on true.
dark-prospect-games_obsidian-moon-engine
train
3a0e394fe24a24b15142105a9aa6f9495af86515
diff --git a/class.form.php b/class.form.php index <HASH>..<HASH> 100644 --- a/class.form.php +++ b/class.form.php @@ -852,7 +852,7 @@ class form extends base { $str = ""; if(empty($this->referenceValues) && !empty($_SESSION["pfbc-values"]) && array_key_exists($this->attributes["id"], $_SESSION["pfbc-values"]))...
Added setValues() function which is identical in functionality to setReferenceValues(). It's shorter and easier to remember. setReferenceValues() will be retained for backwards compatibility. git-svn-id: <URL>
lkorth_php-form-builder-class
train
c1f8dc9bec7c0a58fc53fb56fd47d4de373e7bc1
diff --git a/lib/axlsx/drawing/one_cell_anchor.rb b/lib/axlsx/drawing/one_cell_anchor.rb index <HASH>..<HASH> 100644 --- a/lib/axlsx/drawing/one_cell_anchor.rb +++ b/lib/axlsx/drawing/one_cell_anchor.rb @@ -7,7 +7,7 @@ module Axlsx class OneCellAnchor include Axlsx::OptionsParser - + # Creates a new One...
fix(options): fix parsing for start_at end_at
randym_axlsx
train
c32d556b8ce08a70262be56672874a95b8057e19
diff --git a/lib/travis/github/services/fetch_config.rb b/lib/travis/github/services/fetch_config.rb index <HASH>..<HASH> 100644 --- a/lib/travis/github/services/fetch_config.rb +++ b/lib/travis/github/services/fetch_config.rb @@ -63,7 +63,7 @@ module Travis def retrying(times) count, result =...
Changed function to use variable times instead of using static number
travis-ci_travis-core
train
7d9092d8d910302d7ab5b8b190a68b21b46d7790
diff --git a/lib/anorexic/rack_server.rb b/lib/anorexic/rack_server.rb index <HASH>..<HASH> 100644 --- a/lib/anorexic/rack_server.rb +++ b/lib/anorexic/rack_server.rb @@ -95,7 +95,7 @@ module Anorexic options[:middleware].push *Anorexic.default_middleware options[:middleware].unshift [Rack::ContentLength] unl...
v. bump for re-written code base (RackServer)
boazsegev_plezi
train
1905294afb6af3cf69b8098ba1ff30c1f85eaf5b
diff --git a/src/Controller/Component/FilterComponent.php b/src/Controller/Component/FilterComponent.php index <HASH>..<HASH> 100644 --- a/src/Controller/Component/FilterComponent.php +++ b/src/Controller/Component/FilterComponent.php @@ -260,18 +260,20 @@ class FilterComponent extends Component } else...
allow either filtering or sorting and not require both to be configured
frankfoerster_cakephp-filter
train
765c87edcc79857a904987fed61ff0cab5fd9b1f
diff --git a/lib/rollbar/delay/delayed_job.rb b/lib/rollbar/delay/delayed_job.rb index <HASH>..<HASH> 100644 --- a/lib/rollbar/delay/delayed_job.rb +++ b/lib/rollbar/delay/delayed_job.rb @@ -1,5 +1,7 @@ module Rollbar module Delay + # This class provides the DelayedJob async handler. Users can + # use Delayed...
Add class docs for DelayedJob async handler
rollbar_rollbar-gem
train
c66f7596bb7bbafa4dfef8e3678d76264858ed8c
diff --git a/lib/backend/connection.js b/lib/backend/connection.js index <HASH>..<HASH> 100644 --- a/lib/backend/connection.js +++ b/lib/backend/connection.js @@ -136,7 +136,7 @@ Connection.prototype.emitMessage = function(type, body, callback, options) { } }).bind(this), options.timeout); } - this._sen...
Accept event emitted callback It will be used in tests to remove .wait().
droonga_express-droonga
train
e0ff0e79a9ab4421705a5bfbe1c7dc092c0132f9
diff --git a/lib/revalidator.js b/lib/revalidator.js index <HASH>..<HASH> 100644 --- a/lib/revalidator.js +++ b/lib/revalidator.js @@ -406,4 +406,4 @@ } -})(module.exports); +})(typeof module === 'object' && module && module.exports ? module.exports : window);
Update the exports line to work in node.js, browser and browserify Also make the validate function available in window instead of window.json (inline with revalidator documentation)
flatiron_revalidator
train
89043e4a294476cce4dc94b57cc681cb42f22cb2
diff --git a/pyrax/cf_wrapper/client.py b/pyrax/cf_wrapper/client.py index <HASH>..<HASH> 100644 --- a/pyrax/cf_wrapper/client.py +++ b/pyrax/cf_wrapper/client.py @@ -283,22 +283,6 @@ class Client(object): return True - @handle_swiftclient_exception - def purge_cdn_object(self, container, name, email...
Reorganized some of the client code. No logic changes.
pycontribs_pyrax
train
c22ce1a12cc1ad75d50696321a96bd2f1d9a7e86
diff --git a/src/_pytest/python.py b/src/_pytest/python.py index <HASH>..<HASH> 100644 --- a/src/_pytest/python.py +++ b/src/_pytest/python.py @@ -1162,7 +1162,8 @@ def _idval(val, argname, idx, idfn, item, config): return ascii_escaped(val.pattern) elif isinstance(val, enum.Enum): return str(val...
parametrize: allow __name__ id for modules or other objects as well
pytest-dev_pytest
train
b9b2b9561089cc0e39ffe4b75bd30d0b6bea1a33
diff --git a/nion/swift/model/DisplayItem.py b/nion/swift/model/DisplayItem.py index <HASH>..<HASH> 100755 --- a/nion/swift/model/DisplayItem.py +++ b/nion/swift/model/DisplayItem.py @@ -1423,14 +1423,7 @@ class DisplayItem(Observable.Observable, Persistence.PersistentObject): self.insert_display_layer(before_...
Remove special case of populating display layers.
nion-software_nionswift
train
9d8eb3f645d77297c7b0c854ef9d1ff2b9ca592a
diff --git a/automat/_methodical.py b/automat/_methodical.py index <HASH>..<HASH> 100644 --- a/automat/_methodical.py +++ b/automat/_methodical.py @@ -91,7 +91,7 @@ class MethodicalState(object): method = attr.ib() serialized = attr.ib(repr=False) - def upon(self, input, enter, outputs, collector=list): ...
Fix #<I>: Allow enter to have a default Since enter follows outputs, and there are some use cases (including in the tests) which use the argument order, this also allows outputs to have a default. This has been discussed before (in the same ticket) as desirable.
glyph_automat
train
1beb3f73d699b38a8ff53d5066529ac290c29654
diff --git a/packages/@uppy/companion/src/server/provider/dropbox/index.js b/packages/@uppy/companion/src/server/provider/dropbox/index.js index <HASH>..<HASH> 100644 --- a/packages/@uppy/companion/src/server/provider/dropbox/index.js +++ b/packages/@uppy/companion/src/server/provider/dropbox/index.js @@ -57,10 +57,9 @...
companion: catch errors when fetching dropbox user email (#<I>)
transloadit_uppy
train
091622154cfb3a9e6073eba2543e017a00f7f46e
diff --git a/lib/mongo/cluster.rb b/lib/mongo/cluster.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/cluster.rb +++ b/lib/mongo/cluster.rb @@ -116,7 +116,7 @@ module Mongo seeds.each{ |seed| add(seed) } - @cursor_reaper = CursorReaper.new(self) + @cursor_reaper = CursorReaper.new @cursor_rea...
RUBY-<I> No need to pass the cluster to CursorReaper
mongodb_mongo-ruby-driver
train
a8da588f1349b2dee88c40e600d0633728a5a839
diff --git a/lib/workers/package/versions.js b/lib/workers/package/versions.js index <HASH>..<HASH> 100644 --- a/lib/workers/package/versions.js +++ b/lib/workers/package/versions.js @@ -15,7 +15,12 @@ module.exports = { function determineUpgrades(npmDep, config) { const currentVersion = config.currentVersion; i...
Don’t warn if currentVersion is a known tag Closes #<I>
renovatebot_renovate
train
b1473f2eae121c461a894e675780927c185604f9
diff --git a/lib/svtplay_dl/tests/output.py b/lib/svtplay_dl/tests/output.py index <HASH>..<HASH> 100644 --- a/lib/svtplay_dl/tests/output.py +++ b/lib/svtplay_dl/tests/output.py @@ -50,37 +50,37 @@ class progressbarTest(unittest.TestCase): def test_0_100(self): svtplay_dl.output.progressbar(100, 0) ...
tests: fix output tests after changed progressbar size.
spaam_svtplay-dl
train
535d9c5b7fd2e01361c56a71c2ab08e0ff652e16
diff --git a/app/controllers/alchemy/api/contents_controller.rb b/app/controllers/alchemy/api/contents_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/alchemy/api/contents_controller.rb +++ b/app/controllers/alchemy/api/contents_controller.rb @@ -16,7 +16,7 @@ module Alchemy if params[:element_id...
Use strings as JSON root keys in API controllers ActiveModelSerializers <I> has a bug that assumes root keys are always Strings. A fix has been merged but not released yet. Using String instead of a Symbol for now. See <URL>
AlchemyCMS_alchemy_cms
train
6cfa943784c6462231ffd51e8afb30b0803c03bb
diff --git a/packages/fractal/src/cli/commands/new.js b/packages/fractal/src/cli/commands/new.js index <HASH>..<HASH> 100644 --- a/packages/fractal/src/cli/commands/new.js +++ b/packages/fractal/src/cli/commands/new.js @@ -24,7 +24,7 @@ module.exports = { const basePath = baseDir.startsWith('/') ? baseDir : Pa...
fix: update file extension of docs index in new command (#<I>) The default docs index file was renamed in <URL>
frctl_fractal
train
bcd85def5c3320abb9ae69d5b4762c89403b116f
diff --git a/version.php b/version.php index <HASH>..<HASH> 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2018112800.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2018112900.00; // YYYYMMDD ...
MDL-<I> versions: main version bump
moodle_moodle
train
af80050a21d75ea07a61b392bd986d3ae1b4eefc
diff --git a/src/ContentDelivery/Catalog/SortOrderConfig.php b/src/ContentDelivery/Catalog/SortOrderConfig.php index <HASH>..<HASH> 100644 --- a/src/ContentDelivery/Catalog/SortOrderConfig.php +++ b/src/ContentDelivery/Catalog/SortOrderConfig.php @@ -28,7 +28,7 @@ class SortOrderConfig implements \JsonSerializable ...
Issue #<I>: Make SortOrderConfig constructor private
lizards-and-pumpkins_catalog
train
d7770e3ae9fba833964fd0513cbf3a287880461a
diff --git a/requests_http_signature/__init__.py b/requests_http_signature/__init__.py index <HASH>..<HASH> 100644 --- a/requests_http_signature/__init__.py +++ b/requests_http_signature/__init__.py @@ -5,6 +5,10 @@ import email.utils import requests from requests.compat import urlparse +from requests.exceptions im...
Raise informative error when unable to compute body digest
pyauth_requests-http-signature
train
f6c262c3c3e089dee9f1c47d838a97feafeec018
diff --git a/src/components/ebay-pagination/index.js b/src/components/ebay-pagination/index.js index <HASH>..<HASH> 100644 --- a/src/components/ebay-pagination/index.js +++ b/src/components/ebay-pagination/index.js @@ -65,6 +65,7 @@ function getTemplateData(state) { function init() { this.pageContainerEl = this...
Pagination: improve hidden overflow logic (#<I>)
eBay_ebayui-core
train
0768263ba116980d2b92f8118ef1ef5abfdd20af
diff --git a/src/rabird/core/distutils/command/install.py b/src/rabird/core/distutils/command/install.py index <HASH>..<HASH> 100644 --- a/src/rabird/core/distutils/command/install.py +++ b/src/rabird/core/distutils/command/install.py @@ -291,106 +291,25 @@ class GithubUwbpepPackages(object): raise K...
Implemented PypiUwbpepPackages by BasePackages All duplicated stuffs are removed
starofrainnight_rabird.core
train
300e7235025c04ef96641a87411a824f6b626ec5
diff --git a/src/test/java/de/slackspace/openkeepass/domain/KeyFileTest.java b/src/test/java/de/slackspace/openkeepass/domain/KeyFileTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/de/slackspace/openkeepass/domain/KeyFileTest.java +++ b/src/test/java/de/slackspace/openkeepass/domain/KeyFileTest.java @@ -28,7 ...
Added test to unmarshall key
cternes_openkeepass
train
57fccd226e5427155470ae20dce8831bd51fae8e
diff --git a/comments/app.js b/comments/app.js index <HASH>..<HASH> 100644 --- a/comments/app.js +++ b/comments/app.js @@ -107,7 +107,7 @@ app.get('/auth/:sdk/:version/comments_recent', function(req, res) { }); }); -// Returns the most upvoted users. +// Returns top users (with most upvotes or with most comment...
Small tweaks and fixes to comments users code.
senchalabs_jsduck
train
32821f0c7684148df899f79932c2e138c3ace6f5
diff --git a/tests/test_config.py b/tests/test_config.py index <HASH>..<HASH> 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -18,6 +18,7 @@ PYPIRC = """\ index-servers = server1 server2 + server3 [server1] username:me @@ -28,6 +29,10 @@ username:meagain password: secret realm:acme ...
Issue #<I>: Add a test case to verify the % char can be used in .pypirc I noticed that there is no test for this feature while doing triaging work on pypa/pypi-legacy.
pypa_setuptools
train
0e7b925baf93405a31b982f55ba3e5d950ef7507
diff --git a/doc.go b/doc.go index <HASH>..<HASH> 100644 --- a/doc.go +++ b/doc.go @@ -1,6 +1,14 @@ /* Package goa provides the runtime support for goa web applications. +see also http://goa.design + +package cors: https://godoc.org/github.com/raphael/goa/cors + +package design: https://godoc.org/github.com/raphael...
Add links to other docs to GoDoc
goadesign_goa
train
dea9526835fdf4aa90ed341c0407a6576f2f1ce1
diff --git a/rdbtools/cli/rdb.py b/rdbtools/cli/rdb.py index <HASH>..<HASH> 100755 --- a/rdbtools/cli/rdb.py +++ b/rdbtools/cli/rdb.py @@ -22,6 +22,8 @@ Example : %prog --command json -k "user.*" /var/redis/6379/dump.rdb""" parser.add_option("-t", "--type", dest="types", action="append", help=""...
Added --size argument to filter keys by size
sripathikrishnan_redis-rdb-tools
train
d16c86acce1f84277f0c5dfeff7c73ac0b7480ef
diff --git a/lib/Sabre/VObject/Parser/MimeDir.php b/lib/Sabre/VObject/Parser/MimeDir.php index <HASH>..<HASH> 100644 --- a/lib/Sabre/VObject/Parser/MimeDir.php +++ b/lib/Sabre/VObject/Parser/MimeDir.php @@ -38,24 +38,6 @@ class MimeDir extends Parser { protected $root; /** - * Creates the parser. - ...
Using the parent's constructor.
sabre-io_vobject
train
3438d937b28e23bf9f48a27891aa4973e43307ee
diff --git a/teamcity/jb_behave_formatter.py b/teamcity/jb_behave_formatter.py index <HASH>..<HASH> 100644 --- a/teamcity/jb_behave_formatter.py +++ b/teamcity/jb_behave_formatter.py @@ -5,12 +5,10 @@ Behave formatter that supports TC import datetime import traceback from collections import deque -from distutils imp...
Stop using outdated module, drop ancient verions of pytest and behave
JetBrains_teamcity-messages
train
720c8416ce88224002e7acaf5985a125f6bf2417
diff --git a/src/featherlight.js b/src/featherlight.js index <HASH>..<HASH> 100644 --- a/src/featherlight.js +++ b/src/featherlight.js @@ -534,6 +534,20 @@ } }, + beforeOpen: function(_super, event) { + this._previouslyActive = document.activeElement; + document.activeElement.blur(); + return _sup...
Improve focus handling [#<I>]
noelboss_featherlight
train
30e6ab5b2b1b104a94878c2bfb37fc62581ae93e
diff --git a/lib/arjdbc/postgresql/adapter.rb b/lib/arjdbc/postgresql/adapter.rb index <HASH>..<HASH> 100644 --- a/lib/arjdbc/postgresql/adapter.rb +++ b/lib/arjdbc/postgresql/adapter.rb @@ -1411,13 +1411,10 @@ module ActiveRecord::ConnectionAdapters self.class.type_cast_config_to_boolean(@config[:insert_retur...
[postgres] move the ColumnDefinition into base/schema_definitions.rb as well
jruby_activerecord-jdbc-adapter
train
d246a295d264c2df9cebe5d3bf0bc7956a71b2fd
diff --git a/stream_test.go b/stream_test.go index <HASH>..<HASH> 100644 --- a/stream_test.go +++ b/stream_test.go @@ -427,8 +427,71 @@ var _ = Describe("Stream", func() { str.AddStreamFrame(&frame) str.RegisterRemoteError(testErr) b := make([]byte, 4) + n, err := str.Read(b) + Expect(err).ToNot(Ha...
add more stream tests for reading after receiving a RST_STREAM
lucas-clemente_quic-go
train
ad390e8903d6c4e51dc693252be5a63e29a0f55a
diff --git a/lib/function/matrix/inv.js b/lib/function/matrix/inv.js index <HASH>..<HASH> 100644 --- a/lib/function/matrix/inv.js +++ b/lib/function/matrix/inv.js @@ -10,6 +10,7 @@ function factory (type, config, load, typed) { var unaryMinus = load(require('../arithmetic/unaryMinus')); var det = load(...
Add pivoting to matrix inverse algorithm, and tests
josdejong_mathjs
train
8df7b1c2626908e6f97c9d2f0d73822ee60581ba
diff --git a/lib/pokerstats/hand_statistics.rb b/lib/pokerstats/hand_statistics.rb index <HASH>..<HASH> 100644 --- a/lib/pokerstats/hand_statistics.rb +++ b/lib/pokerstats/hand_statistics.rb @@ -249,10 +249,11 @@ class HandStatistics end def self.player_statistics_migration_data - plugin_factory.inject("")...
fix compile bug in hand_statistics2
wizardwerdna_pokerstats
train
53b5b95ef553947605cee81d8e023e49e144946a
diff --git a/command/refresh_test.go b/command/refresh_test.go index <HASH>..<HASH> 100644 --- a/command/refresh_test.go +++ b/command/refresh_test.go @@ -511,8 +511,14 @@ func TestRefresh_backup(t *testing.T) { t.Fatalf("err: %s", err) } outPath := outf.Name() - outf.Close() - os.Remove(outPath) + defer outf.Cl...
command: Fix TestRefresh_backup The local filesystem state manager no longer creates backup files eagerly, instead creating them only if on first write there is already a snapshot present in the target file. Therefore for this test to exercise the codepaths it intends to we must create an initial state snapshot for i...
hashicorp_terraform
train
f5a42d64c300d06e4ae0b519ed8b5cceefc0e22c
diff --git a/src/components/BoardContainer.js b/src/components/BoardContainer.js index <HASH>..<HASH> 100644 --- a/src/components/BoardContainer.js +++ b/src/components/BoardContainer.js @@ -14,7 +14,7 @@ const laneActions = require('../actions/LaneActions') class BoardContainer extends Component { wireEventBus = (...
fix: onDataChange not called when internal state changed due to eventBus or UI interactions <URL>
rcdexta_react-trello
train
2e7c69dc4d185dc790b7d15857235458ef3eb7a6
diff --git a/subprojects/groovy-groovydoc/src/main/java/org/codehaus/groovy/tools/groovydoc/SimpleGroovyClassDocAssembler.java b/subprojects/groovy-groovydoc/src/main/java/org/codehaus/groovy/tools/groovydoc/SimpleGroovyClassDocAssembler.java index <HASH>..<HASH> 100644 --- a/subprojects/groovy-groovydoc/src/main/java/...
Fix groovydoc processPropertiesFromGetterSetter build exceptions Fixes StringIndexOutOfBoundsException if method name was exactly named [set/get/is] with no property name or NPE if classDoc was null.
apache_groovy
train
ae029a1379a2a963973ce752a5feb9c69ceec2a1
diff --git a/server/src/main/java/org/jboss/as/server/DomainServerMain.java b/server/src/main/java/org/jboss/as/server/DomainServerMain.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/org/jboss/as/server/DomainServerMain.java +++ b/server/src/main/java/org/jboss/as/server/DomainServerMain.java @@ -81,8 +81,...
Use a privileged action to set system property was: <I>b<I>c<I>b5c<I>c<I>b9de1f<I>cfee3d<I>
wildfly_wildfly-core
train
9e84478728bf810388a29c15c4a8dc24045c8222
diff --git a/src/shellingham/__init__.py b/src/shellingham/__init__.py index <HASH>..<HASH> 100644 --- a/src/shellingham/__init__.py +++ b/src/shellingham/__init__.py @@ -4,7 +4,7 @@ import os from ._core import ShellDetectionFailure -__version__ = '1.2.3' +__version__ = '1.2.3.dev0' def detect_shell(pid=None...
Prebump to <I>.dev0
sarugaku_shellingham
train
b05f12ee9e06d00279fd142327a2306878076613
diff --git a/pyinfra/operations/files.py b/pyinfra/operations/files.py index <HASH>..<HASH> 100644 --- a/pyinfra/operations/files.py +++ b/pyinfra/operations/files.py @@ -144,6 +144,9 @@ def download( '|| (echo "MD5 did not match!" && exit 1)' ).format(dest, md5sum) + else: + h...
Implement noop logging for some files operations.
Fizzadar_pyinfra
train
55bb203c873f5225b2c3e6330f7b0b54dad57d64
diff --git a/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view/MessageCenterActivityContent.java b/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view/MessageCenterActivityContent.java index <HASH>..<HASH> 100644 --- a/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view...
AND-<I> Change the class names after merging with next
apptentive_apptentive-android
train
f672f5dde7cdc2a1c1fef8831760ae5e509d2a1b
diff --git a/src/CommonFactory.php b/src/CommonFactory.php index <HASH>..<HASH> 100644 --- a/src/CommonFactory.php +++ b/src/CommonFactory.php @@ -169,7 +169,7 @@ class CommonFactory implements Factory, DomainEventFactory */ public function createEnvironmentBuilder() { - $version = $this->getCurr...
Issue #<I>: Also rename the private getter in CommonFactory to getCurrentDataVersion
lizards-and-pumpkins_catalog
train
f48432a61ab6d3d97c4a93dc9c2178a9b01695a9
diff --git a/linode/login_client.py b/linode/login_client.py index <HASH>..<HASH> 100644 --- a/linode/login_client.py +++ b/linode/login_client.py @@ -220,6 +220,7 @@ class LinodeLoginClient: split = list(urlparse(url)) params = { "client_id": self.client_id, + "response_type":...
Add now-needed response_type param to login urls With a recent login.linode.com update, a "response_type" parameter is required for oauth login attempts. This adds it in, allowing oauth logins through the login client to continue working.
linode_linode_api4-python
train
c4bdb21a7516db17287df7bb29293f49f0ac5238
diff --git a/limpyd/fields.py b/limpyd/fields.py index <HASH>..<HASH> 100644 --- a/limpyd/fields.py +++ b/limpyd/fields.py @@ -640,17 +640,6 @@ class HashableField(RedisField): available_getters = ('hget', ) available_modifiers = ('hincrby', 'hincrbyfloat', 'hset', 'hsetnx') - _commands = { - 'get...
Remove unused temp code commited by error
limpyd_redis-limpyd
train
c9c8d876d06523b5213c22e1cbf5fc24ad4c97a9
diff --git a/src/image/Factory/ImageFactory.php b/src/image/Factory/ImageFactory.php index <HASH>..<HASH> 100644 --- a/src/image/Factory/ImageFactory.php +++ b/src/image/Factory/ImageFactory.php @@ -13,6 +13,7 @@ namespace WBW\Library\Image\Factory; use WBW\Library\Image\Model\Image; use WBW\Library\Image\Model\Ima...
Update Image factory: - implements Image utility
webeweb_core-library
train
82e84ec37e0ae2f1ba0e43145f7dad5f4ea6ea17
diff --git a/fedmsg_meta_fedora_infrastructure/conglomerators/bodhi.py b/fedmsg_meta_fedora_infrastructure/conglomerators/bodhi.py index <HASH>..<HASH> 100644 --- a/fedmsg_meta_fedora_infrastructure/conglomerators/bodhi.py +++ b/fedmsg_meta_fedora_infrastructure/conglomerators/bodhi.py @@ -31,7 +31,6 @@ class RequestBy...
Unnecessary. self.produce_template(..) actually includes this.
fedora-infra_fedmsg_meta_fedora_infrastructure
train
a7f61e8220db7bd422dd33a5ef21dfdbf37b1b38
diff --git a/lib/bolt/cli.rb b/lib/bolt/cli.rb index <HASH>..<HASH> 100644 --- a/lib/bolt/cli.rb +++ b/lib/bolt/cli.rb @@ -8,7 +8,7 @@ module Bolt class CLIError < RuntimeError attr_reader :error_code - def initialize(msg, error_code) + def initialize(msg, error_code: 1) super(msg) @error_...
(maint) Don't require exit code in CLIError Default to 1
puppetlabs_bolt
train
b705d9202c10113c8a1d7dd464de5e527fc85c3f
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -10,6 +10,10 @@ var testFiles = []; // Declared in the karma.conf.js var rootDir = process.cwd(); var distDirectory = 'dist'; +gulp.task('watch', function(){ + gulp.watch(['js/**/*.ts', 'server/data_form.ts'],...
added watch task to gulp to auto-build.
forms-angular_forms-angular
train
e6af3c74fe6b61d0f80574723f0498c59c31907d
diff --git a/scripts/generate_all_jobs.py b/scripts/generate_all_jobs.py index <HASH>..<HASH> 100755 --- a/scripts/generate_all_jobs.py +++ b/scripts/generate_all_jobs.py @@ -133,8 +133,8 @@ def main(argv=sys.argv[1:]): generate_release_compare_page_job( args.config_url, ros_distro_name, r...
do not generate a blocked-releases job for the first distro (#<I>)
ros-infrastructure_ros_buildfarm
train
7a0991d016c110ccf7f16b9000374ce0568733bc
diff --git a/libusb1.py b/libusb1.py index <HASH>..<HASH> 100644 --- a/libusb1.py +++ b/libusb1.py @@ -572,20 +572,32 @@ libusb_transfer_p = POINTER(libusb_transfer) libusb_transfer_cb_fn_p = CFUNCTYPE(None, libusb_transfer_p) -libusb_transfer._fields_ = [('dev_handle', libusb_device_handle_p), - ...
Support FreeBSD's libusb.so<I> ABI incompatibility. It has been fixed in <I>, and the easiest way to detect it via ctypes is by checking the presence of an export also added in <I> .
vpelletier_python-libusb1
train
df3d411cc0f31e955d73a323977a913b9a16000b
diff --git a/cumulusci/tasks/robotframework/debugger/ui.py b/cumulusci/tasks/robotframework/debugger/ui.py index <HASH>..<HASH> 100644 --- a/cumulusci/tasks/robotframework/debugger/ui.py +++ b/cumulusci/tasks/robotframework/debugger/ui.py @@ -170,24 +170,12 @@ class DebuggerCli(cmd.Cmd, object): print("{}:...
Remove custom styles for highlight_element I think this is a feature we want, but I never fully implemented it. It will be easy to add back in later.
SFDO-Tooling_CumulusCI
train
4ccc5bbe7c56f34242c4bf816e30fc4e5ca65150
diff --git a/server/container_create.go b/server/container_create.go index <HASH>..<HASH> 100644 --- a/server/container_create.go +++ b/server/container_create.go @@ -394,6 +394,10 @@ func (s *Server) createSandboxContainer(ctx context.Context, containerID string, specgen.AddBindMount(sb.resolvPath, "/etc/resolv.con...
Set the container hostnames same as pod hostname
cri-o_cri-o
train
49255ce4d571fcdf2bb135c14bfaad12f7a415f9
diff --git a/packages/heroku-cli-plugin-certs-v5/commands/certs/add.js b/packages/heroku-cli-plugin-certs-v5/commands/certs/add.js index <HASH>..<HASH> 100644 --- a/packages/heroku-cli-plugin-certs-v5/commands/certs/add.js +++ b/packages/heroku-cli-plugin-certs-v5/commands/certs/add.js @@ -121,7 +121,10 @@ function * a...
Only include custom domains in _certs:add output
heroku_cli
train
7ea2a497591c32f50bc6e9d8a93d5a774f05a133
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -63,7 +63,7 @@ function _CRC16(buf, length) { /** * Parse the data for a Modbus - - * Read Coils (FC=02,01) + * Read Coils (FC=02, 01) * * @param {buffer} data the data buffer to parse. * @param {function} next the ...
add checking for valid modbus exceptions in the buffered ports
yaacov_node-modbus-serial
train
4f96522ec17b5d97ed4d914fa57be715f0eae4f8
diff --git a/model/state/thumbnails.php b/model/state/thumbnails.php index <HASH>..<HASH> 100644 --- a/model/state/thumbnails.php +++ b/model/state/thumbnails.php @@ -25,7 +25,7 @@ class ComFilesModelStateThumbnails extends KModelState $this->_source_container = $parts[0]; - $this->set('name...
#<I> Set thumbnail name from source name.
joomlatools_joomlatools-framework
train
0887038bcca909ead5b1273e4eb3d62fac3f8c2a
diff --git a/src/main/java/org/aerogear/connectivity/service/impl/SenderServiceImpl.java b/src/main/java/org/aerogear/connectivity/service/impl/SenderServiceImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/aerogear/connectivity/service/impl/SenderServiceImpl.java +++ b/src/main/java/org/aerogear/connectivi...
Fix NPE when no alias is submitted...
aerogear_aerogear-unifiedpush-server
train
4dc801515687446accc77dc43eeea2da4140ad39
diff --git a/tests/spead2_bench.py b/tests/spead2_bench.py index <HASH>..<HASH> 100755 --- a/tests/spead2_bench.py +++ b/tests/spead2_bench.py @@ -130,7 +130,6 @@ def measure_connection_once(args, rate, num_heaps, required_heaps): stream = spead2.send.trollius.UdpStream( thread_pool, args.host, args.port,...
Eliminate descriptors from benchmark script
ska-sa_spead2
train
8706760481cb8f1d7f016cc41de11bbee101f25c
diff --git a/pymagicc/api.py b/pymagicc/api.py index <HASH>..<HASH> 100644 --- a/pymagicc/api.py +++ b/pymagicc/api.py @@ -1,7 +1,7 @@ import shutil import subprocess from os import listdir, makedirs -from os.path import basename, dirname, exists, join, isfile +from os.path import basename, dirname, exists, join, is...
Enable magicc binary to be in either run or bin directory
openclimatedata_pymagicc
train
25b188440aecdb5482e815708d824c753d210edb
diff --git a/docker/auth/auth.py b/docker/auth/auth.py index <HASH>..<HASH> 100644 --- a/docker/auth/auth.py +++ b/docker/auth/auth.py @@ -21,7 +21,7 @@ import six from .. import errors -INDEX_NAME = 'index.docker.io' +INDEX_NAME = 'docker.io' INDEX_URL = 'https://{0}/v1/'.format(INDEX_NAME) DOCKER_CONFIG_FILENA...
Treat 'index.docker.io' repo names as 'docker.io'
docker_docker-py
train
556524e6b7188bd551126d8f0eebd74163d2a1ca
diff --git a/app/Catalog/Category/CategoryList.php b/app/Catalog/Category/CategoryList.php index <HASH>..<HASH> 100644 --- a/app/Catalog/Category/CategoryList.php +++ b/app/Catalog/Category/CategoryList.php @@ -7,6 +7,9 @@ use Moltin\SDK\Facade\Product as Product; class CategoryList { + /** + * @var \Psr\Htt...
Extend display product details to show product number in the list
KickAssCommerce_framework
train
05f0fdec92a3a436f7cc0c8400850670c8145c6f
diff --git a/lib/rest-ftp-daemon/jobs/transfer.rb b/lib/rest-ftp-daemon/jobs/transfer.rb index <HASH>..<HASH> 100644 --- a/lib/rest-ftp-daemon/jobs/transfer.rb +++ b/lib/rest-ftp-daemon/jobs/transfer.rb @@ -128,19 +128,14 @@ module RestFtpDaemon # Start transfer transfer_started_at = Time.now - @pr...
transfer: only log updates when sending ready to send notifications, compute average bitrate between notifications
bmedici_rest-ftp-daemon
train
e423fd7264c4f145921e461037d571b35b6a9833
diff --git a/_postinstall.js b/_postinstall.js index <HASH>..<HASH> 100755 --- a/_postinstall.js +++ b/_postinstall.js @@ -1,3 +1,5 @@ +#!/usr/bin/env node + // Broadcasts "Call for peace" message when package is installed in Russia, otherwise no-op "use strict";
refactor: Add missing shebang to postinstall script
medikoo_es5-ext
train
c2d7b7361ac9ebfc63c0bda40f21f776a24906d5
diff --git a/src/java/com/threerings/media/util/DelayPath.java b/src/java/com/threerings/media/util/DelayPath.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/media/util/DelayPath.java +++ b/src/java/com/threerings/media/util/DelayPath.java @@ -22,15 +22,42 @@ package com.threerings.media.util; import...
Added the ability for DelayPath to set a location for the path. Some whitespace cleanup. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1
threerings_narya
train
03ad75e5e1a54e45cb1ef3aaace80c5ea52592f8
diff --git a/src/Accordion/accordion.spec.js b/src/Accordion/accordion.spec.js index <HASH>..<HASH> 100644 --- a/src/Accordion/accordion.spec.js +++ b/src/Accordion/accordion.spec.js @@ -2,7 +2,7 @@ import React from 'react'; import { mount } from 'enzyme'; -import renderer from 'react-test-renderer'; +// import re...
Add test for 'works with multiple pre expanded accordion. Extra expands are just ignored.'
springload_react-accessible-accordion
train
c5921b6b86f9f10f54a2e9159193a8c887c8031d
diff --git a/modeshape-jcr/src/main/java/org/modeshape/jcr/query/JcrQueryResult.java b/modeshape-jcr/src/main/java/org/modeshape/jcr/query/JcrQueryResult.java index <HASH>..<HASH> 100644 --- a/modeshape-jcr/src/main/java/org/modeshape/jcr/query/JcrQueryResult.java +++ b/modeshape-jcr/src/main/java/org/modeshape/jcr/que...
MODE-<I> - Support fully-qualified pseudocolumn names in JCR queries
ModeShape_modeshape
train
7cd56f69f0c9de47cfe29172fff773a13fc53b43
diff --git a/elifetools/parseJATS.py b/elifetools/parseJATS.py index <HASH>..<HASH> 100644 --- a/elifetools/parseJATS.py +++ b/elifetools/parseJATS.py @@ -906,7 +906,7 @@ def components(soup): # There are only some parent tags we care about for components # and only check two levels of parentage - ...
table-wrap can have children too.
elifesciences_elife-tools
train
68af3ed311a55afb5553dba03b7890c86ee6bbd2
diff --git a/metanl/wordlist.py b/metanl/wordlist.py index <HASH>..<HASH> 100644 --- a/metanl/wordlist.py +++ b/metanl/wordlist.py @@ -140,25 +140,32 @@ def multilingual_wordlist(langs, scale=1e9): return merge_lists(weighted_lists) -def get_frequency(word, lang, default_freq=0): +def get_frequency(word, lang,...
auto-scaling in get_frequency, so we won't have to always load a multilingual wordlist
commonsense_metanl
train
5f9e0d6ddf77ba661217238a5239ee2c739ac977
diff --git a/gwt-material/src/main/java/gwt/material/design/client/base/HasCounter.java b/gwt-material/src/main/java/gwt/material/design/client/base/HasCounter.java index <HASH>..<HASH> 100644 --- a/gwt-material/src/main/java/gwt/material/design/client/base/HasCounter.java +++ b/gwt-material/src/main/java/gwt/material/...
Badges in NavBar, fixed some code scheme
GwtMaterialDesign_gwt-material
train
7ed554d7195dda7d6fa55e116670a6aabd48a32a
diff --git a/arcana/repository/directory.py b/arcana/repository/directory.py index <HASH>..<HASH> 100644 --- a/arcana/repository/directory.py +++ b/arcana/repository/directory.py @@ -22,7 +22,7 @@ logger = logging.getLogger('arcana') class DirectoryRepository(BaseRepository): """ - An 'Repository' class for ...
slightly altered DirectoryRepository to allow BidsRepository to inherit from it
MonashBI_arcana
train
de0ea3866370ec61581f910cf393a3cc97eba32f
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index <HASH>..<HASH> 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -1375,7 +1375,7 @@ module ActiveRecord dependent_conditions =...
Ensure :dependent => :delete_all works for association with hash conditions
rails_rails
train