hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
1127ae24b365f026d7960b77b51464a816872fbe
diff --git a/app/assets/javascripts/rails_admin/ra.filtering-multiselect.js b/app/assets/javascripts/rails_admin/ra.filtering-multiselect.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/rails_admin/ra.filtering-multiselect.js +++ b/app/assets/javascripts/rails_admin/ra.filtering-multiselect.js @@ -159,7 +15...
Add title for longer options to multiselect widget
sferik_rails_admin
train
dcf100185775abad71606e93cb00663e5570b561
diff --git a/lib/axlsx.rb b/lib/axlsx.rb index <HASH>..<HASH> 100644 --- a/lib/axlsx.rb +++ b/lib/axlsx.rb @@ -87,8 +87,9 @@ module Axlsx # performs the increadible feat of changing snake_case to CamelCase # @param [String] s The snake case string to camelize # @return [String] - def self.camel(s="") - s =...
update camel to allow lower case first letter optionally
randym_axlsx
train
dc634bf44c76fe1b4c96c3825722c6ec8c75341b
diff --git a/EntityContext.js b/EntityContext.js index <HASH>..<HASH> 100644 --- a/EntityContext.js +++ b/EntityContext.js @@ -684,10 +684,23 @@ var noop = function(){}; var def = store.ec.definition(ent._type); //TODO make this smarter $.each(def.properties, function(){ - ent[this.name] = + var valu...
Modified handling of special characters that were breaking JSON output in instances when the value of an Entity's field contained certain special characters.
DavidSouther_JEFRi
train
2e9e940e22c2231272e979bdd72a71764dec941f
diff --git a/activemodel/lib/active_model/attribute_assignment.rb b/activemodel/lib/active_model/attribute_assignment.rb index <HASH>..<HASH> 100644 --- a/activemodel/lib/active_model/attribute_assignment.rb +++ b/activemodel/lib/active_model/attribute_assignment.rb @@ -26,7 +26,7 @@ module ActiveModel # cat.nam...
Change safe guard to check for each_pair instead of stringify_keys
rails_rails
train
160e2f436f9e9d62ef38ac8f667ce97745711aec
diff --git a/src/Interactable.js b/src/Interactable.js index <HASH>..<HASH> 100644 --- a/src/Interactable.js +++ b/src/Interactable.js @@ -643,8 +643,8 @@ Interactable.prototype = { } else { // remove delegated events - for (var type in scope.delegatedEvents) { - ...
Fix Interactable#unset delegated event removal
taye_interact.js
train
dc198b57c3ce19e820a05880076bf9eded67afa7
diff --git a/src/Heyday/QueryBuilder/QueryBuilder.php b/src/Heyday/QueryBuilder/QueryBuilder.php index <HASH>..<HASH> 100644 --- a/src/Heyday/QueryBuilder/QueryBuilder.php +++ b/src/Heyday/QueryBuilder/QueryBuilder.php @@ -94,7 +94,7 @@ class QueryBuilder implements QueryBuilderInterface $results[]...
Don't return null as it makes that api inconsistent
heyday_silverstripe-querybuilder
train
bae74a43406038f97ed3f2e3a243849ccb4f7a07
diff --git a/johnny/cache.py b/johnny/cache.py index <HASH>..<HASH> 100644 --- a/johnny/cache.py +++ b/johnny/cache.py @@ -274,7 +274,13 @@ class QueryCacheBackend11(QueryCacheBackend): val = self.cache_backend.get(key, None) if val is not None: + signals.qc_hit.se...
add signal sending to QueryCacheBackend<I> and a test to make sure the signals are working
jmoiron_johnny-cache
train
18664833b2ae9ae6de386ccce0ce306966b68af4
diff --git a/lib/puppet/indirector/file_metadata/http.rb b/lib/puppet/indirector/file_metadata/http.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/indirector/file_metadata/http.rb +++ b/lib/puppet/indirector/file_metadata/http.rb @@ -20,9 +20,12 @@ class Puppet::Indirector::FileMetadata::Http < Puppet::Indirector::Gen...
(PUP-<I>) Fallback to partial GET if HEAD method is not allowed If HEAD method is not allowed, then fall back to a partial GET request.
puppetlabs_puppet
train
9aae2a7a210efddeb6cfad06a4ae9fc7560118d0
diff --git a/src/main/java/io/github/classgraph/TypeVariableSignature.java b/src/main/java/io/github/classgraph/TypeVariableSignature.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/github/classgraph/TypeVariableSignature.java +++ b/src/main/java/io/github/classgraph/TypeVariableSignature.java @@ -101,7 +101,12...
Make type resolution more robust to erroneous type signatures (#<I>)
classgraph_classgraph
train
e422143cddc971c1b9723877674a4f6cbeb6817d
diff --git a/log.go b/log.go index <HASH>..<HASH> 100644 --- a/log.go +++ b/log.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "github.com/Sirupsen/logrus" + "github.com/lytics/logrus" ) const (
Switching to use github.com/lytics/logrus fork This way the code is actually open source and can be pulled from our own forked repo.
araddon_gou
train
3004bb3664d5ac21eb0e037fb4d18db2155ae91b
diff --git a/lib/puppet/transaction/report.rb b/lib/puppet/transaction/report.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/transaction/report.rb +++ b/lib/puppet/transaction/report.rb @@ -390,11 +390,11 @@ class Puppet::Transaction::Report end def self.supported_formats - [:pson, :yaml] + [:json, :pson...
(PUP-<I>) Submit reports in JSON by default Previously, reports were only sent in PSON instead of JSON. Add json to the list of supported formats and use Puppet[:preferred_serialization_format] as the default, which is json unless downgraded pson.
puppetlabs_puppet
train
9fe611498ccc837e18c227a4276c14905f007953
diff --git a/airflow/models.py b/airflow/models.py index <HASH>..<HASH> 100644 --- a/airflow/models.py +++ b/airflow/models.py @@ -816,7 +816,8 @@ class TaskInstance(Base): .first() ) if not pool: - return False + raise ValueError('Task specified a pool ({}) but the ...
Raise an error if a pool doesn't exist
apache_airflow
train
c488d81a025ce9699887bd5c96bb7d3cb9023db2
diff --git a/src/app-constants.js b/src/app-constants.js index <HASH>..<HASH> 100644 --- a/src/app-constants.js +++ b/src/app-constants.js @@ -40,7 +40,7 @@ var consts = { size: 200 }, { label: 'large', - size: 1200 + size: 1000 }] };
Decrease default image variation size "large" to <I>px
pagespace_pagespace
train
0c163dae9ff5217054ff473c2b3d18552785453c
diff --git a/src/editor/CodeHintManager.js b/src/editor/CodeHintManager.js index <HASH>..<HASH> 100644 --- a/src/editor/CodeHintManager.js +++ b/src/editor/CodeHintManager.js @@ -389,7 +389,6 @@ define(function (require, exports, module) { // Pass to the hint list, if it's open if (hintList && hintL...
Don't turn off shouldShowHintsOnChange too early
adobe_brackets
train
2fcb216d96edb0eeb38d743e8b3eac86f4585d01
diff --git a/example/client.js b/example/client.js index <HASH>..<HASH> 100644 --- a/example/client.js +++ b/example/client.js @@ -7,6 +7,6 @@ http.createServer(function (req, res) { var client = xmlrpc.createClient() console.log(client) -client.call('dosomething', ['param1', 2, 2.2, true, false, ['a', 'b', 'c']], ...
Adds support for XML-RPC's struct and nil to message calls.
baalexander_node-xmlrpc
train
0a60d623a31e57ba5371687eb4e318db426ef00e
diff --git a/jsonschema/cli.py b/jsonschema/cli.py index <HASH>..<HASH> 100644 --- a/jsonschema/cli.py +++ b/jsonschema/cli.py @@ -55,7 +55,7 @@ class CliOutputWriter(): file_name=file_name, exception=exception, ) - else: + else: # pragma: no cover ...
[CLI] Add pragma no cover for some safenet code
Julian_jsonschema
train
d10865dd54160f5c4d49c4cc13d44aa7732fce65
diff --git a/alot/db/message.py b/alot/db/message.py index <HASH>..<HASH> 100644 --- a/alot/db/message.py +++ b/alot/db/message.py @@ -232,12 +232,12 @@ class Message(object): content = part.get_payload(decode=True) ct = helper.guess_mimetype(content) - if cd.s...
Dirty fix for case-(in)sensitive MIME matching. Simply cast every string to lower() when matching MIME media type and subtype. Matching is always case-insensitive as per RFC<I>, <I>.
pazz_alot
train
5aaa503a4d0ac0b8caad244f0ae4b198ac9a0a80
diff --git a/gui/src/main/java/org/jboss/as/console/client/domain/hosts/ColumnHostView.java b/gui/src/main/java/org/jboss/as/console/client/domain/hosts/ColumnHostView.java index <HASH>..<HASH> 100644 --- a/gui/src/main/java/org/jboss/as/console/client/domain/hosts/ColumnHostView.java +++ b/gui/src/main/java/org/jboss/...
Prevent chaining of revelaRelative() calls in domain runtime
hal_core
train
ad557613916a6e5b0a1f8c4cce96dac4bdf9fe7b
diff --git a/cmd/systemdutil/systemdutil.go b/cmd/systemdutil/systemdutil.go index <HASH>..<HASH> 100644 --- a/cmd/systemdutil/systemdutil.go +++ b/cmd/systemdutil/systemdutil.go @@ -21,16 +21,20 @@ const ( ) // ExecuteCommand executes a command in a cgroup and programs Trireme -func ExecuteCommand(arguments map[st...
Fixed: ExecuteCommand now returns an error if it fails to launch the process. The keys metadata and servicename have been replaced by service-name and label (#<I>)
aporeto-inc_trireme-lib
train
de1d75a6f05075952473c4f377fd7a77abb2bb5f
diff --git a/MAVProxy/mavproxy.py b/MAVProxy/mavproxy.py index <HASH>..<HASH> 100755 --- a/MAVProxy/mavproxy.py +++ b/MAVProxy/mavproxy.py @@ -796,7 +796,7 @@ if __name__ == '__main__': parser.add_option("--source-component", dest='SOURCE_COMPONENT', type='int', default=0, help='MAVLink sour...
link: default --target-system to 0
ArduPilot_MAVProxy
train
58a3c41b2401ef71de2b58a4406bbe7b1e3dd0f8
diff --git a/src/org/opencms/main/I_CmsEventListener.java b/src/org/opencms/main/I_CmsEventListener.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/main/I_CmsEventListener.java +++ b/src/org/opencms/main/I_CmsEventListener.java @@ -1,7 +1,7 @@ /* * File : $Source: /alkacon/cvs/opencms/src/org/opencms/main/I...
- changed KEYS for event handling
alkacon_opencms-core
train
d3a38bc00813e48d3462a27144c5406894dbf96a
diff --git a/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java b/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java index <HASH>..<HASH> 100644 --- a/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java +++ b/platform/android/Rhodes/src/com/rhomobile/r...
fixed issue with rotated camera image on android
rhomobile_rhodes
train
cdbc9a1c4df92c44be1e9fae4d5be6f87828ce86
diff --git a/lib/simple_crud/base_controller.rb b/lib/simple_crud/base_controller.rb index <HASH>..<HASH> 100644 --- a/lib/simple_crud/base_controller.rb +++ b/lib/simple_crud/base_controller.rb @@ -26,7 +26,7 @@ module SimpleCrud # GET /resources # GET /resources.json def index - resources_set mode...
Renamed model to resource in base controller
dsaenztagarro_simplecrud
train
bcb61fc2c4b55e5e221a4baae16b72b0e25d1329
diff --git a/allantools/allantools.py b/allantools/allantools.py index <HASH>..<HASH> 100644 --- a/allantools/allantools.py +++ b/allantools/allantools.py @@ -341,20 +341,6 @@ def adev_phase_calc(data, rate, mj, stride): return dev, deverr, n - -def remove_small_ns(taus, devs, deverrs, ns): - """ if n is sm...
Deleted 2 duplicated functions I noticed that some functions where defined twice in the source : - tau_m only differs by some commentary lines, I kept the one with the most detailed comments - remove_small_ns is different, I kept the one which accepts 2 possible sets of parameters.
aewallin_allantools
train
9a3ee0c56148ccd84ac5d315f017ce4267f0feac
diff --git a/src/client/pkg/grpcutil/stream.go b/src/client/pkg/grpcutil/stream.go index <HASH>..<HASH> 100644 --- a/src/client/pkg/grpcutil/stream.go +++ b/src/client/pkg/grpcutil/stream.go @@ -103,11 +103,24 @@ func (s *streamingBytesWriter) Write(p []byte) (int, error) { return len(p), nil } +// Go's io.CopyBuf...
Rewrite the code that gets us around io.CopyBuffer's undesirable optimization
pachyderm_pachyderm
train
b21636953c602f969adde2c3bd342c4b17e91968
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -14,7 +14,6 @@ module.exports = function(config) { // list of files / patterns to load in the browser files: [ 'ie8-shims.js', - 'src/**/*.js', 'test/**/*.js' ], @@ -26,7 +25,6 @@ modul...
Don't load unnecessary source code in Karma
BladeRunnerJS_topiarist
train
b0eb39a19e4277672e653587dcde0de1f7928318
diff --git a/addon/components/mapbox-gl-on.js b/addon/components/mapbox-gl-on.js index <HASH>..<HASH> 100644 --- a/addon/components/mapbox-gl-on.js +++ b/addon/components/mapbox-gl-on.js @@ -49,7 +49,7 @@ const MapboxGlOnComponent = Component.extend({ const event = get(this, 'event'); assert(`mapbox-gl-event ...
Remove toLowerCase for event strings; update tests
kturney_ember-mapbox-gl
train
cd4d5056acf9c1d68bb791ba252653f75517dd83
diff --git a/examples/bench/server/server.go b/examples/bench/server/server.go index <HASH>..<HASH> 100644 --- a/examples/bench/server/server.go +++ b/examples/bench/server/server.go @@ -85,23 +85,23 @@ func setupServer(host string, basePort, instanceNum int) error { } type kvHandler struct { - mut sync.RWMutex + ...
Embed mutex in example code
uber_tchannel-go
train
038dcbb5b30e75e312bbd7ec44eba1f5711e60c3
diff --git a/modules/activiti-cycle/src/main/java/org/activiti/cycle/impl/CycleServiceImpl.java b/modules/activiti-cycle/src/main/java/org/activiti/cycle/impl/CycleServiceImpl.java index <HASH>..<HASH> 100644 --- a/modules/activiti-cycle/src/main/java/org/activiti/cycle/impl/CycleServiceImpl.java +++ b/modules/activiti...
Activiti Cycle: fixed Serialization / Deserialization issues (hopefully)
Activiti_Activiti
train
b80fe52375c327024c95bdfa58c4ca658911998b
diff --git a/tests/pod_users_test.py b/tests/pod_users_test.py index <HASH>..<HASH> 100644 --- a/tests/pod_users_test.py +++ b/tests/pod_users_test.py @@ -26,8 +26,10 @@ class Pod_Users_test(unittest.TestCase): def test_get_user_id_by_email(self): ''' test get_user_id_by_email ''' # register resp...
fixing test to be more sane
symphonyoss_python-symphony
train
49843fa83e496c5b572b35714bd1ccaea0ea6032
diff --git a/Admin/PostAdmin.php b/Admin/PostAdmin.php index <HASH>..<HASH> 100644 --- a/Admin/PostAdmin.php +++ b/Admin/PostAdmin.php @@ -200,7 +200,7 @@ class PostAdmin extends AbstractAdmin /** * {@inheritdoc} */ - protected function configureSideMenu(MenuItemInterface $menu, $action, AdminInterf...
Avoid deprecated method name configureSideMenu() has been deprecated in favor of configureTabMenu() ages ago.
sonata-project_SonataNewsBundle
train
d98bddac152b8e81adb1967668e96cc565fdb6e4
diff --git a/cmd/minikube/cmd/start_test.go b/cmd/minikube/cmd/start_test.go index <HASH>..<HASH> 100644 --- a/cmd/minikube/cmd/start_test.go +++ b/cmd/minikube/cmd/start_test.go @@ -71,6 +71,9 @@ func TestGetKuberneterVersion(t *testing.T) { } func TestGenerateCfgFromFlagsHTTPProxyHandling(t *testing.T) { + // Set...
Set viper default in a better place
kubernetes_minikube
train
f57b7e2d29c6211d16ffa52a0998272f75799030
diff --git a/cookie_go111_test.go b/cookie_go111_test.go index <HASH>..<HASH> 100644 --- a/cookie_go111_test.go +++ b/cookie_go111_test.go @@ -4,7 +4,6 @@ package sessions import ( "net/http" - "strconv" "testing" ) @@ -19,14 +18,12 @@ func TestNewCookieFromOptionsSameSite(t *testing.T) { {http.SameSiteStr...
Don't use t.Run in tests, not supported in earlier Go versions This package is meant to work on Go versions going back to Go <I>, which means tests can't use testing.T.Run which doesn't exists in Go <I> and earlier.
gorilla_sessions
train
aef5a0084876b97496167ecc3b61b15472294dbd
diff --git a/controller/src/test/java/io/pravega/controller/store/stream/HostStoreTest.java b/controller/src/test/java/io/pravega/controller/store/stream/HostStoreTest.java index <HASH>..<HASH> 100644 --- a/controller/src/test/java/io/pravega/controller/store/stream/HostStoreTest.java +++ b/controller/src/test/java/io/...
Issue <I>: Sporadic failure of HostStoreTest.zkHostStoreTests (#<I>) * Adds a second CompletableFuture for the test to wait for completion to deal with the behavior introduced by PR <I>.
pravega_pravega
train
6a49a0fb8118ae9c1355edecedb952fe40a8a3d2
diff --git a/scheduler/generic_sched.go b/scheduler/generic_sched.go index <HASH>..<HASH> 100644 --- a/scheduler/generic_sched.go +++ b/scheduler/generic_sched.go @@ -74,7 +74,7 @@ const ( ) // minVersionMaxClientDisconnect is the minimum version that supports max_client_disconnect. -var minVersionMaxClientDisconne...
set minimum version for disconnected client mode to <I> (#<I>)
hashicorp_nomad
train
4a5089ef5252c0c23e2d661d7a3d9e015593f29b
diff --git a/src/geo/map.js b/src/geo/map.js index <HASH>..<HASH> 100644 --- a/src/geo/map.js +++ b/src/geo/map.js @@ -81,18 +81,16 @@ var Map = Model.extend({ }, createPlainLayer: function (attrs, options) { - this._checkProperties(attrs, ['color']); - return this._addNewLayerModel('plain', attrs, option...
Removed map.createBackgroundLayer in favor of map.createPlainLayer + image attribute
CartoDB_carto.js
train
bface4d53caeabb052ac390bf0cae91971bd4f10
diff --git a/gridsome/app/head.js b/gridsome/app/head.js index <HASH>..<HASH> 100644 --- a/gridsome/app/head.js +++ b/gridsome/app/head.js @@ -30,10 +30,10 @@ const head = { link: [] } -icons.favicons.forEach(({ type, width, height, src: href }) => { +icons.favicons.forEach(({ width, height, src: href }) => { ...
fix(favicon): set mime type for icons in head
gridsome_gridsome
train
42b1d49aff910107b687552cc09aa73f89a11b56
diff --git a/bibliopixel/util/colors/wheel.py b/bibliopixel/util/colors/wheel.py index <HASH>..<HASH> 100644 --- a/bibliopixel/util/colors/wheel.py +++ b/bibliopixel/util/colors/wheel.py @@ -1,6 +1,3 @@ -WHEEL_MAX = 384 - - def _gen_wheel(): result = [] for p in range(385): @@ -28,15 +25,10 @@ def wheel_colo...
Fix wheel to cycle and accept floating parameters
ManiacalLabs_BiblioPixel
train
060c2e4186441759d0a5cb4db153c89d68d4d347
diff --git a/Library/Bullhorn/FastRest/UnitTestHelper/Base.php b/Library/Bullhorn/FastRest/UnitTestHelper/Base.php index <HASH>..<HASH> 100644 --- a/Library/Bullhorn/FastRest/UnitTestHelper/Base.php +++ b/Library/Bullhorn/FastRest/UnitTestHelper/Base.php @@ -106,6 +106,22 @@ abstract class Base extends PHPUnit_Framewor...
Added findFirst to the parsable phql tests
bullhorn_fast-rest
train
bbc1cb82702b678b21bef15394f067c146e47625
diff --git a/filesystem/Upload.php b/filesystem/Upload.php index <HASH>..<HASH> 100644 --- a/filesystem/Upload.php +++ b/filesystem/Upload.php @@ -270,9 +270,11 @@ class Upload extends Controller { /** * Clear out all errors (mostly set by {loadUploaded()}) + * including the validator's errors */ public f...
FIX #<I> iframe transport multi file upload FIX #<I>, FIX #<I> UploadField now handles multiple file upload through iframe transport correctly (mainly for IE) as well as upload errors on a per file basis.
silverstripe_silverstripe-framework
train
28d373e90dcbbba2dcaabdde33f8349b1dfbef38
diff --git a/hazelcast-client/src/test/java/com/hazelcast/client/topic/Issue9766Test.java b/hazelcast-client/src/test/java/com/hazelcast/client/topic/Issue9766Test.java index <HASH>..<HASH> 100644 --- a/hazelcast-client/src/test/java/com/hazelcast/client/topic/Issue9766Test.java +++ b/hazelcast-client/src/test/java/com...
fixes Issue<I>Test.serverRestartWhenReliableTopicListenerRegistered Test was failing because client can not connect to cluster. Test is fixed via setting connection attemp limit to Integer.MAX fixes #<I>
hazelcast_hazelcast
train
545481b6368af4446c3742b386eb00172c4e44b1
diff --git a/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/ONewDistributedResponseManager.java b/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/ONewDistributedResponseManager.java index <HASH>..<HASH> 100644 --- a/distributed/src/main/java/com/orientechno...
made sure to not track transaction still running answers
orientechnologies_orientdb
train
31fea7e5651994b8d06adea0fdc1419fd7e49563
diff --git a/views/js/qtiCreator/widgets/Widget.js b/views/js/qtiCreator/widgets/Widget.js index <HASH>..<HASH> 100755 --- a/views/js/qtiCreator/widgets/Widget.js +++ b/views/js/qtiCreator/widgets/Widget.js @@ -177,7 +177,7 @@ define([ if(currentState){ // hide widget tooltips when inter...
Remove unnecessary interaction check in if-statement
oat-sa_extension-tao-itemqti
train
945384cca227924e8f7f1eb9151e124de5871766
diff --git a/js/test/base/functions/test.number.js b/js/test/base/functions/test.number.js index <HASH>..<HASH> 100644 --- a/js/test/base/functions/test.number.js +++ b/js/test/base/functions/test.number.js @@ -17,7 +17,7 @@ assert (numberToString (7.9e27) === '7900000000000000000000000000'); assert (numberToString (-...
test.number.js minor edits
ccxt_ccxt
train
1b29633be90eb148a0c0fe884324f77d9b4fca69
diff --git a/lib/access_control_admin.py b/lib/access_control_admin.py index <HASH>..<HASH> 100644 --- a/lib/access_control_admin.py +++ b/lib/access_control_admin.py @@ -993,7 +993,7 @@ def acc_get_action_id(name_action): try: return run_sql("""SELECT id FROM accACTION WHERE name = %s""", - (nam...
WebAccess: use DB slave for even more queries * Adds the run_on_slave=True argument to frequently used SQL SELECT queries on tables 'accACTION', 'accARGUMENT', 'accMAILCOOKIE, 'accROLE' and 'accROLE_accACTION_accARGUMENT'. This commit also affects functions executed in webaccessadmin_lib.py.
inveniosoftware_invenio-access
train
a42c4eb2bb37be3e988bb88936e9759223cd3269
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +import re from setuptools import setup, find_packages import sys @@ -49,6 +50,6 @@ setup(name='baselines', try: from distutils.version import StrictVersion import tensorflow - assert StrictVersi...
Fix setup.py for tensorflow -rc versions
openai_baselines
train
cdfae2dc1d768e05378cb2792d32bf88e441f822
diff --git a/request-server.go b/request-server.go index <HASH>..<HASH> 100644 --- a/request-server.go +++ b/request-server.go @@ -140,19 +140,18 @@ func (rs *RequestServer) packetWorker() error { if err != nil { return err } continue case hasPath: - handle = rs.nextRequest(newRequest(pkt.getPath(), rs)) +...
pass/store handlers on request vs server
pkg_sftp
train
17ee5ea811df3a295b280e62a2ce443fb45b38ce
diff --git a/structurizr-core/src/com/structurizr/view/View.java b/structurizr-core/src/com/structurizr/view/View.java index <HASH>..<HASH> 100644 --- a/structurizr-core/src/com/structurizr/view/View.java +++ b/structurizr-core/src/com/structurizr/view/View.java @@ -20,6 +20,9 @@ import java.util.stream.Collectors; *...
Adds a method to enable Graphviz auto-layout, with some defaults.
structurizr_java
train
82cb3df7e028bd1b861457c359afe7fcb1a2c46d
diff --git a/lib/doctor.js b/lib/doctor.js index <HASH>..<HASH> 100644 --- a/lib/doctor.js +++ b/lib/doctor.js @@ -724,6 +724,14 @@ function callHook(type, filename, info) { } } +/* @private */ +function wrapCall(fn, ctx, args, filename, info) { + callHook('enter', filename, info); + var result = fn.apply(ctx, ...
hooks for enter/exit of calls
jdeal_doctor
train
5c791b60536df392042deb0bb6808a8290d3d39b
diff --git a/dev/com.ibm.websphere.javaee.jsf.2.3/src/javax/faces/event/WebsocketEvent.java b/dev/com.ibm.websphere.javaee.jsf.2.3/src/javax/faces/event/WebsocketEvent.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.websphere.javaee.jsf.2.3/src/javax/faces/event/WebsocketEvent.java +++ b/dev/com.ibm.websphere.javaee...
Issue #<I>: update WebsocketEvent.getUser signature
OpenLiberty_open-liberty
train
2692cb530605bdb3f263b330523e8c7bf0a4531c
diff --git a/lib/mxit_rails/mxit_api/auth_token.rb b/lib/mxit_rails/mxit_api/auth_token.rb index <HASH>..<HASH> 100644 --- a/lib/mxit_rails/mxit_api/auth_token.rb +++ b/lib/mxit_rails/mxit_api/auth_token.rb @@ -1,6 +1,7 @@ module MxitRails::MxitApi class AuthToken - attr_reader :access_token, :type, :expires_in,...
Added method to test if the refresh token has expired.
linsen_mxit-rails
train
caef8ed897e726b84642dc8b0609169a27ab4e6e
diff --git a/src/cr/cube/crunch_cube.py b/src/cr/cube/crunch_cube.py index <HASH>..<HASH> 100644 --- a/src/cr/cube/crunch_cube.py +++ b/src/cr/cube/crunch_cube.py @@ -382,6 +382,14 @@ class CrunchCube(object): adjusted=adjusted, include_transforms_for_dims=transform_dims, ) + + ...
Implement fix for the axis vs shape mismatch (restore flattened dimension)
Crunch-io_crunch-cube
train
fe3e87d1e4c9ad977b25e0cff723f9ec5da85484
diff --git a/src/Peach/Http/Header/CookieItem.php b/src/Peach/Http/Header/CookieItem.php index <HASH>..<HASH> 100644 --- a/src/Peach/Http/Header/CookieItem.php +++ b/src/Peach/Http/Header/CookieItem.php @@ -49,7 +49,8 @@ class CookieItem private $value; /** - * + * この cookie が持つ属性をあらわします. + ...
Modified PHPdoc comments of CookieItem
trashtoy_PEACH2
train
f088ef2719bd222fe8c29e3dcd72e0b8c007ac87
diff --git a/fixed.go b/fixed.go index <HASH>..<HASH> 100644 --- a/fixed.go +++ b/fixed.go @@ -85,18 +85,19 @@ func (f *fixed) readNFrom(expected int64, reader io.Reader) (bytes, int64, error } } -func (f *fixed) WriteTo(w io.Writer) (int64, error) { - var at int64 - l := int64(f.length) - for at < l { - n, err :...
WriteTo interacts properly with ReadX methods
karlseguin_bytepool
train
e2e96bb793daf3c68272cab7727377681b022306
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -533,7 +533,6 @@ window.CodeMirror = (function() { var lineElement = line.hidden ? elt("div") : lineContent(cm, line); var markers = line.gutterMarkers, display = cm.display; - ...
Move line.className check to buildLineContent This way, it is also used when measuring the line.
codemirror_CodeMirror
train
bf6fffc4f7950b3b110fab0aaaeb4ff5b4d84ba5
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -18,7 +18,7 @@ import stage2 from "./config/stage2" import stage3 from "./config/stage3" const pkg = require(resolve(process.cwd(), "package.json")) -const external = Object.keys(pkg.dependencies).concat(bu...
Support for non existing 'dependencies' key in package.json + added filtering for devDeps + peerDeps
sebastian-software_preppy
train
f87d16446ea54e65d5f7dccd0126134fa67dd18f
diff --git a/experiment/manual-trigger/manual-trigger.go b/experiment/manual-trigger/manual-trigger.go index <HASH>..<HASH> 100644 --- a/experiment/manual-trigger/manual-trigger.go +++ b/experiment/manual-trigger/manual-trigger.go @@ -55,8 +55,8 @@ func flagOptions() options { flag.StringVar(&o.jenkinsTokenFile, "jen...
Added Default API and GrpahQL Endpoints - manual trigger
kubernetes_test-infra
train
1d84cf1d0a9de3d6c5a9b418d0731b5214d14667
diff --git a/lib/nesser/packets/constants.rb b/lib/nesser/packets/constants.rb index <HASH>..<HASH> 100644 --- a/lib/nesser/packets/constants.rb +++ b/lib/nesser/packets/constants.rb @@ -19,7 +19,7 @@ module Nesser ('a'..'z').to_a + ('A'..'Z').to_a + ('0'..'9').to_a + - ['-', '.', '@'] + ['-', '.',...
Added underscore as a valid character i na DNS name
iagox86_nesser
train
1fc21c4b8d9fdaa18396473fd8beb031157d8cea
diff --git a/oauth2client/old_run.py b/oauth2client/old_run.py index <HASH>..<HASH> 100644 --- a/oauth2client/old_run.py +++ b/oauth2client/old_run.py @@ -23,6 +23,7 @@ import sys import webbrowser import gflags +from six.moves import input from oauth2client import client from oauth2client import util @@ -147,7...
Use six to call raw_input for Python 3 support In Python 3 `raw_input` was renamed to `input`. Start to use the compatibility library to call the function. <URL>
googleapis_oauth2client
train
72f7fae3141d75906955e2c30f34668e2f78b9d9
diff --git a/lib/gush/cli.rb b/lib/gush/cli.rb index <HASH>..<HASH> 100644 --- a/lib/gush/cli.rb +++ b/lib/gush/cli.rb @@ -34,6 +34,9 @@ module Gush end desc "show [workflow_id]", "Shows details about workflow with given ID" + option :skip_overview, type: :boolean + option :skip_jobs, type: :boolean +...
Changes in gush show command - Added ability to skip overview by --skip-overview option - Added ability to skip jobs list by --skip-jobs option - Added ability to filter jobs type in jobs list by --jobs (all|running|done|failed) option
chaps-io_gush
train
0961b0807c106018f1316ae014f674bb7b3eca83
diff --git a/src/Links.php b/src/Links.php index <HASH>..<HASH> 100644 --- a/src/Links.php +++ b/src/Links.php @@ -29,7 +29,7 @@ class Links private function parseLinks(\stdClass $links) { foreach (get_object_vars($links) as $property => $value) { - if ($property=="checkout") { // nested l...
- add unit test to billet payment - fix checkout links
wirecardBrasil_moip-sdk-php
train
dac1ce4172b006540b91e2fe12d916a52de33885
diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php @@ -14,7 +14,6 @@ final class GH6...
#<I> removing profile entity, since it is not needed to reproduce the issue
doctrine_orm
train
fceca0cbbcce3e3eb9117dc0a41e9087a2a13843
diff --git a/lib/coverband/utils/railtie.rb b/lib/coverband/utils/railtie.rb index <HASH>..<HASH> 100644 --- a/lib/coverband/utils/railtie.rb +++ b/lib/coverband/utils/railtie.rb @@ -12,6 +12,10 @@ module Coverband Coverband.runtime_coverage! end + config.before_initialize do + Coverband.eager_loa...
Call eager_loading in rails before_initialize Since configure resets, we need to call configure afterward again in before_initialize. I believe this problem would only occur within tests when calling configure multiple times.
danmayer_coverband
train
5e56f0731c4f027064e7862f2139968d9c70e611
diff --git a/tofu/utils.py b/tofu/utils.py index <HASH>..<HASH> 100644 --- a/tofu/utils.py +++ b/tofu/utils.py @@ -2444,7 +2444,7 @@ class KeyHandler_mpl(object): #--------------- # Preliminary checks - ls = ['nMax','key','defid','defax'] + ls = ['nMax','key','defax'] for k,v ...
Debugged tf.utils.KeyHandler_mpl() regarding conflicting dgroup[g]['drefid'] and dgroup[g]['defax'], now defid is not user-specified but derived from dgroup[g]['defax'] and dax
ToFuProject_tofu
train
c0bc28954da80a94f213be932885dd4b1bbb003e
diff --git a/lib/BoundTCPSocket.php b/lib/BoundTCPSocket.php index <HASH>..<HASH> 100755 --- a/lib/BoundTCPSocket.php +++ b/lib/BoundTCPSocket.php @@ -12,7 +12,7 @@ class BoundTCPSocket extends BoundSocket { public $reuse = false; public $host; public $port; - public $listenerMode = true; + public $listenerMode =...
Turned off default BoundTCPSocket->listenerMode to be compatible with eio.
kakserpom_phpdaemon
train
f54b3b2e9b09caefd494126dad1a6434125697b9
diff --git a/spec/branch_cover_spec.rb b/spec/branch_cover_spec.rb index <HASH>..<HASH> 100644 --- a/spec/branch_cover_spec.rb +++ b/spec/branch_cover_spec.rb @@ -53,8 +53,8 @@ RSpec::Matchers.define :have_correct_branch_coverage do |filename, lineno| @errors.empty? end failure_message do |fn| - puts Deep...
branch spec failure message now include the spec code ...Instead of printing it when it happens
deep-cover_deep-cover
train
2e807de0092622c62c382adec9929d4df53aec5b
diff --git a/python/lib/uploader.py b/python/lib/uploader.py index <HASH>..<HASH> 100644 --- a/python/lib/uploader.py +++ b/python/lib/uploader.py @@ -167,7 +167,7 @@ def get_authentication_info(): def upload_done_file(params): - print("Upload a DONE file to tell the backend that the sequence is all uploaded an...
Handle naming with no exif during upload
mapillary_mapillary_tools
train
ace9a96fc2cdd5962deab0f48f9064cfa8212788
diff --git a/src/blocks/scratch3_motion.js b/src/blocks/scratch3_motion.js index <HASH>..<HASH> 100644 --- a/src/blocks/scratch3_motion.js +++ b/src/blocks/scratch3_motion.js @@ -37,7 +37,7 @@ Scratch3MotionBlocks.prototype.getPrimitives = function() { Scratch3MotionBlocks.prototype.moveSteps = function (args, util)...
Fix degToRad function definition. Resolves GH-<I>
LLK_scratch-vm
train
7735164d24245555ee377f792a8bd9dbea31b586
diff --git a/src/stream/line.js b/src/stream/line.js index <HASH>..<HASH> 100644 --- a/src/stream/line.js +++ b/src/stream/line.js @@ -4,39 +4,18 @@ */ /*#ifndef(UMD)*/ "use strict"; +/*global _GpfStreamBufferedRead*/ // gpf.stream.BufferedRead +/*global _gpfArrayForEach*/ // Almost like [].forEach (undefined are a...
Simplify code (#<I>)
ArnaudBuchholz_gpf-js
train
3bd14d0e2d8ecb575f6213789bffbf565b2ad2b9
diff --git a/providers/line/line.go b/providers/line/line.go index <HASH>..<HASH> 100644 --- a/providers/line/line.go +++ b/providers/line/line.go @@ -7,7 +7,6 @@ import ( "encoding/json" "io/ioutil" "net/http" - "strings" "fmt" @@ -123,10 +122,8 @@ func (p *Provider) FetchUser(session goth.Session) (goth.U...
Removed splitting DisplayName and added the PictureURL as part of the data
markbates_goth
train
9210bac0e4c849270dc5b5d15237a1491c22ef34
diff --git a/src/Services/FieldSetFieldFinder.php b/src/Services/FieldSetFieldFinder.php index <HASH>..<HASH> 100644 --- a/src/Services/FieldSetFieldFinder.php +++ b/src/Services/FieldSetFieldFinder.php @@ -237,8 +237,12 @@ class FieldSetFieldFinder } elseif( $field instanceof HasOne ) { - ...
Fix issue with arbory image field validation in new nodes
arbory_arbory
train
0830eda63d04537d592b482c6ed7abbac1be0b4b
diff --git a/library/CM/SmartyPlugins/function.select.php b/library/CM/SmartyPlugins/function.select.php index <HASH>..<HASH> 100644 --- a/library/CM/SmartyPlugins/function.select.php +++ b/library/CM/SmartyPlugins/function.select.php @@ -55,6 +55,9 @@ function smarty_function_select(array $params, Smarty_Internal_Temp...
also cast selectedValue to string
cargomedia_cm
train
be86d0cd46ab3929b959e1e76298725e56967473
diff --git a/src/TextureAppChrome.js b/src/TextureAppChrome.js index <HASH>..<HASH> 100644 --- a/src/TextureAppChrome.js +++ b/src/TextureAppChrome.js @@ -1,6 +1,12 @@ -import { Component, DefaultDOMElement, platform } from 'substance' +import { Component, DefaultDOMElement, platform, Router } from 'substance' expor...
Move router intialization to TextureAppChrome.
substance_texture
train
4302bcfa35d23b099e073c9f7831c68962bf2b6a
diff --git a/resources/lang/fa-IR/notifications.php b/resources/lang/fa-IR/notifications.php index <HASH>..<HASH> 100644 --- a/resources/lang/fa-IR/notifications.php +++ b/resources/lang/fa-IR/notifications.php @@ -85,6 +85,14 @@ return [ 'action' => 'Verify', ], ], + 'man...
New translations notifications.php (Persian)
CachetHQ_Cachet
train
c70f242676abf2e0c8b3a00745932d2327614c83
diff --git a/impact_functions/tables.py b/impact_functions/tables.py index <HASH>..<HASH> 100644 --- a/impact_functions/tables.py +++ b/impact_functions/tables.py @@ -119,7 +119,7 @@ class TableCell (object): """ def __init__(self, text="", bgcolor=None, header=False, width=None, - align=None, ch...
Fixed issues with table cell alignment and non iterable rows. Closes #<I>.
inasafe_inasafe
train
82ae2544845e4fdaee804523025e535ccbc4f1d3
diff --git a/src/cmd/handshake/client-handshake-response.js b/src/cmd/handshake/client-handshake-response.js index <HASH>..<HASH> 100644 --- a/src/cmd/handshake/client-handshake-response.js +++ b/src/cmd/handshake/client-handshake-response.js @@ -16,7 +16,7 @@ const NativePasswordAuth = require("./auth/native_password_...
trying to detect racecondition issue appveyor - part 2
MariaDB_mariadb-connector-nodejs
train
8c6d01f55db21fcc17e728a7acae55bd503f132e
diff --git a/test/genfun.js b/test/genfun.js index <HASH>..<HASH> 100644 --- a/test/genfun.js +++ b/test/genfun.js @@ -140,6 +140,65 @@ describe("Genfun", function() { describe("variable arity dispatch", function() { it("treats 'unfilled' spaces like Object.prototype when comparing " + "methods with dispat...
Moved big blobby test to a better place
zkat_genfun
train
fc41e9a35956cc3e785830208dbddd69d20cba3e
diff --git a/Resources/public/js/views/fields/ez-richtext-editview.js b/Resources/public/js/views/fields/ez-richtext-editview.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/views/fields/ez-richtext-editview.js +++ b/Resources/public/js/views/fields/ez-richtext-editview.js @@ -12,6 +12,7 @@ YUI.add('ez-richtex...
EZP-<I>: Improved the handling of empty RichText field
ezsystems_PlatformUIBundle
train
736158dc09e10f1911ca3a1e1b01f11b566ce5db
diff --git a/doc.go b/doc.go index <HASH>..<HASH> 100644 --- a/doc.go +++ b/doc.go @@ -84,16 +84,16 @@ You may use one of several pre-defined schedules in place of a cron expression. Intervals -You may also schedule a job to execute at fixed intervals. This is supported by -formatting the cron spec like this: +Yo...
Clarify meaning of @every Fixes issue #<I>
robfig_cron
train
85840d3bf42d41ca7e4711218d01afeb6fcdc8b8
diff --git a/lib/surveyor/models/survey_methods.rb b/lib/surveyor/models/survey_methods.rb index <HASH>..<HASH> 100644 --- a/lib/surveyor/models/survey_methods.rb +++ b/lib/surveyor/models/survey_methods.rb @@ -40,6 +40,7 @@ module Surveyor end def title=(value) + return if value == self.title ...
stop survey titles from appending '1' to itself when calling update attributes
NUBIC_surveyor
train
817258b2720df633e36ea65ba8850a33d5894f7f
diff --git a/lib/piccolo.js b/lib/piccolo.js index <HASH>..<HASH> 100644 --- a/lib/piccolo.js +++ b/lib/piccolo.js @@ -94,6 +94,21 @@ Piccolo.prototype.build = function () { var self = this; async.parallel({ + routerSource: function (callback) { + fs.readFile(self.get('router'), 'utf8', function (error,...
[refactor] read router source code parallel
AndreasMadsen_piccolo
train
55bb6cf8f094e740b432dd31f1075d4175c7dfde
diff --git a/lib/pod/command/try.rb b/lib/pod/command/try.rb index <HASH>..<HASH> 100644 --- a/lib/pod/command/try.rb +++ b/lib/pod/command/try.rb @@ -7,6 +7,8 @@ module Pod # The pod try command. # class Try < Command + include RepoUpdate + self.summary = 'Try a Pod!' self.descripti...
Adopt changes necessary for CocoaPods/CocoaPods#<I>
CocoaPods_cocoapods-try
train
b80f8ba5ab74d46bdebc68589b97d281197e1144
diff --git a/src/server/create-bundle-renderer.js b/src/server/create-bundle-renderer.js index <HASH>..<HASH> 100644 --- a/src/server/create-bundle-renderer.js +++ b/src/server/create-bundle-renderer.js @@ -50,7 +50,9 @@ export function createBundleRendererCreator (createRenderer: () => Renderer) { runInVm(ent...
only map ssr stack trace if error is indeed an Error
IOriens_wxml-transpiler
train
fbdaf175c17cc6ea884a1506a79a211718fadb3d
diff --git a/src/test/java/com/authlete/common/dto/AuthzDetailsElementTest.java b/src/test/java/com/authlete/common/dto/AuthzDetailsElementTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/authlete/common/dto/AuthzDetailsElementTest.java +++ b/src/test/java/com/authlete/common/dto/AuthzDetailsElementTest.ja...
Added some tests for JsonParseException.
authlete_authlete-java-common
train
003bbe6a92c2538c51dbea56f69fb525eec22db6
diff --git a/lib/appium_lib/common/patch.rb b/lib/appium_lib/common/patch.rb index <HASH>..<HASH> 100644 --- a/lib/appium_lib/common/patch.rb +++ b/lib/appium_lib/common/patch.rb @@ -1,26 +1,5 @@ # encoding: utf-8 -# Add status to WebDriver -# https://code.google.com/p/selenium/issues/detail?id=5669 -class Selenium:...
Status is in the official bindings <URL>
appium_ruby_lib
train
b078bbd56ff5ead3dc3103c70b6d2728dd1c7671
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -74,7 +74,10 @@ function makeVisitor ({types: t}) { if (!this.__dv__) { return } - this.__dv__.exit(path) + const result = this.__dv__.exit(path) + ...
feat: add includeUntested option to expose coverage of all instrumented files (#<I>)
istanbuljs_babel-plugin-istanbul
train
3968d9cb7c956746992e34725fdb981306b7ba7d
diff --git a/plugin/s3/plugin.go b/plugin/s3/plugin.go index <HASH>..<HASH> 100644 --- a/plugin/s3/plugin.go +++ b/plugin/s3/plugin.go @@ -301,6 +301,9 @@ func (p S3Plugin) Validate(endpoint plugin.ShieldEndpoint) error { if err != nil { fmt.Printf("@R{\u2717 bucket %s}\n", err) fail = true + } e...
Explicitly disallow empty bucket names in s3 plugin
starkandwayne_shield
train
b3fa8bf7cbca6192bb1ea43eb47a7acbecb60ff0
diff --git a/src/Symfony/Bundle/SwiftmailerBundle/DependencyInjection/Configuration.php b/src/Symfony/Bundle/SwiftmailerBundle/DependencyInjection/Configuration.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bundle/SwiftmailerBundle/DependencyInjection/Configuration.php +++ b/src/Symfony/Bundle/SwiftmailerBundle/Dep...
[Swiftmailer] allowed any service to be used as a transport (closes #<I>)
symfony_symfony
train
d07e9012147b7a6447c45ac6eb0eb2d4d01bfea8
diff --git a/source/Application/Controller/Admin/LoginController.php b/source/Application/Controller/Admin/LoginController.php index <HASH>..<HASH> 100644 --- a/source/Application/Controller/Admin/LoginController.php +++ b/source/Application/Controller/Admin/LoginController.php @@ -101,6 +101,11 @@ class LoginControlle...
OXDEV-<I> Clean up before login
OXID-eSales_oxideshop_ce
train
9a8f26d30d4c9dc96878f4be83bc6b20a08a93b0
diff --git a/datasource-decorator-spring-boot-autoconfigure/src/main/java/com/github/gavlyukovskiy/cloud/sleuth/TracingJdbcEventListener.java b/datasource-decorator-spring-boot-autoconfigure/src/main/java/com/github/gavlyukovskiy/cloud/sleuth/TracingJdbcEventListener.java index <HASH>..<HASH> 100644 --- a/datasource-de...
Added order to brave listeners. Fixes #<I>
gavlyukovskiy_spring-boot-data-source-decorator
train
87bf3549f260da72e7eb06c7091dbf639dbcd329
diff --git a/cookiecutter/generate.py b/cookiecutter/generate.py index <HASH>..<HASH> 100755 --- a/cookiecutter/generate.py +++ b/cookiecutter/generate.py @@ -37,7 +37,8 @@ def generate_context(context_file='cookiecutter.json', default_context=None): Generates the context for a Cookiecutter project template. ...
Add docstrings to document generate_file's precondition and params. Fix other docstrings in generate too.
audreyr_cookiecutter
train
283f6314c3fee863db91c3aaf80bb1a25e0bd662
diff --git a/tests/integration/cloud/helpers/cloud_test_base.py b/tests/integration/cloud/helpers/cloud_test_base.py index <HASH>..<HASH> 100644 --- a/tests/integration/cloud/helpers/cloud_test_base.py +++ b/tests/integration/cloud/helpers/cloud_test_base.py @@ -101,20 +101,20 @@ class CloudTest(ShellCase): sh...
run cloud --query if delete string is not available
saltstack_salt
train
7a3a7a3171904ba30385d1e9c4a66d9f92f18429
diff --git a/py/h2o.py b/py/h2o.py index <HASH>..<HASH> 100644 --- a/py/h2o.py +++ b/py/h2o.py @@ -348,7 +348,7 @@ def decide_if_localhost(): # node_count is per host if hosts is specified. def build_cloud(node_count=2, base_port=54321, hosts=None, - timeoutSecs=30, retryDelaySecs=0.5, cleanup=True, rand_sh...
change default retry of cloud status to 1 sec in build_cloud
h2oai_h2o-2
train
cb4fab83a1fb6a95edef0e5c2eec5ad842f2cce4
diff --git a/framework/validators/FileValidator.php b/framework/validators/FileValidator.php index <HASH>..<HASH> 100644 --- a/framework/validators/FileValidator.php +++ b/framework/validators/FileValidator.php @@ -229,7 +229,9 @@ class FileValidator extends Validator */ public function isEmpty($value, $trim = fal...
fix isEmpty method for file validator.
yiisoft_yii-core
train
4239787dfca9c3a88d68919d49dba40cfae40140
diff --git a/src/org/jgroups/Event.java b/src/org/jgroups/Event.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/Event.java +++ b/src/org/jgroups/Event.java @@ -1,4 +1,4 @@ -// $Id: Event.java,v 1.15 2006/03/17 09:28:08 belaban Exp $ +// $Id: Event.java,v 1.16 2006/04/28 15:15:20 belaban Exp $ package org.jgro...
removed BLOCK_SENDING and UNBLOCK_SENDING
belaban_JGroups
train
19bbf829477b199e0b7c9f75f9f39b578c4e1ebf
diff --git a/src/createToken.js b/src/createToken.js index <HASH>..<HASH> 100644 --- a/src/createToken.js +++ b/src/createToken.js @@ -19,13 +19,13 @@ module.exports = function (sharedKey = '') { .map(key => meteorSessions[key]) .reduce((meteorAccount, session) => meteorAccount || session.type === 'meteor-acc...
feat(login): store session
raix_meteor-ci-package-release
train
67b2068dc081b65a21caff4bc360adf16fdfe070
diff --git a/blueocean-plugin/src/test/java/io/jenkins/blueocean/service/embedded/BaseTest.java b/blueocean-plugin/src/test/java/io/jenkins/blueocean/service/embedded/BaseTest.java index <HASH>..<HASH> 100644 --- a/blueocean-plugin/src/test/java/io/jenkins/blueocean/service/embedded/BaseTest.java +++ b/blueocean-plugin...
gzip encoding disabled in test. Stapler has a bug where it doesn't write response if gzip compressesion is enabled for small JSON response. It works fine for larger JSON response. Needs to be investigated in Stapler.
jenkinsci_blueocean-plugin
train
8d5a8e843fb2ee336da9c2b975e7715ea637b58b
diff --git a/src/Models/UpdateExecutor.php b/src/Models/UpdateExecutor.php index <HASH>..<HASH> 100644 --- a/src/Models/UpdateExecutor.php +++ b/src/Models/UpdateExecutor.php @@ -92,14 +92,14 @@ final class UpdateExecutor $directories = (new Finder())->in($folder)->exclude(config('self-update.exclude_folders')...
Apply fixes from StyleCI (#<I>)
codedge_laravel-selfupdater
train
3fbce106c09b073eb7aa950e23019a75f5d3cfaf
diff --git a/slave/buildslave/commands/mtn.py b/slave/buildslave/commands/mtn.py index <HASH>..<HASH> 100644 --- a/slave/buildslave/commands/mtn.py +++ b/slave/buildslave/commands/mtn.py @@ -182,4 +182,4 @@ class Monotone(SourceBaseCommand): d = c.start() d.addCallback(self._abandonOnFailure) ...
Return the deferred from Mtn.parseGotRevision Without this, any error in parseGotRevision is silently dropped.
buildbot_buildbot
train
42e98f15aeb61171ad9e54b722818fc4c693b761
diff --git a/command/build.go b/command/build.go index <HASH>..<HASH> 100644 --- a/command/build.go +++ b/command/build.go @@ -170,11 +170,12 @@ func (c *BuildCommand) RunContext(buildCtx context.Context, cla *BuildArgs) int for i := range builds { ui := c.Ui if cla.Color { - ui = &packer.ColoredUi{ - Col...
make sure the no-op progress bar gets used for machine readable uis
hashicorp_packer
train