hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
cd06e4db1fa8c2eda0e08d8699964fa41fca3cfa
diff --git a/test/e2e/apimachinery/webhook.go b/test/e2e/apimachinery/webhook.go index <HASH>..<HASH> 100644 --- a/test/e2e/apimachinery/webhook.go +++ b/test/e2e/apimachinery/webhook.go @@ -788,10 +788,11 @@ func testWebhookForWebhookConfigurations(f *framework.Framework) { Name: "should-be-removable-validating-w...
Remove wildcard matching of no-op test webhooks
kubernetes_kubernetes
train
d28d05c1fe8f6cbc4f104c85d8610ae0ed938aac
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup readme_contents = open("README.rst").read()
Switched to setuptools for wheel support.
exhuma_python-cluster
train
1cc50ab9d777da351337c694b1aaf1134410b90b
diff --git a/demos/Aspect/DebugAspect.php b/demos/Aspect/DebugAspect.php index <HASH>..<HASH> 100644 --- a/demos/Aspect/DebugAspect.php +++ b/demos/Aspect/DebugAspect.php @@ -49,7 +49,7 @@ class DebugAspect implements Aspect /** * Pointcut for example class * - * @Pointcut("execution(public Example...
Update the demo aspect to show, that methods serialize() and unserialize() from trait are intercepted correctly
goaop_framework
train
b8e812eba957e502892f3c68e727c581c9b3e902
diff --git a/src/Support/Facades/Setting.php b/src/Support/Facades/Setting.php index <HASH>..<HASH> 100644 --- a/src/Support/Facades/Setting.php +++ b/src/Support/Facades/Setting.php @@ -24,6 +24,6 @@ class Setting extends Facade */ protected static function getFacadeAccessor() { - return Setting...
Deploy orchidsoftware/platform to github.com/orchidsoftware/platform.git:master
orchidsoftware_platform
train
3977f30869fad2c679d7913ce968add7c7987282
diff --git a/daemon/daemon.go b/daemon/daemon.go index <HASH>..<HASH> 100644 --- a/daemon/daemon.go +++ b/daemon/daemon.go @@ -956,7 +956,7 @@ func getDefaultRouteMtu() (int, error) { return 0, err } for _, r := range routes { - if r.Default { + if r.Default && r.Iface != nil { return r.Iface.MTU, nil }...
a quick fix to #<I>
containers_storage
train
030c8f57212d967eea5682094a301ea6f3ad863b
diff --git a/ecies/__init__.py b/ecies/__init__.py index <HASH>..<HASH> 100644 --- a/ecies/__init__.py +++ b/ecies/__init__.py @@ -1,4 +1,3 @@ - from ecies.utils import generate_key, hex2prv, hex2pub, derive, aes_encrypt, aes_decrypt __all__ = ["encrypt", "decrypt"] diff --git a/ecies/__version__.py b/ecies/__versi...
Change LICENSE to MIT
kigawas_eciespy
train
b83868b5149a5c26474a0637e2c26263de564f6a
diff --git a/mocker.go b/mocker.go index <HASH>..<HASH> 100644 --- a/mocker.go +++ b/mocker.go @@ -10,6 +10,7 @@ import ( "os" "path" "strings" + "sync" "syscall" "text/template" "time" @@ -21,6 +22,8 @@ output="{{.}}" echo -n "${output}" ` +var pathMutex sync.Mutex + // Add creates a temporary directo...
mocker: using a mutex to guarantee thread safety
tsuru_commandmocker
train
a60522daf8ff8475d670af28f6da3c95bb35773f
diff --git a/salt/minion.py b/salt/minion.py index <HASH>..<HASH> 100644 --- a/salt/minion.py +++ b/salt/minion.py @@ -422,6 +422,7 @@ class MinionBase(object): ' {0}'.format(opts['master'])) if opts['master_shuffle']: shuffle(opts['master']) +...
Set auth retry count to 0 if multimaster mode is failover
saltstack_salt
train
fd0265aea4ee2afd0eed39e98a64e29ccf8cbb54
diff --git a/simulator/src/main/java/com/hazelcast/simulator/coordinator/Coordinator.java b/simulator/src/main/java/com/hazelcast/simulator/coordinator/Coordinator.java index <HASH>..<HASH> 100644 --- a/simulator/src/main/java/com/hazelcast/simulator/coordinator/Coordinator.java +++ b/simulator/src/main/java/com/hazelc...
Fixes #<I> exit code for coordinat-remote run in case of failure
hazelcast_hazelcast-simulator
train
51d674356db4882a4270005b99a92a81d7cec6ea
diff --git a/lib/eep.fn.stats.js b/lib/eep.fn.stats.js index <HASH>..<HASH> 100644 --- a/lib/eep.fn.stats.js +++ b/lib/eep.fn.stats.js @@ -40,7 +40,7 @@ function SumFunction() { self.name = "sum"; self.init = function() { s = 0; }; self.accumulate = function(v) { s += v; }; - self.compensate = function(v) { s...
Sliding windows now O(n) performance. Numerically stable Mean, Vars. Aggregate Function API change.
darach_eep-js
train
ae340e98b137fdd04100da5b7415bce96768840f
diff --git a/src/main/java/dtest/mobileactions/MobileTestAction.java b/src/main/java/dtest/mobileactions/MobileTestAction.java index <HASH>..<HASH> 100644 --- a/src/main/java/dtest/mobileactions/MobileTestAction.java +++ b/src/main/java/dtest/mobileactions/MobileTestAction.java @@ -177,6 +177,9 @@ public abstract class...
Updated waitforcondition to have wait for invisibility of the element as well
mcdcorp_opentest
train
dfebf85b16439dccf9dee041a08866d49b535b2f
diff --git a/inplaceeditform_extra_fields/fields.py b/inplaceeditform_extra_fields/fields.py index <HASH>..<HASH> 100644 --- a/inplaceeditform_extra_fields/fields.py +++ b/inplaceeditform_extra_fields/fields.py @@ -159,12 +159,13 @@ class AdaptorTinyMCEField(AdaptorTextAreaField): config['fieldtypes'] = 'd...
Details of tiny adaptor: python 3 compatible, and autosave details
django-inplaceedit_django-inplaceedit-extra-fields
train
9f52c8fd13098c250ced1d709908400b5b2b7667
diff --git a/phantomjs/main.js b/phantomjs/main.js index <HASH>..<HASH> 100644 --- a/phantomjs/main.js +++ b/phantomjs/main.js @@ -13,6 +13,7 @@ 'use strict'; var fs = require('fs'); +var _ = require('lodash'); // The temporary file used for communications. var tmpfile = phantom.args[0]; @@ -55,6 +56,11 @@ var ...
Merge phantomjs page settings from Grunt config
GruntBlanketMocha_grunt-blanket-mocha
train
19a2e65cbec1e85ebfafc5ef1807c1c04eb4f25e
diff --git a/NavigationReactNative/sample/android/Page.js b/NavigationReactNative/sample/android/Page.js index <HASH>..<HASH> 100644 --- a/NavigationReactNative/sample/android/Page.js +++ b/NavigationReactNative/sample/android/Page.js @@ -4,21 +4,18 @@ import {NavigationContext} from 'navigation-react'; var Page = (...
Moved scene inline for implicity return
grahammendick_navigation
train
c7f72a80cbc3756f5d04f1c279d2a1daa901cad8
diff --git a/examples/hsmm-possiblechangepoints-separatetrans.py b/examples/hsmm-possiblechangepoints-separatetrans.py index <HASH>..<HASH> 100644 --- a/examples/hsmm-possiblechangepoints-separatetrans.py +++ b/examples/hsmm-possiblechangepoints-separatetrans.py @@ -73,7 +73,7 @@ for idx, (data, changepoints) in enumer...
update tweaks to joblib stuff for AR
mattjj_pyhsmm
train
390f9784c5577e6307e9702933d5f952646264d5
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ * [#744](https://github.com/deivid-rodriguez/byebug/pull/744): Another punctuation tweak in `enable breakpoints` help message. * [#736](https://github.com/deivid-rodriguez/byebug/pull/736): Sk...
Pass argument to `where` to print the nth first frames (#<I>)
deivid-rodriguez_byebug
train
562f423fc755c2c59307053bc5afceebb068397f
diff --git a/pandas/core/groupby/generic.py b/pandas/core/groupby/generic.py index <HASH>..<HASH> 100644 --- a/pandas/core/groupby/generic.py +++ b/pandas/core/groupby/generic.py @@ -649,20 +649,21 @@ class NDFrameGroupBy(GroupBy): # if we make it here, test if we can use the fast path try: ...
CLN: avoid catching Exception in _choose_path (#<I>)
pandas-dev_pandas
train
f4e0ff6e85fef67d6c5123f6d629975fc5aafcc0
diff --git a/lib/FeaturesViewer.js b/lib/FeaturesViewer.js index <HASH>..<HASH> 100644 --- a/lib/FeaturesViewer.js +++ b/lib/FeaturesViewer.js @@ -37,6 +37,16 @@ var FeaturesViewer = function(opts) { var updateZoomFromChart = function() { fv.zoom.x(fv.xScale); + + // remove if no zoom + va...
Re-enabled zoom on main section
ebi-uniprot_ProtVista
train
74d2b4c1889781c1fbd320cf95dce534bea62674
diff --git a/pandas/io/data.py b/pandas/io/data.py index <HASH>..<HASH> 100644 --- a/pandas/io/data.py +++ b/pandas/io/data.py @@ -680,6 +680,10 @@ class Options(object): root = self._parse_url(url) tables = root.xpath('.//table') + ntables = len(tables) + if ntables == 0: + ...
TST: Remove else after except in tests for io.data.Options. Made the old tests consistent with the new tests, also passed the RemoteDataError on skip. CLN: Moved test for no tables to the get_option_tables method.
pandas-dev_pandas
train
a6d11c179bc0f3dd12e90802df1ea80e0dd2099c
diff --git a/asks/request.py b/asks/request.py index <HASH>..<HASH> 100644 --- a/asks/request.py +++ b/asks/request.py @@ -38,7 +38,7 @@ class Request: session passes the required info and calls `make_request`. Args: - session (child of BaseSession): A refrence to the calling session. + sessio...
Fixed bug relating to usage of endpoint attrib. Added url attrib to response object.
theelous3_asks
train
34eca61d38b45c2b88bd12c6c7bd40b48ae53118
diff --git a/putio.py b/putio.py index <HASH>..<HASH> 100755 --- a/putio.py +++ b/putio.py @@ -7,6 +7,9 @@ import webbrowser from urllib import urlencode import requests +from requests.adapters import HTTPAdapter +from requests.packages.urllib3.util.retry import Retry + import iso8601 BASE_URL = 'https://api.pu...
Retry strategy Allow the client's requests to be retried, simple boolean with the strategy decided in the class Defaults to NOT retrying so it conforms to current behaviour
cenkalti_putio.py
train
b78d118f5a86dd1a993083b7be482d7114c9fc32
diff --git a/includes/class-freemius.php b/includes/class-freemius.php index <HASH>..<HASH> 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -6047,6 +6047,7 @@ $this->_add_upgrade_action_link(); if ( ! $this->is_addon() && + ! ( ! $this->_is_ne...
[opt-in-notice] [bug-fix] Don't add the activation notice when the plugin is not network level integrated and the user is in the network-level admin.
Freemius_wordpress-sdk
train
707fa49ac63007a8f1f134b72e0c7786265e7e11
diff --git a/src/WellCommerce/Bundle/DistributionBundle/Loader/BundleLoader.php b/src/WellCommerce/Bundle/DistributionBundle/Loader/BundleLoader.php index <HASH>..<HASH> 100644 --- a/src/WellCommerce/Bundle/DistributionBundle/Loader/BundleLoader.php +++ b/src/WellCommerce/Bundle/DistributionBundle/Loader/BundleLoader.p...
Removed IvoryLuceneSearchBundle from loader
WellCommerce_CouponBundle
train
7b52f8082a68f7d555dba50a40ce2d4e0eb8d1bb
diff --git a/buildbot/changes/changes.py b/buildbot/changes/changes.py index <HASH>..<HASH> 100644 --- a/buildbot/changes/changes.py +++ b/buildbot/changes/changes.py @@ -14,7 +14,7 @@ class Change: a change comment for the group as a whole. If the version control system supports sequential repository- (or ...
put in deprecation warning for Arch and Bazaar - refs #<I>
buildbot_buildbot
train
f003d97761b0b8732f6851789d6f965af32dc8dd
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index <HASH>..<HASH> 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,13 +1,6 @@ # Remove these configuration records # one by one as the offenses are removed from the code base. -# Offense count: 2 -# Configuration parameters: AllowSafeAssignment. -Lin...
Lint: Fix Lint/AssignmentInCondition
jaredbeck_graph_matching
train
02c7164906c5a61f0a29b507d71ff76a5a95d6f0
diff --git a/sharding-jdbc/sharding-jdbc-core/src/main/java/io/shardingsphere/shardingjdbc/jdbc/adapter/AbstractConnectionAdapter.java b/sharding-jdbc/sharding-jdbc-core/src/main/java/io/shardingsphere/shardingjdbc/jdbc/adapter/AbstractConnectionAdapter.java index <HASH>..<HASH> 100644 --- a/sharding-jdbc/sharding-jdbc...
clear closed conn when call close method
apache_incubator-shardingsphere
train
aa876a8d10d1b599cd57f8c74facd8b59b773aa6
diff --git a/bibliopixel/drivers/SimPixel/driver.py b/bibliopixel/drivers/SimPixel/driver.py index <HASH>..<HASH> 100644 --- a/bibliopixel/drivers/SimPixel/driver.py +++ b/bibliopixel/drivers/SimPixel/driver.py @@ -1,7 +1,7 @@ import errno, struct, threading, uuid from ... util import log from .. driver_base import ...
Move networking and threading out of the SimPixel driver * ...and into the websocket Server.
ManiacalLabs_BiblioPixel
train
b84a136cbf3081d4893179224e7c47e84c7035ac
diff --git a/go/vt/binlog/mysqlbinlog.go b/go/vt/binlog/mysqlbinlog.go index <HASH>..<HASH> 100644 --- a/go/vt/binlog/mysqlbinlog.go +++ b/go/vt/binlog/mysqlbinlog.go @@ -5,7 +5,6 @@ package binlog import ( - "bytes" "fmt" "io" "os/exec" @@ -61,10 +60,6 @@ type logWrapper struct { } func (lwp *logWrapper)...
mysqlbinlog info log change Redirect mysqlbinlog output to info log instead of error or warning. Those 'error' messages are business as usual, not really errors.
vitessio_vitess
train
e7b5ee3b2694e0db8251e62066292af2df1600a2
diff --git a/fritzhome/__main__.py b/fritzhome/__main__.py index <HASH>..<HASH> 100644 --- a/fritzhome/__main__.py +++ b/fritzhome/__main__.py @@ -61,7 +61,7 @@ def energy(context, features): for actor in fritz.get_actors(): click.echo("{} ({}): {:.2f} Watt current, {:.3f} wH total, {:.2f} °C".format( -...
Added support for UTF-8 encoded characters in actor names
DerMitch_fritzbox-smarthome
train
9ee171756bfef91ac7eb99132f78166da506badc
diff --git a/api.go b/api.go index <HASH>..<HASH> 100644 --- a/api.go +++ b/api.go @@ -20,11 +20,12 @@ import ( ) type Client struct { - Token string - SIOEndpoint url.URL - Http http.Client - Insecure string - ShowBody bool + Token string + SIOEndpoint url.URL + Http http.Clie...
Fixed reauth problem with multiple SIO instances This commit removes the global config parameter and replaces it with client specific parameter.
thecodeteam_goscaleio
train
655695c204ee3baf55bf1ec091144e5e973e0e83
diff --git a/danceschool/core/admin.py b/danceschool/core/admin.py index <HASH>..<HASH> 100644 --- a/danceschool/core/admin.py +++ b/danceschool/core/admin.py @@ -383,7 +383,7 @@ class EventChildAdmin(PolymorphicChildModelAdmin): def uuidLink(self,obj): address = reverse('singleClassRegistration', args=[o...
Fixed SeriesAdmin issue with deleted dropinPrice field.
django-danceschool_django-danceschool
train
eaaa551739d9d33d241b1c13ca9bf44d7224c82e
diff --git a/Controller/ContactSourceController.php b/Controller/ContactSourceController.php index <HASH>..<HASH> 100644 --- a/Controller/ContactSourceController.php +++ b/Controller/ContactSourceController.php @@ -42,6 +42,17 @@ class ContactSourceController extends FormController */ public function indexAc...
[ENG-<I>] Improve search by ID.
TheDMSGroup_mautic-contact-source
train
9f231faf298ec898422aef43208acfa23e3c1d19
diff --git a/mpd/base.py b/mpd/base.py index <HASH>..<HASH> 100644 --- a/mpd/base.py +++ b/mpd/base.py @@ -288,7 +288,6 @@ class MPDClientBase(object): @mpd_commands('list', is_direct=True) def _parse_list_groups(self, lines): - lines = iter(lines) return self._parse_objects_direct(lines, lo...
Fix: error with command 'list' in asyncio When the command 'list' is executed with using the asyncio module, the following error raises: TypeError: 'Queue' object is not iterable
Mic92_python-mpd2
train
24239317471f91015fa4d800d8cc1b450aad30e7
diff --git a/Pragma/ORM/Relation.php b/Pragma/ORM/Relation.php index <HASH>..<HASH> 100644 --- a/Pragma/ORM/Relation.php +++ b/Pragma/ORM/Relation.php @@ -255,6 +255,11 @@ class Relation{ } } + $loaders = isset($overriding['loaders']) ? $overriding['loaders'] : $this->conditionnal_loading; + if( ! em...
Relation: apply loaders in fetch() method
pragma-framework_core
train
dec2bab173ff867324a8d5c515fca7e0d1b8a465
diff --git a/pkg/image/registry/imagestreamimport/rest.go b/pkg/image/registry/imagestreamimport/rest.go index <HASH>..<HASH> 100644 --- a/pkg/image/registry/imagestreamimport/rest.go +++ b/pkg/image/registry/imagestreamimport/rest.go @@ -100,30 +100,28 @@ func (r *REST) Create(ctx apirequest.Context, obj runtime.Objec...
Populate user in subject access review correctly
openshift_origin
train
e9b0477c6405b776abaabf8692af697cdb3eaac6
diff --git a/scratchapi.js b/scratchapi.js index <HASH>..<HASH> 100644 --- a/scratchapi.js +++ b/scratchapi.js @@ -206,11 +206,18 @@ Scratch.CloudSession.prototype.connect = function(cb) { Scratch.CloudSession.prototype.end = function() { this.connection.end(); }; +Scratch.CloudSession.prototype.get = function(nam...
Add more uniform ways to access cloud variables
trumank_scratch-api
train
cc51ef69ed7cbd384dcd7326b1d2d526390cb3ac
diff --git a/src/models/entities.js b/src/models/entities.js index <HASH>..<HASH> 100644 --- a/src/models/entities.js +++ b/src/models/entities.js @@ -185,7 +185,7 @@ var EntitiesModel = Model.extend({ utils.find(this.select, function(d) { return d[dimension] === value; - }).labelOffset = xy; + }).l...
Round labelOffset[] so that numbers are not super long in the URL
vizabi_vizabi
train
bfc900f128069b256afccb9fb7c8ec8a9b4c4db3
diff --git a/webpack.dev.config.js b/webpack.dev.config.js index <HASH>..<HASH> 100644 --- a/webpack.dev.config.js +++ b/webpack.dev.config.js @@ -32,7 +32,6 @@ module.exports = { plugins: [ new webpack.HotModuleReplacementPlugin(), - new webpack.NoErrorsPlugin(), new ExtractTextPlugin('app.css', { al...
Don't use NoErrorsPlugin with React Hot Loader
moroshko_react-autosuggest
train
0f400b2b161c159980a0e8bf79193c16b458cc61
diff --git a/lntest/itest/lnd_payment_test.go b/lntest/itest/lnd_payment_test.go index <HASH>..<HASH> 100644 --- a/lntest/itest/lnd_payment_test.go +++ b/lntest/itest/lnd_payment_test.go @@ -581,24 +581,34 @@ func testBidirectionalAsyncPayments(net *lntest.NetworkHarness, t *harnessTest) // Next query for Bob's an...
itests: payments test flake fix
lightningnetwork_lnd
train
191d3eba446959436d9fc4ba521129d5e71d65fa
diff --git a/src/events/keyboard.js b/src/events/keyboard.js index <HASH>..<HASH> 100644 --- a/src/events/keyboard.js +++ b/src/events/keyboard.js @@ -61,9 +61,11 @@ let __keyboardHandler = function() { this.__addEvent(container, 'keydown', (evt) => { if (!isFocused) return; + const { options, pa...
fix(keypress): fix movement lock on multi keypress
idiotWu_smooth-scrollbar
train
ded625db04c51a305d52ef9f3cc5a604c682695a
diff --git a/flex/pkg/volume/delete.go b/flex/pkg/volume/delete.go index <HASH>..<HASH> 100644 --- a/flex/pkg/volume/delete.go +++ b/flex/pkg/volume/delete.go @@ -36,8 +36,11 @@ func (p *flexProvisioner) Delete(volume *v1.PersistentVolume) error { return &controller.IgnoredError{Reason: strerr} } + extraOptions ...
flex: Add PV name to delete
kubernetes-incubator_external-storage
train
35e4ee331593cf3a24d5ae254381bc3ef9cdaf15
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -262,7 +262,7 @@ AsyncHelpers.prototype.resolve = function(key, cb) { try { res = stashed.fn.apply(stashed.thisArg, args); } catch (err) { - return next(err); + return next(formatError(err,...
Extending Error information with .helper
doowb_async-helpers
train
4379204d317f409d77656ea7895087e6f0dcdf00
diff --git a/lib/sad_panda/polarity.rb b/lib/sad_panda/polarity.rb index <HASH>..<HASH> 100644 --- a/lib/sad_panda/polarity.rb +++ b/lib/sad_panda/polarity.rb @@ -18,7 +18,7 @@ module SadPanda score_polarities_for(frequencies_for(words)) - polarities.empty? ? 5.0 : (polarities.sum / polarities.length) +...
Why : Ruby <I> syntax needs to be reverted for other versions What : Changed .sum in Array to invect block. Version updated
mattThousand_sad_panda
train
3c5f3df8fc8071f1b6791ef251deacf62abf0cae
diff --git a/kafka_utils/kafka_cluster_manager/cmds/command.py b/kafka_utils/kafka_cluster_manager/cmds/command.py index <HASH>..<HASH> 100644 --- a/kafka_utils/kafka_cluster_manager/cmds/command.py +++ b/kafka_utils/kafka_cluster_manager/cmds/command.py @@ -19,6 +19,7 @@ import logging import sys from collections im...
Human friendly output for bytes in decommission
Yelp_kafka-utils
train
25035ecbc9a86160eb232263e608c558dc2e82e4
diff --git a/source/Internal/Domain/Review/Bridge/UserReviewBridgeInterface.php b/source/Internal/Domain/Review/Bridge/UserReviewBridgeInterface.php index <HASH>..<HASH> 100644 --- a/source/Internal/Domain/Review/Bridge/UserReviewBridgeInterface.php +++ b/source/Internal/Domain/Review/Bridge/UserReviewBridgeInterface.p...
OXDEV-<I> Fix annotation for UserReviewBridgeInterface
OXID-eSales_oxideshop_ce
train
60ee2e334977ad8ec6be1458db2b3723b9eafea5
diff --git a/lib/Auth/Driver/DatabaseDriver.php b/lib/Auth/Driver/DatabaseDriver.php index <HASH>..<HASH> 100644 --- a/lib/Auth/Driver/DatabaseDriver.php +++ b/lib/Auth/Driver/DatabaseDriver.php @@ -190,7 +190,39 @@ class DatabaseDriver $this->reset(self::STATUS_SIGNED_OUT); } - public function up...
Token clearing and time updating handling, invalidating user sessions
perfumer_framework
train
751d8f6874248f7243698c6f8377983879d744e9
diff --git a/rabbithole_test.go b/rabbithole_test.go index <HASH>..<HASH> 100644 --- a/rabbithole_test.go +++ b/rabbithole_test.go @@ -269,7 +269,6 @@ var _ = Describe("Rabbithole", func() { It("Set cluster name", func() { previousClusterName, err := rmqc.GetClusterName() Ω(err).Should(BeNil()) - Ω(previou...
Don't make any assumptions about what initial cluster name is References #<I>.
michaelklishin_rabbit-hole
train
744e4a78f0fb372c4c54e0aa13fc0fd16a49a931
diff --git a/docs/components/TimeBasedLineChartDocs.js b/docs/components/TimeBasedLineChartDocs.js index <HASH>..<HASH> 100644 --- a/docs/components/TimeBasedLineChartDocs.js +++ b/docs/components/TimeBasedLineChartDocs.js @@ -36,6 +36,7 @@ const TimeBasedLineChartDocs = React.createClass({ breakPointLabel={...
decided not to change docs in this PR
mxenabled_mx-react-components
train
81144423c93c59009dcf98efa9283363ae3b8e76
diff --git a/lib/modules/apostrophe-workflow-permissions/index.js b/lib/modules/apostrophe-workflow-permissions/index.js index <HASH>..<HASH> 100644 --- a/lib/modules/apostrophe-workflow-permissions/index.js +++ b/lib/modules/apostrophe-workflow-permissions/index.js @@ -29,6 +29,11 @@ module.exports = { return...
if a type is exempt from workflow, do not complain that the locale is inaccessible to the editor
apostrophecms_apostrophe-workflow
train
562321e32b41c97e01c00d8588cb7bbcb1462d3b
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php index <HASH>..<HASH> 100644 --- a/core/ViewDataTable.php +++ b/core/ViewDataTable.php @@ -135,6 +135,8 @@ abstract class Piwik_ViewDataTable * @var array */ protected $columnsToDisplay = array(); + + protected $uniqIdTable = null; /** * Method...
Added methods to get current value of and override $uniqIdTable variable that is used as the DIV ID in the rendered HTML git-svn-id: <URL>
matomo-org_matomo
train
2900cc4e2d9ef8e6889f23dd01bfcd2e4c4c991e
diff --git a/lib/with_model/base.rb b/lib/with_model/base.rb index <HASH>..<HASH> 100644 --- a/lib/with_model/base.rb +++ b/lib/with_model/base.rb @@ -5,6 +5,7 @@ end module WithModel class Base < ActiveRecord::Base + self.abstract_class = true class << self def with_model? true diff --git...
WithModel::Base should have abstract_class = true.
Casecommons_with_model
train
78420e0c89c31ae9c8c6c46c3c48781accef94ff
diff --git a/src/Jira/Api/Client/MemcacheProxyClient.php b/src/Jira/Api/Client/MemcacheProxyClient.php index <HASH>..<HASH> 100644 --- a/src/Jira/Api/Client/MemcacheProxyClient.php +++ b/src/Jira/Api/Client/MemcacheProxyClient.php @@ -82,7 +82,9 @@ class MemcacheProxyClient implements ClientInterface $debug = false ...
Stage 4: misc (variable assignment in loops and conditionals, join usage instead of implode, ...)
chobie_jira-api-restclient
train
e630ceaf2eb1bf57cdf297aa3464b34c2eb88829
diff --git a/lib/fn/InterpolatedFn.js b/lib/fn/InterpolatedFn.js index <HASH>..<HASH> 100644 --- a/lib/fn/InterpolatedFn.js +++ b/lib/fn/InterpolatedFn.js @@ -48,6 +48,7 @@ function InterpolatedFn( controlPoints , params = {} , noInit = false ) { PiecewiseFn.call( this ) ; this.controlPoints = controlPoints ; + t...
New: InterpolatedFn order 1
cronvel_math-kit
train
eac1fa06ce9a17db93e5bb77b1bf4cdf5df920d4
diff --git a/tests/Opauth/OpauthStrategyTest.php b/tests/Opauth/OpauthStrategyTest.php index <HASH>..<HASH> 100644 --- a/tests/Opauth/OpauthStrategyTest.php +++ b/tests/Opauth/OpauthStrategyTest.php @@ -67,7 +67,6 @@ class OpauthStrategyTest extends OpauthTest{ $Opauth->run(); } - /** * @runInSeparateProc...
instantiateSampleStrategyForTesting()
opauth_opauth
train
4daeb2395db6c985a6390e070fae708ad19c160f
diff --git a/f5/__init__.py b/f5/__init__.py index <HASH>..<HASH> 100644 --- a/f5/__init__.py +++ b/f5/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. # -__version__ = '3.0.4' +__version__ = '3.0.5'
Bumps release to <I> (#<I>)
F5Networks_f5-common-python
train
e892dfe9f2f54a713e5b0946f5b8864541196c3d
diff --git a/pygerduty/__init__.py b/pygerduty/__init__.py index <HASH>..<HASH> 100755 --- a/pygerduty/__init__.py +++ b/pygerduty/__init__.py @@ -264,7 +264,7 @@ class Restrictions(Collection): class NotificationRules(Collection): - pass + paginated = False class ContactMethods(Collection): @@ -367,8 +...
Fix bug with pagination on notification rules.
dropbox_pygerduty
train
bfd8e85d6bc09d23de383232873ed99e37464c5a
diff --git a/src/Support/Content/MimeTypeHelper.php b/src/Support/Content/MimeTypeHelper.php index <HASH>..<HASH> 100644 --- a/src/Support/Content/MimeTypeHelper.php +++ b/src/Support/Content/MimeTypeHelper.php @@ -3,6 +3,7 @@ namespace Czim\FileHandling\Support\Content; use Czim\FileHandling\Contracts\Support\MimeT...
Fixed support for extension by mime type for Symfony 4 vs 5
czim_file-handling
train
30d7f28c58def1592b84e9ba4c2c3a1c6afecc4c
diff --git a/enoslib/infra/enos_g5k/g5k_api_utils.py b/enoslib/infra/enos_g5k/g5k_api_utils.py index <HASH>..<HASH> 100644 --- a/enoslib/infra/enos_g5k/g5k_api_utils.py +++ b/enoslib/infra/enos_g5k/g5k_api_utils.py @@ -161,7 +161,10 @@ def grid_reload_from_ids(oargrid_jobids): jobs = [] for site, job_id in oa...
G5k: fix static oargrid driver resources weren't build.
BeyondTheClouds_enoslib
train
488f6852263b5e893ac354c8f37f639a1ae05db4
diff --git a/src/main/java/com/wrapper/spotify/SpotifyApiThreading.java b/src/main/java/com/wrapper/spotify/SpotifyApiThreading.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/wrapper/spotify/SpotifyApiThreading.java +++ b/src/main/java/com/wrapper/spotify/SpotifyApiThreading.java @@ -1,16 +1,26 @@ package co...
Updated SpotifyApiThreading.executeAsync to return a CompletableFuture.
thelinmichael_spotify-web-api-java
train
bb43d43310f01998e2aa9ddb397bdb1f37a3086e
diff --git a/test/test-usemin.js b/test/test-usemin.js index <HASH>..<HASH> 100644 --- a/test/test-usemin.js +++ b/test/test-usemin.js @@ -285,11 +285,11 @@ describe('usemin', function () { grunt.file.copy(path.join(__dirname, 'fixtures/usemin.html'), 'index.html'); grunt.task.run('usemin'); grunt.task.s...
Fixes test to ensure a clean state of test fails
yeoman_grunt-usemin
train
a20f7f780ae9d2894f2af75bf5bc83ba503cae13
diff --git a/tensorflow_datasets/image/imagewang.py b/tensorflow_datasets/image/imagewang.py index <HASH>..<HASH> 100644 --- a/tensorflow_datasets/image/imagewang.py +++ b/tensorflow_datasets/image/imagewang.py @@ -66,7 +66,7 @@ class ImagewangConfig(tfds.core.BuilderConfig): def __init__(self, size, **kwargs): ...
clean up for PR#<I>
tensorflow_datasets
train
55d79b9389cdbe07f942ab6e4fde6ab42f36a8ff
diff --git a/js/base/Exchange.js b/js/base/Exchange.js index <HASH>..<HASH> 100644 --- a/js/base/Exchange.js +++ b/js/base/Exchange.js @@ -2089,13 +2089,4 @@ module.exports = class Exchange { params = this.omit (params, 'type'); return [ type, params ]; } - - timestampWithinXMonths (timestamp,...
Removed base.Exchange timestampWithinXMonths method
ccxt_ccxt
train
93a8bf95787bab022ef84f4b790206fafb0df4d2
diff --git a/src/FrontendModule/NewsModule.php b/src/FrontendModule/NewsModule.php index <HASH>..<HASH> 100644 --- a/src/FrontendModule/NewsModule.php +++ b/src/FrontendModule/NewsModule.php @@ -49,6 +49,11 @@ abstract class NewsModule extends ModuleNews protected $manager; /** + * @var PageModel|null +...
Fix the target page when there are multiple news category modules on one page (closes #<I>)
codefog_contao-news_categories
train
d18e31d5b0ee82092f322c39bc53812733320e5d
diff --git a/container/test-impl-base/src/main/java/org/jboss/arquillian/container/test/impl/client/deployment/AnnotationDeploymentScenarioGenerator.java b/container/test-impl-base/src/main/java/org/jboss/arquillian/container/test/impl/client/deployment/AnnotationDeploymentScenarioGenerator.java index <HASH>..<HASH> 10...
ARQ-<I> Sort deployments in order so that extensions are called in deployment order
arquillian_arquillian-core
train
e4bb9a832051cb69adefeee217279ee290fbbede
diff --git a/src/Unosquare.Tubular/Javascript/tubular/services/translate.spec.js b/src/Unosquare.Tubular/Javascript/tubular/services/translate.spec.js index <HASH>..<HASH> 100644 --- a/src/Unosquare.Tubular/Javascript/tubular/services/translate.spec.js +++ b/src/Unosquare.Tubular/Javascript/tubular/services/translate.s...
Adding some test cases to translate.spec
unosquare_tubular
train
1741ed15787163bb6650a38fff086812a03e5872
diff --git a/src/adapters/common.js b/src/adapters/common.js index <HASH>..<HASH> 100644 --- a/src/adapters/common.js +++ b/src/adapters/common.js @@ -10,6 +10,8 @@ import { sanitizedRaw, type DirtyRaw } from '../RawRecord' export type DirtyFindResult = RecordId | ?DirtyRaw export type DirtyQueryResult = Array<Record...
Disable most logging because it's annoying and the perf measurements are totally wrong
Nozbe_WatermelonDB
train
004e1d303fd7f14fb68678d9377f06e70b49107a
diff --git a/server/server.go b/server/server.go index <HASH>..<HASH> 100644 --- a/server/server.go +++ b/server/server.go @@ -196,12 +196,12 @@ func (s *Server) restore(ctx context.Context) []string { // Go through all the pods and check if it can be restored. If an error occurs, delete the pod and any containers ...
server: reduce log verbosity on restore
cri-o_cri-o
train
8e863cef4cadc29bdf64fbacfabaff8d597ff040
diff --git a/huff0/decompress_test.go b/huff0/decompress_test.go index <HASH>..<HASH> 100644 --- a/huff0/decompress_test.go +++ b/huff0/decompress_test.go @@ -421,30 +421,43 @@ func BenchmarkDecompress1XNoTable(b *testing.B) { continue } b.Run(test.name, func(b *testing.B) { - var s = &Scratch{} - s.Reuse...
tests: Extend huff0 NoTable benchmarks. (#<I>)
klauspost_compress
train
5ead15b07597e9cdb887cfe6aa74de4a14140bb1
diff --git a/actionpack/lib/action_dispatch/routing.rb b/actionpack/lib/action_dispatch/routing.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/routing.rb +++ b/actionpack/lib/action_dispatch/routing.rb @@ -2,31 +2,11 @@ require 'active_support/core_ext/object/to_param' require 'active_support/core...
Rework the routing documentation. Move the default route to the bottom, as this practise should be discouraged. Add documentation for resources, external redirects and Rack applications.
rails_rails
train
4c28d87fd0180ded8656b8e30b96d4790ed1793c
diff --git a/graphenecommon/transactionbuilder.py b/graphenecommon/transactionbuilder.py index <HASH>..<HASH> 100644 --- a/graphenecommon/transactionbuilder.py +++ b/graphenecommon/transactionbuilder.py @@ -265,6 +265,7 @@ class TransactionBuilder(dict, AbstractBlockchainInstanceProvider): auth_account...
Nested accounts may come with a different required_threshold
xeroc_python-graphenelib
train
459aefd5fc2e4b07932d2cad94bdcddfc05e9cb8
diff --git a/etc/shinken-specific.cfg b/etc/shinken-specific.cfg index <HASH>..<HASH> 100644 --- a/etc/shinken-specific.cfg +++ b/etc/shinken-specific.cfg @@ -363,12 +363,7 @@ define receiver{ # The main goal of the receiver is to load # Passive modules, like the NSCA one -# modules NSCA - - #...
Clean : receiver sample conf.
Alignak-monitoring_alignak
train
981efaa7071bd436a1b55078456bc44420435970
diff --git a/src/reap/commands.py b/src/reap/commands.py index <HASH>..<HASH> 100644 --- a/src/reap/commands.py +++ b/src/reap/commands.py @@ -32,6 +32,7 @@ def login(args): request.add_header('Content-Type', 'application/json') request.add_header('Accept', 'application/json') request.add_header('Authori...
Added User-Agent header to all requests.
jakebasile_reap
train
4a34e4037223d45642b2481bdfd3ca41155c034f
diff --git a/src/main/java/org/codehaus/plexus/archiver/zip/AbstractZipArchiver.java b/src/main/java/org/codehaus/plexus/archiver/zip/AbstractZipArchiver.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/codehaus/plexus/archiver/zip/AbstractZipArchiver.java +++ b/src/main/java/org/codehaus/plexus/archiver/zip/Ab...
Fixed 'addParentDirs' in ZipArchiver; it added the actual directory itself too, which messed with the file permissions if they were set for that specific directory. Enhanced JUnit test for this case (setting perms on dirs). TODO: enhance TarArchiver JUnit test too (although it works fine).
sonatype_plexus-archiver
train
8d778ef12153e95f8a5985075f646be0e08eba83
diff --git a/ELiDE/statgrid.py b/ELiDE/statgrid.py index <HASH>..<HASH> 100644 --- a/ELiDE/statgrid.py +++ b/ELiDE/statgrid.py @@ -180,7 +180,22 @@ class StatListView(ListView, MirrorMapping): selected_remote=self.setter('remote') ) + def init_control_config(self, key): + if key not in...
Put init_control_config in a more logical place.
LogicalDash_LiSE
train
a02d2874c0d6e70ba7efb1e91ae8a4a48ac4ae09
diff --git a/lib/eye/process/commands.rb b/lib/eye/process/commands.rb index <HASH>..<HASH> 100644 --- a/lib/eye/process/commands.rb +++ b/lib/eye/process/commands.rb @@ -135,7 +135,7 @@ private sleep self[:stop_grace].to_f - # if process not die here, by default we kill it force + # if proce...
refactor system send_signal
kostya_eye
train
02659fa9828a816c4f000adf7a48e537be5af02b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -177,7 +177,9 @@ function getPieceList (files, pieceLength, cb) { function onFiles (files, opts, cb) { var announceList = opts.announceList !== undefined ? opts.announceList - : module.exports.announceList // defau...
support `announce` key
webtorrent_create-torrent
train
5b4d28d57892e1d7bf0db897e528de003cda635a
diff --git a/electionnight/views/states.py b/electionnight/views/states.py index <HASH>..<HASH> 100644 --- a/electionnight/views/states.py +++ b/electionnight/views/states.py @@ -8,6 +8,7 @@ import json from django.shortcuts import get_object_or_404 from django.urls import reverse +from almanac.models import Electi...
rewrite live query to use almanac, not division
The-Politico_politico-civic-election-night
train
2d96c1a4ba6c4599dbaf4b500f05e9f8ae344162
diff --git a/tests.py b/tests.py index <HASH>..<HASH> 100644 --- a/tests.py +++ b/tests.py @@ -933,6 +933,37 @@ class SuperORCAHess(unittest.TestCase): [ 1.49837000e+01], [ 1.61995000e+01]]) + polders = np.matrix([[ -5.94341300e+00, 2.97188100e+00, 2.97161800e+00, + -2.47000000e-04...
tests: Added polders known-good matrix & name code Still have to write the test suite for the polarizability derivatives, though.
bskinn_opan
train
b47dd9292a44061615540f64bd1b76c063ed6f43
diff --git a/faq-bundle/CHANGELOG.md b/faq-bundle/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/faq-bundle/CHANGELOG.md +++ b/faq-bundle/CHANGELOG.md @@ -1,5 +1,9 @@ # Contao FAQ bundle change log +### 4.2.0-RC1 (2016-05-XX) + + * Add listeners to subscribe to the core hooks (see #2). + ### 4.2.0-beta1 (2016-04-25...
[Faq] Fix the coding style.
contao_contao
train
f596bab9677a3447cb7a149603ddde92729fd0f7
diff --git a/executor/opensubmit/executor/__init__.py b/executor/opensubmit/executor/__init__.py index <HASH>..<HASH> 100755 --- a/executor/opensubmit/executor/__init__.py +++ b/executor/opensubmit/executor/__init__.py @@ -248,7 +248,7 @@ def _fetch_job(config): headers = result.info() if headers["Act...
Accept non-archive files on executor side
troeger_opensubmit
train
ea22520573671ad2a5467f8b5c68672befba10d5
diff --git a/src/Type/MessageType.php b/src/Type/MessageType.php index <HASH>..<HASH> 100644 --- a/src/Type/MessageType.php +++ b/src/Type/MessageType.php @@ -131,9 +131,7 @@ class MessageType extends ItemType * * @since Exchange 2007 * - * @var string - * - * @see \jamesiarmes\PhpEws\Enum...
Documentation of "Sender" corrected
jamesiarmes_php-ews
train
580cc5677c0ff2a8e76ec91b54cdd27d6d0f9e45
diff --git a/src/Assets/Package/Cluster.php b/src/Assets/Package/Cluster.php index <HASH>..<HASH> 100755 --- a/src/Assets/Package/Cluster.php +++ b/src/Assets/Package/Cluster.php @@ -439,7 +439,9 @@ class Cluster extends AbstractAssetsPackage $this->setName($package->getPrettyName()); $package...
Correction on the relative path of clusters
atelierspierrot_templatengine
train
79f02ec2a1a3299464112e141bdccd8316169679
diff --git a/docs/javascript/samples/compute/RESTHopper/DelaunayMesh/app.js b/docs/javascript/samples/compute/RESTHopper/DelaunayMesh/app.js index <HASH>..<HASH> 100644 --- a/docs/javascript/samples/compute/RESTHopper/DelaunayMesh/app.js +++ b/docs/javascript/samples/compute/RESTHopper/DelaunayMesh/app.js @@ -72,7 +72,...
Tweaked DMesh example to get it working again
mcneel_rhino3dm
train
41cd81310c65cf1958b039d92615ddcc126c3744
diff --git a/src/parser/Scanner.js b/src/parser/Scanner.js index <HASH>..<HASH> 100644 --- a/src/parser/Scanner.js +++ b/src/parser/Scanner.js @@ -4,7 +4,7 @@ function Scanner(source) { let _lastIndex = source.length - 1; let _currentIndex = -1; let _source = source; - + let _makeChar = (c, line, col, idx...
lint fixes for Scanner
lps-js_lps.js
train
352d99292defaee6b704084d2cea45b8836a90fd
diff --git a/tests/OtpTest.php b/tests/OtpTest.php index <HASH>..<HASH> 100644 --- a/tests/OtpTest.php +++ b/tests/OtpTest.php @@ -120,4 +120,45 @@ class OtpTest extends \PHPUnit_Framework_TestCase $this->Otp->hotp($this->secret, 'a'); } + /** + * Tests Otp->checkHotpResync() + */ + public function testHotpRes...
Add Unit Tests for HotpResync
ChristianRiesen_otp
train
a7b0bc608e0baba765d385aea0cd7c245dd922ac
diff --git a/graylog2-server/src/main/java/org/graylog2/periodical/IndexerClusterCheckerThread.java b/graylog2-server/src/main/java/org/graylog2/periodical/IndexerClusterCheckerThread.java index <HASH>..<HASH> 100644 --- a/graylog2-server/src/main/java/org/graylog2/periodical/IndexerClusterCheckerThread.java +++ b/gray...
Don't run periodic cluster check if ES client hasn't been initialized completely, fixes #<I>
Graylog2_graylog2-server
train
783e1ffe6931ee749b05f29bd82848c716ef5fdf
diff --git a/nobot/widgets.py b/nobot/widgets.py index <HASH>..<HASH> 100644 --- a/nobot/widgets.py +++ b/nobot/widgets.py @@ -7,8 +7,8 @@ from .client import ReCaptchaClient, HumanCaptchaClient class ReCaptchaWidget(forms.widgets.Widget): client_class = ReCaptchaClient - def __init__(self, attrs={}, *args, ...
Fix mutable attrs, fixes #1
EnTeQuAk_nobot
train
9cef26c8a360be9b4a10cecd43f092a128f5599a
diff --git a/src/DoctrineModule/Validator/UniqueObject.php b/src/DoctrineModule/Validator/UniqueObject.php index <HASH>..<HASH> 100644 --- a/src/DoctrineModule/Validator/UniqueObject.php +++ b/src/DoctrineModule/Validator/UniqueObject.php @@ -161,7 +161,7 @@ class UniqueObject extends ObjectExists $result = ...
Changed isset for array_key_exists in context check
doctrine_DoctrineModule
train
94eb23196b1d3f5f4c4886098e5846082d5fa93f
diff --git a/lib/libnmap.js b/lib/libnmap.js index <HASH>..<HASH> 100644 --- a/lib/libnmap.js +++ b/lib/libnmap.js @@ -93,7 +93,7 @@ var version = 'v0.2.24' opts.flags = [ '-oX -', '-sn', - '--disable-arp-ping' + '-PR' ]; }
Applied fix for IPv6 & IPv4 discover mode by enabling ARP ping for IPv4 & Neighbor Discovery (RFC <I>) for IPv6
jas-_node-libnmap
train
1d79066826557ef3efcea9b1d3bb47134a489c20
diff --git a/includes/diffop/diff/Diff.php b/includes/diffop/diff/Diff.php index <HASH>..<HASH> 100644 --- a/includes/diffop/diff/Diff.php +++ b/includes/diffop/diff/Diff.php @@ -178,7 +178,20 @@ class Diff extends \GenericArrayObject implements IDiff { $serializationData = parent::unserialize( $serialization ); ...
Added compatibility with Diff < <I> in Diff::unserialize Change-Id: I<I>d9fc<I>eb1f3ab<I>effb<I>f<I>c<I>eb
wmde_Diff
train
87baee8998fea50b72b2faaec13f16ede9bf17b8
diff --git a/tests/pyexample/example/example.py b/tests/pyexample/example/example.py index <HASH>..<HASH> 100644 --- a/tests/pyexample/example/example.py +++ b/tests/pyexample/example/example.py @@ -38,3 +38,28 @@ class Foo(object): We parse naively on commas, so the nested dictionary will throw this off ...
Added integration tests for napoleon conversions
rtfd_sphinx-autoapi
train
bf2e4adc4975bfe2b366318b5f5bb523b4f5d31d
diff --git a/tests/test_general.py b/tests/test_general.py index <HASH>..<HASH> 100644 --- a/tests/test_general.py +++ b/tests/test_general.py @@ -1,10 +1,18 @@ """ Tests for general matchers. """ +import platform + +from taipan.testing import skipIf, skipUnless + +from callee._compat import IS_PY3 import callee.ge...
Skip a test that fails on pypy3
Xion_callee
train
d10ef64876174b80d1a9b8bae4c1be22c27a2312
diff --git a/src/Drupal/DrupalExtension/Context/DrupalContext.php b/src/Drupal/DrupalExtension/Context/DrupalContext.php index <HASH>..<HASH> 100644 --- a/src/Drupal/DrupalExtension/Context/DrupalContext.php +++ b/src/Drupal/DrupalExtension/Context/DrupalContext.php @@ -1027,4 +1027,25 @@ class DrupalContext extends Mi...
Issue #<I> by eliza<I>: Added debugging breakpoint.
jhedstrom_drupalextension
train
3337d2811975fc24ea7836ca9b82ec72e3a4dd59
diff --git a/ptypes/duration.go b/ptypes/duration.go index <HASH>..<HASH> 100644 --- a/ptypes/duration.go +++ b/ptypes/duration.go @@ -82,7 +82,7 @@ func Duration(p *durpb.Duration) (time.Duration, error) { return 0, fmt.Errorf("duration: %v is out of range for time.Duration", p) } if p.Nanos != 0 { - d += time...
ptypes: Avoid assuming time.Duration is nanoseconds (#<I>) It is spec'd that way, but best practice is to avoid it.
golang_protobuf
train
9d123cd0ecc9959eca08c88f2acc68d5b2018bcb
diff --git a/src/Graviton/I18nBundle/Command/LoadMissingCommand.php b/src/Graviton/I18nBundle/Command/LoadMissingCommand.php index <HASH>..<HASH> 100644 --- a/src/Graviton/I18nBundle/Command/LoadMissingCommand.php +++ b/src/Graviton/I18nBundle/Command/LoadMissingCommand.php @@ -34,7 +34,7 @@ class LoadMissingCommand ex...
Fix typo in name of command I recently stumbled upon this and it's still itching. I don't think anyone is actually using the command so this change should not have any impacts.
libgraviton_graviton
train
39b98c6379611c7f871be6e7d5f5484a26084492
diff --git a/api/v1/cmd/example-scheduler/app/app.go b/api/v1/cmd/example-scheduler/app/app.go index <HASH>..<HASH> 100644 --- a/api/v1/cmd/example-scheduler/app/app.go +++ b/api/v1/cmd/example-scheduler/app/app.go @@ -53,7 +53,7 @@ func buildControllerConfig(state *internalState, shutdown <-chan struct{}) contr var ...
latch: API cleanup; examples: use new latch API; msh: better default for refuseSeconds
mesos_mesos-go
train
d48979465f47dd486d8fa9caa2bd870baed352a2
diff --git a/lib/express-handlebars.js b/lib/express-handlebars.js index <HASH>..<HASH> 100644 --- a/lib/express-handlebars.js +++ b/lib/express-handlebars.js @@ -26,7 +26,7 @@ function ExpressHandlebars(config) { extname : '.handlebars', layoutsDir : undefined, // Default layouts directory...
Update express-handlebars.js
ericf_express-handlebars
train
74d721845e41283fbc74b6dc0bb9387d605d15bd
diff --git a/core/src/main/java/hudson/model/Run.java b/core/src/main/java/hudson/model/Run.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/model/Run.java +++ b/core/src/main/java/hudson/model/Run.java @@ -171,6 +171,15 @@ public abstract class Run <JobT extends Job<JobT,RunT>,RunT extends Run<JobT,Run...
keep track of the time when the build has actually started
jenkinsci_jenkins
train
646ae61c055fc26eff5cce2e45c02075eb6f6ce2
diff --git a/integration/integration_test.go b/integration/integration_test.go index <HASH>..<HASH> 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -7,6 +7,7 @@ import ( "github.com/cloudfoundry-incubator/app-manager/integration/app_manager_runner" Bbs "github.com/cloudfoundry-...
Provide logger to bbs [#<I>]
cloudfoundry-attic_app-manager
train
0f2d9c91b5b2b4f32ca4f1298c2549c2b03bc967
diff --git a/GPflow/sgpr.py b/GPflow/sgpr.py index <HASH>..<HASH> 100644 --- a/GPflow/sgpr.py +++ b/GPflow/sgpr.py @@ -209,11 +209,12 @@ class GPRFITC(GPModel): tmp = tf.matrix_triangular_solve(tf.transpose(L), gamma, lower=False) mean = tf.matmul( tf.transpose(w), tmp ) + self.mean_function...
Adding full covariance predictions to FITC.
GPflow_GPflow
train