hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
9cb0f10678944abb9719cde222b34b8d66464401
diff --git a/lib/rollbar/json.rb b/lib/rollbar/json.rb index <HASH>..<HASH> 100644 --- a/lib/rollbar/json.rb +++ b/lib/rollbar/json.rb @@ -43,7 +43,7 @@ module Rollbar def find_options_module module_name = multi_json_adapter_module_name - if constants.find{ |const| const.to_s == module_name } + ...
Use const_defined? with full name instead. Thanks @jondeandres
rollbar_rollbar-gem
train
a7045f8523d03c1ef9fde9d3b4359d23d20614c7
diff --git a/benchmark/src/main/java/com/relayrides/pushy/apns/util/ApnsPayloadBuilderBenchmark.java b/benchmark/src/main/java/com/relayrides/pushy/apns/util/ApnsPayloadBuilderBenchmark.java index <HASH>..<HASH> 100644 --- a/benchmark/src/main/java/com/relayrides/pushy/apns/util/ApnsPayloadBuilderBenchmark.java +++ b/b...
Exclude control characters for more "realistic" benchmarks.
relayrides_pushy
train
59ec803c8994b961f7dcb7db67cc8aa24e3c965a
diff --git a/examples/file_duplex_stream.php b/examples/file_duplex_stream.php index <HASH>..<HASH> 100644 --- a/examples/file_duplex_stream.php +++ b/examples/file_duplex_stream.php @@ -1,5 +1,7 @@ <?php +die('This example\'s underlying required code isn\'t ready yet.') + echo 'Warning this example uses 850MB in d...
Added warning that the duplex stream isn't ready yet and the example can't be used yet
reactphp_filesystem
train
ba373152cb8263a3a7de2a56e1bbf956285faaa1
diff --git a/extension/ezjscore/classes/ezjscpacker.php b/extension/ezjscore/classes/ezjscpacker.php index <HASH>..<HASH> 100644 --- a/extension/ezjscore/classes/ezjscpacker.php +++ b/extension/ezjscore/classes/ezjscpacker.php @@ -163,7 +163,7 @@ class ezjscPacker */ static function buildStylesheetFiles( $cs...
Fix #<I> / #<I>: eZOE buttons/icons are not loaded Introduced in <I>bc<I>f<I>c2aab4bc<I>f1a3a<I>ff7e.
ezsystems_ezpublish-legacy
train
08018ae79606f43fbbb7a5ec6fdd6d930a600715
diff --git a/cronofy.php b/cronofy.php index <HASH>..<HASH> 100644 --- a/cronofy.php +++ b/cronofy.php @@ -327,6 +327,10 @@ class Cronofy scope : array. The scope of the privileges you want the eventual access_token to grant. state : String. A value that will be returned to you unaltered along wit...
Join scope params with space as glue
cronofy_cronofy-php
train
7d92856475a26b0331d13db875567a98b445c365
diff --git a/src/PhpImap/Mailbox.php b/src/PhpImap/Mailbox.php index <HASH>..<HASH> 100644 --- a/src/PhpImap/Mailbox.php +++ b/src/PhpImap/Mailbox.php @@ -591,7 +591,7 @@ class Mailbox { $mails = $this->imap('fetch_overview', [implode(',', $mailsIds), ($this->imapSearchOption == SE_UID) ? FT_UID : 0]); if(is_arra...
FIX missing subject and to header in getMailsInfo function
barbushin_php-imap
train
048b4933ace6b690e75ec71ed601ea0e3c47890b
diff --git a/xbee.py b/xbee.py index <HASH>..<HASH> 100644 --- a/xbee.py +++ b/xbee.py @@ -122,4 +122,47 @@ class XBee(object): result to the serial port """ self.serial.write(XBee.fill_frame(data)) + + def wait_for_frame(self): + """ + wait_for_frame: None -> binary ...
Implemented XBee.wait_for_frame and XBee1.wait_read_frame methods. Note that these are untested.
niolabs_python-xbee
train
db619a4e265fae8d5064030905cbd71074634170
diff --git a/property.go b/property.go index <HASH>..<HASH> 100644 --- a/property.go +++ b/property.go @@ -34,6 +34,66 @@ func (p *Properties) Fetch(k string) (interface{}, bool) { return v, ok } +// Fetch a bool by key. +func (p *Properties) FetchBool(k string) (bool, bool) { + if v, ok := p.KV[k]; ok { + if x, ...
Add safe typed fetch convenience methods to Properties
dotabuff_manta
train
884825ec82873fd0273241c5a69c43a9fcf3e9a7
diff --git a/enterprise/src/main/java/org/graylog/plugins/enterprise/search/rest/SearchResource.java b/enterprise/src/main/java/org/graylog/plugins/enterprise/search/rest/SearchResource.java index <HASH>..<HASH> 100644 --- a/enterprise/src/main/java/org/graylog/plugins/enterprise/search/rest/SearchResource.java +++ b/e...
return job id in response entity
Graylog2_graylog2-server
train
349d6d4f8b234535c4a24ac0c52d3ea81c2e4bbb
diff --git a/awp/packager.py b/awp/packager.py index <HASH>..<HASH> 100755 --- a/awp/packager.py +++ b/awp/packager.py @@ -156,7 +156,7 @@ def copy_pkg_resources(workflow_path, workflow_resources, force=False): if copied: copied_any = True if not copied_any: - print('Everything...
Reword 'up-to-date' message to be clearer And also more distinct from Git's wording.
caleb531_alfred-workflow-packager
train
b4eaf36db6a7538b672ef61b4f077b9dfe8d666e
diff --git a/src/components/colorlegend/colorlegend.js b/src/components/colorlegend/colorlegend.js index <HASH>..<HASH> 100644 --- a/src/components/colorlegend/colorlegend.js +++ b/src/components/colorlegend/colorlegend.js @@ -169,10 +169,13 @@ var ColorLegend = Component.extend({ //Hide color legend entries if sh...
Disable the quick hide-show glimpse of the colors by country
vizabi_vizabi
train
08e96f2d2840b2daf492c15b97cbe974a3235ba3
diff --git a/lib/nuggets/numeric/signum.rb b/lib/nuggets/numeric/signum.rb index <HASH>..<HASH> 100644 --- a/lib/nuggets/numeric/signum.rb +++ b/lib/nuggets/numeric/signum.rb @@ -43,14 +43,15 @@ class Numeric # # Returns the sign of _num_. def signum - positive? ? 1 : negative? ? -1 : 0 + # http://weblog...
lib/nuggets/numeric/signum.rb: Reducing a Number to Its Sign in 1 Step. <URL>
blackwinter_nuggets
train
2258a551f79905d7c11fc80ebdc23fe023d0af84
diff --git a/lib/Doctrine/Common/Annotations/AnnotationRegistry.php b/lib/Doctrine/Common/Annotations/AnnotationRegistry.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/Common/Annotations/AnnotationRegistry.php +++ b/lib/Doctrine/Common/Annotations/AnnotationRegistry.php @@ -141,9 +141,10 @@ final class AnnotationRe...
#<I> completely skip autoloading for already loaded classes
doctrine_annotations
train
aa4e3357534c2e8dd20906c1e76baeba9c7b8d1e
diff --git a/gulp-tasks/utils/constants.js b/gulp-tasks/utils/constants.js index <HASH>..<HASH> 100644 --- a/gulp-tasks/utils/constants.js +++ b/gulp-tasks/utils/constants.js @@ -14,8 +14,8 @@ module.exports = { GENERATED_RELEASE_FILES_DIRNAME: 'generated-release-files', // This is used in the publish-bundle st...
Switch to <I> or above
GoogleChrome_workbox
train
6f17862c9f801bbd6ec609f08506fe8e2af6affd
diff --git a/lib/yao/resources/base.rb b/lib/yao/resources/base.rb index <HASH>..<HASH> 100644 --- a/lib/yao/resources/base.rb +++ b/lib/yao/resources/base.rb @@ -6,7 +6,7 @@ module Yao::Resources def self.friendly_attributes(*names) names.map(&:to_s).each do |name| define_method(name) do - ...
fix bug It causes problems when name = id.
yaocloud_yao
train
16fc1640add151bd25f8d25a321bfc8dc58e02ea
diff --git a/client/lib/abtest/index.js b/client/lib/abtest/index.js index <HASH>..<HASH> 100644 --- a/client/lib/abtest/index.js +++ b/client/lib/abtest/index.js @@ -251,7 +251,7 @@ ABTest.prototype.assignVariation = function() { for ( variationName in this.variationDetails ) { sum += this.variationDetails[ var...
change to strictly less than because Math.random() is a random number in the range [0, 1).
Automattic_wp-calypso
train
5521dc9899f07064519ade56f4ed6c51e04bd321
diff --git a/spec/rails/model_spec.rb b/spec/rails/model_spec.rb index <HASH>..<HASH> 100644 --- a/spec/rails/model_spec.rb +++ b/spec/rails/model_spec.rb @@ -158,6 +158,13 @@ describe Neo4j::Model do model = IceCream.create(:flavour => 'vanilla') IceCream.find("flavour: vanilla").should == model end...
Added spec for finding all Neo4j::Model based on query
neo4jrb_neo4j
train
6dd0d7c1a2a0fccc6d5de05da09a2faf1e5c35b5
diff --git a/orianna/src/main/java/com/merakianalytics/orianna/types/UniqueKeys.java b/orianna/src/main/java/com/merakianalytics/orianna/types/UniqueKeys.java index <HASH>..<HASH> 100644 --- a/orianna/src/main/java/com/merakianalytics/orianna/types/UniqueKeys.java +++ b/orianna/src/main/java/com/merakianalytics/orianna...
final bug fixes and renaming for dto unique keys
meraki-analytics_orianna
train
77c7c557c237ce5202bb365b8a279ab6d68c144c
diff --git a/lib/middleware/routes-metadata/routes-metadata.js b/lib/middleware/routes-metadata/routes-metadata.js index <HASH>..<HASH> 100644 --- a/lib/middleware/routes-metadata/routes-metadata.js +++ b/lib/middleware/routes-metadata/routes-metadata.js @@ -238,7 +238,6 @@ const pageHandler = async (req, res, next) =>...
Add noops for savereturn client
ministryofjustice_fb-runner-node
train
c5e0bdc5e8aa1af96d6a4b482129446d9a008f59
diff --git a/src/helpers/index.js b/src/helpers/index.js index <HASH>..<HASH> 100644 --- a/src/helpers/index.js +++ b/src/helpers/index.js @@ -7,10 +7,12 @@ export const isObject = obj => Object.prototype.toString.call(obj) === '[object export const hasKey = collection => { let coll = collection - if (!Array.is...
Do not apply event handlers as props
inlet_react-pixi
train
788d3322c2c6ec4d54f25fff1f606773ef02005e
diff --git a/lib/test.js b/lib/test.js index <HASH>..<HASH> 100644 --- a/lib/test.js +++ b/lib/test.js @@ -174,6 +174,10 @@ Test.prototype.execute = function() { return alias.buildRequest(); }) .then(function() { + if (alias.config.run) { + return util.safeAsync(alias.config.run, alias.conf...
added `run` function to tests; finished tests for test.js
CTRLLA_ctrllr
train
a22aa08ca7f66620c676e9d07868870534ab3de6
diff --git a/raiden/network/proxies/user_deposit.py b/raiden/network/proxies/user_deposit.py index <HASH>..<HASH> 100644 --- a/raiden/network/proxies/user_deposit.py +++ b/raiden/network/proxies/user_deposit.py @@ -9,6 +9,7 @@ from gevent.lock import RLock from raiden.exceptions import DepositMismatch, InvalidAddres...
User Deposit: Added log_transaction
raiden-network_raiden
train
49380893b1a5cd64fffb4e3392d38125f4ad720f
diff --git a/swiftly/__init__.py b/swiftly/__init__.py index <HASH>..<HASH> 100644 --- a/swiftly/__init__.py +++ b/swiftly/__init__.py @@ -18,5 +18,5 @@ limitations under the License. __all__ = ['VERSION'] -#: Version str for Swiftly: "major.minor" or "major.minor-dev". -VERSION = '1.1-dev' +#: Version str for Swi...
Making -dev to ~dev for proper dpkg version sort
gholt_swiftly
train
e92496b301f8d5f2b6e5abc5fe14913f3e3bbef3
diff --git a/src/com/google/javascript/jscomp/parsing/parser/Parser.java b/src/com/google/javascript/jscomp/parsing/parser/Parser.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/parsing/parser/Parser.java +++ b/src/com/google/javascript/jscomp/parsing/parser/Parser.java @@ -212,27 +212,31 @@ pub...
Cleanup of Parser.Config - removed unused fields - made fields private, because public isn't needed ------------- Created by MOE: <URL>
google_closure-compiler
train
24affa70970ab3c15ceb3a18c29ce64041eb3daf
diff --git a/openquake/calculators/hazard/classical/core_next.py b/openquake/calculators/hazard/classical/core_next.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/hazard/classical/core_next.py +++ b/openquake/calculators/hazard/classical/core_next.py @@ -585,13 +585,8 @@ def hazard_curves(job_id, lt_rlz_id,...
Cleaned up an lt_realization query Former-commit-id: <I>abbc<I>ac5dc7cc<I>f1d<I>de<I>d<I>
gem_oq-engine
train
574d8677f714995b60fd9bfa4f7063a25e4eb806
diff --git a/testing/testing/settings.py b/testing/testing/settings.py index <HASH>..<HASH> 100644 --- a/testing/testing/settings.py +++ b/testing/testing/settings.py @@ -60,7 +60,7 @@ MEDIA_URL = '/media/' # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories an...
Add STATIC_ROOT prefix to project testing. Now the issue #<I> is more easy to test it
django-inplaceedit_django-inplaceedit
train
678a0553c033061cffaac4b6cb46d1280d8730bb
diff --git a/src/main/java/org/acra/ACRA.java b/src/main/java/org/acra/ACRA.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/acra/ACRA.java +++ b/src/main/java/org/acra/ACRA.java @@ -259,7 +259,7 @@ public class ACRA { */ private static boolean isACRASenderServiceProcess(Application app) { ...
Logging ACRA process name at info instead of ERROR.
ACRA_acra
train
f00dd121e1c0582191514c04cbb9fd2b2a0147d6
diff --git a/panoply/sdk.py b/panoply/sdk.py index <HASH>..<HASH> 100644 --- a/panoply/sdk.py +++ b/panoply/sdk.py @@ -6,6 +6,10 @@ import threading import Queue import logging from copy import copy +from __init__ import FLUSH_TIMEOUT +from __init__ import MAXSIZE +from __init__ import PKGNAME +from __init__ import ...
Fixed the sdk to include the global variables and fix the fire's arguments
panoplyio_panoply-python-sdk
train
a9bc397cf7ccaa855dc37e5eda6c836b55ce3576
diff --git a/src/Message/CompletePurchaseResponse.php b/src/Message/CompletePurchaseResponse.php index <HASH>..<HASH> 100644 --- a/src/Message/CompletePurchaseResponse.php +++ b/src/Message/CompletePurchaseResponse.php @@ -93,6 +93,15 @@ class CompletePurchaseResponse extends AbstractResponse } /** + * ...
Added CompletePurchaseResponse::getResult()
hiqdev_omnipay-paypal
train
9867e2e42ad5468793b2e7c3bf69d99d95bcc5e1
diff --git a/distutils/command/install.py b/distutils/command/install.py index <HASH>..<HASH> 100644 --- a/distutils/command/install.py +++ b/distutils/command/install.py @@ -408,7 +408,8 @@ class install(Command): 'platlibdir': getattr(sys, 'platlibdir', 'lib'), ...
Cast value to str and provide a comment explaining why. Ref pypa/distutils#<I>.
pypa_setuptools
train
22ea9ea93b9376a2c5589f87e1e522c077a38687
diff --git a/lib/generators/component/component_generator.rb b/lib/generators/component/component_generator.rb index <HASH>..<HASH> 100644 --- a/lib/generators/component/component_generator.rb +++ b/lib/generators/component/component_generator.rb @@ -170,7 +170,7 @@ class ComponentGenerator < Rails::Generators::NamedBa...
Add support for index.js with single quotes
komposable_komponent
train
523c5eb16dec9d6563cc85011458dd782fa1274b
diff --git a/src/PipelineProcessor.php b/src/PipelineProcessor.php index <HASH>..<HASH> 100644 --- a/src/PipelineProcessor.php +++ b/src/PipelineProcessor.php @@ -31,14 +31,6 @@ abstract class PipelineProcessor extends AbstractProcessor /** - * Sets up the process context before running the pipeline - ...
renamed methods in pipelineprocessor and some cleanup
czim_laravel-processor
train
b2c246a81892ee720f4a6eaf27bd71d139079029
diff --git a/packages/swagger2openapi/index.js b/packages/swagger2openapi/index.js index <HASH>..<HASH> 100644 --- a/packages/swagger2openapi/index.js +++ b/packages/swagger2openapi/index.js @@ -65,6 +65,7 @@ function fixupSchema(obj, key, state, options) { } else { obj[key] =...
converter; preserve items if converting type to oneOf
Mermade_oas-kit
train
1a2bce7451aa990c5bec15f328f7063382b04606
diff --git a/katcp/__init__.py b/katcp/__init__.py index <HASH>..<HASH> 100644 --- a/katcp/__init__.py +++ b/katcp/__init__.py @@ -16,19 +16,30 @@ class NullHandler(logging.Handler): logging.getLogger("katcp").addHandler(NullHandler()) + del logging, NullHandler -from .core import (Message, KatcpSyntaxError, Me...
Manage import errors during setup.py to allow version module to be imported
ska-sa_katcp-python
train
ed2d658f61f1bd8de3221271dcd3bbf7bfeee158
diff --git a/gpapi/config.py b/gpapi/config.py index <HASH>..<HASH> 100644 --- a/gpapi/config.py +++ b/gpapi/config.py @@ -51,17 +51,17 @@ def getDevicesReadableNames(): def getUserAgent(): - return "Android-Finsky/7.1.15 (" \ - "api=3" \ - ",versionCode={versionCode}" \ - ",sdk={s...
Updated UserAgent string with latest gp version
NoMore201_googleplay-api
train
83798aff3c70a166a91d9a38c223871a6dcb88ce
diff --git a/salt/cli/salt.py b/salt/cli/salt.py index <HASH>..<HASH> 100644 --- a/salt/cli/salt.py +++ b/salt/cli/salt.py @@ -196,7 +196,7 @@ class SaltCMD(parsers.SaltCMDOptionParser): out = '' for full_ret in local.cmd_cli(**kwargs): ret_...
Do not use full return for documentation.
saltstack_salt
train
ed3e154dcfc464a0a8e84840546225536ae5aa55
diff --git a/niworkflows/viz/utils.py b/niworkflows/viz/utils.py index <HASH>..<HASH> 100644 --- a/niworkflows/viz/utils.py +++ b/niworkflows/viz/utils.py @@ -79,7 +79,7 @@ def as_svg(image, filename='temp.svg'): line = re.sub(' height="[0-9]+[a-z]*"', '', line) line = re.sub(' width="[0-9]+[a...
pylint before commiting...
poldracklab_niworkflows
train
7ab5365515dd935d98b1a97466a455d5c5a3cffe
diff --git a/evaluate_expression.go b/evaluate_expression.go index <HASH>..<HASH> 100644 --- a/evaluate_expression.go +++ b/evaluate_expression.go @@ -103,8 +103,7 @@ func (self *_runtime) evaluateUnaryOperation(node *_unaryOperationNode) Value { case "void": return UndefinedValue() case "delete": - target.refe...
Pass back result of "delete ..." (true or false)
robertkrimen_otto
train
fd32c25b022a429a152131543c024f95d6947a4c
diff --git a/src/protean/core/repository/base.py b/src/protean/core/repository/base.py index <HASH>..<HASH> 100644 --- a/src/protean/core/repository/base.py +++ b/src/protean/core/repository/base.py @@ -51,14 +51,22 @@ class BaseRepository(metaclass=_RepositoryMetaclass): It is also a marker interface for register...
Unit of Work - Intermediate Commit 3
proteanhq_protean
train
7944854acfaadb2fa12b7e5379d3d9f156de4fd8
diff --git a/code/libraries/koowa/libraries/behavior/abstract.php b/code/libraries/koowa/libraries/behavior/abstract.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/libraries/behavior/abstract.php +++ b/code/libraries/koowa/libraries/behavior/abstract.php @@ -69,15 +69,6 @@ abstract class KBehaviorAbstract e...
re #<I> : Do not add callbacks during object construction to avoid unneeded overhead.
timble_kodekit
train
cfd475475c0f6cce180940df5fc5ebaa7f3686ef
diff --git a/lib/teal.py b/lib/teal.py index <HASH>..<HASH> 100644 --- a/lib/teal.py +++ b/lib/teal.py @@ -256,12 +256,15 @@ def getHelpFileAsString(taskname,taskpath): """ #get the local library directory where the code is stored - localDir=os.path.split(taskpath) # taskpath should be task's __file__ + ...
handle when a simple filename (with no path) is given as taskpath to getHelpFileAsString() git-svn-id: <URL>
spacetelescope_stsci.tools
train
060f4c9c9d1b7ded3d09a45eaddc1e2549b6eaea
diff --git a/modules/dropdown/js/dropdown_directive.js b/modules/dropdown/js/dropdown_directive.js index <HASH>..<HASH> 100644 --- a/modules/dropdown/js/dropdown_directive.js +++ b/modules/dropdown/js/dropdown_directive.js @@ -397,7 +397,8 @@ scrollMask.css('z-index', LxDepthService.getDepth(...
fix(dropdown): an action on the mask closes the dropdown
lumapps_lumX
train
50fa6a2c22eeeedd8c30d5e3634cd81cb045a9fe
diff --git a/src/Models/HCResource.php b/src/Models/HCResource.php index <HASH>..<HASH> 100644 --- a/src/Models/HCResource.php +++ b/src/Models/HCResource.php @@ -30,6 +30,8 @@ declare(strict_types = 1); namespace HoneyComb\Resources\Models; use HoneyComb\Core\Models\HCUuidModel; +use HoneyComb\Core\Models\Traits\H...
Improved HCResource model with translations possibilities (scripts)
honey-comb_resources
train
69c6525e3bf8d1e2f03b9296ed325f7d33ab9915
diff --git a/client/extensions/woocommerce/app/dashboard/setup/tasks.js b/client/extensions/woocommerce/app/dashboard/setup/tasks.js index <HASH>..<HASH> 100644 --- a/client/extensions/woocommerce/app/dashboard/setup/tasks.js +++ b/client/extensions/woocommerce/app/dashboard/setup/tasks.js @@ -89,7 +89,7 @@ class Setup...
Store: Use shared duration translation (#<I>) Use shared numeric translation for "X minute(s)" See #<I>
Automattic_wp-calypso
train
2abbc99e778aeb64d144348eb12ee3f2c1ddc1bc
diff --git a/lib/node_modules/@stdlib/array/complex64/lib/main.js b/lib/node_modules/@stdlib/array/complex64/lib/main.js index <HASH>..<HASH> 100644 --- a/lib/node_modules/@stdlib/array/complex64/lib/main.js +++ b/lib/node_modules/@stdlib/array/complex64/lib/main.js @@ -910,7 +910,6 @@ Object.defineProperty( Complex64A...
Fix calculation of index offset and fix tests
stdlib-js_stdlib
train
45c85f4d5b0bfc0da7b02682e081063118e3c3b0
diff --git a/spec/html-proofer/cache_spec.rb b/spec/html-proofer/cache_spec.rb index <HASH>..<HASH> 100644 --- a/spec/html-proofer/cache_spec.rb +++ b/spec/html-proofer/cache_spec.rb @@ -136,9 +136,9 @@ describe 'Cache test' do expect_any_instance_of(HTMLProofer::Cache).to receive(:write) # we expect an...
Demonstrate runner/cache conflict
gjtorikian_html-proofer
train
30e7ef3eb9e634336cabef0aeddf8869bea778f4
diff --git a/client/driver/docker.go b/client/driver/docker.go index <HASH>..<HASH> 100644 --- a/client/driver/docker.go +++ b/client/driver/docker.go @@ -103,7 +103,7 @@ func (d *DockerDriver) dockerClient() (*docker.Client, error) { } } - d.logger.Println("[DEBUG] driver.docker: using client connection initial...
Don't show endpoint when we're not using it
hashicorp_nomad
train
91252d9e7d332ceb4e61cccbbad956882e191055
diff --git a/check.go b/check.go index <HASH>..<HASH> 100644 --- a/check.go +++ b/check.go @@ -259,6 +259,8 @@ type Visitor struct { params map[string]*param extras map[string]*param inBlock bool + + skipNext bool } func (v *Visitor) top() ast.Node { @@ -328,6 +330,10 @@ func (v *Visitor) discard(name strin...
Also see field usage in func arguments skipNext required to not treat s.Close() like s.Close, where the former is a function and the latter is a field.
mvdan_interfacer
train
d93057b4adffba0a8ba5b366bdb8b47a7de14356
diff --git a/lib/custom/src/MShop/Service/Provider/Payment/Mollie.php b/lib/custom/src/MShop/Service/Provider/Payment/Mollie.php index <HASH>..<HASH> 100644 --- a/lib/custom/src/MShop/Service/Provider/Payment/Mollie.php +++ b/lib/custom/src/MShop/Service/Provider/Payment/Mollie.php @@ -19,6 +19,22 @@ class MShop_Servic...
Don't try to update if customer is redirected back
aimeoscom_ai-payments
train
47d2562f47d711f6f9f3b35c4ab313d56ec129b7
diff --git a/src/backend/highlighter.js b/src/backend/highlighter.js index <HASH>..<HASH> 100644 --- a/src/backend/highlighter.js +++ b/src/backend/highlighter.js @@ -44,10 +44,19 @@ export function highlight (instance) { init() if (rect) { - let content = '' + const content = [] let name = instance....
fix: CSP inline style violations, closes #<I> (#<I>) Content Security Policy prevents the usage of inline styles on DOM elements, unless the insecure 'unsafe-inline' rule is used. This can be worked around by setting styles through the JS DOM API.
vuejs_vue-devtools
train
81431a2823c6ce81a6d7388868871b7c722064c6
diff --git a/elasticsearch/client/cluster.py b/elasticsearch/client/cluster.py index <HASH>..<HASH> 100644 --- a/elasticsearch/client/cluster.py +++ b/elasticsearch/client/cluster.py @@ -81,7 +81,7 @@ class ClusterClient(NamespacedClient): _, data = self.transport.perform_request('GET', url, params=params) ...
Reroute API has a metric param
elastic_elasticsearch-py
train
5338266283aac99fa367264cca8650e7ae0d3560
diff --git a/openstack_dashboard/dashboards/project/stacks/forms.py b/openstack_dashboard/dashboards/project/stacks/forms.py index <HASH>..<HASH> 100644 --- a/openstack_dashboard/dashboards/project/stacks/forms.py +++ b/openstack_dashboard/dashboards/project/stacks/forms.py @@ -336,7 +336,7 @@ class CreateStackForm(for...
Added the field label to the field arguments. Initially, the field key was used as the label. In the return dictionary has the label, so I use that value and fall back to the key if it does not exist. Change-Id: I<I>b4a7f<I>d<I>d3bdc3e<I>e<I>f<I>a<I>
openstack_horizon
train
144dc66a6f528fb5cc2bdf6de9f2bb293e3a0e2b
diff --git a/src/HTML/Cms/CmsFormHelper.php b/src/HTML/Cms/CmsFormHelper.php index <HASH>..<HASH> 100755 --- a/src/HTML/Cms/CmsFormHelper.php +++ b/src/HTML/Cms/CmsFormHelper.php @@ -224,6 +224,10 @@ class CmsFormHelper { if (isset($field['required'])) { $cms_field->validat...
uid refresh in CmsFormHelper
devp-eu_tmcms-core
train
56807e679d4d317be87c6335c5687f223d2a3003
diff --git a/tests/job_unittest.py b/tests/job_unittest.py index <HASH>..<HASH> 100644 --- a/tests/job_unittest.py +++ b/tests/job_unittest.py @@ -326,6 +326,8 @@ class PrepareJobTestCase(unittest.TestCase, helpers.DbTestMixin): BASE_CLASSICAL_PARAMS = { 'CALCULATION_MODE': 'Classical', 'POES': '...
fixed some missing parameters in test fixtures (these were missing, but we didn't know before because the db constraint checking was wrong) Former-commit-id: ceda9b9f<I>f<I>ff<I>df6e<I>eefb<I>b8
gem_oq-engine
train
6a655c7eabe3594a6e550cfcdb7641561516dc0e
diff --git a/master/buildbot/steps/slave.py b/master/buildbot/steps/slave.py index <HASH>..<HASH> 100644 --- a/master/buildbot/steps/slave.py +++ b/master/buildbot/steps/slave.py @@ -98,3 +98,37 @@ class FileExists(BuildStep): else: self.step_status.setText(["Not a file."]) self.finis...
Add RemoveDirectory build step.
buildbot_buildbot
train
a314879a96a92cfdd06b0ea998fe3201fad604fa
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb index <HASH>..<HASH> 100644 --- a/actionview/lib/action_view/helpers/form_helper.rb +++ b/actionview/lib/action_view/helpers/form_helper.rb @@ -1038,7 +1038,7 @@ module ActionView # date_field("us...
[ci skip] Fix which method `FormHelper#date_field` try to call When this method was implemented (<URL>), `to_date` is called. But this behavior was chagned refactoring (<URL>
rails_rails
train
3de4fec9937795ed28411ff06adf141d82ec7624
diff --git a/lib/gearmanode.js b/lib/gearmanode.js index <HASH>..<HASH> 100644 --- a/lib/gearmanode.js +++ b/lib/gearmanode.js @@ -7,9 +7,10 @@ */ -var winston = require('winston'), - version = require('./gearmanode/version'), - common = require('./gearmanode/common'), +var winston = require('winston'),...
moved _getJobServerByUid to Servermate
bda-research_gearman-node
train
5f39c9692a8b8cd78fa4968024d984c31d820e05
diff --git a/test/test.py b/test/test.py index <HASH>..<HASH> 100644 --- a/test/test.py +++ b/test/test.py @@ -84,7 +84,9 @@ class TestStringMethods(unittest.TestCase): self.assertTrue(data) def test_1_token(self): - self.assertEqual("token", str(self.token()["object"])) + token = self.tok...
[develop] Print responses to debug failures with travis
culqi_culqi-python
train
9045c5791681030ee91c3855ba018e32e568b6b1
diff --git a/src/Kernel/Application.php b/src/Kernel/Application.php index <HASH>..<HASH> 100755 --- a/src/Kernel/Application.php +++ b/src/Kernel/Application.php @@ -37,12 +37,12 @@ class Application extends Container $this->bind('app', $this); } - public function launching($callback) + publi...
launching() and quitting() methods now have a callable type hint
encorephp_kernel
train
4f234b694bdbd3644fd1fd8e7d27bc95822f37b3
diff --git a/shap/explainers/_additive.py b/shap/explainers/_additive.py index <HASH>..<HASH> 100644 --- a/shap/explainers/_additive.py +++ b/shap/explainers/_additive.py @@ -14,7 +14,7 @@ class Additive(Explainer): you will get incorrect answers that fail additivity). """ - def __init__(self, model, mas...
support passing linearize_link through explainers.Additive
slundberg_shap
train
2649662af278201784f2a3d08470b27b820168be
diff --git a/tests/calculators/hazard/classical/core_test.py b/tests/calculators/hazard/classical/core_test.py index <HASH>..<HASH> 100644 --- a/tests/calculators/hazard/classical/core_test.py +++ b/tests/calculators/hazard/classical/core_test.py @@ -316,7 +316,8 @@ class ClassicalHazardCalculatorTestCase(unittest.Test...
update classical core test to the new individual curves chunk api Former-commit-id: f0ab0e<I>d<I>ba<I>dacb1cd<I>b<I>cf<I>fa
gem_oq-engine
train
772301f4f1e0c198a1b485fc45a31dc891142925
diff --git a/Swat/SwatActionItemUIHandler.php b/Swat/SwatActionItemUIHandler.php index <HASH>..<HASH> 100644 --- a/Swat/SwatActionItemUIHandler.php +++ b/Swat/SwatActionItemUIHandler.php @@ -9,7 +9,7 @@ require_once('Swat/SwatUIHandler.php'); /** * UI handler for SwatActions. */ -class SwatActionItemUIHandler impl...
Make these classes extend from SwatObject, mostly for consistency right now. svn commit r<I>
silverorange_swat
train
0911c22e0d1d6c9ca916a1cd7eb3420abf5cbaf4
diff --git a/concrete/src/File/Image/Svg/Sanitizer.php b/concrete/src/File/Image/Svg/Sanitizer.php index <HASH>..<HASH> 100644 --- a/concrete/src/File/Image/Svg/Sanitizer.php +++ b/concrete/src/File/Image/Svg/Sanitizer.php @@ -4,11 +4,10 @@ namespace Concrete\Core\File\Image\Svg; use DOMDocument; use DOMElement; -u...
Check that LIBXML constants are defined
concrete5_concrete5
train
d4d7ec89e146a2b1ec22a391bac69c52774dc3cc
diff --git a/src/main/java/com/couchbase/cblite/CBLDatabase.java b/src/main/java/com/couchbase/cblite/CBLDatabase.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/couchbase/cblite/CBLDatabase.java +++ b/src/main/java/com/couchbase/cblite/CBLDatabase.java @@ -1537,7 +1537,9 @@ public class CBLDatabase { ...
sync java code with NSDictionary in getAllDocs
couchbase_couchbase-lite-java-core
train
08537ef40fc168a9764fc82339d3b8f4cfd5cb8c
diff --git a/command/v6/create_shared_domain_command.go b/command/v6/create_shared_domain_command.go index <HASH>..<HASH> 100644 --- a/command/v6/create_shared_domain_command.go +++ b/command/v6/create_shared_domain_command.go @@ -6,6 +6,7 @@ import ( "code.cloudfoundry.org/cli/api/cloudcontroller/ccversion" "code....
Error out when router-group is used with internal [#<I>]
cloudfoundry_cli
train
2e506e609b7ab4f106781c421b6c8711e54c5634
diff --git a/mod/forum/view.php b/mod/forum/view.php index <HASH>..<HASH> 100644 --- a/mod/forum/view.php +++ b/mod/forum/view.php @@ -159,7 +159,8 @@ } //If rss are activated at site and forum level and this forum has rss defined, show link - if ($CFG->enablerssfeeds && $CFG->forum_enablerss...
Notice out. Merged from <I>_STABLE
moodle_moodle
train
f944ed32d310a0c111ec6c0ba9e51bb679ee618f
diff --git a/ca/django_ca/admin.py b/ca/django_ca/admin.py index <HASH>..<HASH> 100644 --- a/ca/django_ca/admin.py +++ b/ca/django_ca/admin.py @@ -283,7 +283,7 @@ class CertificateMixin(object): return self.output_extension(obj.ocsp_no_check) ocsp_no_check.short_description = _('OCSP No Check') - def...
remove a bit more outdated code and pragmas
mathiasertl_django-ca
train
ddb06e1fd5246ec8953c2b513f12b56fa6a38407
diff --git a/src/Method/Command/AbstractCommandMethod.php b/src/Method/Command/AbstractCommandMethod.php index <HASH>..<HASH> 100644 --- a/src/Method/Command/AbstractCommandMethod.php +++ b/src/Method/Command/AbstractCommandMethod.php @@ -23,7 +23,7 @@ abstract class AbstractCommandMethod extends AbstractMethod *...
Get output and binary path when testing a command
raulfraile_distill
train
1f3371c8e29871e75f3317475af5f29cdddf9f39
diff --git a/allegedb/allegedb/__init__.py b/allegedb/allegedb/__init__.py index <HASH>..<HASH> 100644 --- a/allegedb/allegedb/__init__.py +++ b/allegedb/allegedb/__init__.py @@ -50,11 +50,13 @@ class ORM(object): self.query.active_branches = self._active_branches self._graph_objs = {} - def _ini...
Make sure the branch history gets loaded before anything else
LogicalDash_LiSE
train
86c2e22a5bab2c992862147225596b8a4a7f701e
diff --git a/framework/db/BaseActiveRecord.php b/framework/db/BaseActiveRecord.php index <HASH>..<HASH> 100644 --- a/framework/db/BaseActiveRecord.php +++ b/framework/db/BaseActiveRecord.php @@ -8,6 +8,7 @@ namespace yii\db; use yii\base\InvalidConfigException; +use yii\base\Event; use yii\base\Model; use yii\bas...
class Event is used in docs
yiisoft_yii2
train
9d8f2812349644513e379acb719605711b4614d6
diff --git a/src/font/validate.js b/src/font/validate.js index <HASH>..<HASH> 100644 --- a/src/font/validate.js +++ b/src/font/validate.js @@ -7,6 +7,13 @@ d3plus.font.validate = function(test_fonts) { test_fonts = test_fonts.split(",") } + var fontString = test_fonts.join(", ") + , completed = this.valid...
d3plus.font.validate now locally stores font lists to test if they've already been validated
alexandersimoes_d3plus
train
db14ddfb68e04409e27373f7dfd806afa36f547c
diff --git a/astyanax-queue/src/main/java/com/netflix/astyanax/recipes/queue/shard/TimePartitionedShardReaderPolicy.java b/astyanax-queue/src/main/java/com/netflix/astyanax/recipes/queue/shard/TimePartitionedShardReaderPolicy.java index <HASH>..<HASH> 100644 --- a/astyanax-queue/src/main/java/com/netflix/astyanax/recip...
Modify TimePartitionedShardReaderPolicy builder to accept time units
Netflix_astyanax
train
bd4385eabf42d4d877f270215c14e5c802508290
diff --git a/src/ActivityLogger.php b/src/ActivityLogger.php index <HASH>..<HASH> 100644 --- a/src/ActivityLogger.php +++ b/src/ActivityLogger.php @@ -53,7 +53,7 @@ class ActivityLogger return $this; } - + public function by($modelOrId) { return $this->causedBy($modelOrId); @@ -87...
Code review * Moved the @see block above the class * Whitespace normalization * Improved placeholder replace regex (fixes failing test) * Docblock improvement * Renamed kuisvrouwman to poetsvrouwman for consistency * defer isnt necessary when its false
spatie_laravel-activitylog
train
4e1158ccb41d3bb4ea69b9daa98c8076706e1287
diff --git a/src/Handlers/Events/DropdownEventHandler.php b/src/Handlers/Events/DropdownEventHandler.php index <HASH>..<HASH> 100644 --- a/src/Handlers/Events/DropdownEventHandler.php +++ b/src/Handlers/Events/DropdownEventHandler.php @@ -17,10 +17,13 @@ class DropdownEventHandler $events->listen('Neonbug\\Common\\E...
Implement new method for getting dropdown values, using a repository method
neonbug_meexo-common
train
ede2c43b6db48edfecc43dba0396c29da7c8e92d
diff --git a/packages/ringcentral-widgets-test/test/integration-test/QuickAccess/QuickAccess.spec.js b/packages/ringcentral-widgets-test/test/integration-test/QuickAccess/QuickAccess.spec.js index <HASH>..<HASH> 100644 --- a/packages/ringcentral-widgets-test/test/integration-test/QuickAccess/QuickAccess.spec.js +++ b/p...
fix quickaccess settings name in It (#<I>)
ringcentral_ringcentral-js-widgets
train
ece1a68ec122ef7cffff3e903149d571723f4130
diff --git a/scripts/analyze_finished_sqn.py b/scripts/analyze_finished_sqn.py index <HASH>..<HASH> 100644 --- a/scripts/analyze_finished_sqn.py +++ b/scripts/analyze_finished_sqn.py @@ -60,7 +60,7 @@ def _remote_copy(remote_info, local_sqn_dir): target_dir = os.path.dirname(target_loc) if not...
Switch back to scp; rsync is creating additional directories
bcbio_bcbio-nextgen
train
bd9550d7e558a00383cf810803c9613828aea212
diff --git a/doc/data/messages/m/missing-yield-doc/good.py b/doc/data/messages/m/missing-yield-doc/good.py index <HASH>..<HASH> 100644 --- a/doc/data/messages/m/missing-yield-doc/good.py +++ b/doc/data/messages/m/missing-yield-doc/good.py @@ -1,10 +1,13 @@ -def even_number_under(n: int): +from typing import Iterator + ...
Migrate return type to annotations in missing-yield-doc example (#<I>)
PyCQA_pylint
train
07ec3c1edca34a08b67d5167c064a85dbebcf974
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -198,7 +198,7 @@ }( function _require(name) { - return require ? require(name) : window[name]; + return typeof require !== 'undefined' ? require(name) : window[name]; }, typeof window !== "undefined" ? w...
Added support for browsers by not crashing.
Raynos_ncore
train
6ed67a9dec1903c1f9b9fd6c2960904bb47296c5
diff --git a/lib/jza.js b/lib/jza.js index <HASH>..<HASH> 100644 --- a/lib/jza.js +++ b/lib/jza.js @@ -308,56 +308,75 @@ var getPossibleInitialStates = function (jza, symbols) { .value(); }; +// Return an array where each element is all possible transitions for that timestep +// The array will be of length symb...
Refactored getPathways to not run out of memory
jsrmath_sharp11
train
0b52930dd6ced63bf3defe7c3263b27a8cb8f793
diff --git a/src/services/value-stat-getter.js b/src/services/value-stat-getter.js index <HASH>..<HASH> 100644 --- a/src/services/value-stat-getter.js +++ b/src/services/value-stat-getter.js @@ -2,10 +2,11 @@ import getScopedParams from '../utils/scopes'; import QueryBuilder from './query-builder'; class ValueStatG...
fix: broken value charts due to missing user on ValueStatGetter constructor (#<I>)
ForestAdmin_forest-express-mongoose
train
2b076ac943280337e32e93fe93e8d0d09dd46c08
diff --git a/bundles/org.eclipse.orion.client.ui/web/js-tests/commands/testcase.js b/bundles/org.eclipse.orion.client.ui/web/js-tests/commands/testcase.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/js-tests/commands/testcase.js +++ b/bundles/org.eclipse.orion.client.ui/web/js-tests/comman...
Test case for stand-alone commands and keybindings
eclipse_orion.client
train
cb95490aa71e57c3d36fc99bb2359df18a991fbc
diff --git a/Eloquent/Model.php b/Eloquent/Model.php index <HASH>..<HASH> 100644 --- a/Eloquent/Model.php +++ b/Eloquent/Model.php @@ -1219,6 +1219,27 @@ abstract class Model implements ArrayAccess, ArrayableInterface, JsonableInterfa } /** + * Get the relationships that are touched on save. + * + * @return ar...
Added getter / setter for touches.
illuminate_database
train
262a77ffdf1530a5b9f7d5a6415977f0b9d01dff
diff --git a/src/main/java/hex/glm/GLMValidation.java b/src/main/java/hex/glm/GLMValidation.java index <HASH>..<HASH> 100644 --- a/src/main/java/hex/glm/GLMValidation.java +++ b/src/main/java/hex/glm/GLMValidation.java @@ -62,12 +62,19 @@ public class GLMValidation extends Iced { public GLMXValidation(GLMModel mai...
PUB-<I> - changed the way AUC is computed for validated models to match GLM1 (i.e. AUC = average of AUCs of imdividual xval models, rather tan summing up the confusion matrices and computing global aux in the end).
h2oai_h2o-2
train
c05fba7069de3053981d2fa28de5ee72efc741e7
diff --git a/lib/oulipo/analysis.rb b/lib/oulipo/analysis.rb index <HASH>..<HASH> 100644 --- a/lib/oulipo/analysis.rb +++ b/lib/oulipo/analysis.rb @@ -1,6 +1,5 @@ module Oulipo class Analysis - include Oulipo::Proxiable include Enumerable attr_reader :original, :deconstruction, :word_lists
Removed proxiable from analysis.
Aupajo_oulipo
train
3f78110ac056338515f068ca531112cdab653b17
diff --git a/malcolm/parts/asyn/asynoutportpart.py b/malcolm/parts/asyn/asynoutportpart.py index <HASH>..<HASH> 100644 --- a/malcolm/parts/asyn/asynoutportpart.py +++ b/malcolm/parts/asyn/asynoutportpart.py @@ -17,8 +17,9 @@ class AsynOutportPart(CAStringPart): name=params.name, description=params.descript...
Typos in the yaml
dls-controls_pymalcolm
train
e0ff40133c5e8339f17fac28786d51c2dcfa2d2f
diff --git a/common/src/test/java/tachyon/TachyonURITest.java b/common/src/test/java/tachyon/TachyonURITest.java index <HASH>..<HASH> 100644 --- a/common/src/test/java/tachyon/TachyonURITest.java +++ b/common/src/test/java/tachyon/TachyonURITest.java @@ -220,6 +220,8 @@ public class TachyonURITest { @Test publi...
[TACHYON-<I>] add additional unit tests @gpang
Alluxio_alluxio
train
65e1cd5471ec95d1f697bf73219dbc01803db79b
diff --git a/lib/logging/GhostLogger.js b/lib/logging/GhostLogger.js index <HASH>..<HASH> 100644 --- a/lib/logging/GhostLogger.js +++ b/lib/logging/GhostLogger.js @@ -3,6 +3,7 @@ const each = require('lodash/each'); const upperFirst = require('lodash/upperFirst'); const toArray = require('lodash/toArray'); const isO...
feat(log): add stderr log transport no issue - allows for logging errors to stderr rather than stdout, also prevents logging errors to stdout if stderr transport is defined
TryGhost_Ignition
train
60eea9cfbc9b5bf392d2db1c4bc9553b9fe3a67a
diff --git a/src/number_format.js b/src/number_format.js index <HASH>..<HASH> 100644 --- a/src/number_format.js +++ b/src/number_format.js @@ -21,7 +21,7 @@ const propTypes = { PropTypes.number, PropTypes.string ]), - customInput: PropTypes.any + customInput: PropTypes.func }; const defaultProps = { ...
- Fixed mobile caret issue and - take element from target instead of ref and focus element
s-yadav_react-number-format
train
512cf38bd4d5e4eb10a116af18d373163ea86ce1
diff --git a/examples/beam.py b/examples/beam.py index <HASH>..<HASH> 100755 --- a/examples/beam.py +++ b/examples/beam.py @@ -33,7 +33,7 @@ import threading import mimetypes import sys -from .cli import CommandLineInterface +from cli import CommandLineInterface import nfc import nfc.snep diff --git a/examples/...
Local 'from .cli import ...' doesn't work.
nfcpy_nfcpy
train
a318db6f09c90b8b9b14e7b892414e7d1a305d82
diff --git a/lib/chef/knife/azure_server_create.rb b/lib/chef/knife/azure_server_create.rb index <HASH>..<HASH> 100755 --- a/lib/chef/knife/azure_server_create.rb +++ b/lib/chef/knife/azure_server_create.rb @@ -71,8 +71,7 @@ class Chef option :ssh_port, :long => "--ssh-port PORT", - :descriptio...
Changes to take user specified ssh/winrm port <I>/<I> instead of random port with --azure-connect-to-existing-dns option for server creation
chef_knife-azure
train
2cc0c1dc546f046cb3468ba1c4ce7446fbba06c4
diff --git a/jarn/mkrelease/mkrelease.py b/jarn/mkrelease/mkrelease.py index <HASH>..<HASH> 100644 --- a/jarn/mkrelease/mkrelease.py +++ b/jarn/mkrelease/mkrelease.py @@ -173,10 +173,16 @@ class Locations(object): return location in self.servers def is_ssh_url(self, location): - """Return True if...
Catch scp:// as invalid.
Jarn_jarn.mkrelease
train
0895709e13f8c42ef17efcb34bc45957a8fc742b
diff --git a/blobxfer/operations/upload.py b/blobxfer/operations/upload.py index <HASH>..<HASH> 100644 --- a/blobxfer/operations/upload.py +++ b/blobxfer/operations/upload.py @@ -740,8 +740,8 @@ class Uploader(object): # list blobs for all destinations checked = set() deleted = 0 - for...
Fix non-relative delete extraneous on upload - Resolves #<I>
Azure_blobxfer
train
5c2f1c52e34f785cd7194e70f7517e23e4a87a04
diff --git a/bridge/bridge.go b/bridge/bridge.go index <HASH>..<HASH> 100644 --- a/bridge/bridge.go +++ b/bridge/bridge.go @@ -10,6 +10,8 @@ import ( "sort" "strconv" "strings" + "regexp" + "runtime/debug" ) //type Bridge struct { @@ -140,7 +142,28 @@ func (b *Bridge) setupChannels() { } } +func (b *Brid...
Add IRC bot command to print user list on Mattermost. Also, fix another call to getMMChannel and provide debug info when we don't find the channel we're looking for.
42wim_matterbridge-plus
train
d18988827f96847d831d6bad28918adc17720ab5
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,6 +30,7 @@ MOCK_MODULES = [ "i3pystatus.pulseaudio.pulse", "notmuch", "requests", + "beautifulsoup4" ] for mod_name in MOCK_MODULES: diff --git a/i3pystatus/whosonlocation.py b/i3pysta...
Documented dependency on beautifulsoup4.
enkore_i3pystatus
train
d159901212caa9d0a7a098760b99b0c811e4965c
diff --git a/src/Illuminate/Database/DatabaseManager.php b/src/Illuminate/Database/DatabaseManager.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Database/DatabaseManager.php +++ b/src/Illuminate/Database/DatabaseManager.php @@ -208,6 +208,16 @@ class DatabaseManager implements ConnectionResolverInterface { } ...
added getConnections method. Fixes #<I>.
laravel_framework
train
8353b6fd6ed12db978cb0aa5f382c9f3e59c4885
diff --git a/sweep/sweeper.go b/sweep/sweeper.go index <HASH>..<HASH> 100644 --- a/sweep/sweeper.go +++ b/sweep/sweeper.go @@ -599,27 +599,10 @@ func (s *UtxoSweeper) collector(blockEpochs <-chan *chainntnfs.BlockEpoch) { inputClusters[j].sweepFeeRate }) for _, cluster := range inputClusters { - // Exa...
sweep: extract sweepCluster method Prepares for adding another level of nesting.
lightningnetwork_lnd
train
5bf5e35e813d6e93ad1ea87de0458ed2e935c8b3
diff --git a/executor/set_test.go b/executor/set_test.go index <HASH>..<HASH> 100644 --- a/executor/set_test.go +++ b/executor/set_test.go @@ -322,7 +322,7 @@ func TestSetVar(t *testing.T) { tk.MustExec("set session tidb_backoff_weight = -1") tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1292 Truncated ...
variable: make backoff weight could be 0 (#<I>) close pingcap/tidb#<I>
pingcap_tidb
train
63111c4605a51f35fc0bb181fa3dbf4286693189
diff --git a/lib/health-data-standards/models/cqm/measure.rb b/lib/health-data-standards/models/cqm/measure.rb index <HASH>..<HASH> 100644 --- a/lib/health-data-standards/models/cqm/measure.rb +++ b/lib/health-data-standards/models/cqm/measure.rb @@ -149,7 +149,11 @@ module HealthDataStandards if self.prefilte...
Flip comparitors (they were wrong), removing $and clause (not needed)
projecttacoma_cqm-parsers
train
d4c04c58e5d0c8b99975c7bb54574db35181d2f9
diff --git a/samples/MUC_Sample.java b/samples/MUC_Sample.java index <HASH>..<HASH> 100644 --- a/samples/MUC_Sample.java +++ b/samples/MUC_Sample.java @@ -1,5 +1,9 @@ import java.util.Arrays; +import java.util.HashSet; import java.util.List; +import java.util.Set; + +import edu.emory.mathcs.backport.java.util.Collect...
add test for Possibly Immutable
mebigfatguy_fb-contrib
train
2d8d5d4cca3a21e622c2fe0fd926ca39ac92ab24
diff --git a/clustergrammer_widget/_version.py b/clustergrammer_widget/_version.py index <HASH>..<HASH> 100644 --- a/clustergrammer_widget/_version.py +++ b/clustergrammer_widget/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 5, 3) +version_info = (1, 6, 0) __version__ = '.'.join(map(str, version_info)) diff --git a/...
version <I> with dendro_cat method
ismms-himc_clustergrammer2
train