hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
19a5baa735b48e1a6e324db0365f6c53b0c303c7
diff --git a/impl/src/main/java/org/jboss/webbeans/bootstrap/AfterBeanDiscoveryImpl.java b/impl/src/main/java/org/jboss/webbeans/bootstrap/AfterBeanDiscoveryImpl.java index <HASH>..<HASH> 100644 --- a/impl/src/main/java/org/jboss/webbeans/bootstrap/AfterBeanDiscoveryImpl.java +++ b/impl/src/main/java/org/jboss/webbeans...
queue definition and deployment errors and throw after observers have been notified git-svn-id: <URL>
weld_core
train
ab7078da952608b709f9b11274bcb3644ac8200e
diff --git a/hawtio-system/src/main/java/io/hawt/web/ContextFormatterServlet.java b/hawtio-system/src/main/java/io/hawt/web/ContextFormatterServlet.java index <HASH>..<HASH> 100644 --- a/hawtio-system/src/main/java/io/hawt/web/ContextFormatterServlet.java +++ b/hawtio-system/src/main/java/io/hawt/web/ContextFormatterSe...
#<I>: Fix for retrieving job and step execution contexts from the renamed endpoints. Thanks prashant-gupta for the patch.
hawtio_hawtio
train
85576c0307c53c7b2411067222ac77dd1bb9b7c0
diff --git a/src/nlpia/data_utils.py b/src/nlpia/data_utils.py index <HASH>..<HASH> 100644 --- a/src/nlpia/data_utils.py +++ b/src/nlpia/data_utils.py @@ -25,7 +25,7 @@ import pandas as pd from pugnlp.futil import find_files from pugnlp.regexes import cre_url -from nlpia.constants import logging, DATA_PATH +from nl...
data_utils doctests pass
totalgood_nlpia
train
562d54ded513e263f825334058656dab63a3ea35
diff --git a/src/TappableMixin.js b/src/TappableMixin.js index <HASH>..<HASH> 100644 --- a/src/TappableMixin.js +++ b/src/TappableMixin.js @@ -73,7 +73,11 @@ var Mixin = { this.initScrollDetection(); this.initPressDetection(event, this.endTouch); this.initTouchmoveDetection(); - this._activeTimeout = setT...
noticed a bug where if your moveThreshold is very low, then you can move outside it in the first frame of onTouchMove, which causes the setTimeout to cancel before it gets a chance to execute (which it should if delay is 0).
JedWatson_react-tappable
train
74dc951ee509f4fe68457ef6fd63d4fe2e4e19e4
diff --git a/plugin/src/main/java/com/stratio/cassandra/lucene/index/DocumentIterator.java b/plugin/src/main/java/com/stratio/cassandra/lucene/index/DocumentIterator.java index <HASH>..<HASH> 100644 --- a/plugin/src/main/java/com/stratio/cassandra/lucene/index/DocumentIterator.java +++ b/plugin/src/main/java/com/strati...
fized sort rewrite in documentIterator and RAMIndex
Stratio_cassandra-lucene-index
train
4ad8622af968c9a6ce24f16573ecc953a808a3b8
diff --git a/blockmanager.go b/blockmanager.go index <HASH>..<HASH> 100644 --- a/blockmanager.go +++ b/blockmanager.go @@ -1138,14 +1138,16 @@ func (b *blockManager) handleNotifyMsg(notification *btcchain.Notification) { } // Remove all of the transactions (except the coinbase) in the - // connected block from...
Remove transactions from orphan pool. This change removes transactions from a newly connected block from the orphan pool if they exist. Additionally, any orphan transactions that are no longer orphan transactions are moved to the mempool and inv'd to the currently connected peers.
btcsuite_btcd
train
d77bb423d1a283689f90e3074273d495c654ed34
diff --git a/OpenPNM/Geometry/__GenericGeometry__.py b/OpenPNM/Geometry/__GenericGeometry__.py index <HASH>..<HASH> 100644 --- a/OpenPNM/Geometry/__GenericGeometry__.py +++ b/OpenPNM/Geometry/__GenericGeometry__.py @@ -46,6 +46,8 @@ class GenericGeometry(Core): #Initialize locations self['pore.all'] ...
empty pore.map and throat.map are now created in the init...so if no pores or throats are sent the map_pores/throats will still work.
PMEAL_OpenPNM
train
c787360cbbf936460d08f0a856d9763dba2150f4
diff --git a/crudbuilder/abstract.py b/crudbuilder/abstract.py index <HASH>..<HASH> 100644 --- a/crudbuilder/abstract.py +++ b/crudbuilder/abstract.py @@ -1,4 +1,5 @@ import django + try: from django.apps import apps except ImportError: @@ -14,10 +15,10 @@ from crudbuilder import helpers class BaseBuilder(ob...
Added support of custom create and update mixin classes that allow customizing the create and update view class functions.
asifpy_django-crudbuilder
train
65e821168613c265516393861dbd40cb68a52c91
diff --git a/ExtEventLoop.php b/ExtEventLoop.php index <HASH>..<HASH> 100644 --- a/ExtEventLoop.php +++ b/ExtEventLoop.php @@ -164,7 +164,8 @@ class ExtEventLoop implements LoopInterface { $this->nextTickQueue->tick(); - $this->eventBase->loop(EventBase::LOOP_ONCE | EventBase::LOOP_NONBLOCK); + ...
Added @-operator error suppression to EventBase::loop() calls.
reactphp_event-loop
train
57665f241efd2bbd3518cdfeddb7b3a05169579f
diff --git a/async.js b/async.js index <HASH>..<HASH> 100644 --- a/async.js +++ b/async.js @@ -319,7 +319,9 @@ export function waterfall(tasks, ...args) { (promise, task) => promise.then((promiseResults) => { return promiseTry(task, ...promiseResults) .then((taskResults) => { - ...
Update waterfall to always return an array of results
jgornick_asyncp
train
613df797644d56560f95dc94dc4387ed4f0d12df
diff --git a/yaks/lib/yaks/mapper.rb b/yaks/lib/yaks/mapper.rb index <HASH>..<HASH> 100644 --- a/yaks/lib/yaks/mapper.rb +++ b/yaks/lib/yaks/mapper.rb @@ -56,21 +56,12 @@ module Yaks alias load_association load_attribute def expand_value(value) - case value - when Method, Proc, FP::Callable - ...
Simplify the logic for resolving callables, allow all `to_proc`-ables For cases where we allow a lambda for dynamic content, we should accept everything that responds to :to_proc. We exclude symbols because that would break existing syntax.
plexus_yaks
train
06668f364d1a402df9b5e97db5882abd475a9375
diff --git a/salesforce/backend/query.py b/salesforce/backend/query.py index <HASH>..<HASH> 100644 --- a/salesforce/backend/query.py +++ b/salesforce/backend/query.py @@ -148,6 +148,15 @@ class CursorWrapper(object): headers = dict() headers['Authorization'] = 'OAuth %s' % self.oauth['access_token'] + def _e...
properly escape inserts as well as updates
django-salesforce_django-salesforce
train
973f1f813ccc17d00bd858ac2da6ff5836c658f8
diff --git a/examples/DngCompiler.php b/examples/DngCompiler.php index <HASH>..<HASH> 100644 --- a/examples/DngCompiler.php +++ b/examples/DngCompiler.php @@ -157,8 +157,11 @@ $expression = $builder ->or() ->field('class', 'ciao') ->field('class', '830') + ->field('publisher', 'mondadori')...
Updated dng compiler example.
nicmart_DomainSpecificQuery
train
1a9ba5dc5c84d86fe6a236d65edda1a8908e439c
diff --git a/src/sap.m/src/sap/m/NavContainer.js b/src/sap.m/src/sap/m/NavContainer.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/NavContainer.js +++ b/src/sap.m/src/sap/m/NavContainer.js @@ -532,6 +532,41 @@ sap.ui.define([ }; /** + * Checks whether a page is in the history stack or not + * @param p...
[INTERNAL] sap.m.NavContainer - private method _safeBackToPage added Change-Id: I<I>c<I>e<I>bf<I>b9be<I>bf<I>d2b1
SAP_openui5
train
7d5afb348464612f08b04ba592cb46807a1409a6
diff --git a/msmbuilder/featurizer/featurizer.py b/msmbuilder/featurizer/featurizer.py index <HASH>..<HASH> 100644 --- a/msmbuilder/featurizer/featurizer.py +++ b/msmbuilder/featurizer/featurizer.py @@ -319,11 +319,10 @@ class FunctionFeaturizer(Featurizer): function : function Instantiation of the functi...
changed api based upon @mpharrigan for compatibility
msmbuilder_msmbuilder
train
1d1be4bf3091338bb5ea56b4d40df0760b2d200f
diff --git a/src/Pingpong/Support/helpers.php b/src/Pingpong/Support/helpers.php index <HASH>..<HASH> 100644 --- a/src/Pingpong/Support/helpers.php +++ b/src/Pingpong/Support/helpers.php @@ -16,7 +16,7 @@ if ( ! function_exists('upload_image')) { if ( ! is_null($file)) { - $filename = ...
add unix time as prefix upload name
pingpong-labs_sky
train
ef910266b36c89fe21f9821f86bdb9955d60b468
diff --git a/js/src/utils/mocha.js b/js/src/utils/mocha.js index <HASH>..<HASH> 100644 --- a/js/src/utils/mocha.js +++ b/js/src/utils/mocha.js @@ -8,6 +8,8 @@ chai.use(dirtyChai) module.exports.expect = chai.expect +const isObject = (o) => Object.prototype.toString.call(o) === '[object Object]' + // Get a "descri...
fix: allow skip with object but no reason (#<I>) License: MIT
ipfs_interface-js-ipfs-core
train
e48b60163f65e52ce99a0decb7095a7326724b3a
diff --git a/controller/src/main/java/org/jboss/as/controller/interfaces/ParsedInterfaceCriteria.java b/controller/src/main/java/org/jboss/as/controller/interfaces/ParsedInterfaceCriteria.java index <HASH>..<HASH> 100644 --- a/controller/src/main/java/org/jboss/as/controller/interfaces/ParsedInterfaceCriteria.java +++ ...
WFLY-<I> support any loopback address via the -b argument, without xml files changes was: <I>a7ff<I>fa<I>e7c<I>fbe1d<I>ae5a<I>
wildfly_wildfly-core
train
fd691c814689b508e8971281657fa0371b27e836
diff --git a/client/layout/guided-tours/config.js b/client/layout/guided-tours/config.js index <HASH>..<HASH> 100644 --- a/client/layout/guided-tours/config.js +++ b/client/layout/guided-tours/config.js @@ -20,6 +20,7 @@ import checklistSiteTagline from 'layout/guided-tours/tours/checklist-site-tagli import checklistS...
Guided Tours: Add Jetpack Backups Rewind tour to config (#<I>)
Automattic_wp-calypso
train
cdd999526335e278562a7d1bc88d9f107ed80a7d
diff --git a/lib/browser/managed-upload.js b/lib/browser/managed-upload.js index <HASH>..<HASH> 100644 --- a/lib/browser/managed-upload.js +++ b/lib/browser/managed-upload.js @@ -59,10 +59,8 @@ proto.multipartUpload = async function multipartUpload(name, file, options) { const fileSize = await this._getFileSize(fi...
fix: use put insteadof putStream when calling multipartUpload to process small file in browser (#<I>)
ali-sdk_ali-oss
train
b1d281e7bbe4f75f10d70d96ba9ba62314f67ca2
diff --git a/util/kube/ctl.go b/util/kube/ctl.go index <HASH>..<HASH> 100644 --- a/util/kube/ctl.go +++ b/util/kube/ctl.go @@ -429,7 +429,7 @@ func Version() (string, error) { if err != nil { return "", fmt.Errorf("could not get kubectl version: %s", err) } - re := regexp.MustCompile(`GitVersion:"([a-zA-Z0-9\.]+...
Allow dash character in output of kubectl version (#<I>)
argoproj_argo-cd
train
f2b6e484695f22d0f8538f55482c149f386ae232
diff --git a/src/Codeception/Lib/InnerBrowser.php b/src/Codeception/Lib/InnerBrowser.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Lib/InnerBrowser.php +++ b/src/Codeception/Lib/InnerBrowser.php @@ -125,13 +125,13 @@ class InnerBrowser extends Module implements Web, PageSourceSaver, ElementLocato if ...
Add uri to debugResponse call
Codeception_Codeception
train
fc33e2986eae6cb6f4c687c3c40aea1b0a2e9400
diff --git a/lib/jekyll_picture_tag/defaults/presets.rb b/lib/jekyll_picture_tag/defaults/presets.rb index <HASH>..<HASH> 100644 --- a/lib/jekyll_picture_tag/defaults/presets.rb +++ b/lib/jekyll_picture_tag/defaults/presets.rb @@ -15,4 +15,35 @@ module PictureTag 'avif' => { 'compression' => 'av...
Create stock presets and media queries All built-in presets and media queries will have a jpt- prefix. These are meant to be examples and starting points for further customization.
robwierzbowski_jekyll-picture-tag
train
bc519831db88079d60b0d02c7986598730eeae59
diff --git a/python/l20n/compiler/js.py b/python/l20n/compiler/js.py index <HASH>..<HASH> 100644 --- a/python/l20n/compiler/js.py +++ b/python/l20n/compiler/js.py @@ -146,9 +146,12 @@ class Compiler(object): n = l20n.PropertyExpression(l20n.Identifier('data'), ...
update compiler to make it work with debug mode, but that's a hack, it should be fixed in pyast...
l20n_l20n.js
train
b149e92fdfd003393e480e2075138f938fa298a2
diff --git a/arffTools.js b/arffTools.js index <HASH>..<HASH> 100644 --- a/arffTools.js +++ b/arffTools.js @@ -40,9 +40,9 @@ function separateMultiClassArffData(arffData, outputAttributes) { // options: // skipTargetFilter = true: don't filter out target attributes from input attributes. I don't know why you'd want...
fixed bug where provided attriutes were ignored in arffToInputs
electrovir_arff-toolkit
train
6fc3d34abd2a73303afe6f9d558b25e4a83ff93a
diff --git a/examples/run_glue.py b/examples/run_glue.py index <HASH>..<HASH> 100644 --- a/examples/run_glue.py +++ b/examples/run_glue.py @@ -310,7 +310,7 @@ def evaluate(args, model, tokenizer, prefix=""): eval_dataloader = DataLoader(eval_dataset, sampler=eval_sampler, batch_size=args.eval_batch_size) ...
Fix multi-gpu evaluation in run_glue.py
huggingface_pytorch-pretrained-BERT
train
9d10bb63c5dbd1c519239ce4b1816f16373695e1
diff --git a/spyderlib/widgets/editor.py b/spyderlib/widgets/editor.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/editor.py +++ b/spyderlib/widgets/editor.py @@ -32,14 +32,12 @@ from spyderlib.config.base import _, DEBUG, STDERR, STDOUT from spyderlib.config.gui import (config_shortcut, fixed_shortcut, ...
Editor: Remove icons from its tabs
spyder-ide_spyder
train
b0148cf4532c73820cb35c7a31fb9afc142cffa8
diff --git a/examples/with-firebase-authentication/pages/index.js b/examples/with-firebase-authentication/pages/index.js index <HASH>..<HASH> 100644 --- a/examples/with-firebase-authentication/pages/index.js +++ b/examples/with-firebase-authentication/pages/index.js @@ -1,5 +1,7 @@ import React, { Component } from 're...
Update for use with Firestore (#<I>) Google seems to be deprecated the legacy realtime database and moving towards default use of Firestore, although it's still officially in beta. This PR migrates towards Firestore and the recommended loading methods for the Firebase <I> libraries. Note: the Firebase and Firebase-Adm...
zeit_next.js
train
00a81c3d0e59975b630107c382679c3f998fc3ee
diff --git a/Classes/Finishers/EmailFinisher.php b/Classes/Finishers/EmailFinisher.php index <HASH>..<HASH> 100644 --- a/Classes/Finishers/EmailFinisher.php +++ b/Classes/Finishers/EmailFinisher.php @@ -213,19 +213,22 @@ class EmailFinisher extends AbstractFinisher } } } - ...
BUGFIX: Evaluate attachment configuration only if present The addAttachment ran into trouble when it tired to iterate over en attachments configuration that was not set at all. The change adds a beforehand check that the attachments configuration is set.
neos_form
train
cdfcc87b271f181057326670c759ef8ea38f1470
diff --git a/performance/benchmarks/bm_telco.py b/performance/benchmarks/bm_telco.py index <HASH>..<HASH> 100644 --- a/performance/benchmarks/bm_telco.py +++ b/performance/benchmarks/bm_telco.py @@ -1,11 +1,11 @@ # coding: UTF-8 """ Telco Benchmark for measuring the performance of decimal calculations -http://www2....
Update telco URLs, fix also a typo
python_performance
train
1b5ace85a38840b7b9b711b09f96fc3e814f8d62
diff --git a/doradus-server/src/main/java/com/dell/doradus/logservice/pattern/Substr.java b/doradus-server/src/main/java/com/dell/doradus/logservice/pattern/Substr.java index <HASH>..<HASH> 100644 --- a/doradus-server/src/main/java/com/dell/doradus/logservice/pattern/Substr.java +++ b/doradus-server/src/main/java/com/d...
logging service: support ? in pattern search
QSFT_Doradus
train
a33dec99d5ca8e81ac8e776113fcf8462ab1e877
diff --git a/test/replica_set/cursor_test.rb b/test/replica_set/cursor_test.rb index <HASH>..<HASH> 100644 --- a/test/replica_set/cursor_test.rb +++ b/test/replica_set/cursor_test.rb @@ -41,6 +41,11 @@ class ReplicaSetCursorTest < Test::Unit::TestCase assert_cursors_on_members(:secondary) end + def test_inte...
RUBY-<I> test on intervening query during cursor iteration
mongodb_mongo-ruby-driver
train
697a386bbb95b97f31ff6cb831c4a21bcc62ad5a
diff --git a/packages/pico-engine-core/src/index.js b/packages/pico-engine-core/src/index.js index <HASH>..<HASH> 100644 --- a/packages/pico-engine-core/src/index.js +++ b/packages/pico-engine-core/src/index.js @@ -46,7 +46,7 @@ function applyFn (fn, ctx, args) { throw new Error('actions can only be called in the ...
better error: <type> is not a function
Picolab_pico-engine
train
f8a70b57947074953b9db0ffc69478373e2b8602
diff --git a/src/main/java/org/jongo/query/JsonQueryFactory.java b/src/main/java/org/jongo/query/JsonQueryFactory.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jongo/query/JsonQueryFactory.java +++ b/src/main/java/org/jongo/query/JsonQueryFactory.java @@ -69,7 +69,7 @@ public final class JsonQueryFactory imp...
Removed useless method We don't need getMatcherWithEscapedDollar() because we're not using replaceFirst anymore. Besides, getMatcherWithEscapedDollar() introduced a bug causing parameters containing a quotation character '"' to be unparsable.
bguerout_jongo
train
9621a88d6566a99b233122efb2c62d63946fd48f
diff --git a/src/Console/Command/Run.php b/src/Console/Command/Run.php index <HASH>..<HASH> 100644 --- a/src/Console/Command/Run.php +++ b/src/Console/Command/Run.php @@ -36,6 +36,7 @@ use RecursiveRegexIterator; use ReflectionException; use RegexIterator; use Symfony\Component\Console\Input\InputInterface; +use Sym...
Allow output to be sent to the terminal rather than the log file
nails_module-cron
train
5f49cab6910f7daf53693b9436ba336570e87715
diff --git a/compiler/__init__.py b/compiler/__init__.py index <HASH>..<HASH> 100644 --- a/compiler/__init__.py +++ b/compiler/__init__.py @@ -16,6 +16,7 @@ import pickle import json from multiprocessing import Pool, cpu_count import sys +from io import open try: import inspect @@ -53,7 +54,7 @@ class Cache(obj...
use encoding='utf-8' for open in text mode use io.open instead of open (python2 backport)
pureqml_qmlcore
train
7e4e1e10f6cb8642363f5c86e855398c64923e03
diff --git a/src/Html2Wt/WikitextSerializer.php b/src/Html2Wt/WikitextSerializer.php index <HASH>..<HASH> 100644 --- a/src/Html2Wt/WikitextSerializer.php +++ b/src/Html2Wt/WikitextSerializer.php @@ -1629,9 +1629,10 @@ class WikitextSerializer { /** * @param Env $env * @param DOMElement $body - * @suppress Phan...
Move section tag stripping to preprocessDOM This matches where it's done in selser and will only be called if we're not in selser mode. Change-Id: Ia<I>a<I>db2df<I>cdbad<I>bdf<I>
wikimedia_parsoid
train
b7e137de22b269b4538454299f3aa2cd17140550
diff --git a/elpy/blackutil.py b/elpy/blackutil.py index <HASH>..<HASH> 100644 --- a/elpy/blackutil.py +++ b/elpy/blackutil.py @@ -4,6 +4,7 @@ import os import sys +from pkg_resources import parse_version from elpy.rpc import Fault @@ -23,17 +24,20 @@ def fix_code(code, directory): """ if not black...
Fix support for black > <I>
jorgenschaefer_elpy
train
14d75ff8cd4bfbf73dc59fb9545198a951330060
diff --git a/Resources/public/js/components/products/components/addons/main.js b/Resources/public/js/components/products/components/addons/main.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/components/products/components/addons/main.js +++ b/Resources/public/js/components/products/components/addons/main.js @...
Refactored disable of price field
sulu_SuluProductBundle
train
29151bbc3a2d0d6ea031cac8c779cd334608cbc2
diff --git a/tests/test_replicaset.py b/tests/test_replicaset.py index <HASH>..<HASH> 100644 --- a/tests/test_replicaset.py +++ b/tests/test_replicaset.py @@ -174,7 +174,7 @@ class TestReplicaSet(unittest.TestCase): yield conn.disconnect() @defer.inlineCallbacks - def test_TimeoutExceeded_find(self):...
prevent canceled event from triggering modification for py3 compat, use __name__ instead of func_name
twisted_txmongo
train
8c8d5a1c7b53d0a949d8d9cf8764d353c1a0dba3
diff --git a/spec/lib/combi/buses/bus_spec.rb b/spec/lib/combi/buses/bus_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/combi/buses/bus_spec.rb +++ b/spec/lib/combi/buses/bus_spec.rb @@ -28,11 +28,7 @@ describe 'Combi::Bus' do end end Given(:path) { 'module/remote' } - When { bus.add_ser...
cleanup: Remove `puts` from tests
1uptalent_combi
train
dc91bc29ee94648c59472b8e26c6c1e318abee82
diff --git a/src/main/java/org/fit/cssbox/swingbox/view/TextBoxView.java b/src/main/java/org/fit/cssbox/swingbox/view/TextBoxView.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fit/cssbox/swingbox/view/TextBoxView.java +++ b/src/main/java/org/fit/cssbox/swingbox/view/TextBoxView.java @@ -19,6 +19,7 @@ pack...
Setting text decoration (underline) thickness
radkovo_SwingBox
train
4ce1524feae568880422ae977a6e59bd2ab4bd8e
diff --git a/prow/cmd/checkconfig/main_test.go b/prow/cmd/checkconfig/main_test.go index <HASH>..<HASH> 100644 --- a/prow/cmd/checkconfig/main_test.go +++ b/prow/cmd/checkconfig/main_test.go @@ -366,7 +366,7 @@ func TestOrgRepoUnion(t *testing.T) { t.Run(tc.name, func(t *testing.T) { got := tc.a.union(tc.b) ...
replace legacyDiff with cmp.Diff throughout
kubernetes_test-infra
train
014a9c807cd2f261015d36519aecc3f8e3c62889
diff --git a/lib/tracing.rb b/lib/tracing.rb index <HASH>..<HASH> 100644 --- a/lib/tracing.rb +++ b/lib/tracing.rb @@ -49,7 +49,7 @@ module Tracing end class Tracer - attr_accessor :indent, :nested + attr_accessor :indent, :nested, :delayed def initialize reinitialize @@ -69,11 +69,11 @@ mod...
<I>, discard delayed tracing when its scope exits
cjheath_tracing
train
1ce25139203a64b80fb3416c4097087e319e0d6b
diff --git a/physical/gcs/gcs.go b/physical/gcs/gcs.go index <HASH>..<HASH> 100644 --- a/physical/gcs/gcs.go +++ b/physical/gcs/gcs.go @@ -1,6 +1,7 @@ package gcs import ( + "context" "errors" "fmt" "io/ioutil" @@ -18,7 +19,6 @@ import ( "cloud.google.com/go/storage" "github.com/armon/go-metrics" - "gol...
Use context from stdlib in google physical backends (#<I>) * Use context from stdlib in google physical backends * Do not prefix logs (Vault will do it)
hashicorp_vault
train
f50db86cb46facf6c9ea1b23e6976079d9b6b4dd
diff --git a/src/main/java/org/takes/rq/RqLengthAware.java b/src/main/java/org/takes/rq/RqLengthAware.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/takes/rq/RqLengthAware.java +++ b/src/main/java/org/takes/rq/RqLengthAware.java @@ -128,6 +128,21 @@ public final class RqLengthAware extends RqWrap { ...
#<I> implemented the other two InputStream.read() methods
yegor256_takes
train
eb1eb39d43af28ad6a3a91e9de345305e5a01a56
diff --git a/src/collectors/PostgreSQLCollector/PostgreSQLCollector.py b/src/collectors/PostgreSQLCollector/PostgreSQLCollector.py index <HASH>..<HASH> 100644 --- a/src/collectors/PostgreSQLCollector/PostgreSQLCollector.py +++ b/src/collectors/PostgreSQLCollector/PostgreSQLCollector.py @@ -15,7 +15,8 @@ class Postgresq...
Setting the postgresql and smart collectors to use threads
python-diamond_Diamond
train
2ef0c75a8853e8d71a7a2505bd01ae48ef367be0
diff --git a/routes/menus/adminarea.php b/routes/menus/adminarea.php index <HASH>..<HASH> 100644 --- a/routes/menus/adminarea.php +++ b/routes/menus/adminarea.php @@ -5,7 +5,7 @@ declare(strict_types=1); use Cortex\Tenants\Models\Tenant; use Rinvex\Menus\Models\MenuItem; use Rinvex\Menus\Models\MenuGenerator; -use S...
Override Spatie Media model to support Hashids
rinvex_cortex-tenants
train
268d600ca0dfba9e00d337b05f80552de1a00e56
diff --git a/react-datepicker.js b/react-datepicker.js index <HASH>..<HASH> 100644 --- a/react-datepicker.js +++ b/react-datepicker.js @@ -129,18 +129,6 @@ var DateInput = React.createClass({displayName: 'DateInput', }); }, - componentDidUpdate: function() { - if (this.props.focus) { - var el = this....
Removed ArrowUp and ArrowDown functionality, since it is hard to support it for arbitrary date formats.
Hacker0x01_react-datepicker
train
a4d785f5325f36db6c85fe6abaf03c7037cccdfd
diff --git a/src/process.js b/src/process.js index <HASH>..<HASH> 100644 --- a/src/process.js +++ b/src/process.js @@ -19,7 +19,7 @@ function processEntries({ return [].concat.apply([], chunks.map(chunk => ( purifyCSS( paths[chunk.name].concat( - search.files(chunk.modules, extensions, ({ resource...
chore - Write object destructuring out of the project Node 4 doesn't support that.
webpack-contrib_purifycss-webpack
train
7c240985d5d0074212a236485e411917c81e460b
diff --git a/test/unit/base-mixins/subscriptions.js b/test/unit/base-mixins/subscriptions.js index <HASH>..<HASH> 100644 --- a/test/unit/base-mixins/subscriptions.js +++ b/test/unit/base-mixins/subscriptions.js @@ -3,6 +3,7 @@ import chaiAsPromised from "chai-as-promised"; import sinon from "sinon"; import sinonChai ...
detailed testing for `resubscribe` method to increase coverage
mondora_asteroid
train
87c976ff7e907126c6e13d53ed2eeb9b6daf6d37
diff --git a/system/Common.php b/system/Common.php index <HASH>..<HASH> 100644 --- a/system/Common.php +++ b/system/Common.php @@ -814,6 +814,8 @@ if (! function_exists('force_https')) // Set an HSTS header $response->setHeader('Strict-Transport-Security', 'max-age=' . $duration); $response->redirect($uri); + ...
Make `force_https()` send headers before exit
codeigniter4_CodeIgniter4
train
c30c07f765782e11d646baa4a838c9e91c5001af
diff --git a/doc/source/whatsnew/v0.24.0.txt b/doc/source/whatsnew/v0.24.0.txt index <HASH>..<HASH> 100644 --- a/doc/source/whatsnew/v0.24.0.txt +++ b/doc/source/whatsnew/v0.24.0.txt @@ -1060,6 +1060,7 @@ Performance Improvements - Improved the performance of :func:`pandas.get_dummies` with ``sparse=True`` (:issue:`21...
PERF: speed up concat on Series by making _get_axis_number() a classmethod (#<I>)
pandas-dev_pandas
train
a84af8bf030bc6966ec7a36521ddfe1de3a6cbc1
diff --git a/lib/custom/setup/default/schema/customer.php b/lib/custom/setup/default/schema/customer.php index <HASH>..<HASH> 100644 --- a/lib/custom/setup/default/schema/customer.php +++ b/lib/custom/setup/default/schema/customer.php @@ -41,12 +41,13 @@ return array( $table->addColumn( 'editor', 'string', array('l...
Streamlined length of address columns and indexes Avoid MySQL problems with indexes exceeding <I> bytes
aimeos_ai-typo3
train
540d6d46097f76b272d738220b8e141996266d44
diff --git a/src/main/java/net/fortuna/ical4j/model/property/DateProperty.java b/src/main/java/net/fortuna/ical4j/model/property/DateProperty.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/fortuna/ical4j/model/property/DateProperty.java +++ b/src/main/java/net/fortuna/ical4j/model/property/DateProperty.java @...
Fixed NPE in DateProperty. When no date is set, calling copy() and hashCode() resulted in NPE.
ical4j_ical4j
train
edeb696161b08f9cbd5bcc4b39189682653e5a9c
diff --git a/library/Services/ShopInstaller/ShopInstaller.php b/library/Services/ShopInstaller/ShopInstaller.php index <HASH>..<HASH> 100644 --- a/library/Services/ShopInstaller/ShopInstaller.php +++ b/library/Services/ShopInstaller/ShopInstaller.php @@ -24,6 +24,7 @@ require_once LIBRARY_PATH .'/Cache.php'; /** Cla...
Create empty Config class for shop installation to work (cherry picked from commit c<I>ac5)
OXID-eSales_testing_library
train
1f0a30ef9a4b63a3b3a0c2444a308b15dcdb256b
diff --git a/bosh-director/lib/bosh/director/jobs/delete_deployment.rb b/bosh-director/lib/bosh/director/jobs/delete_deployment.rb index <HASH>..<HASH> 100644 --- a/bosh-director/lib/bosh/director/jobs/delete_deployment.rb +++ b/bosh-director/lib/bosh/director/jobs/delete_deployment.rb @@ -33,6 +33,23 @@ module Bosh::D...
Load Dns Sequel class constants before forking off into multiple threads.
cloudfoundry_bosh
train
ecd3dfdfc50cd070b35768543113808c70b75d6c
diff --git a/src/ca/eandb/jdcp/worker/ConnectionDialog.java b/src/ca/eandb/jdcp/worker/ConnectionDialog.java index <HASH>..<HASH> 100644 --- a/src/ca/eandb/jdcp/worker/ConnectionDialog.java +++ b/src/ca/eandb/jdcp/worker/ConnectionDialog.java @@ -38,8 +38,12 @@ import java.awt.event.KeyEvent; import java.awt.event.Mou...
Modified ConnectionDialog to store the password encrypted.
bwkimmel_jdcp
train
88f64501b5b7ab97fffef4b00f1e527306c18122
diff --git a/src/definition/beforeBuild.js b/src/definition/beforeBuild.js index <HASH>..<HASH> 100644 --- a/src/definition/beforeBuild.js +++ b/src/definition/beforeBuild.js @@ -1,4 +1,4 @@ -import { lodash as _, forEach, reduce } from '../jsutils'; +import { lodash as _, forEach } from '../jsutils'; import { getName...
linted and fixed variable names
graphql-factory_graphql-factory
train
7af5d01937cedf9685b633df53b1802fb2b3f681
diff --git a/spec/user_agent_spec.rb b/spec/user_agent_spec.rb index <HASH>..<HASH> 100644 --- a/spec/user_agent_spec.rb +++ b/spec/user_agent_spec.rb @@ -13,6 +13,46 @@ describe UserAgentParser::UserAgent do end end + describe "#initialize" do + describe "with family" do + it "sets family" do + ...
Specs for user agent initialization.
ua-parser_uap-ruby
train
5899a6a886dc411ff62a6b1feae17fabd3811d91
diff --git a/lib/puppet/provider/package/pkgng.rb b/lib/puppet/provider/package/pkgng.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/provider/package/pkgng.rb +++ b/lib/puppet/provider/package/pkgng.rb @@ -6,7 +6,8 @@ Puppet::Type.type(:package).provide :pkgng, :parent => Puppet::Provider::Package commands :pkg => ...
(PUP-<I>) Change the default provider for FreeBSD This switches the default provider on FreeBSD from ports to PkgNG. PkgNG is included as the default packaging system on all supported versions of FreeBSD.
puppetlabs_puppet
train
0e2585ac0f977fbd59a7b775421e44c780ed9b38
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -1969,6 +1969,9 @@ function check_browser_version($brand="MSIE", $version=5.5) { case "MSIE": /// Internet Explorer + if (strpos($agent, 'Opera')) { // Reject Opera...
Reject Opera when it is pretending to be IE
moodle_moodle
train
7190d9612a0f2bee5ac9b57b033df952781a69d2
diff --git a/lib/sinatra/base.rb b/lib/sinatra/base.rb index <HASH>..<HASH> 100644 --- a/lib/sinatra/base.rb +++ b/lib/sinatra/base.rb @@ -1460,7 +1460,7 @@ module Sinatra # if segment = segments.pop if segment.match(/\[\^\\\./) - parts = segment.rpartition /\[\^\\\./ + ...
Adhere to sinatra style
sinatra_sinatra
train
be727ab0be28288bb805abc0c41de905ae2c787e
diff --git a/config.go b/config.go index <HASH>..<HASH> 100644 --- a/config.go +++ b/config.go @@ -24,6 +24,7 @@ import ( "github.com/lightningnetwork/lnd/build" "github.com/lightningnetwork/lnd/chanbackup" "github.com/lightningnetwork/lnd/channeldb" + "github.com/lightningnetwork/lnd/discovery" "github.com/lig...
config+server: expose HistoricalSyncInterval flag This allows us to set how often the daemon should routinely perform historical graph syncs.
lightningnetwork_lnd
train
5be87049056e955543ab0cfb49f6b7ab7f4011b0
diff --git a/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php b/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php +++ b/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.p...
[Resource] Return the resource for non-html requests to state machine
Sylius_Sylius
train
edf4267e5b8c3245e0726672e08d4a0d4665a563
diff --git a/src/Facade/Parser.php b/src/Facade/Parser.php index <HASH>..<HASH> 100644 --- a/src/Facade/Parser.php +++ b/src/Facade/Parser.php @@ -8,5 +8,5 @@ class Parser extends Facade { /** * {@inheritDocs} */ - protected static function getFacadeAccessor() { return 'browser-detect.parser'; } + ...
Replacing share() by singleton() in provider
hisorange_browser-detect
train
7aa82336dca3dbee789cf54115e31d797fc51809
diff --git a/blueprints/helper-addon/files/__root__/__path__/__name__.js b/blueprints/helper-addon/files/__root__/__path__/__name__.js index <HASH>..<HASH> 100644 --- a/blueprints/helper-addon/files/__root__/__path__/__name__.js +++ b/blueprints/helper-addon/files/__root__/__path__/__name__.js @@ -1 +1 @@ -export { def...
Remove non-existing re-export from helper-addon blueprint The blueprint for an addon's `app/helpers/foo.js` contains a re-export of a named export of `addon/helpers/foo.js` which does not exist, as it only has a default export. FWIW, Embroider is constantly complaining about this (rightly).
emberjs_ember.js
train
3ed62d41690cac5a343636ae6f1ea831a76491ac
diff --git a/light.go b/light.go index <HASH>..<HASH> 100644 --- a/light.go +++ b/light.go @@ -17,15 +17,15 @@ import ( // Light struct defines attributes of a light. type Light struct { State struct { - On bool `json:"on"` // On or Off state of the light ("true" or "false") - Br...
Cleaned up Light struct documentation.
Collinux_gohue
train
7682dd1e55ebbc36c5734175e624890b94670ca1
diff --git a/matchers/internal/selection/have_css.go b/matchers/internal/selection/have_css.go index <HASH>..<HASH> 100644 --- a/matchers/internal/selection/have_css.go +++ b/matchers/internal/selection/have_css.go @@ -1,6 +1,7 @@ package selection import ( + "errors" "fmt" "reflect" @@ -39,7 +40,7 @@ func (m...
Fixed HaveCSS color error indent and added it to messages.go
sclevine_agouti
train
381a37b31ec4eb6aab264f006510cf1add8bf647
diff --git a/bundles/org.eclipse.orion.client.editor/web/orion/editor/tooltip.js b/bundles/org.eclipse.orion.client.editor/web/orion/editor/tooltip.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.editor/web/orion/editor/tooltip.js +++ b/bundles/org.eclipse.orion.client.editor/web/orion/editor/tool...
fix tooltip click handler when editor has folded region.
eclipse_orion.client
train
27a36a5f85c5aaade1f06e10d4ac790564faeda7
diff --git a/test/expect.js b/test/expect.js index <HASH>..<HASH> 100644 --- a/test/expect.js +++ b/test/expect.js @@ -427,4 +427,24 @@ suite('expect', function () { }, "expected [Function] to throw error matching /hello/ but got \'testing\'"); }); + test('respondTo', function(){ + function Foo(){}; + ...
Add `respondTo` expect test.
chaijs_chai
train
37aa92ac84741d6fc42519f9dc88bc79c567660c
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -16,7 +16,7 @@ function getOrDefault (strategyName, element) { var strategy = getPageStrategyElement(strategyName, element) if (strategy.noSuchStrategy) { - return talPageStrategies.getPageStrategyElement('default',...
Remove reference to talPageStrategies as function is in scope (#<I>)
bbc_tal-page-strategies
train
7bf37937fc6dfa29e7feabaa478c4d57f7c8ef0d
diff --git a/bundles/org.eclipse.orion.client.core/web/orion/preferences.js b/bundles/org.eclipse.orion.client.core/web/orion/preferences.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.core/web/orion/preferences.js +++ b/bundles/org.eclipse.orion.client.core/web/orion/preferences.js @@ -223,7 +22...
Making user preferences cache for 1 hour. We still need the logout to reset preferences in M2.
eclipse_orion.client
train
5fbdf88a21f660c7db8f0623024e2eaf069e35c0
diff --git a/aws/resource_aws_sns_platform_application_test.go b/aws/resource_aws_sns_platform_application_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_sns_platform_application_test.go +++ b/aws/resource_aws_sns_platform_application_test.go @@ -18,6 +18,7 @@ import ( "github.com/hashicorp/terraform-prov...
sns: Create sweep package
terraform-providers_terraform-provider-aws
train
ad87df2bc5f3c88726f3108e5323530f3f23398b
diff --git a/currencies/__init__.py b/currencies/__init__.py index <HASH>..<HASH> 100644 --- a/currencies/__init__.py +++ b/currencies/__init__.py @@ -1 +1 @@ -__version__ = '0.10.0' +__version__ = '0.10.1' diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45...
Bump to <I>.
panosl_django-currencies
train
7cfa19486534abe46b43571c5fa63cf2bb057def
diff --git a/properscoring/tests/test_crps.py b/properscoring/tests/test_crps.py index <HASH>..<HASH> 100644 --- a/properscoring/tests/test_crps.py +++ b/properscoring/tests/test_crps.py @@ -47,7 +47,7 @@ class TestDistributionBasedCRPS(unittest.TestCase): return stats.norm(*args, **kwdargs).pdf p...
Shrink memory usage in test_derived_weights
TheClimateCorporation_properscoring
train
7a0b6f4261d01aff132e42a445a42fc93cfdb671
diff --git a/src/main/java/de/btobastian/javacord/entities/Server.java b/src/main/java/de/btobastian/javacord/entities/Server.java index <HASH>..<HASH> 100644 --- a/src/main/java/de/btobastian/javacord/entities/Server.java +++ b/src/main/java/de/btobastian/javacord/entities/Server.java @@ -716,6 +716,18 @@ public inter...
Add the possibility to remove the server icon
Javacord_Javacord
train
a672d6bec887fc585a6be15a4a8a3f8b6c49d32c
diff --git a/lib/jss/api_object/group.rb b/lib/jss/api_object/group.rb index <HASH>..<HASH> 100644 --- a/lib/jss/api_object/group.rb +++ b/lib/jss/api_object/group.rb @@ -168,12 +168,12 @@ module JSS ### ### @see Creatable#create ### - def create + def create(calculate_members: true) if @is_...
Group.create: option to not calculate membership on creation.
PixarAnimationStudios_ruby-jss
train
f3b39ed457739d7b3f1de7a5c8af5204f315f970
diff --git a/resque.php b/resque.php index <HASH>..<HASH> 100755 --- a/resque.php +++ b/resque.php @@ -10,7 +10,17 @@ define('DS', DIRECTORY_SEPARATOR); } - require_once 'vendor'.DS.'autoload.php'; + // The library is the root library + if (file_exists(__DIR__ . DS . 'vendor' . DS . 'autoload.php')) + { + requi...
Fix unknown variable and loading composer autoloader
wa0x6e_php-resque-ex
train
80590e92534115b6f4bbb2ac57608a16c273b45c
diff --git a/vendor/k8s.io/kubernetes/pkg/controller/resourcequota/resource_quota_controller.go b/vendor/k8s.io/kubernetes/pkg/controller/resourcequota/resource_quota_controller.go index <HASH>..<HASH> 100644 --- a/vendor/k8s.io/kubernetes/pkg/controller/resourcequota/resource_quota_controller.go +++ b/vendor/k8s.io/ku...
UPSTREAM: <I>: allow failed discovery on initial quota controller start
openshift_origin
train
3f0cfd57a362c8452fb068260ba494656698badc
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -37,13 +37,14 @@ "chloride": "^2.2.8", "jsonld": "^1.1.0", "node-forge": "^0.7.4", - "semver": "^5.5.0" + "semver": "^5.6.0" }, "devDependencies": { "babel-cli": "^6.26.0", ...
Enable node6 support in travis CI.
digitalbazaar_jsonld-signatures
train
866686a4147987aff44b5d6df1ef22404c88bf0b
diff --git a/src/models/Contact.php b/src/models/Contact.php index <HASH>..<HASH> 100644 --- a/src/models/Contact.php +++ b/src/models/Contact.php @@ -193,4 +193,15 @@ class Contact extends \hipanel\base\Model return implode('<br>', $res); } + + public function renderAddress() + { + $res = ...
added `Contact::renderAddress()`
hiqdev_hipanel-module-client
train
6a7988f0e36fa29d85eb66a0db33305c4c3e42a6
diff --git a/outfmt/tzx.py b/outfmt/tzx.py index <HASH>..<HASH> 100755 --- a/outfmt/tzx.py +++ b/outfmt/tzx.py @@ -154,7 +154,8 @@ class TAP(TZX): def __init__(self): ''' Initializes the object with standard header ''' - self.output = '' + TZX.__init__(self) + self.output = '...
Missing TAP init Added missing tap __init__ (must call TXZ init), changed during refactorization.
boriel_zxbasic
train
d39e5caf21310d06c24302065520c9b52c3ebc56
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,6 @@ var path = require('path'), gutil = require('gulp-util'), through = require('through2'), - oAssign = require('object-assign'), ssiparser = require('./lib/ssiparser'); var PLUGIN_NAME = 'gulp-ssi'; @@ -10...
dependencies cleanup; path resolution improved; output missing files to console
etylsarin_gulp-ssi
train
6c1c9339fd87ecf0e237f6f2850790eacb4f5a76
diff --git a/lib/media/streaming_engine.js b/lib/media/streaming_engine.js index <HASH>..<HASH> 100644 --- a/lib/media/streaming_engine.js +++ b/lib/media/streaming_engine.js @@ -1020,6 +1020,11 @@ shaka.media.StreamingEngine = class { if (shaka.media.StreamingEngine.isEmbeddedText_(otherState)) { conti...
fix(media): Allow playing Periods with missing text In the case of multi-Period content, now we won't get into buffering states when the last Period doesn't have a text stream in it. Fixes #<I> Change-Id: I<I>e<I>e3cd<I>a<I>a<I>f6b<I>d<I>e<I>d<I>
google_shaka-player
train
71fa13b48fb979ec2e852a3dfd4f048a91a9bb69
diff --git a/lib/slim/embedded_engine.rb b/lib/slim/embedded_engine.rb index <HASH>..<HASH> 100644 --- a/lib/slim/embedded_engine.rb +++ b/lib/slim/embedded_engine.rb @@ -153,7 +153,7 @@ module Slim # ERB engine (uses the Temple ERB implementation) class ERBEngine < EmbeddedEngine def on_slim_embedded(...
test case for newline correctness if erb is embedded
slim-template_slim
train
d3bb55bfdd17bdac98a311d3857f2445e07cc475
diff --git a/base.php b/base.php index <HASH>..<HASH> 100644 --- a/base.php +++ b/base.php @@ -2744,7 +2744,7 @@ class View extends Prefab { function render($file,$mime='text/html',array $hive=NULL,$ttl=0) { $fw=Base::instance(); $cache=Cache::instance(); - foreach ($fw->split($fw->UI) as $dir) + foreach ($fw...
fix View->render utilizing multiple UI paths, bcosca/fatfree#<I>
bcosca_fatfree-core
train
40b51981f832fdf33ccacb93463568293d7c4a34
diff --git a/lib/roar/rails/version.rb b/lib/roar/rails/version.rb index <HASH>..<HASH> 100644 --- a/lib/roar/rails/version.rb +++ b/lib/roar/rails/version.rb @@ -1,5 +1,5 @@ module Roar module Rails - VERSION = "0.1.6" + VERSION = "1.0.0" end end
this goes all into <I>.
apotonick_roar-rails
train
3c34848a9488a567aa89040e007a0da5679e3939
diff --git a/lib/ascii_plist/object.rb b/lib/ascii_plist/object.rb index <HASH>..<HASH> 100644 --- a/lib/ascii_plist/object.rb +++ b/lib/ascii_plist/object.rb @@ -17,6 +17,7 @@ module AsciiPlist def eql?(object) type_name == object.type_name && value == object.value && annotation == object.annotation e...
Add parsing of empty arrays and dictionaries
CocoaPods_Nanaimo
train
3c9ed7690f61c75b8e1d857095416bf4ae6decc7
diff --git a/algorithms/active/adt/src/main/java/de/learnlib/algorithms/adt/automaton/ADTState.java b/algorithms/active/adt/src/main/java/de/learnlib/algorithms/adt/automaton/ADTState.java index <HASH>..<HASH> 100644 --- a/algorithms/active/adt/src/main/java/de/learnlib/algorithms/adt/automaton/ADTState.java +++ b/algo...
adjust to AutomataLib refactorings
LearnLib_learnlib
train
d9dab6119ac4b342361541b4cfb52c92731b7c5a
diff --git a/peyotl/phylesystem/phylesystem_shard.py b/peyotl/phylesystem/phylesystem_shard.py index <HASH>..<HASH> 100644 --- a/peyotl/phylesystem/phylesystem_shard.py +++ b/peyotl/phylesystem/phylesystem_shard.py @@ -79,9 +79,14 @@ class PhylesystemShardProxy(GitShard): def diagnose_repo_nexml2json(shard): ""...
more detailed diagnostics (misnamed property?)
OpenTreeOfLife_peyotl
train
ff118ad0f8d9cf99903d3391ca3a295671022cee
diff --git a/journal/journal.go b/journal/journal.go index <HASH>..<HASH> 100644 --- a/journal/journal.go +++ b/journal/journal.go @@ -90,6 +90,7 @@ func Send(message string, priority Priority, vars map[string]string) error { if err != nil { return journalError(err.Error()) } + defer file.Close() _, err =...
Close the tempfile when journaling large messages When we fail to log a message to journald due to ENOBUFS or EMSGSIZE, we attempt to pass the message to journald by passing it a descriptor attached to some shared memory. We need to close the descriptor, too.
coreos_go-systemd
train
5a327aed31591d6014c39b4ea9283add98c5788d
diff --git a/lib/connect_failover.js b/lib/connect_failover.js index <HASH>..<HASH> 100644 --- a/lib/connect_failover.js +++ b/lib/connect_failover.js @@ -192,7 +192,9 @@ ConnectFailover.prototype.connect = function(callback) { reconnectAttempts = 0; connects += 1; - callback(null, client, re...
Emit connect event from ConnectFailover. Pass connector function to the callback
gdaws_node-stomp
train
a1afbcac93e07d893e7c35295336e4dcee196319
diff --git a/lib/pt/ui.rb b/lib/pt/ui.rb index <HASH>..<HASH> 100644 --- a/lib/pt/ui.rb +++ b/lib/pt/ui.rb @@ -636,16 +636,47 @@ class PT::UI end def show_task(task) - title task.name + title task.name.green estimation = [-1, nil].include?(task.estimate) ? "Unestimated" : "#{task.estimate} points" ...
put attachments inline with notes in show_task
raul_pt
train
ff457bef86539cb4ed7b7eb44eb85f3edddf53e1
diff --git a/lib/Config.php b/lib/Config.php index <HASH>..<HASH> 100644 --- a/lib/Config.php +++ b/lib/Config.php @@ -10,9 +10,9 @@ use Symfony\Component\Console\Terminal; final class Config extends PhpCsFixerConfig { - const APP_V1 = 'APP_V1'; - const APP_V2 = 'APP_V2'; - const LIB = 'LIB'; +...
Rule sets must appear in the order present in PhpCsFixer\RuleSet
Slamdunk_php-cs-fixer-extensions
train
4aefbe051e79d89e5838457ce599fde829a3fe6e
diff --git a/core-bundle/src/Resources/contao/widgets/FileTree.php b/core-bundle/src/Resources/contao/widgets/FileTree.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/widgets/FileTree.php +++ b/core-bundle/src/Resources/contao/widgets/FileTree.php @@ -277,7 +277,7 @@ class FileTree extends \Widge...
[Core] Correctly check the access permissions in the file picker (see #<I>)
contao_contao
train
2d6a257ae3f6b3986b7febc6f0d5f57c8696258a
diff --git a/caravan/commands/decider.py b/caravan/commands/decider.py index <HASH>..<HASH> 100644 --- a/caravan/commands/decider.py +++ b/caravan/commands/decider.py @@ -36,10 +36,11 @@ class Command(BaseCommand): domain=self.args.domain, ...
Add version in log message (workflow registration)
pior_caravan
train
86c6920539641c81c44b43d8373d3386a45543c4
diff --git a/plotnine/coords/coord_flip.py b/plotnine/coords/coord_flip.py index <HASH>..<HASH> 100644 --- a/plotnine/coords/coord_flip.py +++ b/plotnine/coords/coord_flip.py @@ -36,6 +36,7 @@ class coord_flip(coord_cartesian): # switch the scales x, y = 'SCALE_X', 'SCALE_Y' layout[x], layout...
Return the layout from coord_flip.setup_layout - Remove legend from coord tests
has2k1_plotnine
train
76a5dd2e98eea71cb43b586b3e39f9eaa2eed5bd
diff --git a/lib/friendly_id/reserved.rb b/lib/friendly_id/reserved.rb index <HASH>..<HASH> 100644 --- a/lib/friendly_id/reserved.rb +++ b/lib/friendly_id/reserved.rb @@ -30,7 +30,7 @@ For example: after_validation :move_friendly_id_error_to_name def move_friendly_id_error_to_name - errors.messages[:na...
Fix reserved words example See pull request #<I>.
norman_friendly_id
train
d7637bfbfb9c7826de5d019239303390f6e47228
diff --git a/mongoctl/objects/shardset_cluster.py b/mongoctl/objects/shardset_cluster.py index <HASH>..<HASH> 100644 --- a/mongoctl/objects/shardset_cluster.py +++ b/mongoctl/objects/shardset_cluster.py @@ -91,8 +91,15 @@ class ShardSetCluster(Cluster): ###########################################################...
Logging current shard configs on shardset configure
mongolab_mongoctl
train