hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
e707168cf268369327127a43c56663f28c7ccb87
diff --git a/spyder/utils/introspection/manager.py b/spyder/utils/introspection/manager.py index <HASH>..<HASH> 100644 --- a/spyder/utils/introspection/manager.py +++ b/spyder/utils/introspection/manager.py @@ -33,7 +33,7 @@ dependencies.add('rope', _("Editor's code completion, go-to-definition and he...
Introspection: Change Jedi required version to <I>
spyder-ide_spyder
train
06e66b6dc6e2ac1498a76e31a3e7111a38bc0d11
diff --git a/dynaphopy/__init__.py b/dynaphopy/__init__.py index <HASH>..<HASH> 100644 --- a/dynaphopy/__init__.py +++ b/dynaphopy/__init__.py @@ -66,10 +66,6 @@ class Quasiparticle: self._power_spectrum_direct = None self.force_constants_clear() -# self._renormalized_force_constants = None -...
Fix bug in plot renormalized phonon dispersion
abelcarreras_DynaPhoPy
train
2074886ca89a22ebb687b0dfafa28926022c84cb
diff --git a/examples/sarsa_cartpole.py b/examples/sarsa_cartpole.py index <HASH>..<HASH> 100644 --- a/examples/sarsa_cartpole.py +++ b/examples/sarsa_cartpole.py @@ -44,4 +44,4 @@ sarsa.fit(env, nb_steps=5000, visualize=False, verbose=2) sarsa.save_weights('sarsa_{}_weights.h5f'.format(ENV_NAME), overwrite=True) #...
Added visualisation for evaluation rounds (#<I>)
keras-rl_keras-rl
train
11da0c1ea4d944e28e4ab236d0e812be16dd5fcf
diff --git a/warehouse/forklift/legacy.py b/warehouse/forklift/legacy.py index <HASH>..<HASH> 100644 --- a/warehouse/forklift/legacy.py +++ b/warehouse/forklift/legacy.py @@ -1139,7 +1139,9 @@ def file_upload(request): releases = ( request.db.query(Release) .filter(Release.project == project) - ...
Fix N<I> Queries on the upload API (#<I>)
pypa_warehouse
train
feec7564b34f2200cb92d36c27651fdaecf4cf24
diff --git a/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud/CloudCacheStore.java b/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud/CloudCacheStore.java index <HASH>..<HASH> 100644 --- a/cachestore/cloud/src/main/java/org/infinispan/loaders/cloud/CloudCacheStore.java +++ b/cachestore/cloud/src/m...
during purge a RL is already acquired on all the entries. What we need to do is to upgrade that to an WL, otherwise the WL acquisition will block forever.
infinispan_infinispan
train
b160e63d827a35efb3da909da6003f4665607be5
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -30,14 +30,27 @@ logger.error('dis is broke m8'); logger.fatal('shit went wrong D:'); ``` +Now execute the script: ```sh +# Prints all messages DEBUG='*' node logger.js + +# Prints only warnings +DEBUG=*WARN* node lo...
FEATURE: Trace the fatal method and do not swallow fatal exceptions based on the DEBUG env variable
Inkdpixels_log-fancy
train
f6130d4ebbea0cbb761196fe59304ff658e99e2c
diff --git a/auth.go b/auth.go index <HASH>..<HASH> 100644 --- a/auth.go +++ b/auth.go @@ -12,7 +12,9 @@ import ( // // This encapsulates the different authentication schemes in use type Authenticator interface { + // Request creates an http.Request for the auth - return nil if not needed Request(*Connection) (*ht...
Make Request/Response optional in custom Auth by returning nil If you don't actually want your custom Auth to make an HTTP request (let's say you are getting the token from a database) then just return nil from the Request method. This will skip the HTTP transaction and parsing it with the Response method.
ncw_swift
train
6aeadb934084c8a6e2abe8d348b636e7530994f1
diff --git a/src/Translation/Translator.php b/src/Translation/Translator.php index <HASH>..<HASH> 100644 --- a/src/Translation/Translator.php +++ b/src/Translation/Translator.php @@ -40,7 +40,7 @@ class Translator private static function translate(Application $app, $fn, $args, $key, $replace, $domain = 'contenttyp...
Convert further direct usages of trans()
bolt_bolt
train
9a54bb37ea9507cecc4657d7cbcc887c6ed10f37
diff --git a/core/core.go b/core/core.go index <HASH>..<HASH> 100644 --- a/core/core.go +++ b/core/core.go @@ -91,6 +91,12 @@ func (a *api) reset(ctx context.Context) error { } func (a *api) info(ctx context.Context) (map[string]interface{}, error) { + if a.config == nil { + // never configured + return map[strin...
core: don't call leader for unconfigured core Closes chain/chainprv#<I>. Reviewers: @kr
chain_chain
train
5b242a1d45047abab1614a1d3e44dc4be71bb95f
diff --git a/lib/slimmer/processors/search_remover.rb b/lib/slimmer/processors/search_remover.rb index <HASH>..<HASH> 100644 --- a/lib/slimmer/processors/search_remover.rb +++ b/lib/slimmer/processors/search_remover.rb @@ -9,7 +9,7 @@ module Slimmer::Processors search = dest.at_css("#global-header #search") ...
Amend toggle button selector The code in search_remover.rb assumes that the search toggle button is a link. This is an issue as work is being done to change the markup of this button for accessibility purposes. Change the search toggle button selector to a class selector instead to ensure that functionality is prese...
alphagov_slimmer
train
5ffa38da11ea7c778fb9b4dc74083802aa20257f
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -1589,7 +1589,7 @@ var CodeMirror = (function() { if (selectionChanged && options.matchBrackets) setTimeout(operation(function() { if (bracketHighlighted) {bracket...
Only match brackets when nothing is selected
codemirror_CodeMirror
train
439223cde9467af3d51c7a20d06738916d58af06
diff --git a/core/src/test/java/io/undertow/util/FileSystemWatcherTestCase.java b/core/src/test/java/io/undertow/util/FileSystemWatcherTestCase.java index <HASH>..<HASH> 100644 --- a/core/src/test/java/io/undertow/util/FileSystemWatcherTestCase.java +++ b/core/src/test/java/io/undertow/util/FileSystemWatcherTestCase.ja...
Possible fix for issue running tests on Windows
undertow-io_undertow
train
e77843aa1f500bf98827dab3ec8819caecc289da
diff --git a/ncclient/transport/ssh.py b/ncclient/transport/ssh.py index <HASH>..<HASH> 100644 --- a/ncclient/transport/ssh.py +++ b/ncclient/transport/ssh.py @@ -521,7 +521,7 @@ class SSHSession(Session): saved_exception = None for key_filename in key_filenames: - for cls in (paramiko.RS...
add Ed<I>Key to class tuple used for private key auth
ncclient_ncclient
train
74681514a003a4831193f6c56fb23daf9895a087
diff --git a/lib/drivers/saucelabs.js b/lib/drivers/saucelabs.js index <HASH>..<HASH> 100644 --- a/lib/drivers/saucelabs.js +++ b/lib/drivers/saucelabs.js @@ -175,7 +175,7 @@ SauceLabsClient.prototype = util.merge(new TunnelClient, { //.setContext('tunnel-identifier:' + (!existingTunnel && TUNNEL_ID ||...
Adding debug mode for test runner
peteromano_jetrunner
train
c04735b7b0a1a5bc1212e4cdcdf3697dcdc2a25e
diff --git a/lib/neo4apis/base.rb b/lib/neo4apis/base.rb index <HASH>..<HASH> 100644 --- a/lib/neo4apis/base.rb +++ b/lib/neo4apis/base.rb @@ -120,15 +120,22 @@ module Neo4Apis def create_node_query(node_proxy) return if node_proxy.props.empty? + props = node_proxy.props + extra_labels = props.d...
Support _extra_labels property for when we want to import more than just one label
neo4jrb_neo4apis
train
55727a19fdeb8ef7a59068f4edc59f9841a2a4c0
diff --git a/clam/clamservice.py b/clam/clamservice.py index <HASH>..<HASH> 100755 --- a/clam/clamservice.py +++ b/clam/clamservice.py @@ -916,7 +916,9 @@ class Project: errors = "yes" errormsg = "An error occurred within the system. Please inspect the error log for details" ...
Implemented CUSTOMHTML_PROJECTFAILED (+ fix for CUSTOMHTML_PROJECTDONE) #<I>
proycon_clam
train
8db0bbe71bf9def44f06c24738bd93c596cedd60
diff --git a/src/AbstractQuantity.php b/src/AbstractQuantity.php index <HASH>..<HASH> 100644 --- a/src/AbstractQuantity.php +++ b/src/AbstractQuantity.php @@ -131,7 +131,7 @@ abstract class AbstractQuantity // Multiply the amount by the conversion factor and create a new // Weight with the new Unit ...
Bug fix for using new Weight instead of new static
phospr_quantity
train
802ab1baa92f90c79fbf1d22b38ae85702471787
diff --git a/lib/types.js b/lib/types.js index <HASH>..<HASH> 100644 --- a/lib/types.js +++ b/lib/types.js @@ -221,8 +221,8 @@ var typeEncoder = (function(){ function decodeTimestamp (bytes) { var value = decodeBigNumber(bytes); - if (isFinite(value)) { - return new Date(value.valueOf()); + if (val...
Replaced usage of node-int<I> to Closure Library Long.js
jorgebay_node-cassandra-cql
train
b1e79fc4b37befb3f0495005b79e59b165c014be
diff --git a/lib/paper_trail/version.rb b/lib/paper_trail/version.rb index <HASH>..<HASH> 100644 --- a/lib/paper_trail/version.rb +++ b/lib/paper_trail/version.rb @@ -4,7 +4,7 @@ class Version < ActiveRecord::Base attr_accessible :item_type, :item_id, :event, :whodunnit, :object, :object_changes def self.with_i...
Updating syntax on Version class's :item_with_keys class method to use arel syntax instead of the outdated 'scoped' syntax.
paper-trail-gem_paper_trail
train
6d812d7ac3cccbecf9f9cece07f52dcdc96f5d1d
diff --git a/lib/disk/modules/VhdxDisk.rb b/lib/disk/modules/VhdxDisk.rb index <HASH>..<HASH> 100644 --- a/lib/disk/modules/VhdxDisk.rb +++ b/lib/disk/modules/VhdxDisk.rb @@ -519,6 +519,7 @@ module VhdxDisk def parent_disk(path) @parent_ostruct = OpenStruct.new @parent_ostruct.fileName ...
Pre-existing Checkpoint Issue Handling SSA on a VM with pre-existing checkpoints on Hyper-V hosts is causing an issue because there is an attempt to use an uninitialized "@scvmm" variable when attempting to open the second disk in the chain. Not sure why this never happened before but it works now.
ManageIQ_manageiq-smartstate
train
0716650744b4b5f21995b8e01d299f51bf183b04
diff --git a/logging/init_test.go b/logging/init_test.go index <HASH>..<HASH> 100644 --- a/logging/init_test.go +++ b/logging/init_test.go @@ -16,12 +16,15 @@ var ( LONG_CURL_TIMEOUT = 2 * time.Minute ) -var context helpers.SuiteContext +var ( + context helpers.SuiteContext + config helpers.Config +) func Test...
Make config global in all suites [#<I>]
cloudfoundry_cf-acceptance-tests
train
d77c65790c05de50ae2fbadb0daef8c926be8579
diff --git a/digitalocean/Action.py b/digitalocean/Action.py index <HASH>..<HASH> 100644 --- a/digitalocean/Action.py +++ b/digitalocean/Action.py @@ -18,12 +18,12 @@ class Action(BaseAPI): super(Action, self).__init__(*args, **kwargs) @classmethod - def get_object(cls, api_token, droplet_id, action_...
The class method to get the object from a specific ID does not required the Droplet ID anymore.
koalalorenzo_python-digitalocean
train
58e9b1893053d2dd678b220aa08e2b83598cdaec
diff --git a/xtuml/model.py b/xtuml/model.py index <HASH>..<HASH> 100644 --- a/xtuml/model.py +++ b/xtuml/model.py @@ -236,6 +236,8 @@ class BaseObject(object): __m__ = None # store a handle to the meta model which created the instance __c__ = dict() # store a cached results from queries __a__ = list()...
model: keep track of identifying and derived attributes
xtuml_pyxtuml
train
47ae09467576f23b72292ba64694a9a4a36b221d
diff --git a/src/openseadragon.js b/src/openseadragon.js index <HASH>..<HASH> 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -1725,6 +1725,21 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){ return value ? value : null; }, + /** + * Retrieves...
Fix ajax call for file: and ftp: #<I>
openseadragon_openseadragon
train
03843715a5ea26483e8d546d1d0ba90542678fc4
diff --git a/src/AcuityScheduling.php b/src/AcuityScheduling.php index <HASH>..<HASH> 100644 --- a/src/AcuityScheduling.php +++ b/src/AcuityScheduling.php @@ -103,7 +103,7 @@ class AcuityScheduling { /** * Verify a message signature using your API key. */ - public static function verifyMessageSignature ($secre...
Initial scheduler embed-code builder.
AcuityScheduling_acuity-php
train
33ae504a9928437d76142eaaa3c79232148adaad
diff --git a/functions/i18n.php b/functions/i18n.php index <HASH>..<HASH> 100644 --- a/functions/i18n.php +++ b/functions/i18n.php @@ -64,9 +64,9 @@ function hybrid_override_load_textdomain( $override, $domain, $mofile ) { * a text string with the given domain. The purpose of this function is to simply check if the ...
i<I>n.php cleanup.
justintadlock_hybrid-core
train
e984065e3c98532224d507b828b2be69325a8b5b
diff --git a/src/Sampler/RateLimitingSampler.php b/src/Sampler/RateLimitingSampler.php index <HASH>..<HASH> 100644 --- a/src/Sampler/RateLimitingSampler.php +++ b/src/Sampler/RateLimitingSampler.php @@ -19,7 +19,7 @@ class RateLimitingSampler extends AbstractSampler { $key = $this->generator->generate($tr...
Fixed possible infinte loop in adaptive sampler
code-tool_jaeger-client-php
train
ca3505f17ea70f0ebaa1d0ac33d6863a5e854475
diff --git a/exchangelib/attachments.py b/exchangelib/attachments.py index <HASH>..<HASH> 100644 --- a/exchangelib/attachments.py +++ b/exchangelib/attachments.py @@ -185,13 +185,14 @@ class FileAttachment(Attachment): def __getstate__(self): # The fp does not need to be pickled - state = self.__...
Fix and test pickling of attachments. Refs #<I>
ecederstrand_exchangelib
train
d6135f743fd604066c298c43c1631da0fd2a3b38
diff --git a/command/agent/cache/api_proxy.go b/command/agent/cache/api_proxy.go index <HASH>..<HASH> 100644 --- a/command/agent/cache/api_proxy.go +++ b/command/agent/cache/api_proxy.go @@ -36,6 +36,11 @@ func (ap *APIProxy) Send(ctx context.Context, req *SendRequest) (*SendResponse, return nil, err } client.S...
Fix Agent handling of gzipped responses (#<I>) * Fix Agent handling of gzipped responses Fixes #<I> * Only remove "gzip" member, if present * Simplify to just removing Accept-Encoding altogether
hashicorp_vault
train
738c3af32a8d581720006fa601937282f2d33d28
diff --git a/src/fire.js b/src/fire.js index <HASH>..<HASH> 100644 --- a/src/fire.js +++ b/src/fire.js @@ -1,5 +1,5 @@ _.fire = function(target, events, props, data) { - if (typeof props === "object" && + if (typeof props === "object" && !(props instanceof Event) && ('bubbles' in props || 'detail' in pr...
events are more likely to be data than props (and cause warnings as props)
esha_Eventi
train
8053534418cd1016c2f9182a009aefee406e1bfe
diff --git a/TwitterAPIExchange.php b/TwitterAPIExchange.php index <HASH>..<HASH> 100755 --- a/TwitterAPIExchange.php +++ b/TwitterAPIExchange.php @@ -246,13 +246,13 @@ class TwitterAPIExchange */ public function performRequest($return = true) { - if (!is_bool($return)) - { - ...
cURL errors now throw exceptions
J7mbo_twitter-api-php
train
17ee146c4aa75b9dadd630b4d0b07c661bdf7281
diff --git a/public/javascripts/fileupload/application.js b/public/javascripts/fileupload/application.js index <HASH>..<HASH> 100644 --- a/public/javascripts/fileupload/application.js +++ b/public/javascripts/fileupload/application.js @@ -21,7 +21,7 @@ $(function () { // Initialize the jQuery File Upload widget:...
Added capture of no files error to send so that it can be resent. Also added a check for our errors so that zero length file errors will be shown to the user. refs #<I>
samvera_hyrax
train
0eb8df33cb7a950b9bf6d1031f70a798b0403740
diff --git a/src/utils.js b/src/utils.js index <HASH>..<HASH> 100644 --- a/src/utils.js +++ b/src/utils.js @@ -1,5 +1,5 @@ /* - * isObject, extend and isFunction are taken from undescore/lodash in + * isObject, extend, isFunction, and bind are taken from undescore/lodash in * order to remove the dependency */ @@...
Changed bind calls to use apply and call instead
reflux_refluxjs
train
1f512dc35acea1c94360c66a472156b488e03cb2
diff --git a/bokeh/plotting.py b/bokeh/plotting.py index <HASH>..<HASH> 100644 --- a/bokeh/plotting.py +++ b/bokeh/plotting.py @@ -496,6 +496,9 @@ class GlyphFunction(object): legend_name = kwargs.pop("legend", None) plot = self._get_plot(kwargs) + if 'name' in kwargs: + plot._id =...
added the name parameter to plot creation, this maps to the _id field, making for much better named embed.js files
bokeh_bokeh
train
2151285c3268f9b6e2e49e4ddba594f72ed3ae79
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ import logging setup( name='fedmsg', - version='0.0.1', + version='0.0.2', description="Fedora Messaging Client API", long_description=long_description, author='Ralph Bean',
Starting work on <I>.
fedora-infra_fedmsg
train
b331a06998e479700b4a2ac1dcd2940696eabf83
diff --git a/src/java/voldemort/store/metadata/MetadataStore.java b/src/java/voldemort/store/metadata/MetadataStore.java index <HASH>..<HASH> 100644 --- a/src/java/voldemort/store/metadata/MetadataStore.java +++ b/src/java/voldemort/store/metadata/MetadataStore.java @@ -531,31 +531,40 @@ public class MetadataStore exte...
When store is missing, error message is not clear When a store is missing on the Server, Voldemort error message on the client used to say Failed to read metadata key:"XXX" delete config/.temp config/.version directories and restart. Now it says store XXX does not exist on node YY This will be easier to reason from...
voldemort_voldemort
train
bd502e8bd5d126c4a273ed9b402e0605dfdf7222
diff --git a/java/api/src/main/java/io/ray/api/call/BaseActorCreator.java b/java/api/src/main/java/io/ray/api/call/BaseActorCreator.java index <HASH>..<HASH> 100644 --- a/java/api/src/main/java/io/ray/api/call/BaseActorCreator.java +++ b/java/api/src/main/java/io/ray/api/call/BaseActorCreator.java @@ -1,6 +1,5 @@ pack...
[Java] Remove out of date comment. (#<I>) The semantic of `setName` API is changed, but the comment is out of date. This PR fixes it.
ray-project_ray
train
3826c1e5428a2b1a52a8a1c60a9c00c480000edf
diff --git a/examples/variational_autoencoder.py b/examples/variational_autoencoder.py index <HASH>..<HASH> 100644 --- a/examples/variational_autoencoder.py +++ b/examples/variational_autoencoder.py @@ -117,7 +117,7 @@ if __name__ == '__main__': def print_perf(combined_params, iter, grad): if iter % 10 ==...
Remove unnecessary mean from vae example (#<I>) A very minor point... `objective` is already a scalar, so taking its mean here does nothing.
HIPS_autograd
train
ffaced9cda93afb92af7761b59f545f4d0e39cf3
diff --git a/lib/oauth/client/em_http.rb b/lib/oauth/client/em_http.rb index <HASH>..<HASH> 100644 --- a/lib/oauth/client/em_http.rb +++ b/lib/oauth/client/em_http.rb @@ -33,7 +33,12 @@ class EventMachine::HttpClient :timestamp => nil }.merge(options) @oauth_helper = OAuth::Client::Helper...
fix em_http_client tests
oauth-xx_oauth-ruby
train
995c4a0e756c09be2aedfc0abd376344df257fb6
diff --git a/src/conrad.js b/src/conrad.js index <HASH>..<HASH> 100644 --- a/src/conrad.js +++ b/src/conrad.js @@ -581,7 +581,7 @@ /** * Kills one or more jobs, indicated by their ids. It is only possible to * kill running jobs or waiting jobs. If you try to kill a job that does not - * exists or that is a...
Fixed grammar Fixed grammar in line <I> and <I>
jacomyal_sigma.js
train
84b5728e3392921a1d0f02e8a5cce8b2a8da24c3
diff --git a/lib/jets/application.rb b/lib/jets/application.rb index <HASH>..<HASH> 100644 --- a/lib/jets/application.rb +++ b/lib/jets/application.rb @@ -132,13 +132,18 @@ class Jets::Application effect: "Allow", resource: "arn:aws:logs:#{Jets.aws.region}:#{Jets.aws.account}:log-group:/aws/lambda/#{proje...
improve default iam policy readonly access to s3 bucket
tongueroo_jets
train
d04ba61c259cce2913a082851b1c9b9c4d109755
diff --git a/test/plugin/test_buffer.rb b/test/plugin/test_buffer.rb index <HASH>..<HASH> 100644 --- a/test/plugin/test_buffer.rb +++ b/test/plugin/test_buffer.rb @@ -25,11 +25,6 @@ module FluentPluginBufferTest @purged = false @failing = false end - def append(data) - @append_count += 1 - ...
fix tests to fit shrinked code
fluent_fluentd
train
656159a5959b6a578fc890348284f5194f1c5917
diff --git a/ctypeslib/codegen/cursorhandler.py b/ctypeslib/codegen/cursorhandler.py index <HASH>..<HASH> 100644 --- a/ctypeslib/codegen/cursorhandler.py +++ b/ctypeslib/codegen/cursorhandler.py @@ -757,7 +757,11 @@ class CursorHandler(ClangHandler): log.debug('Fixup_struct: Member:%s offsetbits:%d->%d exp...
Fixes #<I>, but introduce another bug. Incomplete array is complicated. Probably a bug/corner case in clang bindings. Correct Field offset should be produced by Clang bindings.
trolldbois_ctypeslib
train
654997ac4d485f77a61a95b6046c5e74b787b697
diff --git a/server/src/main/java/net/kuujo/copycat/raft/server/state/PassiveState.java b/server/src/main/java/net/kuujo/copycat/raft/server/state/PassiveState.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/net/kuujo/copycat/raft/server/state/PassiveState.java +++ b/server/src/main/java/net/kuujo/copycat/r...
Make PassiveState package private.
atomix_atomix
train
5f67cf6ac7c00cd63f653d71b6a7193ad15a4654
diff --git a/spec/dragonfly/analysis/file_command_analyser_spec.rb b/spec/dragonfly/analysis/file_command_analyser_spec.rb index <HASH>..<HASH> 100644 --- a/spec/dragonfly/analysis/file_command_analyser_spec.rb +++ b/spec/dragonfly/analysis/file_command_analyser_spec.rb @@ -36,20 +36,11 @@ describe Dragonfly::Analysis:...
Got rid of slow FileCommandAnalyser tests when we could do with just one of em
markevans_dragonfly
train
a1a470f428179d69e06310992b9bcab3e66441ac
diff --git a/src/mappers/har.js b/src/mappers/har.js index <HASH>..<HASH> 100644 --- a/src/mappers/har.js +++ b/src/mappers/har.js @@ -31,8 +31,7 @@ module.exports = { useragent(true); return map; - }, - separator: '\n' + } }; function map (data, referer, userAgent) {
Remove separator from HAR mapper.
springernature_boomcatch
train
82a1834590379e00bb5a1ddb7d01373c697b2157
diff --git a/test/functional/associations/test_many_documents_as_proxy.rb b/test/functional/associations/test_many_documents_as_proxy.rb index <HASH>..<HASH> 100644 --- a/test/functional/associations/test_many_documents_as_proxy.rb +++ b/test/functional/associations/test_many_documents_as_proxy.rb @@ -179,7 +179,7 @@ c...
Added explicit order to #first test for as proxy.
mongomapper_mongomapper
train
db3ec698e9c7702384069817eff6d7e1596ef166
diff --git a/data/pieceStore/blob.go b/data/pieceStore/blob.go index <HASH>..<HASH> 100644 --- a/data/pieceStore/blob.go +++ b/data/pieceStore/blob.go @@ -78,10 +78,12 @@ func (me *data) WriteSectionTo(w io.Writer, off, n int64) (written int64, err er off %= me.info.PieceLength for n != 0 { if i >= me.info.NumPi...
Some missing io.EOFs
anacrolix_torrent
train
f3f6d8a1e478d15a9954bb7e39490bd74ded3f6f
diff --git a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/structure/HadoopGraph.java b/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/structure/HadoopGraph.java index <HASH>..<HASH> 100644 --- a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/structure/HadoopGraph....
Added some extra OptOuts to HadoopGraph for "slow" tests. This was necessary after refactoring that split single tests that tested multiple traversals.
apache_tinkerpop
train
95aea5fcc81ceb709cc2d258125c59887c1e82cb
diff --git a/eZ/Publish/Core/FieldType/Page/PageStorage/Gateway/LegacyStorage.php b/eZ/Publish/Core/FieldType/Page/PageStorage/Gateway/LegacyStorage.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/FieldType/Page/PageStorage/Gateway/LegacyStorage.php +++ b/eZ/Publish/Core/FieldType/Page/PageStorage/Gateway/LegacyS...
EZP-<I> - Removed POOL_TABLE constant in Page storage gateway
ezsystems_ezpublish-kernel
train
65b781560d46251c621ac2b2e55189ce70ff7ace
diff --git a/salt/minion.py b/salt/minion.py index <HASH>..<HASH> 100644 --- a/salt/minion.py +++ b/salt/minion.py @@ -146,9 +146,15 @@ class Minion(object): if not self._glob_match(data['tgt']): return if MULTI and self.opts['multiprocessing']: - multiprocessing.Proces...
Add support to the minion for compound execution
saltstack_salt
train
a2b58c425bbb4a3ad934cbb8bd9e50a1d29583ea
diff --git a/src/jamesiarmes/PhpEws/Client.php b/src/jamesiarmes/PhpEws/Client.php index <HASH>..<HASH> 100644 --- a/src/jamesiarmes/PhpEws/Client.php +++ b/src/jamesiarmes/PhpEws/Client.php @@ -575,6 +575,26 @@ class Client } /** + * Empties folders in a mailbox. + * + * Optionally, this operat...
Added EmptyFolder operation.
jamesiarmes_php-ews
train
411c44b0c508206a0d3a1f3f20a4008a6fdaf364
diff --git a/drizzlepac/haputils/cell_utils.py b/drizzlepac/haputils/cell_utils.py index <HASH>..<HASH> 100644 --- a/drizzlepac/haputils/cell_utils.py +++ b/drizzlepac/haputils/cell_utils.py @@ -253,6 +253,7 @@ class SkyFootprint(object): self.total_mask = np.zeros(meta_wcs.array_shape, dtype=np.int16) ...
Initialize the SkyFootprint attribute, self.footprint_member, to avoid (#<I>) errors being raised elsewhere in the code when checking for its value.
spacetelescope_drizzlepac
train
e892a5329f6637134e12c30a87e3a50006434990
diff --git a/src/main/java/net/figaro/GossipMonger.java b/src/main/java/net/figaro/GossipMonger.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/figaro/GossipMonger.java +++ b/src/main/java/net/figaro/GossipMonger.java @@ -31,7 +31,7 @@ public class GossipMonger implements Runnable { private static final Logg...
change scope of GossipType
ggrandes_figaro
train
3e5a08300d41e6265fd8b07f4ad44d3f1ecfcfd7
diff --git a/generated/google/apis/pubsub_v1beta2.rb b/generated/google/apis/pubsub_v1beta2.rb index <HASH>..<HASH> 100644 --- a/generated/google/apis/pubsub_v1beta2.rb +++ b/generated/google/apis/pubsub_v1beta2.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/pubsub/docs module PubsubV1beta...
Autogenerated update (<I>-<I>-<I>) Update: - pubsub_v1beta2
googleapis_google-api-ruby-client
train
46e8185736ed315506e98f2603ff9e1a3de542a8
diff --git a/lib/Vespolina/Order/Manager/OrderManager.php b/lib/Vespolina/Order/Manager/OrderManager.php index <HASH>..<HASH> 100644 --- a/lib/Vespolina/Order/Manager/OrderManager.php +++ b/lib/Vespolina/Order/Manager/OrderManager.php @@ -184,6 +184,21 @@ class OrderManager implements OrderManagerInterface ret...
move isValidOpenOrder from OrderProvider to OrderManager
vespolina_commerce
train
a77ae3c33b1f15a0cb45e56cf8c5166a66c58d6c
diff --git a/src/core/components/id.js b/src/core/components/id.js index <HASH>..<HASH> 100644 --- a/src/core/components/id.js +++ b/src/core/components/id.js @@ -1,7 +1,6 @@ 'use strict' const promisify = require('promisify-es6') -const mafmt = require('mafmt') module.exports = function id (self) { return pr...
feat: no need anymore to append ipfs/Qmhash to webrtc-star multiaddrs
ipfs_js-ipfs
train
d6f80fdfd3b947c95a9ce4beb7dc56452ce9fdba
diff --git a/textblob/en/inflect.py b/textblob/en/inflect.py index <HASH>..<HASH> 100644 --- a/textblob/en/inflect.py +++ b/textblob/en/inflect.py @@ -189,7 +189,7 @@ plural_categories = { "sand", "software", "understanding", "water"], "s-singular": [ "acropolis", "aegis", "alias", "asbestos", "b...
remove Christmas from uninflected list
sloria_TextBlob
train
c41535db842dd8e0e2979b43819500ba90c8d056
diff --git a/src/PHPSQLParser/processors/SelectExpressionProcessor.php b/src/PHPSQLParser/processors/SelectExpressionProcessor.php index <HASH>..<HASH> 100644 --- a/src/PHPSQLParser/processors/SelectExpressionProcessor.php +++ b/src/PHPSQLParser/processors/SelectExpressionProcessor.php @@ -104,6 +104,13 @@ class Select...
CHG: the base_expr of a select-expression contains now an explicit alias (with "as"). Check your client code! git-svn-id: <URL>
greenlion_PHP-SQL-Parser
train
acb489ad79e0e100a69c77b97579bee469526299
diff --git a/lib/OpenLayers.js b/lib/OpenLayers.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers.js +++ b/lib/OpenLayers.js @@ -414,4 +414,4 @@ /** * Constant: VERSION_NUMBER */ -OpenLayers.VERSION_NUMBER="Release 2.12-rc5"; +OpenLayers.VERSION_NUMBER="Release 2.12-rc6"; diff --git a/lib/OpenLayers/SingleFile.j...
set VERSION_NUMBER to <I>-rc6
openlayers_openlayers
train
851bfec6f7a3d96a6af3ce556818f8d126f31e75
diff --git a/BlockOptionsManipulator.php b/BlockOptionsManipulator.php index <HASH>..<HASH> 100644 --- a/BlockOptionsManipulator.php +++ b/BlockOptionsManipulator.php @@ -15,9 +15,6 @@ class BlockOptionsManipulator implements BlockOptionsManipulatorInterface /** @var PropertyAccessor */ protected $propertyAcc...
CRM-<I>: fix Load page performance degradation. Add PropertyPath cache in PropertyAccessor
oroinc_OroLayoutComponent
train
91558cb40cbee307f16909baf7fc449b5caa2e7e
diff --git a/lib/amqp-spec/rspec.rb b/lib/amqp-spec/rspec.rb index <HASH>..<HASH> 100644 --- a/lib/amqp-spec/rspec.rb +++ b/lib/amqp-spec/rspec.rb @@ -68,6 +68,34 @@ module AMQP metadata[:em_default_options] = opts if opts metadata[:em_default_options] end + + # before hook that will run i...
Copy-pasted before/after code from rspec/core/hooks.rb
arvicco_amqp-spec
train
ebd698020ad12a8c284bcddcd1ea3f433a645c81
diff --git a/languagetool-standalone/src/test/java/org/languagetool/language/LanguageIdentifierTest.java b/languagetool-standalone/src/test/java/org/languagetool/language/LanguageIdentifierTest.java index <HASH>..<HASH> 100644 --- a/languagetool-standalone/src/test/java/org/languagetool/language/LanguageIdentifierTest....
code to measure performance (commented out)
languagetool-org_languagetool
train
77085cbcf9ca7cf1cf8385b4d5630954f951172d
diff --git a/src/Netzmacht/Bootstrap/Templates/Modifier.php b/src/Netzmacht/Bootstrap/Templates/Modifier.php index <HASH>..<HASH> 100644 --- a/src/Netzmacht/Bootstrap/Templates/Modifier.php +++ b/src/Netzmacht/Bootstrap/Templates/Modifier.php @@ -47,7 +47,7 @@ class Modifier $template->class = implode('...
Improve picture variable checking to prevent accidently overriding wrong value.
contao-bootstrap_templates
train
f3536b583fc40dc07de400bb455f7f408f817350
diff --git a/gwpy/tests/test_timeseries.py b/gwpy/tests/test_timeseries.py index <HASH>..<HASH> 100644 --- a/gwpy/tests/test_timeseries.py +++ b/gwpy/tests/test_timeseries.py @@ -946,11 +946,16 @@ class TestTimeSeries(TestTimeSeriesBase): utils.assert_quantity_sub_equal(sg, sg2) # test a couple of m...
tests: catch errors from pycbc hopefully resolved in an upcoming pycbc release (new feature)
gwpy_gwpy
train
38cb5522a46eb74d94093e3306321dda823dd0c2
diff --git a/mailer/__init__.py b/mailer/__init__.py index <HASH>..<HASH> 100644 --- a/mailer/__init__.py +++ b/mailer/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 2, 0, "a", 1) # following PEP 386 +VERSION = (0, 2, 0, "a", 2) # following PEP 386 DEV_N = None diff --git a/mailer/management/commands/send_mail.py b/ma...
Close connection to db after send_mail command to prevent psql 'unexpected EOF on client connection with an open transaction' error
pinax_django-mailer
train
0b1acc2a5032684b2410290c6f682da2268829e7
diff --git a/src/extend.js b/src/extend.js index <HASH>..<HASH> 100644 --- a/src/extend.js +++ b/src/extend.js @@ -8,9 +8,8 @@ import crop from './transform/crop'; import grey from './transform/grey'; export default function extend(IJ) { - IJ.extend('invert', invert, true); + IJ.extendMethod('invert', invert,...
rename extend to extendMethod and add extendProperty (#9)
image-js_image-js
train
80fc505557d907a3c016627b4c6f61edd1e84090
diff --git a/test/common.js b/test/common.js index <HASH>..<HASH> 100644 --- a/test/common.js +++ b/test/common.js @@ -1,7 +1,5 @@ /*global sinon:true, unexpected:true, unexpectedSinon:true*/ sinon = require('sinon'); unexpected = require('unexpected').clone(); -unexpectedSinon = process.env.COVERAGE ? - require(...
test/common: Remove no longer used lib-cov support.
unexpectedjs_unexpected-sinon
train
5066e68b398039beb5e1966ba1ed7684d97a8f74
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index <HASH>..<HASH> 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -4644,10 +4644,6 @@ class TodoManager(ListMixin, DeleteMixin, RESTManager): int: The number of todos maked done """ result = self.gitlab.http_post(...
fix(todo): mark_all_as_done doesn't return anything
python-gitlab_python-gitlab
train
ce13c445c7da93647aaf54628b9018583654f79a
diff --git a/lib/haml/engine.rb b/lib/haml/engine.rb index <HASH>..<HASH> 100644 --- a/lib/haml/engine.rb +++ b/lib/haml/engine.rb @@ -16,9 +16,41 @@ module Haml # Allow access to the precompiled template attr_reader :precompiled + # Designates an XHTML/XML element. + ELEMENT = '%'[0] + ...
Replacing magic tag-character numbers with constants. This brought out a bug in the multiline handling, so I fixed that, too. git-svn-id: svn://hamptoncatlin.com/haml/branches/edge@<I> <I>b-<I>-<I>-af8c-cdc<I>e<I>b9
sass_ruby-sass
train
6b51228ac7ae74efda36563d53cd8b0253e1c12d
diff --git a/lib/colgrep.js b/lib/colgrep.js index <HASH>..<HASH> 100644 --- a/lib/colgrep.js +++ b/lib/colgrep.js @@ -1,4 +1,4 @@ -// Generated by IcedCoffeeScript 1.7.1-a +// Generated by IcedCoffeeScript 1.7.1-c (function() { var colgrep; diff --git a/lib/err.js b/lib/err.js index <HASH>..<HASH> 100644 --- a/l...
recompile with new ICS
keybase_gpg-wrapper
train
54e96edb2ff277c1db25885840b91ae051962bf4
diff --git a/$dom.dev.js b/$dom.dev.js index <HASH>..<HASH> 100644 --- a/$dom.dev.js +++ b/$dom.dev.js @@ -7,11 +7,12 @@ * Licensed under the MIT License * http://github.com/julienw/dollardom */ -; // empty statement to make uglify remove the following comments -/*jshint boss: true, bitwise: true, curly: true, n...
changes in jshint options and in the comment placement to pelase uglifyjs
julienw_dollardom
train
ce0f16319271ea0ba9b96f9ff7c98383a3c3418d
diff --git a/web/src/main/java/uk/ac/ebi/atlas/commands/BaselineBioentityCountsService.java b/web/src/main/java/uk/ac/ebi/atlas/commands/BaselineBioentityCountsService.java index <HASH>..<HASH> 100644 --- a/web/src/main/java/uk/ac/ebi/atlas/commands/BaselineBioentityCountsService.java +++ b/web/src/main/java/uk/ac/ebi/...
Allowed the two new rice experiments to be searchable
ebi-gene-expression-group_atlas
train
5b89ff626d3b4c3ff5d0bd021dd9c35ee1d74bfb
diff --git a/mod/forum/locallib.php b/mod/forum/locallib.php index <HASH>..<HASH> 100644 --- a/mod/forum/locallib.php +++ b/mod/forum/locallib.php @@ -95,6 +95,12 @@ class forum_portfolio_caller extends portfolio_module_caller_base { $fs = get_file_storage(); if ($this->post) { if ($this-...
MDL-<I> mod_forum: Limit portfolio to files belonging to the post
moodle_moodle
train
75ebca24678563b2d018ce0423b2edc5968cb180
diff --git a/odl/operator/operator.py b/odl/operator/operator.py index <HASH>..<HASH> 100644 --- a/odl/operator/operator.py +++ b/odl/operator/operator.py @@ -1351,7 +1351,11 @@ class OperatorComp(Operator): if self.is_linear: return self else: - left_deriv = self.left.derivati...
ENH: Minor optimization of OperatorComp.derivative
odlgroup_odl
train
b82a14e0175150ac9ea392de5298e5355340925e
diff --git a/cli/main.go b/cli/main.go index <HASH>..<HASH> 100644 --- a/cli/main.go +++ b/cli/main.go @@ -61,6 +61,10 @@ func main() { Name: `local-first`, Usage: `Attempt to lookup files locally before evaluating mounts.`, }, + cli.StringFlag{ + Name: `verify-file`, + Usage: `Specifies a filename to...
Made verify file default off with CLI usage
ghetzel_diecast
train
62dd60a9f45a10c8b242274c2bf66de60fb941b9
diff --git a/prov-n/src/main/java/org/openprovenance/prov/notation/BeanTreeConstructor.java b/prov-n/src/main/java/org/openprovenance/prov/notation/BeanTreeConstructor.java index <HASH>..<HASH> 100644 --- a/prov-n/src/main/java/org/openprovenance/prov/notation/BeanTreeConstructor.java +++ b/prov-n/src/main/java/org/ope...
Support for Attribute in prov-n and round trip testing
lucmoreau_ProvToolbox
train
b6b6a8a583d9a40fa46ddb552b501f287b2d33ae
diff --git a/lib/aws/api/pagination_translator.rb b/lib/aws/api/pagination_translator.rb index <HASH>..<HASH> 100644 --- a/lib/aws/api/pagination_translator.rb +++ b/lib/aws/api/pagination_translator.rb @@ -55,7 +55,7 @@ module Aws class << self def translate(api) - filename = api.metadata['s...
Fixed a bug in the Api translation of pagination configuration. Now using the correct filename prefix (the endpoint prefix) to locate the paging config.
aws_aws-sdk-ruby
train
967af6f048b66a0b478f69cee86fd031acd833b6
diff --git a/peru/resources/plugins/curl/curl_plugin.py b/peru/resources/plugins/curl/curl_plugin.py index <HASH>..<HASH> 100755 --- a/peru/resources/plugins/curl/curl_plugin.py +++ b/peru/resources/plugins/curl/curl_plugin.py @@ -7,6 +7,7 @@ import re import stat import sys import tarfile +from urllib.error import ...
catch HTTPError and URLError in the curl plugin
buildinspace_peru
train
e086375ec8c20881af50b13e7ba72effaed0280f
diff --git a/salt/modules/vagrant.py b/salt/modules/vagrant.py index <HASH>..<HASH> 100644 --- a/salt/modules/vagrant.py +++ b/salt/modules/vagrant.py @@ -361,10 +361,12 @@ def destroy(name): machine = vm_['machine'] cmd = 'vagrant destroy -f {}'.format(machine) - ret = __salt__['cmd.retcode'](cmd, + ...
clean up cache even if other steps fail
saltstack_salt
train
7feea31d4e479ffe785f4ca06402c29f558302c0
diff --git a/src/dhis2.angular.services.js b/src/dhis2.angular.services.js index <HASH>..<HASH> 100644 --- a/src/dhis2.angular.services.js +++ b/src/dhis2.angular.services.js @@ -1825,7 +1825,7 @@ var d2Services = angular.module('d2Services', ['ngResource']) var orgUnitUid = selectedEnrollment ? selected...
Changed method to get orgunit details from PR execution
dhis2_d2-tracker
train
fa4977003ab27fb29edb1ee85be0b1d225fe0f22
diff --git a/theanets/feedforward.py b/theanets/feedforward.py index <HASH>..<HASH> 100644 --- a/theanets/feedforward.py +++ b/theanets/feedforward.py @@ -147,12 +147,8 @@ class Network: self.weights = [] self.biases = [] self.updates = {} - - self.rng = kwargs.get('rng') or RandomStre...
Simplify constructor a bit.
lmjohns3_theanets
train
12be1d3aed26bca1b74bff07086fe4e0e932e843
diff --git a/seqtools/format/sam/bam/__init__.py b/seqtools/format/sam/bam/__init__.py index <HASH>..<HASH> 100644 --- a/seqtools/format/sam/bam/__init__.py +++ b/seqtools/format/sam/bam/__init__.py @@ -106,6 +106,23 @@ class BAM(samtools.format.sam.SAM): """ return [self._options.blockStart,self._options.inn...
facilitate outputting the sam line from the bam directly
jason-weirather_py-seq-tools
train
b368651acc5d50484e9c2ece8caaa466c179305c
diff --git a/classes/ezperfloggerstatsdlogger.php b/classes/ezperfloggerstatsdlogger.php index <HASH>..<HASH> 100644 --- a/classes/ezperfloggerstatsdlogger.php +++ b/classes/ezperfloggerstatsdlogger.php @@ -64,7 +64,7 @@ class eZPerfLoggerStatsdLogger implements eZPerfLoggerLogger { ...
A bit of escaping stasd key names
gggeek_ezperformancelogger
train
2add0af2b5273f0978580386f1b66ff2a6fb53e1
diff --git a/crud/Action.php b/crud/Action.php index <HASH>..<HASH> 100644 --- a/crud/Action.php +++ b/crud/Action.php @@ -518,7 +518,6 @@ class Action extends \yii\rest\Action 'query' => $relation, 'pagination' => [ 'pageParam' => "$field-page", - ...
remove pagination configuration - this should be in app config, added exapmple how to set it up in app; improved filtering grid javascript
netis-pl_yii2-crud
train
54cad3c4e795d159711c003f3837d0f00a867a3e
diff --git a/lib/basepanel.py b/lib/basepanel.py index <HASH>..<HASH> 100644 --- a/lib/basepanel.py +++ b/lib/basepanel.py @@ -362,10 +362,9 @@ class BasePanel(wx.Panel): dtick = abs(ticks[1] - ticks[0]) except: pass - # print ' tick ' , type, dtick, ' -> ', - if dtick...
changed default text formatting for large numbers to '.g' formatting
newville_wxmplot
train
2bd5f11531db2a02677295c59140e900a0fdd4a4
diff --git a/persister/throttle_test.go b/persister/throttle_test.go index <HASH>..<HASH> 100644 --- a/persister/throttle_test.go +++ b/persister/throttle_test.go @@ -1,6 +1,7 @@ package persister import ( + "fmt" "testing" "time" @@ -8,8 +9,7 @@ import ( "github.com/stretchr/testify/assert" ) -func Test...
#<I> Throttling performance
lomik_go-carbon
train
38f49c3768e0c92a96d60391bafc29f2728298ef
diff --git a/internal/uidriver/js/ui.go b/internal/uidriver/js/ui.go index <HASH>..<HASH> 100644 --- a/internal/uidriver/js/ui.go +++ b/internal/uidriver/js/ui.go @@ -77,8 +77,7 @@ func (u *UserInterface) IsFullscreen() bool { } func (u *UserInterface) IsForeground() bool { - // TODO: implement this - return true +...
uidriver/js: Implement IsForeground Updates #<I>
hajimehoshi_ebiten
train
50955793b0183f9de69bd78e2ec251cf20aab121
diff --git a/credentials/credentials_test.go b/credentials/credentials_test.go index <HASH>..<HASH> 100644 --- a/credentials/credentials_test.go +++ b/credentials/credentials_test.go @@ -155,6 +155,7 @@ func serverHandle(t *testing.T, hs serverHandshake, done chan AuthInfo, lis net. serverAuthInfo, err := hs(serverRa...
Debugging tests for AuthInfo (#<I>) * debug * fix
grpc_grpc-go
train
17e3b43879d516437ada71cf9c0deac6a382ed9a
diff --git a/commands.go b/commands.go index <HASH>..<HASH> 100644 --- a/commands.go +++ b/commands.go @@ -96,6 +96,10 @@ type Cmdable interface { Exists(ctx context.Context, keys ...string) *IntCmd Expire(ctx context.Context, key string, expiration time.Duration) *BoolCmd ExpireAt(ctx context.Context, key string...
fix: add missing Expire methods to Cmdable This is a followup to <URL>
go-redis_redis
train
8c4910d219cad49637fbb3d9253a890d29068e91
diff --git a/imgaug/augmenters/meta.py b/imgaug/augmenters/meta.py index <HASH>..<HASH> 100644 --- a/imgaug/augmenters/meta.py +++ b/imgaug/augmenters/meta.py @@ -1363,6 +1363,9 @@ class Augmenter(object): # pylint: disable=locally-disabled, unused-variable, l return result[0] return tuple(result...
Add __call__ method to Augmenter
aleju_imgaug
train
464b4de715e0d7af2e8dd5eec8a74a3e569c95f5
diff --git a/lib/ignorance/git_ignore_file.rb b/lib/ignorance/git_ignore_file.rb index <HASH>..<HASH> 100644 --- a/lib/ignorance/git_ignore_file.rb +++ b/lib/ignorance/git_ignore_file.rb @@ -9,6 +9,20 @@ module Ignorance @repo_dir = '.git' end + private + + def ignored + (file_contents + use...
Git should also not act if token to ignore is in user's core.excludesfile
joelhelbling_ignorance
train
9d8f0f2cd2756fa643e92406e3744c944e9acdbe
diff --git a/lib/sunspot/field.rb b/lib/sunspot/field.rb index <HASH>..<HASH> 100644 --- a/lib/sunspot/field.rb +++ b/lib/sunspot/field.rb @@ -58,6 +58,10 @@ module Sunspot fields_hash[clazz.object_id] ||= [] end + def unregister_all! + fields_hash.clear + end + private def fields_h...
Added unregister_all! to Field Added convenience method to Field to unregister all configured fields. Probably only useful in testing.
sunspot_sunspot
train
def8ec5ee9c02a035d082b6162de709c807ba6c3
diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/taskexecutor/slot/TaskSlotUtils.java b/flink-runtime/src/test/java/org/apache/flink/runtime/taskexecutor/slot/TaskSlotUtils.java index <HASH>..<HASH> 100644 --- a/flink-runtime/src/test/java/org/apache/flink/runtime/taskexecutor/slot/TaskSlotUtils.java +...
[hotfix][tests] Fix ResourceProfile instantiation
apache_flink
train
3af99b860793c46aaa563df74f4c33d5602f5ec4
diff --git a/bundles/org.eclipse.orion.client.editor/web/orion/editor/contentAssist.js b/bundles/org.eclipse.orion.client.editor/web/orion/editor/contentAssist.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.editor/web/orion/editor/contentAssist.js +++ b/bundles/org.eclipse.orion.client.editor/web...
Bug <I> - Content assist automatically fills in the "wrong thing" (assumes a single method and pastes it in)
eclipse_orion.client
train
f577dc0ec150587d5b090ebe5d718d7549a826a1
diff --git a/js/oadoi-link-results.module.js b/js/oadoi-link-results.module.js index <HASH>..<HASH> 100644 --- a/js/oadoi-link-results.module.js +++ b/js/oadoi-link-results.module.js @@ -3,15 +3,15 @@ angular .component('prmSearchResultAvailabilityLineAfter', { bindings: { parentCtrl: '<'}, template: ` - ...
bulib: further protect '-results' visibility
alliance-pcsg_primo-explore-oadoi-link
train
778163d4be346c82fea9c5b51eb162885d77e4fa
diff --git a/lib/kamerling/franchus.rb b/lib/kamerling/franchus.rb index <HASH>..<HASH> 100644 --- a/lib/kamerling/franchus.rb +++ b/lib/kamerling/franchus.rb @@ -1,9 +1,10 @@ module Kamerling class Franchus UnknownMessage = Class.new RuntimeError - def handle string - send "handle_#{string[0..3]}", string + ...
Franchus#handle: pass messages to a scribe for deciphering
chastell_kamerling
train
ad5259a1ffa748704277743cded5d55817430b87
diff --git a/src/runnables/runnable-model.js b/src/runnables/runnable-model.js index <HASH>..<HASH> 100644 --- a/src/runnables/runnable-model.js +++ b/src/runnables/runnable-model.js @@ -53,7 +53,7 @@ export default class Runnable { return 'failed' } else if (this._anyChildrenProcessing) { return 'pr...
update suite state logic - show passed if all children are passed or pending
cypress-io_cypress
train
3f24535c08a81f61924870f058b7755f341546f3
diff --git a/test/checks/lists/only-dlitems.js b/test/checks/lists/only-dlitems.js index <HASH>..<HASH> 100644 --- a/test/checks/lists/only-dlitems.js +++ b/test/checks/lists/only-dlitems.js @@ -194,6 +194,22 @@ describe('only-dlitems', function() { ); }); + it('should return true if the list mixed items inside ...
test: More div tests for only-dlitems (#<I>)
dequelabs_axe-core
train
3c6b3aa5033cf64f966498f8f3c2937be9f8b347
diff --git a/lib/rom/repository/struct_builder.rb b/lib/rom/repository/struct_builder.rb index <HASH>..<HASH> 100644 --- a/lib/rom/repository/struct_builder.rb +++ b/lib/rom/repository/struct_builder.rb @@ -50,7 +50,7 @@ module ROM end def visit_attribute(attr) - [attr.aliased? && !attr.wrapped? ...
Use read types in structs fixes #<I>
rom-rb_rom
train