hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
999116c75eaea5b6ba792db5de394e6bb62c3096
diff --git a/dependency-check-core/src/test/java/org/owasp/dependencycheck/dependency/DependencyTest.java b/dependency-check-core/src/test/java/org/owasp/dependencycheck/dependency/DependencyTest.java index <HASH>..<HASH> 100644 --- a/dependency-check-core/src/test/java/org/owasp/dependencycheck/dependency/DependencyTe...
patch to resolve issue #<I> Former-commit-id: <I>ec<I>c<I>b<I>a<I>dd<I>f<I>de<I>
jeremylong_DependencyCheck
train
fccb00578ac46c56c15116ffb071c8f07e7e3076
diff --git a/lib/clusterEvents.js b/lib/clusterEvents.js index <HASH>..<HASH> 100644 --- a/lib/clusterEvents.js +++ b/lib/clusterEvents.js @@ -89,6 +89,39 @@ module.exports = (function () { delete disconnectTimers[worker.id]; } + // check for workers that are faking their own death + if (master.isRu...
check for (and handle) workers that fake their own deaths
sazze_node-pm
train
3282fece4a7f343bb383be6cbb3e81c62ab26808
diff --git a/meshio/h5m_io.py b/meshio/h5m_io.py index <HASH>..<HASH> 100644 --- a/meshio/h5m_io.py +++ b/meshio/h5m_io.py @@ -44,16 +44,17 @@ def read(filename): 'Tet4': 'tetra' } cells = {} + cell_data = {} for h5m_type, data in dset['elements'].iteritems(): meshio_type = h5m_t...
h5m: don't read cell data for now
nschloe_meshio
train
2419befb7d0e3f480d28a981cfe38c6542dc8228
diff --git a/bin/react-scripts.js b/bin/react-scripts.js index <HASH>..<HASH> 100755 --- a/bin/react-scripts.js +++ b/bin/react-scripts.js @@ -34,5 +34,6 @@ case 'test': default: console.log('Unknown script "' + script + '".'); console.log('Perhaps you need to update react-scripts?'); + console.log('See: https:...
Add useful link to react-scripts (#<I>)
Pajn_tscomp
train
36719a4cb25a5b1ad8ea86dc477d617af59ca4c0
diff --git a/src/infi/projector/helper/utils/__init__.py b/src/infi/projector/helper/utils/__init__.py index <HASH>..<HASH> 100644 --- a/src/infi/projector/helper/utils/__init__.py +++ b/src/infi/projector/helper/utils/__init__.py @@ -133,7 +133,7 @@ def get_isolated_executable(filename): import os from ..ass...
HOSTDEV-<I> fixing previous ommit
Infinidat_infi.projector
train
585e5549f55f1c604c26de9b81430227a695d9e8
diff --git a/tensorforce/examples/openai_gym.py b/tensorforce/examples/openai_gym.py index <HASH>..<HASH> 100644 --- a/tensorforce/examples/openai_gym.py +++ b/tensorforce/examples/openai_gym.py @@ -70,7 +70,7 @@ def main(): if config.state_wrapper: state_wrapper = create_wrapper(config.state_wrapper, con...
ConcatWrapper now handles the state shape completely
tensorforce_tensorforce
train
a5ed0f1ffc520314bee6cb2a5b58dfb8d0d6e536
diff --git a/src/Fadion/Rule/Rule.php b/src/Fadion/Rule/Rule.php index <HASH>..<HASH> 100644 --- a/src/Fadion/Rule/Rule.php +++ b/src/Fadion/Rule/Rule.php @@ -827,7 +827,7 @@ class Rule */ public function __call($name, $args) { - $rule = $name; + $rule = snake_case($name); if (co...
Custom rules method can be either camel or snake case
fadion_Rule
train
4b36b98d3187345dd8ff500f6043e8b9b76002a2
diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OStatementCache.java b/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OStatementCache.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OStatementCache.java +++ b/core/src/m...
minor refactor on statement cache api
orientechnologies_orientdb
train
e3d6a574e5615f23387720a5df72b4a4425b3153
diff --git a/framework/web/CWebApplication.php b/framework/web/CWebApplication.php index <HASH>..<HASH> 100644 --- a/framework/web/CWebApplication.php +++ b/framework/web/CWebApplication.php @@ -30,10 +30,10 @@ * assume {@link defaultController} is requested (which defaults to 'site'). * * Controller class files ...
(Fixes issue <I>)
yiisoft_yii
train
3c343c0623856b356f8dfa0778a02e8703626c49
diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/environment.rb +++ b/lib/vagrant/environment.rb @@ -124,6 +124,9 @@ module Vagrant # Load the plugins load_plugins + + # Call the environment load hooks + hook(:environment_load) ...
Environment#hook allows hooks to be run at arbitrary points
hashicorp_vagrant
train
87e663b0351fa0cd2b0bd6d0cce60403cf5eb318
diff --git a/test/test_sam.py b/test/test_sam.py index <HASH>..<HASH> 100644 --- a/test/test_sam.py +++ b/test/test_sam.py @@ -14,10 +14,14 @@ from dark.sam import ( PaddedSAM, SAMFilter, UnequalReferenceLengthError, UnknownReference, InvalidSAM, samReferencesToStr, _hardClip, DistanceMatrix) +# Note: getRe...
Added comment to the start of test_sam.py
acorg_dark-matter
train
fb4e821d4ed65330d3a0544c34118bd8fe4a4dcf
diff --git a/src/github/index.js b/src/github/index.js index <HASH>..<HASH> 100644 --- a/src/github/index.js +++ b/src/github/index.js @@ -140,6 +140,14 @@ function getBlameForCommitFile (resource) { } function assignUsersToResource (resource, assignees) { + assignees = assignees || []; + + for(var i = 0; i < ass...
add test to ensure assignees are passed in as strings, fix #1
imsky_pull-review
train
3f279ef47848c3670ae68cd4501b94c273d51008
diff --git a/apollo-integration/src/test/java/com/apollographql/apollo/RxApolloTest.java b/apollo-integration/src/test/java/com/apollographql/apollo/RxApolloTest.java index <HASH>..<HASH> 100644 --- a/apollo-integration/src/test/java/com/apollographql/apollo/RxApolloTest.java +++ b/apollo-integration/src/test/java/com/...
Rx Completable for ApolloPrefetch (#<I>)
apollographql_apollo-android
train
24fe97f75de3548ef5b43eaffdf166b9d57320c1
diff --git a/blockstack/lib/config.py b/blockstack/lib/config.py index <HASH>..<HASH> 100644 --- a/blockstack/lib/config.py +++ b/blockstack/lib/config.py @@ -253,8 +253,6 @@ EPOCH_FEATURE_NAMESPACE_PAY_WITH_STACKS = "BLOCKSTACK_NAMESPACE_PAY_WITH_STACKS" EPOCH_FEATURE_STACKS_BUY_NAMESPACES = "BLOCKSTACK_STACKS_BUY_NA...
these epoch features aren't really doable, given the limited size of op_returns
blockstack_blockstack-core
train
210bf6aa39756b15fedfc46ce2efce7ad051fd2a
diff --git a/activejob/lib/active_job/log_subscriber.rb b/activejob/lib/active_job/log_subscriber.rb index <HASH>..<HASH> 100644 --- a/activejob/lib/active_job/log_subscriber.rb +++ b/activejob/lib/active_job/log_subscriber.rb @@ -10,7 +10,7 @@ module ActiveJob if ex error do - "Failed enqueu...
Remove stacktrace from ActiveJob logging callback halts ActiveJob will log the entire backtrace when one of the enqueue callbacks fail. This is not necessary and increases noise. When there is an Exception object, the object gets bubbled up eventually anyways. Remove `Array(ex.backtrace).join("\n")` from `def enqueue...
rails_rails
train
81b218e3e5aabdb4d8d301481e928fbfdd32b27d
diff --git a/UrlEncodedFormatter.php b/UrlEncodedFormatter.php index <HASH>..<HASH> 100644 --- a/UrlEncodedFormatter.php +++ b/UrlEncodedFormatter.php @@ -30,6 +30,7 @@ class UrlEncodedFormatter extends Object implements FormatterInterface public $encodingType = PHP_QUERY_RFC1738; /** * @var string the ...
Added missing `@since` tag
yiisoft_yii2-httpclient
train
7e44412568ee0296ab519647fe9e70a03af99f31
diff --git a/core/test/unit/helpers/cancel_link_spec.js b/core/test/unit/helpers/cancel_link_spec.js index <HASH>..<HASH> 100644 --- a/core/test/unit/helpers/cancel_link_spec.js +++ b/core/test/unit/helpers/cancel_link_spec.js @@ -18,15 +18,14 @@ describe('{{cancel_link}} helper', function () { const defaultContin...
Fixed cancel_link helper test no issue - We don't check for specifics of the error thrown in the other heper tests, don't see a reason to do so here. It's important to see the error was thrown at all in this case
TryGhost_Ghost
train
dd6d11d9272aad793f87de7acca7aac03f70f1f0
diff --git a/config/default/IndexService.conf.php b/config/default/IndexService.conf.php index <HASH>..<HASH> 100644 --- a/config/default/IndexService.conf.php +++ b/config/default/IndexService.conf.php @@ -7,6 +7,6 @@ use oat\tao\model\search\index\IndexService; use oat\tao\model\search\index\GenerisDocumentBuilderF...
Changes requested by Andre; Removed unneeded use statements; Changed exceptions thrown
oat-sa_tao-core
train
2414cfcce72835a0453f19045d6bfa6adadf520e
diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/auth/SecureRandomAuthTokenGenerator.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/auth/SecureRandomAuthTokenGenerator.java index <HASH>..<HASH> 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/...
Ticket #<I>: Fixed comment.
glyptodon_guacamole-client
train
973307c710a934ff1cf3613c3ba22dcbff3e6954
diff --git a/js/kraken.js b/js/kraken.js index <HASH>..<HASH> 100644 --- a/js/kraken.js +++ b/js/kraken.js @@ -971,23 +971,7 @@ module.exports = class kraken extends Exchange { } return { 'id': id, - 'clientOrderId': clientOrderId, 'info': response, - 't...
[kraken] removed bogus fields from createOrder response The fields have the wrong type because they are simply the input parameters echo'd back out again. Additionally, if the exchange modifies the order price or amount in some way (as some exchanges do) they would be incorrect.
ccxt_ccxt
train
7c32e28dbb66cd8063a0fa62e5a83fa9d0e0301f
diff --git a/src/main/java/org/citygml4j/model/common/base/ModelObject.java b/src/main/java/org/citygml4j/model/common/base/ModelObject.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/citygml4j/model/common/base/ModelObject.java +++ b/src/main/java/org/citygml4j/model/common/base/ModelObject.java @@ -18,6 +18,...
added serializable interface to model classes
citygml4j_citygml4j
train
0dc0b84029fc1d11e4289fb262a5d7fd700a07d5
diff --git a/javalite-common/src/main/java/javalite/http/Get.java b/javalite-common/src/main/java/javalite/http/Get.java index <HASH>..<HASH> 100644 --- a/javalite-common/src/main/java/javalite/http/Get.java +++ b/javalite-common/src/main/java/javalite/http/Get.java @@ -52,6 +52,5 @@ public class Get extends Request<Ge...
moved dispose() to text() abd bytes()
javalite_activejdbc
train
e8f2c78ce519df37396703e718401bc6a5b9f316
diff --git a/blockstack/lib/atlas.py b/blockstack/lib/atlas.py index <HASH>..<HASH> 100644 --- a/blockstack/lib/atlas.py +++ b/blockstack/lib/atlas.py @@ -62,7 +62,7 @@ from .storage import * MIN_ATLAS_VERSION = "0.14.0" PEER_LIFETIME_INTERVAL = 3600 # 1 hour -PEER_PING_INTERVAL = 60 # 1 minute +PEER_PING_I...
get new zonefile vectors once every <I> minutes
blockstack_blockstack-core
train
9df230195e38d00789a0e0a190831fc700c6406d
diff --git a/generators/cucumber/templates/capybara_env.rb b/generators/cucumber/templates/capybara_env.rb index <HASH>..<HASH> 100644 --- a/generators/cucumber/templates/capybara_env.rb +++ b/generators/cucumber/templates/capybara_env.rb @@ -1,5 +1,7 @@ require 'capybara/rails' require 'capybara/cucumber' +require '...
I don't need Capybara making decisions for me.
cucumber_cucumber-rails
train
0fd659af01649362b4c00856183a38508f01144f
diff --git a/src/Conversion/ConversionCollection.php b/src/Conversion/ConversionCollection.php index <HASH>..<HASH> 100644 --- a/src/Conversion/ConversionCollection.php +++ b/src/Conversion/ConversionCollection.php @@ -48,10 +48,10 @@ class ConversionCollection extends Collection */ public function getByName...
Applied fixes from StyleCI (#<I>)
spatie_laravel-medialibrary
train
7163c0252334d41609325a6b6693ac1862864c39
diff --git a/src/Tolerance/Bridge/Symfony/Metrics/EventListener/RequestEnded/SendRequestTimeToPublisher.php b/src/Tolerance/Bridge/Symfony/Metrics/EventListener/RequestEnded/SendRequestTimeToPublisher.php index <HASH>..<HASH> 100644 --- a/src/Tolerance/Bridge/Symfony/Metrics/EventListener/RequestEnded/SendRequestTimeTo...
The severity of the request do not having the start time is debug
Tolerance_Tolerance
train
6d4c2cfea65e389194fe6ce93e4b1cebc2c64bcb
diff --git a/sprinter/environment.py b/sprinter/environment.py index <HASH>..<HASH> 100644 --- a/sprinter/environment.py +++ b/sprinter/environment.py @@ -54,7 +54,7 @@ class Environment(object): if directory.new: self.logger.error("Namespace %s is not yet installed!" % namespace) ret...
Bugfixes * git standardrecipe commands run afterward * fix to actually store remote location
toumorokoshi_sprinter
train
94670530b7952e1fd3de126f624c2e367d0592a4
diff --git a/rxjava-core/src/main/java/rx/internal/operators/NotificationLite.java b/rxjava-core/src/main/java/rx/internal/operators/NotificationLite.java index <HASH>..<HASH> 100644 --- a/rxjava-core/src/main/java/rx/internal/operators/NotificationLite.java +++ b/rxjava-core/src/main/java/rx/internal/operators/Notific...
Change `void accept` to `boolean accept` As per a change @akarnokd did elsewhere with `accept2` method.
ReactiveX_RxJava
train
7778d2004905c604f844af24640d77d17578c27b
diff --git a/daemon/daemonbuilder/pod.go b/daemon/daemonbuilder/pod.go index <HASH>..<HASH> 100644 --- a/daemon/daemonbuilder/pod.go +++ b/daemon/daemonbuilder/pod.go @@ -102,7 +102,7 @@ func (d Docker) BuilderCopy(cId string, destPath string, src builder.FileInfo, d glog.Errorf(err.Error()) return err } - fmt....
builder: allow to copy directroy
hyperhq_hyperd
train
f6fb306451beedcdab4dc70c017e2038702aee78
diff --git a/src/editor/components/RefComponent.js b/src/editor/components/RefComponent.js index <HASH>..<HASH> 100644 --- a/src/editor/components/RefComponent.js +++ b/src/editor/components/RefComponent.js @@ -5,6 +5,14 @@ export default class RefComponent extends Component { didMount() { this.context.editor...
Make sure ref is rerendered when article-title is changed.
substance_texture
train
48d56635b8ffc315843f7acc7bd859ad5f5fa9ed
diff --git a/stomp/utils.py b/stomp/utils.py index <HASH>..<HASH> 100644 --- a/stomp/utils.py +++ b/stomp/utils.py @@ -6,14 +6,10 @@ import os import re import socket import threading +import uuid from stomp.constants import * -try: - import uuid -except ImportError: - from backward import uuid - # List ...
missed a 'backward' reference
jasonrbriggs_stomp.py
train
0482ba8af6294afda448ec98a59f50dffece8fc7
diff --git a/src/JsFunctionsScanner.php b/src/JsFunctionsScanner.php index <HASH>..<HASH> 100644 --- a/src/JsFunctionsScanner.php +++ b/src/JsFunctionsScanner.php @@ -297,13 +297,13 @@ final class JsFunctionsScanner extends GettextJsFunctionsScanner { // If the callee is an indirect function call as created by babel...
Address code review on comments and operator position
wp-cli_i18n-command
train
00a79370903e8a4bd9bc898ae30a67d4c0534eb5
diff --git a/lib/dynflow.rb b/lib/dynflow.rb index <HASH>..<HASH> 100644 --- a/lib/dynflow.rb +++ b/lib/dynflow.rb @@ -17,6 +17,20 @@ end # TODO profiling, find bottlenecks # FIND change ids to uuid, uuid-<action_id>, uuid-<action_id-(plan, run, finalize) module Dynflow + class << self + # Return the world that ...
Allow configuring process-wide world and role Given neither Sidekiq nor ActiveJob seem to support instance-level job definitions, we need to be able to get to some process-level world from those jobs.
Dynflow_dynflow
train
0c53e12952d4193a57d87557cdd018ce31fa5462
diff --git a/eZ/Publish/Core/Repository/TrashService.php b/eZ/Publish/Core/Repository/TrashService.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/Repository/TrashService.php +++ b/eZ/Publish/Core/Repository/TrashService.php @@ -26,7 +26,8 @@ use eZ\Publish\API\Repository\TrashService as TrashServiceInterface, ...
Fixed: changed creating DateTime to contain system timezone
ezsystems_ezpublish-kernel
train
66747e356ebc60eff8fc69bdc59367f0d6a44d29
diff --git a/lib/travis/config.rb b/lib/travis/config.rb index <HASH>..<HASH> 100644 --- a/lib/travis/config.rb +++ b/lib/travis/config.rb @@ -88,7 +88,7 @@ module Travis :notifications => [], # TODO rename to event.handlers :queues => [], :workers => { :prune => { :a...
extract maximum parallel jobs per owner setting to Travis.config
travis-ci_travis-core
train
3f7e3a714e082e0f22b1fbca66e9daa09a0ceecb
diff --git a/test/exports.js b/test/exports.js index <HASH>..<HASH> 100644 --- a/test/exports.js +++ b/test/exports.js @@ -1,6 +1,7 @@ var express = require('../') - , request = require('./support/http'); + , request = require('./support/http') + , assert = require('assert'); describe('exports', function(){ ...
drop to assert() for less crazy error message
expressjs_express
train
d5ce8099e15eeb71d8ef868798ece107a5ebe363
diff --git a/lib/action_cable/testing/version.rb b/lib/action_cable/testing/version.rb index <HASH>..<HASH> 100644 --- a/lib/action_cable/testing/version.rb +++ b/lib/action_cable/testing/version.rb @@ -2,6 +2,6 @@ module ActionCable module Testing - VERSION = "0.0.5" + VERSION = "0.0.6" end end
Bump action-cable-testing to <I> [skip ci]
palkan_action-cable-testing
train
54a34079cf342a6e2a99d57dd9310b2079327796
diff --git a/lib/alarms.js b/lib/alarms.js index <HASH>..<HASH> 100644 --- a/lib/alarms.js +++ b/lib/alarms.js @@ -33,7 +33,7 @@ Alarms.prototype.queryAlarmsByStateReadably = function(state, auth){ var alarms = data.MetricAlarms ; for (var k=0; k<alarms.length; k++){ returnMe += alarms[k].Namespace +', ' + -...
Updated Alarms Removed unnecessary branch to achieve <I>% code coverage.
Bandwidth_opkit
train
a595fc1c56e5e9f4620bf5f248c87e9cb1e31b2f
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adap...
Escape the parentheses in the default function regexp This is causing every default value in PostreSQL database to being handled as default function. Fixes #<I>
rails_rails
train
eb51a0b58b15ce92a3039b180ee1b557c3114023
diff --git a/abstract.js b/abstract.js index <HASH>..<HASH> 100644 --- a/abstract.js +++ b/abstract.js @@ -102,6 +102,12 @@ function abstractPersistence (opts) { }) } + function testPacket (t, packet, expected) { + if (packet.messageId === null) packet.messageId = undefined + t.equal(packet.messageId, ...
fix: packet tests with null messageId (#<I>)
mcollina_aedes-persistence
train
5a0280cf0fa317833733b74a6d96df6852f5f021
diff --git a/src/init.js b/src/init.js index <HASH>..<HASH> 100644 --- a/src/init.js +++ b/src/init.js @@ -90,9 +90,11 @@ AV.init = function init(options, ...params) { AV.setProduction(production); if (typeof disableCurrentUser !== 'undefined') AV._config.disableCurrentUser = disableCurrentUser; - AV._appRo...
refactor: remove unnecessary appRouter
leancloud_javascript-sdk
train
5b74bb6445a7fb7220da74c6c6e891c20e9a26dc
diff --git a/signer/core/abihelper_test.go b/signer/core/abihelper_test.go index <HASH>..<HASH> 100644 --- a/signer/core/abihelper_test.go +++ b/signer/core/abihelper_test.go @@ -38,13 +38,13 @@ func verify(t *testing.T, jsondata, calldata string, exp []interface{}) { cd := common.Hex2Bytes(calldata) sigdata, argda...
signer: remove ineffectual assignments (#<I>) * signer: remove ineffectual assignments * signer: remove ineffectual assignments
ethereum_go-ethereum
train
bcb645c551f7f13456f69be7ed9b956b02abc1db
diff --git a/chance.js b/chance.js index <HASH>..<HASH> 100644 --- a/chance.js +++ b/chance.js @@ -199,13 +199,20 @@ }; Chance.prototype.shuffle = function (arr) { - for (var i = arr.length - 1; i > 0; i--) { - var j = this.natural({max: i + 1}), - temp = arr[i]; - ar...
Fix shuffle() so it works, passes unit test. Previous version by @davmillar in #<I> mostly worked, but would occasionally return an array with length of original array <I> with undefined as one of the elements
chancejs_chancejs
train
e6e590cabb81b9f6e25e1260f445463ebdee7955
diff --git a/dev/com.ibm.ws.webcontainer.servlet.4.0_fat/fat/src/com/ibm/ws/fat/wc/tests/WCSameSiteCookieAttributeTests.java b/dev/com.ibm.ws.webcontainer.servlet.4.0_fat/fat/src/com/ibm/ws/fat/wc/tests/WCSameSiteCookieAttributeTests.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.ws.webcontainer.servlet.4.0_fat/fat...
Issue #<I>: Reduce Trace for tests that require it and ensure to set mark to end of trace log
OpenLiberty_open-liberty
train
d3074a086cc05662aaf72c71cac33d82ede98627
diff --git a/spring-boot-samples/spring-boot-sample-data-cassandra/src/test/java/sample/data/cassandra/SampleCassandraApplicationTests.java b/spring-boot-samples/spring-boot-sample-data-cassandra/src/test/java/sample/data/cassandra/SampleCassandraApplicationTests.java index <HASH>..<HASH> 100644 --- a/spring-boot-sampl...
Increase timeout for startup of embedded Cassandra The integration tests for the Spring Data Cassandra sample application fail intermittently, apparently due to Cassandra failing to start within the default timeout period of <I>ms. In attempt to get the tests to pass reliably, this commit increases the timeout to <I>...
spring-projects_spring-boot
train
8ca00c49817bca9efd7c506074c81d7373241ef3
diff --git a/presto-spi/src/main/java/com/facebook/presto/spi/ConnectorNewTableLayout.java b/presto-spi/src/main/java/com/facebook/presto/spi/ConnectorNewTableLayout.java index <HASH>..<HASH> 100644 --- a/presto-spi/src/main/java/com/facebook/presto/spi/ConnectorNewTableLayout.java +++ b/presto-spi/src/main/java/com/fa...
Add equals and hashcode methods to ConnectorNewTableLayout
prestodb_presto
train
b59a91d24d857f3727e17f2f321f63a8b3410c1f
diff --git a/TYPO3.Fluid/Tests/Unit/ViewHelpers/Form/PasswordViewHelperTest.php b/TYPO3.Fluid/Tests/Unit/ViewHelpers/Form/PasswordViewHelperTest.php index <HASH>..<HASH> 100644 --- a/TYPO3.Fluid/Tests/Unit/ViewHelpers/Form/PasswordViewHelperTest.php +++ b/TYPO3.Fluid/Tests/Unit/ViewHelpers/Form/PasswordViewHelperTest.p...
[TASK] add unit test to check for required property in password viewHelper
neos_flow-development-collection
train
ecc2248aa06516856506dba64cbc3a61e41938cc
diff --git a/commands/http/client.go b/commands/http/client.go index <HASH>..<HASH> 100644 --- a/commands/http/client.go +++ b/commands/http/client.go @@ -7,6 +7,7 @@ import ( "io" "net/http" "net/url" + "reflect" "strings" cmds "github.com/jbenet/go-ipfs/commands" @@ -149,7 +150,8 @@ func getResponse(httpR...
commands/http: client: Fixed decoding values in channel output
ipfs_go-ipfs
train
f70613b2b89086b27f921162ec8ac981b37de4a0
diff --git a/src/Auth.php b/src/Auth.php index <HASH>..<HASH> 100644 --- a/src/Auth.php +++ b/src/Auth.php @@ -117,7 +117,7 @@ final class Auth extends UserManager { $parts = \explode(self::COOKIE_CONTENT_SEPARATOR, $_COOKIE[$this->rememberCookieName], 2); // if both selector and token were found - if (i...
Ignore defined but empty selectors and tokens from 'remember me'
delight-im_PHP-Auth
train
ddb36a031b35a07aabb270c0e19f44a7849b3d3b
diff --git a/examples/block_bots.py b/examples/block_bots.py index <HASH>..<HASH> 100644 --- a/examples/block_bots.py +++ b/examples/block_bots.py @@ -42,7 +42,7 @@ your_followers = list(set(your_followers) - your_likers) random.shuffle(your_followers) for user in tqdm(your_followers): - time.sleep(1) + time....
Update block_bots.py increased time delay between get_user_info otherwise it will fail after <I>th request
instagrambot_instabot
train
e1918454888497ec1f4187bcb0d348c90adb1eb7
diff --git a/gems/quilt_rails/lib/quilt_rails/logger.rb b/gems/quilt_rails/lib/quilt_rails/logger.rb index <HASH>..<HASH> 100644 --- a/gems/quilt_rails/lib/quilt_rails/logger.rb +++ b/gems/quilt_rails/lib/quilt_rails/logger.rb @@ -3,7 +3,7 @@ module Quilt module Logger def self.log(string) - if defined? R...
Fix bug because of precendence: - Calling `defined? Rails && Rails.logger.nil?` will always return true even if `Rails.logger` isn't nil. This is because `defined?` has a higher precedence that `&&`. List of precedence in ruby <URL>
Shopify_quilt
train
2436aa56b2cbd4e14573b8f7c2fff4de3bc646af
diff --git a/tasks/inline.js b/tasks/inline.js index <HASH>..<HASH> 100644 --- a/tasks/inline.js +++ b/tasks/inline.js @@ -19,7 +19,8 @@ module.exports = function(grunt) { options = this.options({tag: '__inline'}), uglify = !!options.uglify, cssmin = !!options.cssmin, - relativeTo = this.options().rel...
Allow "html" file extensions to be configurable Setting an exts array allows multiple file extensions to be processed as html. options : { exts: ['ejs','coffee','jade'] }
jrit_web-resource-inliner
train
70b5c8afa22238111c27620e3e04c2c14f2279a4
diff --git a/geojsoncontour/contour.py b/geojsoncontour/contour.py index <HASH>..<HASH> 100644 --- a/geojsoncontour/contour.py +++ b/geojsoncontour/contour.py @@ -101,12 +101,14 @@ def contourf_to_multipolygeojson(contourf, geojson_filepath=None, contour_levels mps.append(op) contourf_idx ...
Fix title in multipolycontourf Title did not change with contour level.
bartromgens_geojsoncontour
train
a53edddacb3a0c149939f13e6d33525ffada9ca8
diff --git a/src/actions/datafiles.js b/src/actions/datafiles.js index <HASH>..<HASH> 100644 --- a/src/actions/datafiles.js +++ b/src/actions/datafiles.js @@ -2,6 +2,7 @@ import * as ActionTypes from '../constants/actionTypes'; import _ from 'underscore'; import { validationError } from './utils'; import { get, put,...
update datafiles action to support multiple views
jekyll_jekyll-admin
train
e5809c73977130fd15a1dc31882a776f763132bf
diff --git a/ck/repo/kernel/default/test/test_kernel.py b/ck/repo/kernel/default/test/test_kernel.py index <HASH>..<HASH> 100644 --- a/ck/repo/kernel/default/test/test_kernel.py +++ b/ck/repo/kernel/default/test/test_kernel.py @@ -1,7 +1,5 @@ import unittest -ck=None - class TestKernel(unittest.TestCase): de...
Return valid retcode when some tests failed
ctuning_ck
train
968762eb19a92c790cb351cef0df17ab4e5ece1a
diff --git a/fault/magma_simulator_target.py b/fault/magma_simulator_target.py index <HASH>..<HASH> 100644 --- a/fault/magma_simulator_target.py +++ b/fault/magma_simulator_target.py @@ -57,7 +57,7 @@ class MagmaSimulatorTarget(Target): def get_value(self, simulator, port): port, scope = self.process_po...
Fix bugs in magma sim
leonardt_fault
train
01329eacd208db0b2db2de973db6a367b6c5af61
diff --git a/src/Behat/Mink/Driver/SahiDriver.php b/src/Behat/Mink/Driver/SahiDriver.php index <HASH>..<HASH> 100644 --- a/src/Behat/Mink/Driver/SahiDriver.php +++ b/src/Behat/Mink/Driver/SahiDriver.php @@ -366,7 +366,8 @@ JS; */ public function getValue($xpath) { - $xpath = $this->prepareXPath($...
Fix escaping of escaped xpaths
minkphp_MinkSahiDriver
train
cb832403727f9ddadf43562553d82b54069a669b
diff --git a/src/field/index.js b/src/field/index.js index <HASH>..<HASH> 100644 --- a/src/field/index.js +++ b/src/field/index.js @@ -135,19 +135,29 @@ export default createComponent({ } }, - // @exposed-api validate() { - if (!this.rules) { - return true; - } - - return !th...
feat(Form): add failed event params
youzan_vant
train
cd0dd782761abc83849fbb6ba3fdad5253b5b9c8
diff --git a/spacy/cli/evaluate.py b/spacy/cli/evaluate.py index <HASH>..<HASH> 100644 --- a/spacy/cli/evaluate.py +++ b/spacy/cli/evaluate.py @@ -64,10 +64,7 @@ def evaluate( if displacy_path and not displacy_path.exists(): msg.fail("Visualization output directory not found", displacy_path, exits=1) ...
Simplify model loading (now supported via load_model)
explosion_spaCy
train
ebacb966260bf7b4f204a00e882c3cd5dcc4b590
diff --git a/lib/vagrant/action/builtin/after_trigger.rb b/lib/vagrant/action/builtin/after_trigger.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/action/builtin/after_trigger.rb +++ b/lib/vagrant/action/builtin/after_trigger.rb @@ -1,9 +1,14 @@ module Vagrant module Action module Builtin - # After Trig...
Update docs for action trigger actions
hashicorp_vagrant
train
d8b590496e7115518e463f735a7b12ac6b51cee8
diff --git a/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/loading/PackageDefinitionStrategy.java b/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/loading/PackageDefinitionStrategy.java index <HASH>..<HASH> 100644 --- a/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/loading/PackageDefinitionStrategy.java +...
Added field for extracting module name from path to make the code better readable.
raphw_byte-buddy
train
0bbc9f1d2d0effcf33d82d24bbf97f30b90619de
diff --git a/daemon/image_delete.go b/daemon/image_delete.go index <HASH>..<HASH> 100644 --- a/daemon/image_delete.go +++ b/daemon/image_delete.go @@ -195,6 +195,7 @@ func (daemon *Daemon) removeAllReferencesToImageID(imgID image.ID, records *[]ty // Implements the error interface. type imageDeleteConflict struct { ...
Fix docker rmi trying to remove a being used parent
containers_storage
train
534e2954db22b52b1707d3bf19d103bc2b415adc
diff --git a/pydriller/domain/commit.py b/pydriller/domain/commit.py index <HASH>..<HASH> 100644 --- a/pydriller/domain/commit.py +++ b/pydriller/domain/commit.py @@ -14,7 +14,7 @@ import logging import os from _datetime import datetime -from typing import List, Set +from typing import List, Set, Dict from enum imp...
Small fix in the init function of Modification. Mainly to fix BetterCodeHub error message.
ishepard_pydriller
train
b6fb521c404e2987fa41f5e825c3bc8f6d70c26c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import io import os import platform import re @@ -42,7 +41,7 @@ ...
setup.py: open supports encoding in Python 3
niklasf_python-chess
train
aafe9f88f0a6286724f704533a7c56ca08929b6b
diff --git a/lib/s3/version.rb b/lib/s3/version.rb index <HASH>..<HASH> 100644 --- a/lib/s3/version.rb +++ b/lib/s3/version.rb @@ -1,3 +1,3 @@ module S3 - VERSION = "0.6" + VERSION = "0.7" end
moved the version to <I>
megamsys_radosgw-s3
train
f617c88e474f98b346d7bb93f0aefbd4ef566f63
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -21,7 +21,7 @@ class Application extends \Symfony\Component\Console\Application protected static $name = 'Console Console'; - protected static $version = '1.0.0 pl'; + ...
Bump to <I>pl
LippertComponents_Console
train
96abf32b29fb5b1613e50404979ae4965c2656a2
diff --git a/protocols/raft/src/main/java/io/atomix/protocols/raft/roles/LeaderAppender.java b/protocols/raft/src/main/java/io/atomix/protocols/raft/roles/LeaderAppender.java index <HASH>..<HASH> 100644 --- a/protocols/raft/src/main/java/io/atomix/protocols/raft/roles/LeaderAppender.java +++ b/protocols/raft/src/main/j...
Wait minimum number of AppendRequest failures before detecting network partition to account for single request timeouts that are longer than the election timeout.
atomix_atomix
train
c7b96622317127b579f3a58d831f7120b70b75c9
diff --git a/lib/Gentle/Bitbucket/API/Repo/Changesets.php b/lib/Gentle/Bitbucket/API/Repo/Changesets.php index <HASH>..<HASH> 100644 --- a/lib/Gentle/Bitbucket/API/Repo/Changesets.php +++ b/lib/Gentle/Bitbucket/API/Repo/Changesets.php @@ -32,7 +32,7 @@ class Changesets extends API\Api * @param int $limit Ho...
refactor: renamed changesets::get method to changesets::all
gentlero_bitbucket-api
train
a7608097a17f2113758be221a8a4af0cd98dd72f
diff --git a/tchannel/rw.py b/tchannel/rw.py index <HASH>..<HASH> 100644 --- a/tchannel/rw.py +++ b/tchannel/rw.py @@ -347,7 +347,7 @@ class NumberReadWriter(ReadWriter): 1: '>B', 2: '>H', 4: '>I', - 8: '>q', + 8: '>Q', } __slots__ = ('_width', '_format') diff --git ...
Treat <I>bits numbers as unsigned long long
uber_tchannel-python
train
f304c0e323f9db24c396e167bc066a14bc78df8f
diff --git a/core-bundle/contao/elements/ContentModule.php b/core-bundle/contao/elements/ContentModule.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/elements/ContentModule.php +++ b/core-bundle/contao/elements/ContentModule.php @@ -54,15 +54,12 @@ class ContentModule extends \ContentElement } $objMod...
[Core] Pass the column name in the constructor in the `ContentModule` class
contao_contao
train
ec5141e436d041e85c5061e483fafb4e697880ae
diff --git a/gsh/control_commands.py b/gsh/control_commands.py index <HASH>..<HASH> 100644 --- a/gsh/control_commands.py +++ b/gsh/control_commands.py @@ -190,17 +190,21 @@ def do_reconnect(command): Try to reconnect to disconnected remote shells. The special characters * ? and [] work as expected. """ -...
Show progress indicator when starting remote shells.
innogames_polysh
train
a18b4184f590dc61e02e429a7f8f92a373339f52
diff --git a/src/OAuth2/Grant/ClientCredentials.php b/src/OAuth2/Grant/ClientCredentials.php index <HASH>..<HASH> 100644 --- a/src/OAuth2/Grant/ClientCredentials.php +++ b/src/OAuth2/Grant/ClientCredentials.php @@ -115,7 +115,7 @@ class ClientCredentials implements GrantTypeInterface { $authParams['scopes'] = ...
getScopes() now have the grant type and client ID passed
thephpleague_oauth2-server
train
42e3043ddbcb1f6a8b10ad6749e46e41293a775d
diff --git a/haphilipsjs/__init__.py b/haphilipsjs/__init__.py index <HASH>..<HASH> 100644 --- a/haphilipsjs/__init__.py +++ b/haphilipsjs/__init__.py @@ -160,7 +160,24 @@ class PhilipsTV(object): if self.system: return self.system.get("os_type", "").startswith("MSAF_") else: - ...
Adjust quirks for ambilight
danielperna84_ha-philipsjs
train
fa0e2b780341dae3ff464433780eef86fbaffb00
diff --git a/lib/web/terminal.go b/lib/web/terminal.go index <HASH>..<HASH> 100644 --- a/lib/web/terminal.go +++ b/lib/web/terminal.go @@ -320,7 +320,6 @@ func (t *TerminalHandler) startPingLoop(ws *websocket.Conn) { // https://github.com/golang/net/blob/master/websocket/hybi.go#L291 if err := codec.Send(ws, ni...
Remove closing when pings fail to send
gravitational_teleport
train
f76b7a49fedb17123266ed065c0927add57b3f14
diff --git a/lib/linters/zero_unit.js b/lib/linters/zero_unit.js index <HASH>..<HASH> 100644 --- a/lib/linters/zero_unit.js +++ b/lib/linters/zero_unit.js @@ -34,7 +34,7 @@ module.exports = { ast = parser(node.value).parse(); - ast.walk(function (child) { + ast.first.each(function (child) { ...
Don't check function arguments in zeroUnit (#<I>) * Don't check function arguments in zeroUnit. Closes #<I> * zeroUnit should just check the first level of value children This brings in it in line with the 1.x behaviour
lesshint_lesshint
train
d5077596aae66d550cedd36d44a6055927fed8b5
diff --git a/TYPO3.Neos/Classes/TYPO3/Neos/EventLog/Domain/Model/NodeEvent.php b/TYPO3.Neos/Classes/TYPO3/Neos/EventLog/Domain/Model/NodeEvent.php index <HASH>..<HASH> 100644 --- a/TYPO3.Neos/Classes/TYPO3/Neos/EventLog/Domain/Model/NodeEvent.php +++ b/TYPO3.Neos/Classes/TYPO3/Neos/EventLog/Domain/Model/NodeEvent.php @...
TASK: Code cleanup in NodeEvent
neos_neos-development-collection
train
c0784556fd320c2cc4cb4fd5c80f5017333616e0
diff --git a/src/main/java/com/simpligility/maven/plugins/android/asm/AndroidTestFinder.java b/src/main/java/com/simpligility/maven/plugins/android/asm/AndroidTestFinder.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/simpligility/maven/plugins/android/asm/AndroidTestFinder.java +++ b/src/main/java/com/simplig...
Tweaking the JavaDoc a little Motivation: We are now going to support two testing styles. The Javadoc of the finder now explicitly states that it checks the old style of tests run by the instrumentation test runner.
simpligility_android-maven-plugin
train
ade540ba39a35130de373b766024a785086aa7a7
diff --git a/saltcloud/clouds/ec2.py b/saltcloud/clouds/ec2.py index <HASH>..<HASH> 100644 --- a/saltcloud/clouds/ec2.py +++ b/saltcloud/clouds/ec2.py @@ -1391,6 +1391,9 @@ def get_tags(name=None, instance_id=None, call=None, location=None): ) if instance_id is None: + if location is None: + ...
ec2: when listing nodes, extract location from current provider
saltstack_salt
train
521ac53368ccc38a7440022e43d4def4bda560f3
diff --git a/lib/awesome_print/ext/sequel.rb b/lib/awesome_print/ext/sequel.rb index <HASH>..<HASH> 100644 --- a/lib/awesome_print/ext/sequel.rb +++ b/lib/awesome_print/ext/sequel.rb @@ -26,7 +26,7 @@ module AwesomePrint # Format Sequel Document object. #-------------------------------------------------------...
cast all keys to strings to fix sorting of fields
awesome-print_awesome_print
train
3fdbf727eb49dc5f102001e797f135d1091b292a
diff --git a/lib/bitescript/asm3/builder.rb b/lib/bitescript/asm3/builder.rb index <HASH>..<HASH> 100644 --- a/lib/bitescript/asm3/builder.rb +++ b/lib/bitescript/asm3/builder.rb @@ -253,8 +253,11 @@ module BiteScript flags = Opcodes::ACC_INTERFACE | Opcodes::ACC_ABSTRACT end - @class_writer = Cu...
Modify asm3 stuff to configure frame/stack computation too.
headius_bitescript
train
5e11616d2f989c35a68ef7ec4a1b3bf7def296cb
diff --git a/src/main/org/codehaus/groovy/runtime/ProcessGroovyMethods.java b/src/main/org/codehaus/groovy/runtime/ProcessGroovyMethods.java index <HASH>..<HASH> 100644 --- a/src/main/org/codehaus/groovy/runtime/ProcessGroovyMethods.java +++ b/src/main/org/codehaus/groovy/runtime/ProcessGroovyMethods.java @@ -68,7 +68,...
GROOVY-<I>: too many files open, caused by not closing output streams (although the JavaDoc hinted that it was the case)
groovy_groovy-core
train
ab0e886a6186de414aa7ec8b4d147ff74002e6f9
diff --git a/aeron-client/src/main/java/uk/co/real_logic/aeron/Publication.java b/aeron-client/src/main/java/uk/co/real_logic/aeron/Publication.java index <HASH>..<HASH> 100644 --- a/aeron-client/src/main/java/uk/co/real_logic/aeron/Publication.java +++ b/aeron-client/src/main/java/uk/co/real_logic/aeron/Publication.ja...
[Java]: Inline temporary variable.
real-logic_aeron
train
55aeea9f2563baab9e88a2d84730667391b6fe34
diff --git a/lib/light_serializer/serialization.rb b/lib/light_serializer/serialization.rb index <HASH>..<HASH> 100644 --- a/lib/light_serializer/serialization.rb +++ b/lib/light_serializer/serialization.rb @@ -84,8 +84,22 @@ module LightSerializer def nested_attributes nested_object_attributes.each_with_...
add logic to serialize array of nested objects
krim_light_serializer
train
257ff25c2e340b19b64280b144e0c07d8ce97da4
diff --git a/api/tests/test_key.py b/api/tests/test_key.py index <HASH>..<HASH> 100644 --- a/api/tests/test_key.py +++ b/api/tests/test_key.py @@ -152,3 +152,13 @@ class KeyTest(TestCase): def test_rsa_key_fingerprint(self): fp = fingerprint(RSA_PUBKEY) self.assertEquals(fp, '54:6d:da:1f:91:b5:2b...
fix(controller): allow non superusers to manage their keys Fix Key management view permission configuration so users are able to remove/retrieve their SSH keys.
deis_controller-sdk-go
train
cb31494193a9ccdf5b850ed285fc9a93562a29bd
diff --git a/phy/cluster/manual/views.py b/phy/cluster/manual/views.py index <HASH>..<HASH> 100644 --- a/phy/cluster/manual/views.py +++ b/phy/cluster/manual/views.py @@ -587,10 +587,11 @@ def extract_spikes(traces, interval, sample_rate=None, # Find the start of the waveform in the extracted traces. ...
Resiliency to failing waveform extraction in trace view
kwikteam_phy
train
3286fd8449d01492f3d7066a45a9e89aaa52735b
diff --git a/openstack/data_source_openstack_networking_subnet_v2.go b/openstack/data_source_openstack_networking_subnet_v2.go index <HASH>..<HASH> 100644 --- a/openstack/data_source_openstack_networking_subnet_v2.go +++ b/openstack/data_source_openstack_networking_subnet_v2.go @@ -27,6 +27,12 @@ func dataSourceNetwork...
Networking V2: add description to the subnet data source (#<I>)
terraform-providers_terraform-provider-openstack
train
3d741682b4fc1e0df83d67fffc8485d08e9e1809
diff --git a/src/KuiKui/MemcacheServiceProvider/ServiceProvider.php b/src/KuiKui/MemcacheServiceProvider/ServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/KuiKui/MemcacheServiceProvider/ServiceProvider.php +++ b/src/KuiKui/MemcacheServiceProvider/ServiceProvider.php @@ -22,15 +22,16 @@ class ServiceProvider imp...
Implements support for PHP <I>
KuiKui_MemcacheServiceProvider
train
5a7f47fdfd506474bfbd3e65432446cc51af95e4
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # -*- coding: UTF-8 -*- from setuptools import find_packages, setup -_version = "0.2.6" +_version = "0.2.7" _packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]) _short_descriptio...
Bumping version after some additional PRs
PyCQA_pylint-plugin-utils
train
665bf65e345e1ca89d4b54d10a10dfaf40201968
diff --git a/kernel_tuner/cuda.py b/kernel_tuner/cuda.py index <HASH>..<HASH> 100644 --- a/kernel_tuner/cuda.py +++ b/kernel_tuner/cuda.py @@ -7,6 +7,7 @@ import numpy as np from kernel_tuner.observers import BenchmarkObserver from kernel_tuner.nvml import nvml +from kernel_tuner.util import TorchPlaceHolder #em...
make sure kernel tuner can be used without torch
benvanwerkhoven_kernel_tuner
train
20d237ee5e8768b11a9b346fdd13c24e7c804eef
diff --git a/tests/fixtures/base-move-10deps-1nest/b/6/index.js b/tests/fixtures/base-move-10deps-1nest/b/6/index.js index <HASH>..<HASH> 100644 --- a/tests/fixtures/base-move-10deps-1nest/b/6/index.js +++ b/tests/fixtures/base-move-10deps-1nest/b/6/index.js @@ -1 +1 @@ -module.exports = 6; \ No newline at end of file ...
chore(tests): commit last test states
mzgoddard_hard-source-webpack-plugin
train
75916754a616f3926c3a705e4bca5ac4b563a3bc
diff --git a/core/dbt/task/debug.py b/core/dbt/task/debug.py index <HASH>..<HASH> 100644 --- a/core/dbt/task/debug.py +++ b/core/dbt/task/debug.py @@ -9,7 +9,7 @@ import dbt.config import dbt.utils import dbt.exceptions from dbt.links import ProfileConfigDocs -from dbt.adapters.factory import get_adapter +from dbt.a...
add register_adapter to dbt debug
fishtown-analytics_dbt
train
03f1bce1db86f4782f47fdc2d1d8f2a5eb444d64
diff --git a/drf_haystack/filters.py b/drf_haystack/filters.py index <HASH>..<HASH> 100644 --- a/drf_haystack/filters.py +++ b/drf_haystack/filters.py @@ -10,6 +10,8 @@ from django.conf import settings from django.core.exceptions import ImproperlyConfigured from django.utils import six +import haystack + from rest...
moved haystack import to top of file
inonit_drf-haystack
train
349ba8a0893734c3cd8b0553d5d1ce16ec8f046c
diff --git a/py/testdir_single_jvm/test_rf_covtype_train_oobe.py b/py/testdir_single_jvm/test_rf_covtype_train_oobe.py index <HASH>..<HASH> 100644 --- a/py/testdir_single_jvm/test_rf_covtype_train_oobe.py +++ b/py/testdir_single_jvm/test_rf_covtype_train_oobe.py @@ -12,17 +12,13 @@ paramDict = { 'response_variable...
compare classification error to exact expected numbers (with <I> tolerance) for training and test, so we can tell when anything shifts
h2oai_h2o-2
train
149dcdacb449fa5803e1578ee57de8abe591ac34
diff --git a/ui/app/adapters/job.js b/ui/app/adapters/job.js index <HASH>..<HASH> 100644 --- a/ui/app/adapters/job.js +++ b/ui/app/adapters/job.js @@ -68,4 +68,20 @@ export default class JobAdapter extends WatchableNamespaceIDs { }, }); } + + scale(job, group, count, reason) { + const url = addToPath...
New scale action for jobs (and a convenience task group method)
hashicorp_nomad
train
50a41c9311b4284513c836e866824c2d5cd8a6ce
diff --git a/src/box.js b/src/box.js index <HASH>..<HASH> 100644 --- a/src/box.js +++ b/src/box.js @@ -9,7 +9,7 @@ const d3 = { "transition": d3Transition }; -import {constant} from "d3plus-common"; +import {accessor, constant} from "d3plus-common"; import {default as boxSplit} from "./split"; import {default a...
uses accessor shorthand from d3plus-common
d3plus_d3plus-text
train
c3783f298b947671ccaa0768a8585ef6e4442cdf
diff --git a/src/main/java/mobi/boilr/libdynticker/exchanges/OneExTradeExchange.java b/src/main/java/mobi/boilr/libdynticker/exchanges/OneExTradeExchange.java index <HASH>..<HASH> 100644 --- a/src/main/java/mobi/boilr/libdynticker/exchanges/OneExTradeExchange.java +++ b/src/main/java/mobi/boilr/libdynticker/exchanges/O...
Updated pairs for 1Ex.Trade. Added pair info to print when test fails.
drpout_libdynticker
train
926229561dc14686bfacdb760b7341d9a0f362c6
diff --git a/lib/protocol/READ_FILE_RECORD.js b/lib/protocol/READ_FILE_RECORD.js index <HASH>..<HASH> 100644 --- a/lib/protocol/READ_FILE_RECORD.js +++ b/lib/protocol/READ_FILE_RECORD.js @@ -12,7 +12,7 @@ exports.buildRequest = function (requests) { buffer.writeUInt8(0x06, offset); buffer.writeUInt16BE(requests[i...
read file record: changes start+end to start+length
node-modbus_pdu
train
ca8c7f88a14148fc6f74520b6d7a2ca5330bb241
diff --git a/redisson/src/main/java/org/redisson/connection/pool/ConnectionPool.java b/redisson/src/main/java/org/redisson/connection/pool/ConnectionPool.java index <HASH>..<HASH> 100644 --- a/redisson/src/main/java/org/redisson/connection/pool/ConnectionPool.java +++ b/redisson/src/main/java/org/redisson/connection/po...
Fixed - RoundRobinLoadBalancer doesn't distribute load equally if one of slave nodes was failed #<I>
redisson_redisson
train
98f047ebfac2aa06444d7d03dd4bc62006e0a48a
diff --git a/forms/gridfield/GridFieldSortableHeader.php b/forms/gridfield/GridFieldSortableHeader.php index <HASH>..<HASH> 100644 --- a/forms/gridfield/GridFieldSortableHeader.php +++ b/forms/gridfield/GridFieldSortableHeader.php @@ -33,6 +33,11 @@ class GridFieldSortableHeader implements GridField_HTMLProvider, GridF...
MINOR: Add asc and desc classes to sorted header
silverstripe_silverstripe-framework
train
3f13b53ed05dd338b5ad328e9b6d3d80d5cf13c8
diff --git a/mocha-multi.js b/mocha-multi.js index <HASH>..<HASH> 100644 --- a/mocha-multi.js +++ b/mocha-multi.js @@ -181,6 +181,7 @@ function createRunnerShim(runner, stream) { addDelegate('grepTotal'); addDelegate('suite'); addDelegate('total'); + addDelegate('stats'); const delegatedEvents = {};
Add 'stats' in shim - Solves issue with mocha >= <I>, now reporters retrieve stats on runner object.
glenjamin_mocha-multi
train