hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
c7b5be6466a41c60f4318613b7467355eba77524
diff --git a/ohapi/api.py b/ohapi/api.py index <HASH>..<HASH> 100644 --- a/ohapi/api.py +++ b/ohapi/api.py @@ -195,7 +195,7 @@ def upload_file(target_filepath, metadata, access_token, base_url=OH_BASE_URL, return r -def delete_file(access_token, project_member_id, base_url=OH_BASE_URL, +def delete_file(access_...
Made project member id not required for delete_file (#<I>) * project_member_id optional in upload function * resolving code climate issue * project_member_id optional in upload function * fix hound errors * Update api.py * optional project_member_id * Hound fixes and other refactoring * Hound fixe...
OpenHumans_open-humans-api
train
521399affcc6dc89e7d8e4e20ef47433d7d0fa36
diff --git a/bcbio/cwl/tool.py b/bcbio/cwl/tool.py index <HASH>..<HASH> 100644 --- a/bcbio/cwl/tool.py +++ b/bcbio/cwl/tool.py @@ -69,6 +69,7 @@ def _run_toil(args): """ main_file, json_file = _get_main_and_json(args.directory) work_dir = utils.safe_makedir(os.path.join(os.getcwd(), "cwltoil_work")) + ...
CWL: Toil SLURM/SGE support; stage in shared dirs Ensures Toil CWL runs stage files in a local shared directory instead of local `/tmp` allowing them to be accessed across the cluster.
bcbio_bcbio-nextgen
train
04500f9df95b5e518afb914108e2f1310b1919ae
diff --git a/acos_client/v30/vrrpa/vrid.py b/acos_client/v30/vrrpa/vrid.py index <HASH>..<HASH> 100644 --- a/acos_client/v30/vrrpa/vrid.py +++ b/acos_client/v30/vrrpa/vrid.py @@ -12,6 +12,7 @@ # License for the specific language governing permissions and limitations # under the License. +from acos_client impo...
Added exists() method for extra functionality.
a10networks_acos-client
train
f06725e153e1ed3392de55fbbf8e13363de3c904
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -88,12 +88,6 @@ class Application extends Container $this['config'] = $config; $this['environment'] = $environment; - /* Error Reporting */ - - ini_...
remove error handling ini settings from main application - leave that up to deployment + always display errors without logging when testing
infusephp_infuse
train
ce941563a5034c6d9b37e9136e0c26e073f371fb
diff --git a/src/__tests__/__snapshots__/babel.test.js.snap b/src/__tests__/__snapshots__/babel.test.js.snap index <HASH>..<HASH> 100644 --- a/src/__tests__/__snapshots__/babel.test.js.snap +++ b/src/__tests__/__snapshots__/babel.test.js.snap @@ -138,6 +138,25 @@ CSS MAPPINGS:[{\\"generated\\":{\\"line\\":1,\\"column\\...
fix: use the same custom property for the same expression
callstack_linaria
train
0c61bd961d0f0f4592a26de7f038db1fca085ac1
diff --git a/pulsar/client/transport/curl.py b/pulsar/client/transport/curl.py index <HASH>..<HASH> 100644 --- a/pulsar/client/transport/curl.py +++ b/pulsar/client/transport/curl.py @@ -66,10 +66,18 @@ def post_file(url, path): def get_file(url, path): + if path and os.path.exists(path): + buf = _open_o...
Enable resumption of file stage-in when using curl.
galaxyproject_pulsar
train
34345affbae8530478d90e654c4a00e2e1f2a8d6
diff --git a/pyes/es.py b/pyes/es.py index <HASH>..<HASH> 100644 --- a/pyes/es.py +++ b/pyes/es.py @@ -368,7 +368,8 @@ class ES(object): If `indices` is not supplied, returns the default_indices. """ - indices = indices or self.default_indices + if indices is None: + return ...
Changed ES.default_indices to a property that calls _validate_indices() on set
aparo_pyes
train
41aa158998e54295ef2a91b544241f185dc2f6b5
diff --git a/sitebricks-mail/src/main/java/com/google/sitebricks/mail/CommandCompletion.java b/sitebricks-mail/src/main/java/com/google/sitebricks/mail/CommandCompletion.java index <HASH>..<HASH> 100644 --- a/sitebricks-mail/src/main/java/com/google/sitebricks/mail/CommandCompletion.java +++ b/sitebricks-mail/src/main/...
set exception on unsuccessful command completion and return error when processing an IMAP response with NO some messages in batch could not be processed.
dhanji_sitebricks
train
5a566b3363ecab563ed503212d209b649c76afef
diff --git a/git/packet_writer.go b/git/packet_writer.go index <HASH>..<HASH> 100644 --- a/git/packet_writer.go +++ b/git/packet_writer.go @@ -37,9 +37,9 @@ func NewPacketWriter(w io.Writer) *PacketWriter { // underlying stream of data, and the process repeats. // // When the caller has no more data to write in the ...
git/pw: only flush packets with nil slice
git-lfs_git-lfs
train
27390a15bd30f2004257a2737ee539fe08390551
diff --git a/src/Error/ExceptionRenderer.php b/src/Error/ExceptionRenderer.php index <HASH>..<HASH> 100644 --- a/src/Error/ExceptionRenderer.php +++ b/src/Error/ExceptionRenderer.php @@ -44,7 +44,7 @@ class ExceptionRenderer extends \Cake\Error\ExceptionRenderer '_serialize' => ['code', 'url', 'message', '...
Fix API exception rendering As it was, the `ExceptionRenderer` was not being registered by the listener and the `Cake\Network\Response` was not properly returned on validation exception rendering.
FriendsOfCake_crud-json-api
train
85648c69b0526a597c450852791f46804e56f641
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,6 +1,6 @@ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) -require 'simplecov' +require 'simplecov' # Used filters are in /.simplecov require 'rspec/its' r...
Moves simplecov filters in config file
wpscanteam_CMSScanner
train
7a02e640a4583725dc906fc6ee3f6335ba697863
diff --git a/addon/orm/collection.js b/addon/orm/collection.js index <HASH>..<HASH> 100644 --- a/addon/orm/collection.js +++ b/addon/orm/collection.js @@ -1,10 +1,13 @@ import _invoke from 'lodash/collection/invoke'; import assert from '../assert'; -/* - An array of models, returned from one of the schema query - ...
adds YUIDoc comments to orm/collection.js (#<I>)
samselikoff_ember-cli-mirage
train
f6473c4aa8706a15c01b5f13d80440e08ad16684
diff --git a/visidata/loaders/_pandas.py b/visidata/loaders/_pandas.py index <HASH>..<HASH> 100644 --- a/visidata/loaders/_pandas.py +++ b/visidata/loaders/_pandas.py @@ -22,3 +22,14 @@ class PandasSheet(Sheet): def reload(self): self.rows = DataFrameAdapter(self.source) self.columns = [ColumnIte...
[pandas] "-f pandas" loads file with pandas.read_<ext>
saulpw_visidata
train
86cea0e8f48266b53bd05b0011cba78a22d52273
diff --git a/src/main/java/org/jooq/lambda/SeqUtils.java b/src/main/java/org/jooq/lambda/SeqUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jooq/lambda/SeqUtils.java +++ b/src/main/java/org/jooq/lambda/SeqUtils.java @@ -51,7 +51,7 @@ class SeqUtils { @Override public Spliterat...
[#<I>] Fix Spliterator implementation according to contract
jOOQ_jOOL
train
4ff8122656353c45d421103edffaf6be9660f8d4
diff --git a/spec/examples/record/record_set_spec.rb b/spec/examples/record/record_set_spec.rb index <HASH>..<HASH> 100644 --- a/spec/examples/record/record_set_spec.rb +++ b/spec/examples/record/record_set_spec.rb @@ -33,7 +33,7 @@ describe Cequel::Record::RecordSet do model :PublishedPost do key :blog_subdo...
Set `order` to `:desc` on `PublishedPost` model to be able to properly test the `#reverse` method; test examples impacted by this change are adapted (reversed expected results); now using `PublishedPost` instead of `Post` for the `#reverse` examples.
cequel_cequel
train
cb1d64f6ad698b32dac194dc3e4126af4431ebc3
diff --git a/lib/rules/handle-callback-err.js b/lib/rules/handle-callback-err.js index <HASH>..<HASH> 100644 --- a/lib/rules/handle-callback-err.js +++ b/lib/rules/handle-callback-err.js @@ -92,12 +92,17 @@ module.exports = function(context) { // make sure the node's name matches our error argument name ...
Fix: handle-callback-err missing arrow functions (fixes #<I>)
eslint_eslint
train
9ad5e3bf3663d15e1de9fad1c2a5ae25bdc2e98a
diff --git a/deep.js b/deep.js index <HASH>..<HASH> 100644 --- a/deep.js +++ b/deep.js @@ -89,14 +89,21 @@ define(["require", "./utils", "./deep-rql", "./deep-schema", "./deep-query", "./ * @property compose * @type {Object} */ - deep.compose = require("./deep-compose")(deep); + require("./deep-...
extract last OCM stuffs + change from colliders + compositions refactoring
deepjs_deepjs
train
b8f97bd0acfb34f26c2fffe16841e1099af870e8
diff --git a/bigtable-client-core-parent/bigtable-client-core/src/main/java/com/google/cloud/bigtable/config/CredentialFactory.java b/bigtable-client-core-parent/bigtable-client-core/src/main/java/com/google/cloud/bigtable/config/CredentialFactory.java index <HASH>..<HASH> 100644 --- a/bigtable-client-core-parent/bigta...
Fixing Credential unavailable issue in GAE (#<I>) Removed GAE8Java8Standard8 check from CredentialFactory as UrlFetchTransport does not work with GAE8. Using GCJ's `HttpTransportOptions.DefaultHttpTransportFactory`. Formatted the `CredentialFactory.java`
googleapis_cloud-bigtable-client
train
4cb623985b69fb03c873e011ed27f6cd149abb99
diff --git a/master/buildbot/test/unit/test_worker_docker.py b/master/buildbot/test/unit/test_worker_docker.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/unit/test_worker_docker.py +++ b/master/buildbot/test/unit/test_worker_docker.py @@ -104,14 +104,15 @@ class TestDockerLatentWorker(unittest.SynchronousTe...
rename "slave" to "worker" in example directory
buildbot_buildbot
train
d2ea2214d80248f468522ab2d3a5777f6c0d0bb4
diff --git a/cdm/src/main/java/thredds/cataloggen/CatGenAndWrite.java b/cdm/src/main/java/thredds/cataloggen/CatGenAndWrite.java index <HASH>..<HASH> 100644 --- a/cdm/src/main/java/thredds/cataloggen/CatGenAndWrite.java +++ b/cdm/src/main/java/thredds/cataloggen/CatGenAndWrite.java @@ -111,7 +111,8 @@ public class CatG...
Fix CatGenAndWrite main?() example for TDS datasetRoot stuff.
Unidata_thredds
train
019eefb1233e3313d68ed1239a32145acfb08335
diff --git a/tests/unit/CubicMushroom/Slim/ServiceManager/ServiceManagerTest.php b/tests/unit/CubicMushroom/Slim/ServiceManager/ServiceManagerTest.php index <HASH>..<HASH> 100644 --- a/tests/unit/CubicMushroom/Slim/ServiceManager/ServiceManagerTest.php +++ b/tests/unit/CubicMushroom/Slim/ServiceManager/ServiceManagerTe...
Updated ServiceManagerTest to reflect '@' prefixing of own service name
cubicmushroom_slim-service-manager
train
93f3e8b864d0e114ba0f589de4d94f4308d5fb67
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,10 +1,10 @@ #!/usr/bin/env node if(process.argv[2] == "--help" || process.argv[2] == "-h"){ - console.log(); + //console.log(); var fs = require('fs'); - console.log(fs.readFileSync(__dirname + "/help", 'utf-8')); - c...
Disabling any direct logging to console until -v option is specified
NaturalIntelligence_StubbyDB
train
c4f99b5c0091379d48c2a10481a3c3e241b1592a
diff --git a/retrying.py b/retrying.py index <HASH>..<HASH> 100644 --- a/retrying.py +++ b/retrying.py @@ -49,13 +49,16 @@ class Retrying: wait_incrementing_start=0, wait_incrementing_increment=100, wait_exponential_multiplier=1, wait_exponential_max=sys.maxint, ret...
add configurable support for wrapping any raised Exception in a RetryError instead of just raising it directly, add a few more comments
jd_tenacity
train
1b2a7d90af49b19409dcb151f922f124f797a290
diff --git a/lib/puppet.rb b/lib/puppet.rb index <HASH>..<HASH> 100644 --- a/lib/puppet.rb +++ b/lib/puppet.rb @@ -59,8 +59,7 @@ module Puppet # configuration parameter access and stuff def self.[](param) - case param - when :debug + if param == :debug return Puppet::Util::Log.level == :debug ...
case seems needless here as there is only two opts, also the rest of the file seems to use if so this should make things more consistant
puppetlabs_puppet
train
206fea6cb57b3bc5fb6dd977104c15bc202e469d
diff --git a/system/modules/generalDriver/DcGeneral/Contao/View/Contao2BackendView/ListView.php b/system/modules/generalDriver/DcGeneral/Contao/View/Contao2BackendView/ListView.php index <HASH>..<HASH> 100644 --- a/system/modules/generalDriver/DcGeneral/Contao/View/Contao2BackendView/ListView.php +++ b/system/modules/g...
Temporarily get rid of $environment->getRootIds() in ListView and ParentView.
contao-community-alliance_dc-general
train
b08be9e173aa2b3646fb92bb8498b85b76d26b64
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ import os import sys -sys.path.insert(0, os.path.abspath("..")) +sys.path.insert(0, os.path.abspath("../src")) autodoc_mock_imports = [ "bs4",
Update path used in readthedocs Fixes the issue where modules were not being populated because fonduer was nested in the `src` directory.
HazyResearch_fonduer
train
b187493df938c8f8bbf6bfd71421f627ae3e5c22
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,39 @@ MessageQueue.disconnect puts MessageQueue.connected? # => false ``` +You could also mix in the `MessageQueue::Producible` module and the +`MessageQueue::Consumable` module in your producer class and con...
Document usage for Producible and Consumable
jingweno_message_queue
train
47f62d402186a1b3b98a72e51f3164ac868d9423
diff --git a/server/index.js b/server/index.js index <HASH>..<HASH> 100644 --- a/server/index.js +++ b/server/index.js @@ -24,6 +24,19 @@ function register (server, options, next) { log.info('config', 'Storing all data in memory only') } else { PouchDB.plugin(require('pouchdb-adapter-leveldb')) + + ...
fix(server): throws if options.paths is not set
hoodiehq_hoodie
train
cac8b2ced9e740033301f907b2c5fb40040f4a4b
diff --git a/lib/trakt.js b/lib/trakt.js index <HASH>..<HASH> 100644 --- a/lib/trakt.js +++ b/lib/trakt.js @@ -340,7 +340,8 @@ function getShownfo(showId,callback) { extended: "full" }).then(answer => { var selectedShow = answer.title + " " + answer.year - displayImage.from...
get poster from tmdb
ItzBlitz98_torrentflix
train
9d4748d084162118450a5eacde6d8b020bc90130
diff --git a/lib/rasn1/types/base.rb b/lib/rasn1/types/base.rb index <HASH>..<HASH> 100644 --- a/lib/rasn1/types/base.rb +++ b/lib/rasn1/types/base.rb @@ -115,7 +115,11 @@ module Rasn1 if primitive? raise ASN1Error, "malformed #{type} TAG (#@name): indefinite length forbidden for primitive types...
Types::Base#parse!: differentiate BER and DER encoding on indefinite length
sdaubert_rasn1
train
204a34d62f4c96174a11a204c8851bb74d1954de
diff --git a/library/src/main/java/com/mikepenz/materialdrawer/DrawerBuilder.java b/library/src/main/java/com/mikepenz/materialdrawer/DrawerBuilder.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/DrawerBuilder.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/DrawerBu...
* dissallow deselection of an item via click
mikepenz_MaterialDrawer
train
469ff9d8dee1faa345f3facaac41ca4aa4bf24cd
diff --git a/dempsy-framework.core/src/main/java/net/dempsy/container/Container.java b/dempsy-framework.core/src/main/java/net/dempsy/container/Container.java index <HASH>..<HASH> 100644 --- a/dempsy-framework.core/src/main/java/net/dempsy/container/Container.java +++ b/dempsy-framework.core/src/main/java/net/dempsy/co...
Clean up a race condition on shutdown during tests.
Dempsy_dempsy
train
2631945e81a94fb0fe7d776b2734cd206af4e8cc
diff --git a/suds/bindings/unmarshaller.py b/suds/bindings/unmarshaller.py index <HASH>..<HASH> 100644 --- a/suds/bindings/unmarshaller.py +++ b/suds/bindings/unmarshaller.py @@ -318,7 +318,10 @@ class Typed(UMBase): content.type = found else: self.resolver.push(content.type) - ...
Apply fix as defined by <EMAIL> in ticket #<I>; update service definition to print to display service methods as ' my_method(xs:int arg0, Person arg1) ' instead of ' my_method(arg0{xs:int}, arg1{Person}) ' which is more like traditional method signatures
suds-community_suds
train
ed58c3a40cb3b9487527b5ec6e87246c26bed473
diff --git a/src/Fiedsch/Data/Augmentation/Provider/TokenServiceProvider.php b/src/Fiedsch/Data/Augmentation/Provider/TokenServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Fiedsch/Data/Augmentation/Provider/TokenServiceProvider.php +++ b/src/Fiedsch/Data/Augmentation/Provider/TokenServiceProvider.php @@ -18,7 ...
fix (PHPDoc) comments
fiedsch_datamanagement
train
931acd178bfd16a1201f98f932189d4ba31b3a2c
diff --git a/lib/hector/channel.rb b/lib/hector/channel.rb index <HASH>..<HASH> 100644 --- a/lib/hector/channel.rb +++ b/lib/hector/channel.rb @@ -29,7 +29,7 @@ module Hector def normalize(name) name.force_encoding("UTF-8") if name.respond_to?(:force_encoding) - if name =~ /^[#&+!][\p{L}\p{M}\p...
Allow channel name prefix and more Unicode characters in channel names, as per RFC <I>
sstephenson_hector
train
1f72e08636c891a34326bab21a3573e5ced00a2a
diff --git a/src/Joomlatools/Console/Command/Site/Configure.php b/src/Joomlatools/Console/Command/Site/Configure.php index <HASH>..<HASH> 100644 --- a/src/Joomlatools/Console/Command/Site/Configure.php +++ b/src/Joomlatools/Console/Command/Site/Configure.php @@ -157,7 +157,7 @@ class Configure extends AbstractDatabase ...
Change configuration.php permissions after creation
joomlatools_joomlatools-console
train
17d26e57d729184128224d4b445ba2259534ba05
diff --git a/pysoa/common/settings.py b/pysoa/common/settings.py index <HASH>..<HASH> 100644 --- a/pysoa/common/settings.py +++ b/pysoa/common/settings.py @@ -140,6 +140,9 @@ class Settings(object): def __getitem__(self, key): return self._data[key] + def __contains__(self, key): + return key ...
Support `in` keyword for SOA settings
eventbrite_pysoa
train
2c20a47bdd323fa5b096d96ae998d3e5b1ce110d
diff --git a/lib/fileInfo/fileInfoNode.js b/lib/fileInfo/fileInfoNode.js index <HASH>..<HASH> 100644 --- a/lib/fileInfo/fileInfoNode.js +++ b/lib/fileInfo/fileInfoNode.js @@ -17,7 +17,12 @@ var FileInfoNode = module.exports = (function() { filename : '', treename : '', dependencryArr : [], - type : ''...
template files associating with certain extensions are not concatenated during builds with active compress
iambumblehead_scroungejs
train
d3c1b2c6c0d2536eae7a2097b280704ce43ec86a
diff --git a/services/datalad/datalad_service/handlers/files.py b/services/datalad/datalad_service/handlers/files.py index <HASH>..<HASH> 100644 --- a/services/datalad/datalad_service/handlers/files.py +++ b/services/datalad/datalad_service/handlers/files.py @@ -113,7 +113,8 @@ class FilesResource(object): ...
fix: Support both accepted formats for bulk delete filenames
OpenNeuroOrg_openneuro
train
02c38dcda7cc43cbe61766931e89fad1acf9eefd
diff --git a/drivers/virtualbox/virtualbox.go b/drivers/virtualbox/virtualbox.go index <HASH>..<HASH> 100644 --- a/drivers/virtualbox/virtualbox.go +++ b/drivers/virtualbox/virtualbox.go @@ -281,11 +281,42 @@ func (d *Driver) Create() error { log.Debugf("Adding key to authorized-keys.d...") - if err := drivers.Ad...
fixes #<I>: persist identity keys in b2d
docker_machine
train
2b2f4aafccf24d81e681db49078afab7e9225d4b
diff --git a/tests/functional-test.js b/tests/functional-test.js index <HASH>..<HASH> 100644 --- a/tests/functional-test.js +++ b/tests/functional-test.js @@ -62,7 +62,7 @@ describe('Functional test suite for Broccoli Leasot', () => { fileTree = null; }); - it('Basic setup', () => { + it('Basic setup', (done) =>...
Let mocha know that promise is resolved Mocha needs to know that an async operation is over so that it can stop waiting on a test. This is made possible through a done() callback. Added it so that we're on standards and make AppVeyor happy about it.
sivakumar-kailasam_broccoli-leasot
train
c4fec7711ae7832d773b3f0f4f9c2440df67bc63
diff --git a/src/SnooPHP/Http/Response.php b/src/SnooPHP/Http/Response.php index <HASH>..<HASH> 100644 --- a/src/SnooPHP/Http/Response.php +++ b/src/SnooPHP/Http/Response.php @@ -154,6 +154,7 @@ class Response */ public static function json($content) { + if (is_a($content, "SnooPHP\Model\Collection")) $conte...
Fixed multiple issues + read file utility function * Fixed error with Model::belongsTo method * Added support for collection in Response::json method * Added Collection::expand method to avoid using each()
snoophp_framework
train
639ddda89dd3d9466b6e9e68a7ebdb06f1fe6700
diff --git a/src/Illuminate/Routing/Redirector.php b/src/Illuminate/Routing/Redirector.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Routing/Redirector.php +++ b/src/Illuminate/Routing/Redirector.php @@ -9,7 +9,7 @@ use Illuminate\Session\Store as SessionStore; class Redirector { use Macroable; - + ...
Apply fixes from StyleCI (#<I>)
laravel_framework
train
3c628b8ee5afe0f42ba9273623268310946608ef
diff --git a/src/test/java/io/nats/client/EncodedConnectionTest.java b/src/test/java/io/nats/client/EncodedConnectionTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/io/nats/client/EncodedConnectionTest.java +++ b/src/test/java/io/nats/client/EncodedConnectionTest.java @@ -70,7 +70,6 @@ public class EncodedCon...
Removed bogus test fail.
nats-io_java-nats
train
20efad8948c2c8cd2c69622aa060af0317586ea2
diff --git a/graylog2-web-interface/src/logic/rest/FetchProvider.js b/graylog2-web-interface/src/logic/rest/FetchProvider.js index <HASH>..<HASH> 100644 --- a/graylog2-web-interface/src/logic/rest/FetchProvider.js +++ b/graylog2-web-interface/src/logic/rest/FetchProvider.js @@ -10,6 +10,20 @@ import { createUnauthorize...
Allow customization of FetchProvider unauthorized and forbidden request hadnling
Graylog2_graylog2-server
train
153c7fd3bcdba7efd83505840173df791a2e6cc7
diff --git a/lib/ronin/cacheable.rb b/lib/ronin/cacheable.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/cacheable.rb +++ b/lib/ronin/cacheable.rb @@ -41,6 +41,8 @@ module Ronin obj = self.load_context(path) obj.cached_path = path + obj.cached_timestamp = File.mtime(path) + o...
Moved cache! logic into self.cache.
ronin-ruby_ronin
train
e46420e595edaf2c3eae5c220e3864fb01a03f09
diff --git a/src/core/core.scale.js b/src/core/core.scale.js index <HASH>..<HASH> 100644 --- a/src/core/core.scale.js +++ b/src/core/core.scale.js @@ -726,7 +726,7 @@ export default class Scale extends Element { } // Don't bother fitting the ticks if we are not showing the labels - if (tickOpts.display && disp...
Cleaner handling of fitting no ticks (#<I>)
chartjs_Chart.js
train
37780f66f0070c165d5394f6947070fb83a1fb82
diff --git a/lib/moped/bson/binary.rb b/lib/moped/bson/binary.rb index <HASH>..<HASH> 100644 --- a/lib/moped/bson/binary.rb +++ b/lib/moped/bson/binary.rb @@ -63,6 +63,14 @@ module Moped "#<#{self.class.name} type=#{type.inspect} length=#{data.bytesize}>" end + def to_s + data.to_s + ...
Binary#to_s is sane. - ObjectId#inspect is sane.
mongoid_moped
train
8215edb5b41dab2a7cf890ac5716a88355043b01
diff --git a/src/fold.js b/src/fold.js index <HASH>..<HASH> 100644 --- a/src/fold.js +++ b/src/fold.js @@ -171,50 +171,6 @@ class Fold{ /** - * Ensure the fold's elements have unique ID attributes. - * - * If no ID attributes are present, or they conflict with another DOM element's - * identifier, new IDs a...
Inline logic of the Fold.checkIDs method This is only called once, from the same property setter. It doesn't need its own class method, and having it inlined the same way the ES5 version has might make it slightly easier to synchronise updates between the two files.
Alhadis_Accordion
train
a53787abf5b9442f6b3eb25fc915cc95888a65e1
diff --git a/benchmarks/bench-insert-select.js b/benchmarks/bench-insert-select.js index <HASH>..<HASH> 100644 --- a/benchmarks/bench-insert-select.js +++ b/benchmarks/bench-insert-select.js @@ -14,6 +14,7 @@ connection.query([ function benchmarkInsert(numLeft, callback) { connection.query('INSERT INTO ' + table ...
run benchmarks when not require'd
sidorares_node-mysql2
train
3024ea39be52adccff9c5c03b0431757c4c20aa2
diff --git a/src/main/java/com/greenlaw110/rythm/internal/parser/build_in/ExpressionParser.java b/src/main/java/com/greenlaw110/rythm/internal/parser/build_in/ExpressionParser.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/greenlaw110/rythm/internal/parser/build_in/ExpressionParser.java +++ b/src/main/java/co...
revert an in correct change in ExperssionParser
rythmengine_rythmengine
train
73de75f1f538d668585f958e949cf38428644998
diff --git a/tests/Unit/CachedBuilderTest.php b/tests/Unit/CachedBuilderTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/CachedBuilderTest.php +++ b/tests/Unit/CachedBuilderTest.php @@ -500,7 +500,18 @@ class CachedBuilderTest extends TestCase public function testRawWhereClauseParsing() { - // -...
Add unit test for raw where clause parsing
GeneaLabs_laravel-model-caching
train
fd3ba425c333c3921bae9f2c1e9b40a9d550e8e4
diff --git a/google-cloud-asset-v1/lib/google/cloud/asset/v1/asset_service/client.rb b/google-cloud-asset-v1/lib/google/cloud/asset/v1/asset_service/client.rb index <HASH>..<HASH> 100644 --- a/google-cloud-asset-v1/lib/google/cloud/asset/v1/asset_service/client.rb +++ b/google-cloud-asset-v1/lib/google/cloud/asset/v1/a...
fix(asset-v1): Allow special symbolic credentials in client configs
googleapis_google-cloud-ruby
train
8fbb3867a41f5044ddfec20d369b059e2a42c610
diff --git a/src/Zicht/Bundle/UrlBundle/Aliasing/ProviderDecorator.php b/src/Zicht/Bundle/UrlBundle/Aliasing/ProviderDecorator.php index <HASH>..<HASH> 100644 --- a/src/Zicht/Bundle/UrlBundle/Aliasing/ProviderDecorator.php +++ b/src/Zicht/Bundle/UrlBundle/Aliasing/ProviderDecorator.php @@ -6,7 +6,8 @@ namespace Zic...
BC break: SecurityContextInterface => AuthorizationChecker Implementations of the ListableProvider must now use AuthorizationCheckerInterface in the method `all()` as a first parameter.
zicht_url-bundle
train
89428ae268d2be5371a50c77d0e21bb5e952db77
diff --git a/src/java/org/apache/cassandra/service/StorageProxy.java b/src/java/org/apache/cassandra/service/StorageProxy.java index <HASH>..<HASH> 100644 --- a/src/java/org/apache/cassandra/service/StorageProxy.java +++ b/src/java/org/apache/cassandra/service/StorageProxy.java @@ -1476,7 +1476,7 @@ public class Storag...
use floating pt math for percentages
Stratio_stratio-cassandra
train
10a6dcd017e77fb376b5dc6d665089832334f94e
diff --git a/app/search_builders/curation_concerns/member_search_builder.rb b/app/search_builders/curation_concerns/member_search_builder.rb index <HASH>..<HASH> 100644 --- a/app/search_builders/curation_concerns/member_search_builder.rb +++ b/app/search_builders/curation_concerns/member_search_builder.rb @@ -6,12 +6,1...
MemberSearchBuilder does not need collection from the scope The collection id is already passed to the search builder as parameters. This loosens the coupling between the search builder and the controller.
samvera_hyrax
train
d67aaff74ab8cbb574666a1be44045f47bc80716
diff --git a/lib/vagrant/machine/remote.rb b/lib/vagrant/machine/remote.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/machine/remote.rb +++ b/lib/vagrant/machine/remote.rb @@ -370,8 +370,8 @@ module Vagrant synced_folder_clients.each do |f| next if f[:folder][:disabled] # TODO: get typ...
Set the client using keyword for synced folder
hashicorp_vagrant
train
2198ed591fa5ccdfd73b42f471c23c5f2cbc34db
diff --git a/saltcloud/clouds/ec2.py b/saltcloud/clouds/ec2.py index <HASH>..<HASH> 100644 --- a/saltcloud/clouds/ec2.py +++ b/saltcloud/clouds/ec2.py @@ -1154,3 +1154,43 @@ def create_volume(kwargs=None, call=None): data = query(params, return_root=True) return data + + +def attach_volume(name=None, kwargs...
Add attach_volume() to ec2
saltstack_salt
train
f21c221cb4d2ca4e813f2c717712b1a7e8b5fcf7
diff --git a/indra/sources/indra_db_rest/util.py b/indra/sources/indra_db_rest/util.py index <HASH>..<HASH> 100644 --- a/indra/sources/indra_db_rest/util.py +++ b/indra/sources/indra_db_rest/util.py @@ -64,6 +64,7 @@ def make_db_rest_request(meth, end_point, query_str, data=None, params=None, method_func = getattr...
Handle 0 timeouts more gracefully when passed along.
sorgerlab_indra
train
32b3545c837aeb8f6505921cb58f9b80665ccc2e
diff --git a/src/Controller/SearchPackageController.php b/src/Controller/SearchPackageController.php index <HASH>..<HASH> 100644 --- a/src/Controller/SearchPackageController.php +++ b/src/Controller/SearchPackageController.php @@ -284,11 +284,11 @@ class SearchPackageController extends AbstractController /** ...
Fix indention in phpDoc
tenside_core-bundle
train
7c6e83334bdab6f8ebf8eca642ae69fbae1534eb
diff --git a/lib/brainstem/api_docs/formatters/open_api_specification/endpoint_formatter.rb b/lib/brainstem/api_docs/formatters/open_api_specification/endpoint_formatter.rb index <HASH>..<HASH> 100644 --- a/lib/brainstem/api_docs/formatters/open_api_specification/endpoint_formatter.rb +++ b/lib/brainstem/api_docs/forma...
Update Open Api Specification Endpoint formatter to have overridable methods
mavenlink_brainstem
train
2f68f35424dbf94141cd3bf139569227c40e99a7
diff --git a/includes/class-freemius.php b/includes/class-freemius.php index <HASH>..<HASH> 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -22573,6 +22573,11 @@ return false; } + if ( $this->is_activation_page() ) { + // Don't ...
[tabs] Don't include tabs when viewing the activation page.
Freemius_wordpress-sdk
train
54416ec12cd192bfbc6c1c3b8a34135e49767cf6
diff --git a/spyder/app/mainwindow.py b/spyder/app/mainwindow.py index <HASH>..<HASH> 100644 --- a/spyder/app/mainwindow.py +++ b/spyder/app/mainwindow.py @@ -3258,23 +3258,27 @@ class MainWindow(QMainWindow): if shortcut_sequence: keyseq = QKeySequence(shortcut_sequence) - ...
Shortcuts: Clear old setted shortcuts if they are now empty
spyder-ide_spyder
train
a0a5705fd83a58b02411c458d6f9671a6e5b843a
diff --git a/gns3server/server.py b/gns3server/server.py index <HASH>..<HASH> 100644 --- a/gns3server/server.py +++ b/gns3server/server.py @@ -32,6 +32,7 @@ import socket import tornado.ioloop import tornado.web import tornado.autoreload +import pkg_resources from pkg_resources import parse_version from .config ...
Fixes issue with Frozen server and templates directory.
GNS3_gns3-server
train
fe3c79c6cfbe9b92db3ec21fe0576bd25f4cafc0
diff --git a/lib/diffy/html_formatter.rb b/lib/diffy/html_formatter.rb index <HASH>..<HASH> 100644 --- a/lib/diffy/html_formatter.rb +++ b/lib/diffy/html_formatter.rb @@ -44,7 +44,9 @@ module Diffy end def highlighted_words - chunks = @diff.each_chunk.to_a + chunks = @diff.each_chunk. + rej...
Do inline highlighting on last line when there's no newline at end of file
samg_diffy
train
5487c8110b2fe192bd0859b2ea5b49b7c8a0ba07
diff --git a/dallinger/command_line/develop.py b/dallinger/command_line/develop.py index <HASH>..<HASH> 100644 --- a/dallinger/command_line/develop.py +++ b/dallinger/command_line/develop.py @@ -1,5 +1,8 @@ import click +from six.moves.urllib.parse import urlparse +from six.moves.urllib.parse import urlunparse + fr...
Don't require entering dashboard creds if they're in config
Dallinger_Dallinger
train
538ab62dcdd003e952cd991f9af08a4a79e269ef
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ CHANGELOG for Sulu ================== * dev-release/1.5 + * HOTFIX #3739 [ContentBundle] Added locale to content-teaser query * HOTFIX #3730 [ContactBundle] Fi...
added locale to content-teaser query (#<I>)
sulu_sulu
train
348df4e2a482d85980dfb810a0ba9417ea026bfd
diff --git a/core/lib/refinery/core.rb b/core/lib/refinery/core.rb index <HASH>..<HASH> 100644 --- a/core/lib/refinery/core.rb +++ b/core/lib/refinery/core.rb @@ -24,4 +24,3 @@ require 'decorators' require 'jquery-rails' require 'jquery-ui-rails' require 'sass-rails' -require 'coffee-rails' diff --git a/templates/re...
remove unused coffee-rails that breaks dummy generator
refinery_refinerycms
train
a741ceb4404c12913e9dc7626fb4b3dc4b75e04d
diff --git a/master/buildbot/test/unit/steps/test_cmake.py b/master/buildbot/test/unit/steps/test_cmake.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/unit/steps/test_cmake.py +++ b/master/buildbot/test/unit/steps/test_cmake.py @@ -154,3 +154,7 @@ class TestCMake(TestBuildStepMixin, TestReactorMixin, unittes...
Add unit test for fixing an error in passing CMake options and definitions on the cmake command line.
buildbot_buildbot
train
c6f20ccb1f0ce664ddc17916c522aa5d27a7996c
diff --git a/structr-ui/src/main/java/org/structr/web/resource/TokenResource.java b/structr-ui/src/main/java/org/structr/web/resource/TokenResource.java index <HASH>..<HASH> 100644 --- a/structr-ui/src/main/java/org/structr/web/resource/TokenResource.java +++ b/structr-ui/src/main/java/org/structr/web/resource/TokenRes...
Enhancemant: Sets token cookies in secure mode if request is also made via secure connection.
structr_structr
train
fca34be563290c4971dc14a699bda9f6c6aa3bab
diff --git a/functions.php b/functions.php index <HASH>..<HASH> 100644 --- a/functions.php +++ b/functions.php @@ -6,7 +6,7 @@ if (!function_exists('getRootPath')) { function getRootPath(): string { - $dir = $rootDir = __DIR__; + $dir = __DIR__; while (!file_exists($dir . '/composer.l...
:fire: Remove unused assignment
Th3Mouk_OpenAPIGenerator
train
1dff5f40aaca7c93db365f4aa0f8be7257387494
diff --git a/eventsourcing/domain/model/snapshot.py b/eventsourcing/domain/model/snapshot.py index <HASH>..<HASH> 100644 --- a/eventsourcing/domain/model/snapshot.py +++ b/eventsourcing/domain/model/snapshot.py @@ -1,5 +1,4 @@ from eventsourcing.domain.model.events import DomainEvent, publish -from eventsourcing.domai...
Proposed fix: The snapshot event uses a hard-coded class instead of the entity's class. I think this might be a problem. Either that or I don't understand how to use the Snapshot model. :)
johnbywater_eventsourcing
train
cc7d99f48f40c1db1e3f6e4ef29c23eeb3cac68b
diff --git a/Configuration/TCA/Overrides/be_users.php b/Configuration/TCA/Overrides/be_users.php index <HASH>..<HASH> 100644 --- a/Configuration/TCA/Overrides/be_users.php +++ b/Configuration/TCA/Overrides/be_users.php @@ -8,17 +8,16 @@ if( !defined( 'TYPO3_MODE' ) ) { $beUsersSiteFcn = function() { $list = [['', ...
Rewritten retrieving sites for backend user select box
aimeos_aimeos-typo3
train
cc550367dd3fe992a809e2e56c196dea0049af0c
diff --git a/test/reducers/projectSpec.js b/test/reducers/projectSpec.js index <HASH>..<HASH> 100644 --- a/test/reducers/projectSpec.js +++ b/test/reducers/projectSpec.js @@ -197,4 +197,35 @@ describe('Project reducer: ', () => { chai.expect(movedNode.position).to.deep.equal(position); }); }); + + descr...
test(load): add test for loading project state from json
xodio_xod
train
7349523b09c983d0dd646987b15d98aac1989187
diff --git a/src/DataObject.php b/src/DataObject.php index <HASH>..<HASH> 100644 --- a/src/DataObject.php +++ b/src/DataObject.php @@ -11,7 +11,7 @@ class DataObject { /** Separator for keys path elements */ const PS = '/'; - + /**#@+ * Magic methods prefixes. * @@ -180,7 +180,7 @@ class...
Save complex objects as-is and navigate through nested DataObjects like through array.
flancer32_php_data_object
train
dc07a973967e97a7b455fbd074e854611190471a
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -12,7 +12,8 @@ function File(file) { if (!file) file = {}; // record path change - this.history = file.path ? [file.path] : []; + var history = file.path ? [file.path] : file.history; + this.history = history || [];...
Fix: Allow history to be set in the constructor (closes #<I>)
gulpjs_vinyl
train
c545a9780cd5008e53de2b05c67ba624a2b8d6b9
diff --git a/lib/juici/build_queue.rb b/lib/juici/build_queue.rb index <HASH>..<HASH> 100644 --- a/lib/juici/build_queue.rb +++ b/lib/juici/build_queue.rb @@ -34,6 +34,10 @@ module Juici @builds.sort_by(&:priority).first end + def candidate_children + @builds.sort_by(&:priority) + end + de...
Build different projects in parrallel
richo_juici
train
be3cfe261df4b87ca702d8786ffe2e61cf906355
diff --git a/integration-tests/apps/rack/futures/app/tasks/some_task.rb b/integration-tests/apps/rack/futures/app/tasks/some_task.rb index <HASH>..<HASH> 100644 --- a/integration-tests/apps/rack/futures/app/tasks/some_task.rb +++ b/integration-tests/apps/rack/futures/app/tasks/some_task.rb @@ -15,6 +15,7 @@ class SomeT...
I hate to do it, but let's see if sleep() makes the test more robust.
torquebox_torquebox
train
50768d858a0778bcce7b71040b43ff397af3c0f9
diff --git a/cosmic_ray/worker.py b/cosmic_ray/worker.py index <HASH>..<HASH> 100644 --- a/cosmic_ray/worker.py +++ b/cosmic_ray/worker.py @@ -21,12 +21,12 @@ try: except ImportError: pass -from .config import serialize_config -from .importing import preserve_modules, using_ast -from .mutating import MutatingCo...
using absolute import rather than relative in worker.py
sixty-north_cosmic-ray
train
a736e3cc8ab5c7ce3db4f01beb0a3f9ee343cc3b
diff --git a/src/_utils.js b/src/_utils.js index <HASH>..<HASH> 100644 --- a/src/_utils.js +++ b/src/_utils.js @@ -476,7 +476,7 @@ export const makeSourceMapGenerator = file => { export const addSourceMaps = (code, generator, filename) => { const sourceMaps = [ convert.fromObject(generator).toComment({ multili...
Escape filename in generated source map code. (#<I>) Currently on windows `sourceURL`s for source maps are broken and if the path includes a file or folder that starts with "u" or "x" followed by an incorrect escape sequence the produced code fails to compile. This replaces all instances of "\" inside the string wi...
zeit_styled-jsx
train
1ed19e52558496d7aa73cbd386952321b1373abd
diff --git a/android/src/main/java/com/swmansion/reanimated/nodes/JSCallNode.java b/android/src/main/java/com/swmansion/reanimated/nodes/JSCallNode.java index <HASH>..<HASH> 100644 --- a/android/src/main/java/com/swmansion/reanimated/nodes/JSCallNode.java +++ b/android/src/main/java/com/swmansion/reanimated/nodes/JSCal...
Allow call's input to be a string on Android (#<I>) Motivation On Android, JSCall exception is thrown type if node's value is a string Changes Added condition for checking if the type of node is a string and then handle it properly.
kmagiera_react-native-reanimated
train
598bf343494b8b71573d7fe2238326a80f8a3456
diff --git a/src/pipeline/pipeline.py b/src/pipeline/pipeline.py index <HASH>..<HASH> 100755 --- a/src/pipeline/pipeline.py +++ b/src/pipeline/pipeline.py @@ -1041,17 +1041,13 @@ class After(object): """Initializer. Args: - *futures: One or more PipelineFutures that all subsequent pipelines - sh...
Allow an empty list of futures to be passed to After()
GoogleCloudPlatform_appengine-pipelines
train
8e231986202b0dd2e15c131f5a29b031057e9f49
diff --git a/src/Sylius/Bundle/ResourceBundle/EventListener/KernelControllerSubscriber.php b/src/Sylius/Bundle/ResourceBundle/EventListener/KernelControllerSubscriber.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Bundle/ResourceBundle/EventListener/KernelControllerSubscriber.php +++ b/src/Sylius/Bundle/ResourceBundl...
Allow underline in group names for API `groups` header Q | A ------------- | ------------- Bug fix? | yes New feature? | no BC breaks? | no Deprecations? | no Fixed tickets | - License | MIT Doc PR | - Before this patch followoing header would not work as expected: `Accept: application/json; groups=D...
Sylius_Sylius
train
f729a61764d7a279180890fea780e80b6005c06e
diff --git a/starbound/btreedb4.py b/starbound/btreedb4.py index <HASH>..<HASH> 100644 --- a/starbound/btreedb4.py +++ b/starbound/btreedb4.py @@ -126,7 +126,7 @@ class BTreeIndex(sbbf02.Block): __slots__ = ['keys', 'level', 'num_keys', 'values'] - def __init__(self, file): + def __init__(self, file, blo...
Make the block index available to Block instances
blixt_py-starbound
train
a4dc65a48313e0a09f7e1f4b983d852295b29631
diff --git a/packages/ra-ui-materialui/src/list/List.js b/packages/ra-ui-materialui/src/list/List.js index <HASH>..<HASH> 100644 --- a/packages/ra-ui-materialui/src/list/List.js +++ b/packages/ra-ui-materialui/src/list/List.js @@ -9,11 +9,13 @@ import { ListController, getListControllerProps } from 'ra-core'; import T...
Fix warning about missing BulkDeleteButton props
marmelab_react-admin
train
3f817c56fd34f697872e1053b97f13c544dee70d
diff --git a/src/java/grails/util/Environment.java b/src/java/grails/util/Environment.java index <HASH>..<HASH> 100644 --- a/src/java/grails/util/Environment.java +++ b/src/java/grails/util/Environment.java @@ -107,6 +107,13 @@ public enum Environment { return getCurrent(); } + /** + * Re...
fixes the problem that broke the ability to run some Grails core tests within STS or IntelliJ
grails_grails-core
train
b584b56df6267eaafbe33087243b9aaa593c9642
diff --git a/src/foundations/walkers.py b/src/foundations/walkers.py index <HASH>..<HASH> 100644 --- a/src/foundations/walkers.py +++ b/src/foundations/walkers.py @@ -264,7 +264,7 @@ def dictionariesWalker(dictionary, path=()): @core.executionTrace @foundations.exceptions.exceptionsHandler(None, False, Exception) -...
Add ascendants yielding capability to "foundations.walkers.nodesWalker" iterator definition.
KelSolaar_Foundations
train
4edbe770eb6d057f3d4d3d31e841df65d7209790
diff --git a/graphql_compiler/compiler/ir_lowering_sql/__init__.py b/graphql_compiler/compiler/ir_lowering_sql/__init__.py index <HASH>..<HASH> 100644 --- a/graphql_compiler/compiler/ir_lowering_sql/__init__.py +++ b/graphql_compiler/compiler/ir_lowering_sql/__init__.py @@ -41,7 +41,7 @@ def lower_ir(ir_blocks, query_m...
Making ConstructResult handling clear, not modifying IR blocks
kensho-technologies_graphql-compiler
train
feee60fdffd792b4cc4ddc3e1d4ec7d613e0d24b
diff --git a/packages/cozy-konnector-libs/src/index.js b/packages/cozy-konnector-libs/src/index.js index <HASH>..<HASH> 100644 --- a/packages/cozy-konnector-libs/src/index.js +++ b/packages/cozy-konnector-libs/src/index.js @@ -1,6 +1,7 @@ const log = require('cozy-logger').namespace('cozy-konnector-libs') const reque...
fix: add isomorphic-fetch to unit tests This is due to a change of pouch dependency in cozy-client-js which now use pouchdb-browser instead of pouchdb
konnectors_libs
train
762fefeb93ce6347a0bdbfebc5de20bb2accc93e
diff --git a/ndb/query.py b/ndb/query.py index <HASH>..<HASH> 100644 --- a/ndb/query.py +++ b/ndb/query.py @@ -15,9 +15,12 @@ For example: rank = IntegerProperty() @classmethod - def seniors(cls, min_age, min_rank): - return cls.query().filter(AND(cls.age >= min_age, - ...
Provide examples that actually work. Add to startup.py.
GoogleCloudPlatform_datastore-ndb-python
train
f1cae08b570703e915f06172b0bbbb54f6d96150
diff --git a/pyaxiom/netcdf/grids/binner.py b/pyaxiom/netcdf/grids/binner.py index <HASH>..<HASH> 100644 --- a/pyaxiom/netcdf/grids/binner.py +++ b/pyaxiom/netcdf/grids/binner.py @@ -56,7 +56,7 @@ def main(output_path, delta, ncml_file=None, glob_string=None, apply_to_members= file_name = "{0}_TO_{1}.nc".f...
Fix logging message when combining through `binner`
axiom-data-science_pyaxiom
train
ad3259bd07946744f55e07954ac98c0b7d6aa04f
diff --git a/ezinfo.php b/ezinfo.php index <HASH>..<HASH> 100644 --- a/ezinfo.php +++ b/ezinfo.php @@ -10,12 +10,24 @@ class ggwebservicesInfo 'Copyright' => "Copyright (C) 2009-2010 Gaetano Giunta", 'License' => "GNU General Public License v2.0", 'Includes the following third-par...
- update declaration of included sw in ezinfo.php
gggeek_ggwebservices
train
4e5c6f9d4003011019134007bb0dea77d047082e
diff --git a/lib/chef/resource_collection.rb b/lib/chef/resource_collection.rb index <HASH>..<HASH> 100644 --- a/lib/chef/resource_collection.rb +++ b/lib/chef/resource_collection.rb @@ -54,6 +54,9 @@ class Chef end end + # 'push' is an alias method to << + alias_method :push, :<< + def in...
removed duplicate for push in resource_collection
chef_chef
train
09cb49542364694f2eec84f61b63e40ae8dcd05f
diff --git a/dvc/version.py b/dvc/version.py index <HASH>..<HASH> 100644 --- a/dvc/version.py +++ b/dvc/version.py @@ -6,7 +6,7 @@ import os import subprocess -_BASE_VERSION = "2.0.13" +_BASE_VERSION = "2.0.14" def _generate_version(base_version):
dvc: bump to <I>
iterative_dvc
train
8868373c3bf5c9eb38d912280110288053d5c383
diff --git a/packages/Box/handleResponsiveStyles.js b/packages/Box/handleResponsiveStyles.js index <HASH>..<HASH> 100644 --- a/packages/Box/handleResponsiveStyles.js +++ b/packages/Box/handleResponsiveStyles.js @@ -6,15 +6,13 @@ const DESKTOP_BREAKPOINTS = ['md', 'lg', 'xl'] export const isMobileBreakpoint = breakpoin...
chore(core-box): simplify if statement in responsive handler
telus_tds-core
train
c8db8d415467b357a4861e88f8ed5432626dad63
diff --git a/scriptabit/habitica_service.py b/scriptabit/habitica_service.py index <HASH>..<HASH> 100644 --- a/scriptabit/habitica_service.py +++ b/scriptabit/habitica_service.py @@ -356,3 +356,39 @@ class HabiticaService(object): response = self.__put('user', {'stats.gp': gp}) response.raise_for_stat...
added habitica service methods to query and create tags
DC23_scriptabit
train
ae182a7c20154c19b38f651f7276118074be7795
diff --git a/builder/qemu/step_forward_ssh.go b/builder/qemu/step_forward_ssh.go index <HASH>..<HASH> 100644 --- a/builder/qemu/step_forward_ssh.go +++ b/builder/qemu/step_forward_ssh.go @@ -4,9 +4,8 @@ import ( "context" "fmt" "log" - "math/rand" - "net" + "github.com/hashicorp/packer/common/net" "github.com...
qemu stepForwardSSH: use common/net pkg to find open port
hashicorp_packer
train
a05e06245dbf2b43411a33b72350de99b4e1d64f
diff --git a/kernel/src/main/java/org/efaps/db/Insert.java b/kernel/src/main/java/org/efaps/db/Insert.java index <HASH>..<HASH> 100644 --- a/kernel/src/main/java/org/efaps/db/Insert.java +++ b/kernel/src/main/java/org/efaps/db/Insert.java @@ -28,6 +28,7 @@ import java.util.ArrayList; import java.util.Iterator; import...
- the SearchQuery and Insert work now also with the UUID of a type git-svn-id: <URL>
eFaps_eFaps-Kernel
train
e9f61661efe1043c799a51705f1e8ac6b3ff6033
diff --git a/lib/watir/window.rb b/lib/watir/window.rb index <HASH>..<HASH> 100644 --- a/lib/watir/window.rb +++ b/lib/watir/window.rb @@ -207,6 +207,9 @@ module Watir if @selector.empty? nil elsif @selector.key?(:index) + Watir.logger.deprecate 'Using :index as a selector for Window', ':t...
deprecate locating windows by index
watir_watir
train
470bf2d44b1af645bdb30de42dbcff491aae14bf
diff --git a/src/test/java/org/webdriverextensions/ExamplesPageTest.java b/src/test/java/org/webdriverextensions/ExamplesPageTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/webdriverextensions/ExamplesPageTest.java +++ b/src/test/java/org/webdriverextensions/ExamplesPageTest.java @@ -23,7 +23,7 @@ public ...
Updated model tests url to renamed model-test.html
webdriverextensions_webdriverextensions
train