hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
851362f5c5bed1c97426839e8c976fc482ceb4de
diff --git a/unyt/unit_object.py b/unyt/unit_object.py index <HASH>..<HASH> 100644 --- a/unyt/unit_object.py +++ b/unyt/unit_object.py @@ -57,10 +57,10 @@ from unyt.unit_registry import ( from unyt.exceptions import ( InvalidUnitOperation, MissingMKSCurrent, + UnitsNotReducible, ) from unyt.equivalencie...
For now, return an error when this happens
yt-project_unyt
train
d7d02e6d6a2ea71435adcb246d647504ea8f49ef
diff --git a/image.go b/image.go index <HASH>..<HASH> 100644 --- a/image.go +++ b/image.go @@ -284,7 +284,12 @@ func (i *Image) DrawImage(img *Image, options *DrawImageOptions) error { if w2 == 0 || h2 == 0 { break } - s := shareable.NewImage(w2, h2) + var s *shareable.Image + if img.shareableImages[0].IsV...
Reland: graphics: mipmap images should be volatile when the base image is volatile This is not a bug fix, but should improve performance.
hajimehoshi_ebiten
train
bd5f8f04d200d912e9464f0a923115fbadc79ab9
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setup( 'django-parler>=1.6.1', # Needed for Django 1.9 compatibility 'django-polymorphic>=0.9.1', # Needed for Django 1.9 compatibility 'django-tag-parser>=2.1', ...
Enforce django-template-analyzer >= <I> due to a nasty bugfix This ensures things work properly out of the box
django-fluent_django-fluent-contents
train
f9cb3cb48e9e2cb487f34ff6169affab3ec8127f
diff --git a/sos/cleaner/mappings/hostname_map.py b/sos/cleaner/mappings/hostname_map.py index <HASH>..<HASH> 100644 --- a/sos/cleaner/mappings/hostname_map.py +++ b/sos/cleaner/mappings/hostname_map.py @@ -169,13 +169,13 @@ class SoSHostnameMap(SoSMap): def sanitize_item(self, item): host = item.split(...
[clean, hostname] Fix unintentionally case sensitive shortname handling It was discovered that our extra handling for shortnames was unintentionally case sensitive. Fix this to ensure that shortnames are obfuscated regardless of case in all collected text.
sosreport_sos
train
4b5f2b52139a6f8ae6a9149b34d710e54d71c4f2
diff --git a/src/Foundation/Connector.php b/src/Foundation/Connector.php index <HASH>..<HASH> 100644 --- a/src/Foundation/Connector.php +++ b/src/Foundation/Connector.php @@ -559,7 +559,7 @@ class Connector self::need(self::$path.'Console/Commands/Translator/NewDir.php'); self::need(self::$path.'Console/Commands/...
update the path of new file schema command class
vinala_kernel
train
90af42d759848797aab980262e70b8cb4035f6e8
diff --git a/salt/modules/iptables.py b/salt/modules/iptables.py index <HASH>..<HASH> 100644 --- a/salt/modules/iptables.py +++ b/salt/modules/iptables.py @@ -29,6 +29,8 @@ def _conf(): return '/etc/sysconfig/iptables' elif __grains__['os_family'] == 'Arch': return '/etc/iptables/iptables.rules' ...
Added correct path for Gentoo iptables config file. Gentoo also have a service to enforce iptables rules, maybe you can consider to handle it in some way. I would have done that by myself, but this module looks to be still under heavy development and I don't want to create new issues.
saltstack_salt
train
4686899264bc6c4ad1c862f02ea0292cae8db54e
diff --git a/search.py b/search.py index <HASH>..<HASH> 100644 --- a/search.py +++ b/search.py @@ -74,12 +74,11 @@ class Node: def path(self): """Create a list of nodes from the root to this node.""" - # Isn't this backwards??? - x, result = self, [self] - while x.parent: - ...
Fixed path() to follow its doc comment (first-to-last order).
hobson_aima
train
fe33eb46db1c4ba18916ea70e0748f6d2679682d
diff --git a/src/js/mep-player.js b/src/js/mep-player.js index <HASH>..<HASH> 100644 --- a/src/js/mep-player.js +++ b/src/js/mep-player.js @@ -27,7 +27,11 @@ // Hide controls when playing and mouse is not over the video alwaysShowControls: false, // force iPad's native controls - iPadUseNativeControls: true, ...
Custom controls for iPad, iPhone, and Android with toggles
mediaelement_mediaelement
train
65b708ed96761366c00b7ec3efb954037047c026
diff --git a/cobra/core/configuration.py b/cobra/core/configuration.py index <HASH>..<HASH> 100644 --- a/cobra/core/configuration.py +++ b/cobra/core/configuration.py @@ -9,7 +9,7 @@ import types from multiprocessing import cpu_count from warnings import warn -from six import string_types, with_metaclass +from six ...
update: add solver tolerance setting in Configuration
opencobra_cobrapy
train
93df06a3fa9830f1a40b7c466005df163eef2ef9
diff --git a/interfaces/curl.php b/interfaces/curl.php index <HASH>..<HASH> 100644 --- a/interfaces/curl.php +++ b/interfaces/curl.php @@ -90,7 +90,7 @@ interface cURL * @param array $options An array specifying which options to set and their values. * @return self */ - public function curlSetOptArry(array $op...
Correct typo for curlSetOptArray "curlSetOptArry" -> "curlSetOptArray"
shgysk8zer0_core_api
train
0bd4066e21d24a1f1c41e097c84da45d269d43f4
diff --git a/squad/core/comparison.py b/squad/core/comparison.py index <HASH>..<HASH> 100644 --- a/squad/core/comparison.py +++ b/squad/core/comparison.py @@ -123,12 +123,14 @@ class TestComparison(object): after = self.builds[-1] # last before = self.builds[-2] # second to last for env in ...
core/notification: make sure no regressions really mean it i.e. don't even include environments in which there are no regressions as a key in the regression dictionary
Linaro_squad
train
7b9fc4c995e264a50f728d4ee8eafa596f26fb7b
diff --git a/src/ol/source/VectorTile.js b/src/ol/source/VectorTile.js index <HASH>..<HASH> 100644 --- a/src/ol/source/VectorTile.js +++ b/src/ol/source/VectorTile.js @@ -240,8 +240,9 @@ class VectorTile extends UrlTile { const tileCache = this.getTileCacheForProjection(projection); const usedSourceTiles = Ob...
Do not refresh use time for tiles when collecting used source tiles
openlayers_openlayers
train
8f09a6bf8bdb7c2ce44b9de2d5ab7931c6bb15b9
diff --git a/lib/http/index.js b/lib/http/index.js index <HASH>..<HASH> 100755 --- a/lib/http/index.js +++ b/lib/http/index.js @@ -66,7 +66,7 @@ app.post('/job', provides('json'), express.bodyParser(), json.createJob); app.get('/', function (req, res) { // res.redirect('active') - (app.path() === '/') ? res.r...
fix redirection When the app is mounted on /kue for example, <URL>
Automattic_kue
train
6e11e6f4672390b200ce6bad18a2e2301bef3acc
diff --git a/lib/qu.rb b/lib/qu.rb index <HASH>..<HASH> 100644 --- a/lib/qu.rb +++ b/lib/qu.rb @@ -3,13 +3,12 @@ require 'qu/logger' require 'qu/failure' require 'qu/payload' require 'qu/backend/base' +require 'qu/worker' require 'forwardable' require 'logger' module Qu - autoload :Worker, 'qu/worker' - e...
Remove autoload in favor of require. autoload has/had thread issues. Requiring worker is fine.
bkeepers_qu
train
f5761bd5086a65f5d4390d963f810f376fb5ec3e
diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaAnnotationDrivenConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaAnnotationDrivenConfiguration.java index <HASH>..<...
Auto-configure listener container factory without consumer factory Previously, the presence of a `ConsumerFactory` bean would make the auto-configured one to back off, leading to a failure down the line if no available instance matches the generics criterion. This commit improves the auto-configuration to create a `Co...
spring-projects_spring-boot
train
6eed23a7fac0b7d91287d60dcab13ec96c01609b
diff --git a/lang/en/moodle.php b/lang/en/moodle.php index <HASH>..<HASH> 100644 --- a/lang/en/moodle.php +++ b/lang/en/moodle.php @@ -1483,6 +1483,7 @@ $string['scalescustomcreate'] = 'Add a new scale'; $string['scalescustomno'] = 'No custom scales have been created yet'; $string['scalesstandard'] = 'Standard scales...
MDL-<I> adding help strings
moodle_moodle
train
541e7349b6533eb533c15d17e3e9e432e4a719ea
diff --git a/AUTHORS.txt b/AUTHORS.txt index <HASH>..<HASH> 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -219,4 +219,5 @@ S. Andrew Sheppard <andrew@wq.io> Roman Reiß <me@silverwind.io> Benjy Cui <benjytrys@gmail.com> Rodrigo Rosenfeld Rosas <rr.rosas@gmail.com> +John Hoven <hovenj@gmail.com> diff --git a/src/att...
Attributes: Trim whitespace from option text when returned as a value Fixes #<I> Ref #<I> Closes gh-<I> (cherry picked from commit 9ec<I>cf<I>e<I>aba4eba<I>f4db<I>e<I>b6) Conflicts: src/attributes/val.js
jquery_jquery
train
710a42e98703f8f3973ab97a0c403a6b617549c5
diff --git a/servo-aws/src/main/java/com/netflix/servo/tag/aws/AwsInjectableTag.java b/servo-aws/src/main/java/com/netflix/servo/tag/aws/AwsInjectableTag.java index <HASH>..<HASH> 100644 --- a/servo-aws/src/main/java/com/netflix/servo/tag/aws/AwsInjectableTag.java +++ b/servo-aws/src/main/java/com/netflix/servo/tag/aws...
getting indiv props instead of reading all props (#<I>) Secured applications may not have access to all system properties on a server. Making this change to prevent reading all the system properties and just read the properties that are required for creating the DefaultMonitorRegistry instance. Fixes #<I>.
Netflix_servo
train
054a77f8fbfe794ec86e2d4844a8933fecffa0c1
diff --git a/src/Sylius/Behat/Context/Domain/ManagingProductsContext.php b/src/Sylius/Behat/Context/Domain/ManagingProductsContext.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Behat/Context/Domain/ManagingProductsContext.php +++ b/src/Sylius/Behat/Context/Domain/ManagingProductsContext.php @@ -45,7 +45,8 @@ final c...
Replace generic \Exception with covariant
Sylius_Sylius
train
909f974eeed7dc67aecb5bdd59764d2dc42a74af
diff --git a/Lib/fontbakery/specifications/googlefonts.py b/Lib/fontbakery/specifications/googlefonts.py index <HASH>..<HASH> 100644 --- a/Lib/fontbakery/specifications/googlefonts.py +++ b/Lib/fontbakery/specifications/googlefonts.py @@ -3385,9 +3385,9 @@ def com_google_fonts_test_099(style, , conditions=['style', ...
pytest test/<I> (issue #<I>)
googlefonts_fontbakery
train
3aa7e1317fdaba7e1f5c9a819e2672630af712d1
diff --git a/src/Arrayy.php b/src/Arrayy.php index <HASH>..<HASH> 100644 --- a/src/Arrayy.php +++ b/src/Arrayy.php @@ -229,12 +229,15 @@ class Arrayy extends \ArrayObject implements \IteratorAggregate, \ArrayAccess, \ public function add($value, $key = null) { if ($key !== null) { - $value...
[+]: "Arrayy->add()" -> allow to use dot-notation for the key v2
voku_Arrayy
train
5f52adeee10a4b78e152156dcd17f84fc430ebb5
diff --git a/src/timeAgo.js b/src/timeAgo.js index <HASH>..<HASH> 100644 --- a/src/timeAgo.js +++ b/src/timeAgo.js @@ -21,21 +21,17 @@ angular.module('yaru22.angular-timeago', [ }); } }; -}]).factory('nowTime', ['$window', '$rootScope', function ($window, $rootScope) { - var nowTime = Date.now(); - var...
Use $timeout instead of $window and $rootScope filesize and readability
yaru22_angular-timeago
train
5a74b050bd0d4e715024e4bcb94992c36c828ec7
diff --git a/pprofile.py b/pprofile.py index <HASH>..<HASH> 100755 --- a/pprofile.py +++ b/pprofile.py @@ -803,7 +803,7 @@ class Profile(ProfileBase, ProfileRunnerBase): lineno = frame.f_lineno print('%10.6f%s%s %s:%s %s+%s' % ( time() - self.enabled_start, - ' ' * len(self.sta...
pprofile: Fix verbose output indentation. Was broken by commit bf<I>a<I>aba<I>dc9bf<I>e<I>cda4b pprofile: Reduce deterministic profiling overhead.
vpelletier_pprofile
train
f8b0573edb5515ceca83be135ecb6e2f356836af
diff --git a/frontend/dockerfile/builder/build.go b/frontend/dockerfile/builder/build.go index <HASH>..<HASH> 100644 --- a/frontend/dockerfile/builder/build.go +++ b/frontend/dockerfile/builder/build.go @@ -4,8 +4,10 @@ import ( "archive/tar" "bytes" "context" + "encoding/csv" "encoding/json" "fmt" + "net" ...
dockerfile: expose add-hosts
moby_buildkit
train
7aeefd82c899afb69eb7494c7ac42905338f6170
diff --git a/lib/datasets/postal-code-japan.rb b/lib/datasets/postal-code-japan.rb index <HASH>..<HASH> 100644 --- a/lib/datasets/postal-code-japan.rb +++ b/lib/datasets/postal-code-japan.rb @@ -111,7 +111,7 @@ module Datasets when :uppercase data_url << "/oogaki/zip/ken_all.zip" when :romaji - ...
postalcodejapan: Fix zip url of romaji (#<I>) zip download url has changed in Postal code japan - romaji. <URL>
red-data-tools_red-datasets
train
851146e83724e68431e1a9fd1935a9bceae6efd7
diff --git a/micrometer-core/src/main/java/io/micrometer/core/instrument/dropwizard/DropwizardMeterRegistry.java b/micrometer-core/src/main/java/io/micrometer/core/instrument/dropwizard/DropwizardMeterRegistry.java index <HASH>..<HASH> 100644 --- a/micrometer-core/src/main/java/io/micrometer/core/instrument/dropwizard/...
Default base unit for dropwizard is now milliseconds
micrometer-metrics_micrometer
train
8ec002b16a044338ee4445c4b330328a93b9bb59
diff --git a/lib/Form/Field/Readonly.php b/lib/Form/Field/Readonly.php index <HASH>..<HASH> 100644 --- a/lib/Form/Field/Readonly.php +++ b/lib/Form/Field/Readonly.php @@ -1,32 +1,41 @@ <?php -class Form_Field_Readonly extends Form_Field +/** + * Note: This class extends Form_Field_ValueList not Form_Field, because it ...
Form_Field_Readonly: now works nicely with ValueList based fields This is cool ! :) Now readonly form fields at last nicely can replace ValueList based form fields like DropDown, Radio, CheckboxList. Readonly field will not show ID anymore, but get and show related model title field value (with just one simple SQL re...
atk4_atk4
train
ba936f6c2811510f4f24c669ea544a767dea2dc6
diff --git a/lib/lines.rb b/lib/lines.rb index <HASH>..<HASH> 100644 --- a/lib/lines.rb +++ b/lib/lines.rb @@ -113,15 +113,8 @@ module Lines def to_outputter(out) return out if out.respond_to?(:output) return StreamOutputter.new(out) if out.respond_to?(:write) - - case out - when IO - ...
Fixes issue where Syslog is not recognized as an outputter
zimbatm_lines-ruby
train
cf9c39829623a6aab2eb9c466139fabb4da3d3aa
diff --git a/client/client.go b/client/client.go index <HASH>..<HASH> 100644 --- a/client/client.go +++ b/client/client.go @@ -181,6 +181,11 @@ type Client struct { allocs map[string]AllocRunner allocLock sync.RWMutex + // invalidAllocs is a map that tracks allocations that failed because + // the client could...
Handle client initialization errors when adding allocs or restoring allocs We mark the alloc as failed and track failed allocs so that we don't send updates after the first time
hashicorp_nomad
train
b7d39aa800de5c0fe9887de28e3a50d67fc5f184
diff --git a/grimoire_elk/enriched/gitlab.py b/grimoire_elk/enriched/gitlab.py index <HASH>..<HASH> 100644 --- a/grimoire_elk/enriched/gitlab.py +++ b/grimoire_elk/enriched/gitlab.py @@ -227,13 +227,7 @@ class GitLabEnrich(Enrich): rich_issue['updated_at'] = issue['updated_at'] rich_issue['closed_at']...
[enrich-gitlab] Include labels list in enriched items This code copies the labels defined on issues and merge requests to the corresponding enrich items, thus allowing to perform filtering operations in panels/visualizations.
chaoss_grimoirelab-elk
train
3d978dd4c05521fb05d7b1165e9cb82f02b814e7
diff --git a/js/cursor/igv-cursor.js b/js/cursor/igv-cursor.js index <HASH>..<HASH> 100755 --- a/js/cursor/igv-cursor.js +++ b/js/cursor/igv-cursor.js @@ -314,8 +314,7 @@ var igv = (function (igv) { // Launch app with session JSON if provided as param - var sessionJSONPath = igv.getQueryValue('sessi...
Partial fix to session load-by-url
igvteam_igv.js
train
e2c6ee14a1f8092e97f57a501650581428a6ac6e
diff --git a/sgactions/ticketui.py b/sgactions/ticketui.py index <HASH>..<HASH> 100644 --- a/sgactions/ticketui.py +++ b/sgactions/ticketui.py @@ -5,6 +5,7 @@ import os import subprocess import sys import tempfile +import traceback from uitools.qt import Q @@ -131,19 +132,21 @@ def ticket_current_exception(dial...
Show the traceback to the user.
vfxetc_sgactions
train
61e863f3b64bf8b303799d5ca1b76c9ef4e1d501
diff --git a/config-templates/config.php b/config-templates/config.php index <HASH>..<HASH> 100644 --- a/config-templates/config.php +++ b/config-templates/config.php @@ -113,7 +113,7 @@ $config = array ( /* * Languages available and what language is default */ - 'language.available' => array('en', 'no', 'nn', ...
adding new available language: swedish, and chaned dutch to netherlands
simplesamlphp_saml2
train
7b6c716fd555e7642e9e61de093ad71fd574981b
diff --git a/src/adapters/appnexusAst.js b/src/adapters/appnexusAst.js index <HASH>..<HASH> 100644 --- a/src/adapters/appnexusAst.js +++ b/src/adapters/appnexusAst.js @@ -15,7 +15,7 @@ const ENDPOINT = '//ib.adnxs.com/ut/v2/prebid'; function AppnexusAstAdapter() { let baseAdapter = Adapter.createNew('appnexusAst'...
Set bid response ID to bid request ID (#<I>) * Set bid response ID to bid request ID * Refactor
prebid_Prebid.js
train
f37a77ee7d09ab8f0165c21fdc092cf6b324067d
diff --git a/scripts/travis.js b/scripts/travis.js index <HASH>..<HASH> 100644 --- a/scripts/travis.js +++ b/scripts/travis.js @@ -10,11 +10,11 @@ var NODE_MODULES = path.join(ROOT_DIR, 'node_modules'); var BIN_DIR = path.join(NODE_MODULES, '.bin'); function bin(name) { - return path.relative(SCRIPTS_DIR, path.joi...
chore(scripts): yeh...
broccolijs_broccoli-filter
train
9092273a8a828b0a2e12bcb66c0ee204913206e1
diff --git a/go/libkb/db.go b/go/libkb/db.go index <HASH>..<HASH> 100644 --- a/go/libkb/db.go +++ b/go/libkb/db.go @@ -99,6 +99,7 @@ const ( DB_SIG_CHAIN_TAIL_SEMIPRIVATE = 0xe8 DB_SIG_CHAIN_TAIL_ENCRYPTED = 0xe9 DB_MERKLE_ROOT = 0xf0 + DB_TRACKERS = 0xf1 ) const ( diff --gi...
Some progress on reading and compacting trackers Haven't paid much attention to those with huge tracker lists though
keybase_client
train
a029a049399be3d11fa56269cd254ad63d4512d1
diff --git a/web/concrete/authentication/facebook/type_form.php b/web/concrete/authentication/facebook/type_form.php index <HASH>..<HASH> 100644 --- a/web/concrete/authentication/facebook/type_form.php +++ b/web/concrete/authentication/facebook/type_form.php @@ -9,7 +9,7 @@ <div class="input-group"> <?=$for...
forgot one Former-commit-id: e<I>a8f2be9e<I>f8e<I>e5d<I>b7a<I>be4d<I>a4
concrete5_concrete5
train
988868716eb2370b52397ba0314327820a0dca4e
diff --git a/test/remote_lrs_test.py b/test/remote_lrs_test.py index <HASH>..<HASH> 100644 --- a/test/remote_lrs_test.py +++ b/test/remote_lrs_test.py @@ -485,10 +485,19 @@ class RemoteLRSTest(unittest.TestCase): id="test", content=bytearray("Test value", encoding="utf-8") ) - ...
fixed saveActivty bug, added corresponding test to all save document calls
RusticiSoftware_TinCanPython
train
0aacf28ba247ad9f20845d979fad3a464f72c90e
diff --git a/interact.js b/interact.js index <HASH>..<HASH> 100644 --- a/interact.js +++ b/interact.js @@ -1617,6 +1617,40 @@ } }, + /*\ + * Interaction.start + [ method ] + * + * Start an action with the given Interactable and Element as tartgets. The + ...
Add doc comments for Interaction.start
taye_interact.js
train
41442eaf08bdaafefadc6a3ab634f3eb2a35277d
diff --git a/jquery.dirtyforms.js b/jquery.dirtyforms.js index <HASH>..<HASH> 100644 --- a/jquery.dirtyforms.js +++ b/jquery.dirtyforms.js @@ -19,6 +19,7 @@ if (typeof jQuery == 'undefined') throw("jQuery Required"); $.facebox(content); $(document).unbind('afterClose.facebox', rebox); } + $('#fa...
Facebox afterClose was not predictably / reliably removing the background overlay before the main facebox modal, due to parallel animations. Now I remove the facebox_overlay in the dialog.refire event to make sure
snikch_jquery.dirtyforms
train
9c38810f49149cfa4c2447ac683297a0e20e1b35
diff --git a/Events/CustomerPlugin.php b/Events/CustomerPlugin.php index <HASH>..<HASH> 100644 --- a/Events/CustomerPlugin.php +++ b/Events/CustomerPlugin.php @@ -13,6 +13,7 @@ use Magento\Framework\Reflection\DataObjectProcessor; use Magento\Customer\Helper\View as CustomerViewHelper; use \Psr\Log\LoggerInterface; ...
fix(customer-marketing-events): fix failing customer events SUITEDEV-<I>
emartech_magento2-extension
train
44beab129aba6d528632b04e68071f9c3c8bfb4a
diff --git a/annis-gui/src/main/java/annis/gui/flatquerybuilder/VerticalNode.java b/annis-gui/src/main/java/annis/gui/flatquerybuilder/VerticalNode.java index <HASH>..<HASH> 100644 --- a/annis-gui/src/main/java/annis/gui/flatquerybuilder/VerticalNode.java +++ b/annis-gui/src/main/java/annis/gui/flatquerybuilder/Vertica...
Query is updated, when vn is deleted
korpling_ANNIS
train
4c80462699eaad32b6fc4642f834770f1177ec85
diff --git a/libkbfs/folder_branch_ops.go b/libkbfs/folder_branch_ops.go index <HASH>..<HASH> 100644 --- a/libkbfs/folder_branch_ops.go +++ b/libkbfs/folder_branch_ops.go @@ -4899,12 +4899,6 @@ func (fbo *folderBranchOps) handleMDFlush(ctx context.Context, bid BranchID, return } - // We must take the lock so tha...
folder_branch_ops: no need to hold writer lock for archiving We needed this when block archiving was handled by the journal, but since it now goes directly to the server, this isn't needed anymore and it just ends up slowing down user writes if the queue fills up. Issue: KBFS-<I>
keybase_client
train
73d1693557befff618fb7e5cec5053abfd9e8506
diff --git a/salt/states/loop.py b/salt/states/loop.py index <HASH>..<HASH> 100644 --- a/salt/states/loop.py +++ b/salt/states/loop.py @@ -4,6 +4,8 @@ Loop state Allows for looping over execution modules. +.. versionadded:: Nitrogen + .. code-block:: yaml wait_for_service_to_be_healthy: @@ -25,24 +27,23 @@...
[develop] Clean up pylint failures
saltstack_salt
train
6e501d9f6449aba03a05f773b81f7f8c70f7f0ca
diff --git a/lib/travis/api/v0/worker/job/test.rb b/lib/travis/api/v0/worker/job/test.rb index <HASH>..<HASH> 100644 --- a/lib/travis/api/v0/worker/job/test.rb +++ b/lib/travis/api/v0/worker/job/test.rb @@ -16,7 +16,8 @@ module Travis 'repository' => repository_data, 'config' => job.de...
Attach ssh_keys to worker payload
travis-ci_travis-core
train
1098362467533b593970232aee1ccfe996114881
diff --git a/test/unit/specs/Home.spec.js b/test/unit/specs/Home.spec.js index <HASH>..<HASH> 100644 --- a/test/unit/specs/Home.spec.js +++ b/test/unit/specs/Home.spec.js @@ -1,15 +1,17 @@ import { expect } from 'chai' import Vue from 'vue' +import store from '../../../app/renderer/src/store/store' import Home fro...
fix unit test by adding store to vm
Opentrons_opentrons
train
d118ce4c6bcc5d7f94f94b4e5f1b684b4d037b04
diff --git a/api/src/main/java/io/opencensus/stats/Measure.java b/api/src/main/java/io/opencensus/stats/Measure.java index <HASH>..<HASH> 100644 --- a/api/src/main/java/io/opencensus/stats/Measure.java +++ b/api/src/main/java/io/opencensus/stats/Measure.java @@ -28,7 +28,7 @@ import javax.annotation.concurrent.Immutabl...
Update max length of Measure name to <I> (#<I>)
census-instrumentation_opencensus-java
train
7f36c03e469ccffebadeacab54d3cdf711c77971
diff --git a/tweepy/auth.py b/tweepy/auth.py index <HASH>..<HASH> 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -36,6 +36,13 @@ class OAuthHandler(AuthHandler): OAUTH_ROOT = '/oauth/' def __init__(self, consumer_key, consumer_secret, callback=None): + if not isinstance(consumer_key, (str, bytes...
Check consumer key and secret type when initializing OAuthHandler Resolves #<I>
tweepy_tweepy
train
8d5d1066abe866023c4b41c37a23766e2cda05dd
diff --git a/ca/django_ca/tests/tests_admin.py b/ca/django_ca/tests/tests_admin.py index <HASH>..<HASH> 100644 --- a/ca/django_ca/tests/tests_admin.py +++ b/ca/django_ca/tests/tests_admin.py @@ -23,6 +23,7 @@ from django.utils import timezone from ..models import Certificate from .base import DjangoCAWithCertTestCa...
consistently override temporary ca dir where necessary
mathiasertl_django-ca
train
be014ca61b495eb4dc0c252a98a6e6b00234cbff
diff --git a/Task/Generate.php b/Task/Generate.php index <HASH>..<HASH> 100644 --- a/Task/Generate.php +++ b/Task/Generate.php @@ -293,6 +293,8 @@ class Generate extends Base { foreach ($components as $name => $component) { $parent_name = $component->containingComponent(); if (!empty($parent_name)) {...
Added assertion to check containing component is a valid ID.
drupal-code-builder_drupal-code-builder
train
8d0aa1977116954d38b4bc64919ebc84b7e1845a
diff --git a/actionpack/lib/action_dispatch/testing/integration.rb b/actionpack/lib/action_dispatch/testing/integration.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/testing/integration.rb +++ b/actionpack/lib/action_dispatch/testing/integration.rb @@ -69,7 +69,7 @@ module ActionDispatch DE...
Only move fixture_file_upload to IntegrationTest The rest of the helpers are better placed on Session -- and this is the only one that cares which class it is defined on.
rails_rails
train
27dc38643c8f283600233a9222f2b917d8a6a2fd
diff --git a/spectator-api/src/main/java/com/netflix/spectator/impl/AtomicDouble.java b/spectator-api/src/main/java/com/netflix/spectator/impl/AtomicDouble.java index <HASH>..<HASH> 100644 --- a/spectator-api/src/main/java/com/netflix/spectator/impl/AtomicDouble.java +++ b/spectator-api/src/main/java/com/netflix/specta...
update wording of impl detail notice
Netflix_spectator
train
779e3b4923b474127d9692793947821ad2175a21
diff --git a/java/client/src/org/openqa/selenium/remote/http/netty/NettyClient.java b/java/client/src/org/openqa/selenium/remote/http/netty/NettyClient.java index <HASH>..<HASH> 100644 --- a/java/client/src/org/openqa/selenium/remote/http/netty/NettyClient.java +++ b/java/client/src/org/openqa/selenium/remote/http/nett...
[java] Reordering modifiers to comply with the Java Language Specification
SeleniumHQ_selenium
train
2c69bb056f330bcf68ed2e7414d5e2da8cc97c63
diff --git a/Kwf/Dao.php b/Kwf/Dao.php index <HASH>..<HASH> 100644 --- a/Kwf/Dao.php +++ b/Kwf/Dao.php @@ -45,6 +45,9 @@ class Kwf_Dao $dbConfig = $this->getDbConfig($db); $this->_db[$db] = Zend_Db::factory('PDO_MYSQL', $dbConfig); $this->_db[$db]->query('SET names UTF8'); + ...
add config setting that disabled mysql query cache useful for performance optimizing
koala-framework_koala-framework
train
cab075692bc9b0773952537e47d151aa97cd3258
diff --git a/aegean.py b/aegean.py index <HASH>..<HASH> 100755 --- a/aegean.py +++ b/aegean.py @@ -66,7 +66,7 @@ import AegeanTools.pprocess as pprocess import multiprocessing # Aegean version [Updated via script] -version = 'v1.9rc1-110-g3627a8a' +version = 'v1.9rc1-114-g337ef50' header = """#Aegean version {0}...
bug fixes to make elevation scaling work properly v+
PaulHancock_Aegean
train
1ceed1614e5855f9926af8da02f5cfd06ce0dd90
diff --git a/demos/Demo/Aspect/DebugAspect.php b/demos/Demo/Aspect/DebugAspect.php index <HASH>..<HASH> 100644 --- a/demos/Demo/Aspect/DebugAspect.php +++ b/demos/Demo/Aspect/DebugAspect.php @@ -138,7 +138,7 @@ class DebugAspect implements Aspect /** * @param FunctionInvocation $invocation * - * @A...
Update the demo aspect to use execution pointcut for functions
goaop_framework
train
3877766846b88da50541f20334f11f67f77f564e
diff --git a/src/Chrome/ChromeProcess.php b/src/Chrome/ChromeProcess.php index <HASH>..<HASH> 100644 --- a/src/Chrome/ChromeProcess.php +++ b/src/Chrome/ChromeProcess.php @@ -79,7 +79,7 @@ class ChromeProcess return []; } - return ['DISPLAY' => ':0']; + return ['DISPLAY' => env('DI...
Use custom DISPLAY variable when set on Linux Use case: running Dusk on a server environment and using X<I> forwarding via SSH to take a peek in the browser running the actions. This is particularity useful in combination with the <URL>. Am not aware of any side effects but happy to hear some thoughts about this.
laravel_dusk
train
4fc73751d9fd76b6e7d55a606e4414f93becce0f
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,10 @@ serf.connect(options, function(err){ }); ``` -All operations are supported, but not rigorously tested yet. +All operations listed in the [Serf RPC docs](https://www.serf.io/docs/agent/rpc.html) +are sup...
add camelCased aliases for dashed method names (#8)
normanjoyner_serf-rpc
train
2830c7f03717fe9109f53f9697abd3bae71333c6
diff --git a/src/stratum/stratumConnection.js b/src/stratum/stratumConnection.js index <HASH>..<HASH> 100644 --- a/src/stratum/stratumConnection.js +++ b/src/stratum/stratumConnection.js @@ -57,6 +57,7 @@ export class StratumConnection { this.queueSize = queueSize this.timeout = 1000 * timeout this.uri =...
Add "sigkill" to seperate closing using the close function and a suddon unexpected disconnet. Now the connection is able to "catch" unexpected errors.
EdgeApp_edge-currency-bitcoin
train
f13e70b9367c3104eb3508bb3ae5a27db0662564
diff --git a/cake/libs/log/file_log.php b/cake/libs/log/file_log.php index <HASH>..<HASH> 100644 --- a/cake/libs/log/file_log.php +++ b/cake/libs/log/file_log.php @@ -46,7 +46,7 @@ class FileLog { * @param array $options Options for the FileLog, see above. * @return void */ - function FileLog($options = array()) ...
Changing object constructor. Adding visibility keyword.
cakephp_cakephp
train
80f94a40d361ba29b386ca99ae1d4694545628dd
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,35 @@ -from distutils.core import setup +import distutils.core +import subprocess -setup(name='cronex', - version='0.1.0', - description='This module provides an easy to use interface for cron-like task sc...
Prepared setup.py for PyPI upload - The setup.py file has been modified to include classifier information, and if Pandoc is available, it will convert the README to REstructured Text so that it can be shown on the PyPI page.
ericpruitt_cronex
train
07fa3605c0c8ccff64247cb161f91b52c00279b6
diff --git a/runtests.py b/runtests.py index <HASH>..<HASH> 100755 --- a/runtests.py +++ b/runtests.py @@ -116,7 +116,7 @@ DEFAULT_TEST_LABELS = [ 'polymodels', ] -def main(engine, verbosity, failfast, test_labels): +def main(engine, user, verbosity, failfast, test_labels): os.environ['DJANGO_SETTINGS_MODU...
Added a --user flag to runtests.py Password should be supplied using .pgpass
charettes_django-mutant
train
7c19f51b0b25570d6e3cdb01c3df20c866c41ad9
diff --git a/util/src/main/java/org/vesalainen/nio/channels/FilterChannel.java b/util/src/main/java/org/vesalainen/nio/channels/FilterChannel.java index <HASH>..<HASH> 100644 --- a/util/src/main/java/org/vesalainen/nio/channels/FilterChannel.java +++ b/util/src/main/java/org/vesalainen/nio/channels/FilterChannel.java @...
Changed so that close closes channel
tvesalainen_util
train
3df2e70a1a77b10204e57e402962cc619008e3eb
diff --git a/tcex/batch/batch_writer.py b/tcex/batch/batch_writer.py index <HASH>..<HASH> 100644 --- a/tcex/batch/batch_writer.py +++ b/tcex/batch/batch_writer.py @@ -592,7 +592,7 @@ class BatchWriter: if tracker.get('count') % 2_500 == 0: # log count/size at a sane level - ...
+ updating logging levels for batch writer
ThreatConnect-Inc_tcex
train
077bbe6c45b5a1d40e519d0ffd3442f88656fe64
diff --git a/src/build/index.js b/src/build/index.js index <HASH>..<HASH> 100644 --- a/src/build/index.js +++ b/src/build/index.js @@ -42,10 +42,6 @@ module.exports = async (argv) => { stdio: 'inherit' }) - if (hasTsconfig) { - await tsCmd({ preset: 'types' }) - } - if (argv.bundlesize) { const s...
fix: build types after bundle size (#<I>) So we can see bundle size output even if TS types fail.
ipfs_aegir
train
d482a5d6f4092f5802c37ca4ebe7751a1d046376
diff --git a/examples/core/src/main/java/org/jbehave/examples/core/steps/TableSteps.java b/examples/core/src/main/java/org/jbehave/examples/core/steps/TableSteps.java index <HASH>..<HASH> 100644 --- a/examples/core/src/main/java/org/jbehave/examples/core/steps/TableSteps.java +++ b/examples/core/src/main/java/org/jbeha...
JBEHAVE-<I> Added constructor for ExamplesTablesProperties.
jbehave_jbehave-core
train
54cf3bf23e1dd1ac2674e0c4e3cb7813b7faf65d
diff --git a/lib/mongo/server/monitor.rb b/lib/mongo/server/monitor.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/server/monitor.rb +++ b/lib/mongo/server/monitor.rb @@ -101,17 +101,19 @@ module Mongo private + def calculate_round_trip_time(start) + Time.now - start + end + def ismas...
Calculate round trip time duplication removal
mongodb_mongo-ruby-driver
train
2793bdd2943c0caeede5f4bfb7ce647b4dc1b2c2
diff --git a/superset/views/core.py b/superset/views/core.py index <HASH>..<HASH> 100755 --- a/superset/views/core.py +++ b/superset/views/core.py @@ -546,6 +546,12 @@ class SliceModelView(SupersetModelView, DeleteMixin): # noqa 'viz_type': _('Visualization Type'), } + add_form_query_rel_fields = { ...
Apply DashboardFilter to the dashboards in SliceModeView (#<I>) * Apply dashboardFilter to dashboards * added missing comma
apache_incubator-superset
train
7950890d917efe2da1c25f68097629c556624939
diff --git a/rest-new/src/main/java/org/jboss/pnc/rest/RequestLoggingFilter.java b/rest-new/src/main/java/org/jboss/pnc/rest/RequestLoggingFilter.java index <HASH>..<HASH> 100644 --- a/rest-new/src/main/java/org/jboss/pnc/rest/RequestLoggingFilter.java +++ b/rest-new/src/main/java/org/jboss/pnc/rest/RequestLoggingFilte...
Add request timing to new rest API.
project-ncl_pnc
train
0bcc51cd5feec2303e93f7c9c9c46ed5ed52dda4
diff --git a/tests/unit/views/oxviewconfigTest.php b/tests/unit/views/oxviewconfigTest.php index <HASH>..<HASH> 100644 --- a/tests/unit/views/oxviewconfigTest.php +++ b/tests/unit/views/oxviewconfigTest.php @@ -2559,7 +2559,7 @@ class Unit_Views_oxviewConfigTest extends OxidTestCase { $aModuleVersions =...
fix bug #<I> - changed unit test - function needs 'aModuleVersions' in oxconfig (try #3)
OXID-eSales_oxideshop_ce
train
fbcd46b1a0d255a34d29caa77bbd31c287446333
diff --git a/activerecord/test/cases/tasks/mysql_rake_test.rb b/activerecord/test/cases/tasks/mysql_rake_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/tasks/mysql_rake_test.rb +++ b/activerecord/test/cases/tasks/mysql_rake_test.rb @@ -1,4 +1,5 @@ require 'cases/helper' +require 'active_record/tasks...
Properly require database tasks so we have access to the raised constant Fix travis failures.
rails_rails
train
9f4c42e9885ed14bda606a71ec4022d4358e7a62
diff --git a/plugin/pkg/scheduler/factory/plugins.go b/plugin/pkg/scheduler/factory/plugins.go index <HASH>..<HASH> 100644 --- a/plugin/pkg/scheduler/factory/plugins.go +++ b/plugin/pkg/scheduler/factory/plugins.go @@ -45,49 +45,49 @@ type AlgorithmProviderConfig struct { PriorityFunctionKeys util.StringSet } -// ...
name and key are used interchangably in plugin/pkg/scheduler/factory/plugins.go. this standardizes on name.
kubernetes_kubernetes
train
58c3dabce6fcdd6bc775fc9753fc50f7be4174cf
diff --git a/go/vt/vtgate/executor_set_test.go b/go/vt/vtgate/executor_set_test.go index <HASH>..<HASH> 100644 --- a/go/vt/vtgate/executor_set_test.go +++ b/go/vt/vtgate/executor_set_test.go @@ -21,6 +21,8 @@ import ( "fmt" "testing" + "vitess.io/vitess/go/vt/sqlparser" + querypb "vitess.io/vitess/go/vt/proto/q...
test: show query test that triggers reserved connection
vitessio_vitess
train
cdf929b1d9f6c0238a320e60a8297e6983ce8b66
diff --git a/presto-main/src/main/java/com/facebook/presto/concurrent/FairBatchExecutor.java b/presto-main/src/main/java/com/facebook/presto/concurrent/FairBatchExecutor.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/concurrent/FairBatchExecutor.java +++ b/presto-main/src/main/java...
Fix issue where future is not marked as completed when task executor runs a task
prestodb_presto
train
61f7992efcab70394764e74027ba7976e1133fc6
diff --git a/openquake/hmtk/parsers/catalogue/gcmt_ndk_parser.py b/openquake/hmtk/parsers/catalogue/gcmt_ndk_parser.py index <HASH>..<HASH> 100644 --- a/openquake/hmtk/parsers/catalogue/gcmt_ndk_parser.py +++ b/openquake/hmtk/parsers/catalogue/gcmt_ndk_parser.py @@ -359,20 +359,18 @@ class ParseNDKtoGCMT(object): ...
Fixes the parser of the line with the centroid Former-commit-id: 0f<I>f<I>a<I>f<I>a4e<I>d
gem_oq-engine
train
5ac55ed70729c0ca84a8e2f07c2c6e7fc720e38d
diff --git a/src/smalltalk.js b/src/smalltalk.js index <HASH>..<HASH> 100644 --- a/src/smalltalk.js +++ b/src/smalltalk.js @@ -108,45 +108,85 @@ function keyDown(dialog, ok, cancel) { return event => { - const ENTER = 13; - const ESC = 27; - ...
feature(smalltalk) add handling of keys: left, right, up, down
coderaiser_smalltalk
train
f1766f1149a184915cbeecf813e31d398e1ff7e7
diff --git a/src/app/public/js/ui/data/display/renderer/Image.js b/src/app/public/js/ui/data/display/renderer/Image.js index <HASH>..<HASH> 100644 --- a/src/app/public/js/ui/data/display/renderer/Image.js +++ b/src/app/public/js/ui/data/display/renderer/Image.js @@ -3,6 +3,9 @@ define([ function( ) { return func...
serialize related nodes in DojoNodeSerializer (only return $ref in case of circular recursion), smaller fixes
iherwig_wcmf
train
7f0bf577bb07fea6b9a9b975e3316be7e1de0e7c
diff --git a/tests/core.py b/tests/core.py index <HASH>..<HASH> 100644 --- a/tests/core.py +++ b/tests/core.py @@ -1356,6 +1356,18 @@ class WebUiTests(unittest.TestCase): response = self.app.get('/health') assert 'The server is healthy!' in response.data.decode('utf-8') + def test_headers(self): ...
[AIRFLOW-<I>] Add some missing endpoint tests WebUiTests lack tests for some endpoints. This commit adds tests for /admin/airflow/headers, /admin/airflow/noaccess and /admin/airflow/pickle_info. Dear Airflow Maintainers, Please accept this PR that addresses the following issues: - <URL>
apache_airflow
train
bbb8e2e7855a87096301df820ac684ddbbd66362
diff --git a/charmstore/client.go b/charmstore/client.go index <HASH>..<HASH> 100644 --- a/charmstore/client.go +++ b/charmstore/client.go @@ -14,6 +14,12 @@ type Client interface { // given result value, which should be a pointer to the expected // data, but may be nil if no result is desired. Get(path string, r...
Add ListResources to the charm store client.
juju_juju
train
d53da0b94df13615b77ded25f2e045a3e3ab1924
diff --git a/acceptance/tests/server_list_setting.rb b/acceptance/tests/server_list_setting.rb index <HASH>..<HASH> 100644 --- a/acceptance/tests/server_list_setting.rb +++ b/acceptance/tests/server_list_setting.rb @@ -4,48 +4,47 @@ test_name "Priority of server_list setting over server setting" do step "Conflict wa...
(PUP-<I>) Use empty test puppet.conf for failover test In addition, clean up indentation and beaker steps [skip ci]
puppetlabs_puppet
train
0fecae8363a781ab27637c16064f3730ea9469b2
diff --git a/ansible_runner/utils/__init__.py b/ansible_runner/utils/__init__.py index <HASH>..<HASH> 100644 --- a/ansible_runner/utils/__init__.py +++ b/ansible_runner/utils/__init__.py @@ -22,9 +22,9 @@ from distutils.spawn import find_executable from ansible_runner.exceptions import ConfigurationError try: - ...
Use MutableMapping instead of Mapping A dictionary is more accuratey a MutableMapping.
ansible_ansible-runner
train
f6c30dc92eafece111cf0fdc3136d52324212296
diff --git a/vulture/core.py b/vulture/core.py index <HASH>..<HASH> 100644 --- a/vulture/core.py +++ b/vulture/core.py @@ -38,7 +38,7 @@ import sys from vulture import lines from vulture import utils -__version__ = '0.29' +__version__ = '1.0' DEFAULT_CONFIDENCE = 60
Update version number to <I> for release.
jendrikseipp_vulture
train
89dba8c0dd70ce5803f86ce8488f3abdef882c6d
diff --git a/lib/plugin/components/services/registry/index.js b/lib/plugin/components/services/registry/index.js index <HASH>..<HASH> 100644 --- a/lib/plugin/components/services/registry/index.js +++ b/lib/plugin/components/services/registry/index.js @@ -41,12 +41,14 @@ class RegistryService { * */ ensureBlueprin...
Implementation for binding environment variables to registry keys
wmfs_tymly-core
train
49c076ec63026e54fb8f2e85af2fe129f3b44d01
diff --git a/src/Illuminate/Support/Collection.php b/src/Illuminate/Support/Collection.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Support/Collection.php +++ b/src/Illuminate/Support/Collection.php @@ -59,25 +59,25 @@ class Collection implements ArrayAccess, Arrayable, Countable, IteratorAggregate /** ...
[<I>] Allow value-retrieving callbacks to be passed to avg(), max() and min() methods in Support/Collection (#<I>) * Allow value-retrieving callbacks to be passed to avg(), max() and min() methods. * CS fixes.
laravel_framework
train
729a3b88f7b70af672c1a591db9e4bcaa1f9e9dc
diff --git a/state/status.go b/state/status.go index <HASH>..<HASH> 100644 --- a/state/status.go +++ b/state/status.go @@ -555,8 +555,9 @@ func createStatusOp(st *State, globalKey string, doc statusDoc) txn.Op { // updateStatusOp returns the operations needed to update the given // status document associated with the...
Add a better comment for the fix
juju_juju
train
56d5589dcf236727d80202aa76e3168b798d2723
diff --git a/src/components/FormGrid.js b/src/components/FormGrid.js index <HASH>..<HASH> 100644 --- a/src/components/FormGrid.js +++ b/src/components/FormGrid.js @@ -17,7 +17,8 @@ export default class extends Component { perms: PropTypes.object, getForms: PropTypes.func, query: PropTypes.object, - on...
Porting formaccess changes to formgrid from 3.x.
formio_react-formio
train
44889131aa052c7a4332f6993895a586b15b6a9a
diff --git a/libplanarradpy/planrad.py b/libplanarradpy/planrad.py index <HASH>..<HASH> 100644 --- a/libplanarradpy/planrad.py +++ b/libplanarradpy/planrad.py @@ -568,9 +568,10 @@ class BatchRun(): lg.info('No sky_tool generated file, generating one') try: inp_file = run_dict[...
Updated the logging details to help find bug
marrabld_planarradpy
train
b6b516eaf1ab8b8ac6272bdb8c458fe821c5747a
diff --git a/scripts/vasp_summary.py b/scripts/vasp_summary.py index <HASH>..<HASH> 100755 --- a/scripts/vasp_summary.py +++ b/scripts/vasp_summary.py @@ -37,7 +37,7 @@ supported_flags = { 'status': 'Status', 'md5': 'md5', 'directory': 'directory' } -to_print=[ 'title', 'stat...
vasp_summary now includes source version by default
bjmorgan_vasppy
train
795d6491b52d4f1daf452c50235885e097ac9923
diff --git a/ddl/ddl.go b/ddl/ddl.go index <HASH>..<HASH> 100644 --- a/ddl/ddl.go +++ b/ddl/ddl.go @@ -557,7 +557,7 @@ func updateOldRows(ctx context.Context, t *tables.Table, col *column.Col) error } rk := t.RecordKey(handle, nil) - if it, err0 = kv.NextUntil(it, util.RowKeyPrefixFilter(rk)); err0 != nil { +...
*: clean up iterator Next
pingcap_tidb
train
a3aee782e1aa0ee7d88a201a70d00263f31c84f8
diff --git a/docs/method-reference/SpotifyWebAPI.md b/docs/method-reference/SpotifyWebAPI.md index <HASH>..<HASH> 100644 --- a/docs/method-reference/SpotifyWebAPI.md +++ b/docs/method-reference/SpotifyWebAPI.md @@ -1267,7 +1267,7 @@ Add a song to the queue.<br> [https://developer.spotify.com/documentation/web-api/refe...
SpotifyWebAPI::queue() can now also accept track IDs
jwilsson_spotify-web-api-php
train
7c74e166b0ee14cf040374f522bc399841a11e69
diff --git a/accounts/keystore/key.go b/accounts/keystore/key.go index <HASH>..<HASH> 100644 --- a/accounts/keystore/key.go +++ b/accounts/keystore/key.go @@ -91,14 +91,6 @@ type cipherparamsJSON struct { IV string `json:"iv"` } -type scryptParamsJSON struct { - N int `json:"n"` - R int `json:"r"` - ...
accounts: fix megacheck warnings (#<I>) * accounts: fix megacheck warnings * accounts: don't modify abi in favor of full cleanup
ethereum_go-ethereum
train
95e4b8adc6425f64c9dd2467b9383a4ec6d362de
diff --git a/src/main/java/org/javamoney/moneta/FastMoney.java b/src/main/java/org/javamoney/moneta/FastMoney.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/javamoney/moneta/FastMoney.java +++ b/src/main/java/org/javamoney/moneta/FastMoney.java @@ -35,45 +35,45 @@ import org.javamoney.moneta.spi.DefaultNumber...
Fix compareTo() according to the spec which should first compare currency and then number value
JavaMoney_jsr354-ri
train
41f4150039cc55e51659904ad684f65040b5e48b
diff --git a/salt/loader.py b/salt/loader.py index <HASH>..<HASH> 100644 --- a/salt/loader.py +++ b/salt/loader.py @@ -7,6 +7,7 @@ plugin interfaces used by Salt. import contextvars import copy import functools +import importlib import importlib.machinery # pylint: disable=no-name-in-module,import-error import im...
Drop six usage from `salt/loader.py`
saltstack_salt
train
881f794ea9829dfc5fe83f0ab0e2ffd2ad136868
diff --git a/lib/support/cli.js b/lib/support/cli.js index <HASH>..<HASH> 100644 --- a/lib/support/cli.js +++ b/lib/support/cli.js @@ -215,7 +215,7 @@ module.exports.parseCommandLine = function parseCommandLine() { .option('video', { type: 'boolean', describe: - 'Record a video and store the v...
help: make it easier to understand video/visual metrics
sitespeedio_browsertime
train
8d4de6ffb9efc7c92ffd3261b24db4d390565749
diff --git a/memorious/cli.py b/memorious/cli.py index <HASH>..<HASH> 100644 --- a/memorious/cli.py +++ b/memorious/cli.py @@ -3,7 +3,7 @@ import logging from tabulate import tabulate from memorious import settings -from memorious.core import manager, init_memorious, is_sync_mode +from memorious.core import manager...
Shutdown the worker gracefully after the crawler is done in sync mode
alephdata_memorious
train
b88ff132d356fa4d9521caa0101f01bdd965e3cf
diff --git a/lib/active_support/cache/dalli_store.rb b/lib/active_support/cache/dalli_store.rb index <HASH>..<HASH> 100644 --- a/lib/active_support/cache/dalli_store.rb +++ b/lib/active_support/cache/dalli_store.rb @@ -118,7 +118,7 @@ module ActiveSupport instrument(:read, name, options) do |payload| ...
Fix instrumentation of hits for falsey values Handle case when the entry is the boolean value 'false' that it should still be considered a hit.
petergoldstein_dalli
train
5807463cc21e54b2f5abe2d8a280042cd13fbacd
diff --git a/tasks/devperf.js b/tasks/devperf.js index <HASH>..<HASH> 100644 --- a/tasks/devperf.js +++ b/tasks/devperf.js @@ -35,7 +35,7 @@ module.exports = function(grunt) { var pageJsonFiles = fs.readdirSync(pageDataFolder); pageJsonFiles.sort(function(a, b) { - return parseInt(a) < parseInt(b...
Replaced median by average for user timings, it causes less anomalies
gmetais_grunt-devperf
train
2be521e1605eea2af6d67dafa2300507dafd3e3d
diff --git a/pychromecast/socket_client.py b/pychromecast/socket_client.py index <HASH>..<HASH> 100644 --- a/pychromecast/socket_client.py +++ b/pychromecast/socket_client.py @@ -267,11 +267,10 @@ class SocketClient(threading.Thread): NetworkAddress(self.host, self.port))) ...
Fix not waiting with no tries set (#<I>) * Fix not waiting with no tries set * ☀️ Nicer code
balloob_pychromecast
train
ab4ff7949bf1c91391ad099ba888c63b0dc343e3
diff --git a/lib/graphql/client/query_result.rb b/lib/graphql/client/query_result.rb index <HASH>..<HASH> 100644 --- a/lib/graphql/client/query_result.rb +++ b/lib/graphql/client/query_result.rb @@ -82,7 +82,7 @@ module GraphQL fields.each do |field, klass| if @type.is_a?(GraphQL::ObjectType) ...
Include interfaces when fetching field type
github_graphql-client
train
827cdc3ebcc89312023df7cab6fc4b027f887095
diff --git a/bosh_vsphere_cpi/spec/integration/vsphere_cpi_spec.rb b/bosh_vsphere_cpi/spec/integration/vsphere_cpi_spec.rb index <HASH>..<HASH> 100644 --- a/bosh_vsphere_cpi/spec/integration/vsphere_cpi_spec.rb +++ b/bosh_vsphere_cpi/spec/integration/vsphere_cpi_spec.rb @@ -11,6 +11,9 @@ describe VSphereCloud::Cloud do...
Allow to change resource pool and cluster name in vsphere CPI lifecycle tests
cloudfoundry_bosh
train