hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
d81a6930d21262464ee06ae8afb51b65920f378c
diff --git a/tap/tests/test_pytest_plugin.py b/tap/tests/test_pytest_plugin.py index <HASH>..<HASH> 100644 --- a/tap/tests/test_pytest_plugin.py +++ b/tap/tests/test_pytest_plugin.py @@ -4,6 +4,7 @@ try: from unittest import mock except ImportError: import mock +import tempfile from tap.plugins import pyt...
Fix test to not create a new directory in the project.
python-tap_tappy
train
fe0b588abdbe8f82522ee0f2859b90939197a93d
diff --git a/pytradfri/__main__.py b/pytradfri/__main__.py index <HASH>..<HASH> 100644 --- a/pytradfri/__main__.py +++ b/pytradfri/__main__.py @@ -29,7 +29,8 @@ if __name__ == '__main__': "Tradfri gateway:", end=" ") key = input().strip() if len(key) != 16: - raise PytradfriE...
improved error message if security code does not have enough characters (#<I>)
ggravlingen_pytradfri
train
1c09ea738081284a327aa689410e3f68aa2ab325
diff --git a/src/Psalm/Checker/ClassChecker.php b/src/Psalm/Checker/ClassChecker.php index <HASH>..<HASH> 100644 --- a/src/Psalm/Checker/ClassChecker.php +++ b/src/Psalm/Checker/ClassChecker.php @@ -31,6 +31,9 @@ class ClassChecker extends ClassLikeChecker */ protected static $class_extends = []; + /** ...
Fix Psalm errors in Psalm
vimeo_psalm
train
c7d8d050a2a7503dcb94a54992725640c7e09294
diff --git a/src/Sqlsrv/DBAL.php b/src/Sqlsrv/DBAL.php index <HASH>..<HASH> 100644 --- a/src/Sqlsrv/DBAL.php +++ b/src/Sqlsrv/DBAL.php @@ -6,6 +6,7 @@ use EngineWorks\DBAL\DBAL as AbstractDBAL; use EngineWorks\DBAL\Traits\MethodSqlConcatenate; use EngineWorks\DBAL\Traits\MethodSqlQuote; use PDO; +use PDOStatement; ...
Sqlsrv\DBAL::queryDriver allow to aks only for affected rows When ask for affected rows it perform exec instead of prepare statement It creates a better performance since exec is faster than create the statement and then execute it
eclipxe13_engineworks-dbal
train
a1c5aab2b87c9e9d8e75324ce6fd6f1d8c6bd403
diff --git a/metricdef/metricdef.go b/metricdef/metricdef.go index <HASH>..<HASH> 100644 --- a/metricdef/metricdef.go +++ b/metricdef/metricdef.go @@ -86,6 +86,9 @@ func (m *MetricDefinition) UnmarshalJSON(raw []byte) error { for i := 0; i < s.NumField(); i++ { field := s.Field(i) + if field.PkgPath != "" { + ...
Do not try to un/marshal unexported fields in metricdefs
grafana_metrictank
train
c5cd969ac8269dbd6a4510eb0b90c71a68b033f5
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -113,10 +113,10 @@ gulp.task('test-coverage', ['peg', 'juttle-spec', 'instrument'], function() { .pipe(istanbul.enforceThresholds({ thresholds: { global: { - ...
gulpfile.js: Lower statements & lines coverage threshold to <I>%
juttle_juttle
train
95ab9c0b894f69bf7e679ce81e64fd67485dcbfe
diff --git a/src/test/java/org/sql2o/Sql2oTest.java b/src/test/java/org/sql2o/Sql2oTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/sql2o/Sql2oTest.java +++ b/src/test/java/org/sql2o/Sql2oTest.java @@ -192,10 +192,10 @@ public class Sql2oTest { public void testExecuteScalar(){ createAndFillUs...
move tests to use executeAndFetch
aaberg_sql2o
train
0c84970d162fee4cfec8a545dd44716343c7a968
diff --git a/address.js b/address.js index <HASH>..<HASH> 100644 --- a/address.js +++ b/address.js @@ -38,7 +38,7 @@ function Address (user, host) { exports.atom_expr = /[a-zA-Z0-9!#%&*+=?\^_`{|}~\$\x27\x2D\/]+/; exports.address_literal_expr = /(?:\[(?:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|IPv6:[0-9A-Fa-f:.]+)\])/; -...
allow domains with underscore fixes 'Invalid domain in address' error parsing domains which contain underscores. Underscores in domain name do not break spec and are often used.
haraka_Haraka
train
e02377554bd57a9e5aa001a351e89abf96b15b39
diff --git a/test/test_constraint.py b/test/test_constraint.py index <HASH>..<HASH> 100644 --- a/test/test_constraint.py +++ b/test/test_constraint.py @@ -18,6 +18,7 @@ class ConstraintTest(unittest.TestCase): integer = db.Column(db.Integer()) large = db.Column(db.Integer()) numer...
assertRaises(Warning)
xeBuz_Flask-Validator
train
6f2394da5e8de3c1d7054b98c525914559ab8abc
diff --git a/zk_coordinator.go b/zk_coordinator.go index <HASH>..<HASH> 100644 --- a/zk_coordinator.go +++ b/zk_coordinator.go @@ -677,7 +677,7 @@ func (this *ZookeeperCoordinator) tryRemoveOldApiRequests(group string, api Cons if t, err = strconv.ParseInt(string(data), 10, 64); err != nil { t = int64(0) // ...
Fixed an issue where blue green switches weren't being handled gracefully.
elodina_go_kafka_client
train
ff640f3ca089007166a54e1ecb687a3232499792
diff --git a/tests/unit/cloudant_t/database_test.py b/tests/unit/cloudant_t/database_test.py index <HASH>..<HASH> 100644 --- a/tests/unit/cloudant_t/database_test.py +++ b/tests/unit/cloudant_t/database_test.py @@ -5,7 +5,7 @@ database unittests import mock import unittest -from cloudant.database import CouchDataba...
add unit tests for cloudant specific database features
cloudant_python-cloudant
train
dfcbdae178f5ce0e06496b30ae331731987f2015
diff --git a/test/e2e_node/container.go b/test/e2e_node/container.go index <HASH>..<HASH> 100644 --- a/test/e2e_node/container.go +++ b/test/e2e_node/container.go @@ -104,13 +104,13 @@ func (cc *ConformanceContainer) Present() (bool, error) { return false, err } -type ContainerState int +type ContainerState string...
Add image pull retry in image pulling test.
kubernetes_kubernetes
train
7259b31763ab3dfd19debff46ccb70bed6a8b4b4
diff --git a/lib/Gitter/Repository.php b/lib/Gitter/Repository.php index <HASH>..<HASH> 100644 --- a/lib/Gitter/Repository.php +++ b/lib/Gitter/Repository.php @@ -233,10 +233,10 @@ class Repository */ public function getBranches() { - static $branches; + static $cache = array(); - ...
fixed shared cached for different Repository instances
klaussilveira_gitter
train
d9f9383b8e4336f57a7f0340b9a258c1dcb3e492
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -74,7 +74,16 @@ SecurePassword.prototype.verifySync = function (passwordBuf, hashBuf) { assert(Buffer.isBuffer(hashBuf), 'hashBuf must be Buffer') assert(hashBuf.length === SecurePassword.HASH_BYTES, 'hashBuf must be HAS...
Add decode and rehash logic
emilbayes_secure-password
train
7ab6d8d95ebad203b241af57f5f200bb5b8cdd6e
diff --git a/src/server/pps/server/worker_rc.go b/src/server/pps/server/worker_rc.go index <HASH>..<HASH> 100644 --- a/src/server/pps/server/worker_rc.go +++ b/src/server/pps/server/worker_rc.go @@ -9,6 +9,7 @@ import ( "github.com/pachyderm/pachyderm/src/server/pkg/deploy/assets" "k8s.io/kubernetes/pkg/api" + "k...
Explicitly set default resource requests to 0 for pipeline containers
pachyderm_pachyderm
train
4e7b55778e27e833ef7352ceb97a06f0f80a25a3
diff --git a/packages/dropdown/src/components/Dropdown.js b/packages/dropdown/src/components/Dropdown.js index <HASH>..<HASH> 100644 --- a/packages/dropdown/src/components/Dropdown.js +++ b/packages/dropdown/src/components/Dropdown.js @@ -53,7 +53,7 @@ Dropdown.propTypes = { zIndex: PropTypes.number, size: PropTy...
fix(hoc-input): accept object as innerRef affects: @crave/farmblocks-hoc-input So it works with the new React.createRef() and useRef() <URL>
CraveFood_farmblocks
train
2c57b591e4037b5268818153bfa6c40703a9743f
diff --git a/drools-model/drools-model-compiler/src/main/java/org/drools/modelcompiler/builder/generator/visitor/accumulate/AccumulateVisitor.java b/drools-model/drools-model-compiler/src/main/java/org/drools/modelcompiler/builder/generator/visitor/accumulate/AccumulateVisitor.java index <HASH>..<HASH> 100644 --- a/dro...
[DROOLS-<I>] Accumulate with static method with pettern bind variable (#<I>)
kiegroup_drools
train
a725a319b50057495b6335df2891334aa9b18069
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index <HASH>..<HASH> 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -547,9 +547,19 @@ class Plugin(object): return (self.opt_names, self.opt_parms) def set_option(self, optionname, value): - '''set the named opt...
[plugins] Preserve data type of a plugin option to the default one Some plugin options rely on the default data type that can be automatically overwritten by Python (e.g. from str to int). The commit preserves the original data type to ensure implicit data type specified in option definition is always used. Resolves...
sosreport_sos
train
8e6df4ecb40db16be334554a775d96278f2a1655
diff --git a/jhipster-uml.js b/jhipster-uml.js index <HASH>..<HASH> 100755 --- a/jhipster-uml.js +++ b/jhipster-uml.js @@ -76,14 +76,13 @@ try { if(dto){ listDTO = askForDTO(parser.classes); } - + var creator = new EntitiesCreator(parser, listDTO); creator.createEntities(); - if(!force){ + if(!force...
Update jhipster-uml.js See #<I>
jhipster_jhipster-uml
train
36fc4e17e466905b3cae8f84c02bd65057cbbf17
diff --git a/acceptance/config/el6/setup/jenkins/pre-suite/02_StopFirewall.rb b/acceptance/config/el6/setup/jenkins/pre-suite/02_StopFirewall.rb index <HASH>..<HASH> 100644 --- a/acceptance/config/el6/setup/jenkins/pre-suite/02_StopFirewall.rb +++ b/acceptance/config/el6/setup/jenkins/pre-suite/02_StopFirewall.rb @@ -1...
(maint) Stops firewall on redhat/debian platforms We do need the firewalls disabled for puppet kick tests to work. Firewall service on Fedora is firewalld (F<I> anyway).
puppetlabs_puppet
train
2b429dd4976d5d1565e5fdcbef0da4b6e920c9c6
diff --git a/src/PeopleMatter.php b/src/PeopleMatter.php index <HASH>..<HASH> 100644 --- a/src/PeopleMatter.php +++ b/src/PeopleMatter.php @@ -73,13 +73,17 @@ class PeopleMatter ]); } + protected function buildUrl($resource) + { + return "https://{$this->host}/api/{$resource}" + } + ...
removed commented code. added a buildUrl function
zenapply_php-peoplematter
train
0837bbba12927372e019cf6c1fffa2fac49540fb
diff --git a/tests/test_context.js b/tests/test_context.js index <HASH>..<HASH> 100644 --- a/tests/test_context.js +++ b/tests/test_context.js @@ -687,10 +687,6 @@ exports.setup = function(svc) { // Are username and app set properly? var ctx2 = new splunkjs.Context(http, {owner: "alpha", app: ...
Organized tests so the order makes sense
splunk_splunk-sdk-javascript
train
4f6216c222a44f3df786b9920fc722902db4bcc5
diff --git a/lib/rr.rb b/lib/rr.rb index <HASH>..<HASH> 100644 --- a/lib/rr.rb +++ b/lib/rr.rb @@ -12,6 +12,7 @@ require "#{dir}/rr/errors/spy_verification_error" require "#{dir}/rr/space" require "#{dir}/rr/double_injection" require "#{dir}/rr/hash_with_object_id_key" +require "#{dir}/rr/recorded_calls" require ...
Slight refactor to create recorded calls object
rr_rr
train
c98b00c3024fde404af1d7772fc7cec62ec04c83
diff --git a/pkg/services/alerting/notifier.go b/pkg/services/alerting/notifier.go index <HASH>..<HASH> 100644 --- a/pkg/services/alerting/notifier.go +++ b/pkg/services/alerting/notifier.go @@ -3,6 +3,7 @@ package alerting import ( "errors" "fmt" + "time" "github.com/grafana/grafana/pkg/bus" "github.com/gra...
allow <I> percent of alertTimeout for rendering to complete vs <I> percent
grafana_grafana
train
fe4895253711d61d8eaf8d8f7df944d762fed93c
diff --git a/go/vt/vttablet/endtoend/misc_test.go b/go/vt/vttablet/endtoend/misc_test.go index <HASH>..<HASH> 100644 --- a/go/vt/vttablet/endtoend/misc_test.go +++ b/go/vt/vttablet/endtoend/misc_test.go @@ -279,12 +279,12 @@ func TestConsolidation(t *testing.T) { var wg sync.WaitGroup wg.Add(2) go func() { - ...
query consolidator: fix to ignore leading margin comments When I originally added support for leading margin comments I made a mistake in this code: <URL>
vitessio_vitess
train
f4c02670dfda686bfd7dc22d7db8313659569630
diff --git a/server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java b/server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java index <HASH>..<HASH> 100644 --- a/server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java +++ b/server/sonar-main/src/main/java/org/sonar/appl...
Compute Engine must start after its local web server
SonarSource_sonarqube
train
c979263c03b73d0e70b22a350d260b5712ee1115
diff --git a/java/com/couchbase/lite/ApiTest.java b/java/com/couchbase/lite/ApiTest.java index <HASH>..<HASH> 100644 --- a/java/com/couchbase/lite/ApiTest.java +++ b/java/com/couchbase/lite/ApiTest.java @@ -772,10 +772,11 @@ public class ApiTest extends LiteTestCase { } - - // Make sure that a database's ma...
enable testSharedMapBlocks() and make some minor tweaks to remove Thread.sleep(). the result.get() is expected to return null, so removed that assertion.
couchbase_couchbase-lite-android
train
fc090073ff1a9d39118954ce9dab631f2393f531
diff --git a/src/main/java/com/hmsonline/trident/cql/CqlClientFactory.java b/src/main/java/com/hmsonline/trident/cql/CqlClientFactory.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/hmsonline/trident/cql/CqlClientFactory.java +++ b/src/main/java/com/hmsonline/trident/cql/CqlClientFactory.java @@ -70,7 +70,7 @@...
Adding reconnect incase the cluster gets closed. (which is possible since it is a static variable -- other thread may have somehow closed it)
hmsonline_storm-cassandra-cql
train
5683a32fe5365e04467aff30bf0748e83348b1d8
diff --git a/src/EncryptingCacheDecorator.php b/src/EncryptingCacheDecorator.php index <HASH>..<HASH> 100644 --- a/src/EncryptingCacheDecorator.php +++ b/src/EncryptingCacheDecorator.php @@ -12,17 +12,25 @@ class EncryptingCacheDecorator implements Cache private $publicKey; /** @var resource */ private $...
All ciphers available to openssl_seal have known weaknesses, so make it configurable with a strong default
jeskew_doctrine-cache-encrypter
train
987dafe7d6e1571bc710ca7b451754c1c1964001
diff --git a/test/AnnotationCommand.test.js b/test/AnnotationCommand.test.js index <HASH>..<HASH> 100644 --- a/test/AnnotationCommand.test.js +++ b/test/AnnotationCommand.test.js @@ -2,11 +2,12 @@ import { module } from 'substance-test' import { AnnotationCommand } from 'substance' import setupEditor from './fixture/...
Add tests for creating two consecutive annotations.
substance_substance
train
9cb268a8b8b82aeead294b892cb0bd9568969c51
diff --git a/go/trace/opentracing.go b/go/trace/opentracing.go index <HASH>..<HASH> 100644 --- a/go/trace/opentracing.go +++ b/go/trace/opentracing.go @@ -17,13 +17,13 @@ limitations under the License. package trace import ( - "strings" + "encoding/base64" + "encoding/json" otgrpc "github.com/opentracing-contri...
change how tracing query comments are handled
vitessio_vitess
train
436ef63e97eb32fc286b27e9320fc847090da640
diff --git a/Changelog.md b/Changelog.md index <HASH>..<HASH> 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,7 +2,8 @@ [full changelog](https://github.com/Mange/roadie/compare/v3.0.0...master) -* Nothing yet. +* Enhancements: + * `CssNotFound` can take a provider which will be shown in error messages. ### ...
CssNotFound can now take a provider that will be shown in the error
Mange_roadie
train
c0d1374ed7d0027355d3f91f03421f243a3db5c7
diff --git a/lib/best_companies/company.rb b/lib/best_companies/company.rb index <HASH>..<HASH> 100644 --- a/lib/best_companies/company.rb +++ b/lib/best_companies/company.rb @@ -2,7 +2,22 @@ class BestCompanies::Company attr_accessor :name, :industry, :location, :review_url, :challenges, :atmosphere, :rewards, :p...
added initialize methods and custom constructors and add_ratings and add_awards instance methods
yosayon_Best_Companies
train
8468a05b87931d716bcc8c8cd381742de9fe2770
diff --git a/extensions/tags/src/Listener/SaveTagsToDatabase.php b/extensions/tags/src/Listener/SaveTagsToDatabase.php index <HASH>..<HASH> 100755 --- a/extensions/tags/src/Listener/SaveTagsToDatabase.php +++ b/extensions/tags/src/Listener/SaveTagsToDatabase.php @@ -118,6 +118,7 @@ class SaveTagsToDatabase ...
Unset tags relation after setting (#<I>) This ensures that the proper tag values are returned to the API by clearing any cached tags before returning a response. It also makes sure that the listeners to the `DiscussionWasTagged` event won't have old data under `$event->discussion->tags`. Fixes <URL>
flarum_core
train
46e43113624c62144c94fe2e3bf33aa9589eac25
diff --git a/src/Stagehand/TestRunner/Runner/SimpleTestRunner/JUnitXMLProgressReporter.php b/src/Stagehand/TestRunner/Runner/SimpleTestRunner/JUnitXMLProgressReporter.php index <HASH>..<HASH> 100644 --- a/src/Stagehand/TestRunner/Runner/SimpleTestRunner/JUnitXMLProgressReporter.php +++ b/src/Stagehand/TestRunner/Runner...
Renamed the method from echoFailureOrError() to paintFailureOrError().
piece_stagehand-testrunner
train
0c76f115c6365b04d3825aa2b9dba9d37bb38662
diff --git a/virus_total_apis/__init__.py b/virus_total_apis/__init__.py index <HASH>..<HASH> 100644 --- a/virus_total_apis/__init__.py +++ b/virus_total_apis/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- __title__ = 'virustotal-api' -__version__ = '1.1.4' +__version__ = '1.1.5' __author__ = 'Josh Maine' __...
Added Intelligence notifications feed. (#<I>) * Added Intelligence notifications feed. * Added ability to programmatically delete notifications from the feed.
blacktop_virustotal-api
train
57ff45a8c92c09a74e45192cfd449efb866002d3
diff --git a/salt/utils/event.py b/salt/utils/event.py index <HASH>..<HASH> 100644 --- a/salt/utils/event.py +++ b/salt/utils/event.py @@ -135,6 +135,9 @@ class SaltEvent(object): socks = dict(self.poller.poll(wait)) if self.sub in socks and socks[self.sub] == zmq.POLLIN: ...
Double check the intended tag when grabbing events
saltstack_salt
train
e05b51cd18bc64888412bf41b3f9921c3ffd2833
diff --git a/src/browser-scripts/livereload.js b/src/browser-scripts/livereload.js index <HASH>..<HASH> 100644 --- a/src/browser-scripts/livereload.js +++ b/src/browser-scripts/livereload.js @@ -69,22 +69,27 @@ // CSS changed? if ('.css' === file.ext) { - var linkTags = document.getElementsByTagN...
Keep existing stylesheet until new one loads This prevents a distracting Flash of Unstyled Content while loading the updated CSS
hiddentao_gulp-server-livereload
train
bb71ec4211cecced2b6975fcefa249118db4c700
diff --git a/lib/active_merchant/billing/gateways/eway_managed.rb b/lib/active_merchant/billing/gateways/eway_managed.rb index <HASH>..<HASH> 100644 --- a/lib/active_merchant/billing/gateways/eway_managed.rb +++ b/lib/active_merchant/billing/gateways/eway_managed.rb @@ -188,6 +188,7 @@ private reply[:message]=...
Payment response now includes eWayTrxnNumber
activemerchant_active_merchant
train
90aa9b95c30d5b62741f3a3802a31466a3a6f199
diff --git a/holoviews/plotting/plot.py b/holoviews/plotting/plot.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/plot.py +++ b/holoviews/plotting/plot.py @@ -156,6 +156,10 @@ class DimensionedPlot(Plot): self.uniform = uniform self.drawn = False self.handles = {} + self.group ...
Caching the current frame on each plot Ensures that multiple lookups during plotting don't have to traverse objects and allows access to the last object that was displayed.
pyviz_holoviews
train
91220f2a98ec6b2a441b18786262372c9fba91bd
diff --git a/lib/browser/api/dialog.js b/lib/browser/api/dialog.js index <HASH>..<HASH> 100644 --- a/lib/browser/api/dialog.js +++ b/lib/browser/api/dialog.js @@ -21,7 +21,7 @@ var messageBoxOptions = { } var parseArgs = function (window, options, callback, ...args) { - if (!(window === null || (window != null ? w...
:lipstick: Simplify conditional check for BrowserWindow
electron_electron
train
a8e3f5d747171171c26fa12dbe08d46ec3f75f47
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_ver...
Make nose a test dependency and use nose to run the tests
thingful_hypercat-py
train
289eb92cb5fa0f512411d79af4554eeb6c6430ed
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -187,23 +187,26 @@ message = consumer.pop If there are messages on the queue, `pop` will return one immediately. If there are no messages on the queue, `pop` will block execution until one arrives. -Be aware, while `Co...
Added Queue#pop_without_blocking in favor of Queue#pop(true)
wistia_nsq-ruby
train
ba09ba15452bddd20fab905a4d12861285063fb9
diff --git a/spead2/tools/bench_trollius.py b/spead2/tools/bench_trollius.py index <HASH>..<HASH> 100644 --- a/spead2/tools/bench_trollius.py +++ b/spead2/tools/bench_trollius.py @@ -1,4 +1,4 @@ -# Copyright 2015, 2017 SKA South Africa +# Copyright 2015, 2017, 2019 SKA South Africa # # This program is free software: ...
Change --heaps handling in spead2_bench.py It now limits the number of heaps in the send queue as well.
ska-sa_spead2
train
a55621995498b3a7263b80dc03eefccf14891a79
diff --git a/ibis/impala/compiler.py b/ibis/impala/compiler.py index <HASH>..<HASH> 100644 --- a/ibis/impala/compiler.py +++ b/ibis/impala/compiler.py @@ -230,8 +230,14 @@ class ImpalaSelect(comp.Select): buf = StringIO() buf.write('WHERE ') - fmt_preds = [self._translate(pred, permit_subquer...
Fix impala compilation of multiple boolean filters Closes #<I>
ibis-project_ibis
train
c8d0e6d3cc67b57c293e5e2655044f4cfe47746f
diff --git a/generator-lateralus/app/templates/app/scripts/main.js b/generator-lateralus/app/templates/app/scripts/main.js index <HASH>..<HASH> 100644 --- a/generator-lateralus/app/templates/app/scripts/main.js +++ b/generator-lateralus/app/templates/app/scripts/main.js @@ -3,6 +3,11 @@ require.config({ baseUrl: ...
generator: Alias lodash as underscore
Jellyvision_lateralus
train
f9295af6bbdd613fcb4317f5e6e2396ec2c0e279
diff --git a/cmd/zoekt-archive-index/archive.go b/cmd/zoekt-archive-index/archive.go index <HASH>..<HASH> 100644 --- a/cmd/zoekt-archive-index/archive.go +++ b/cmd/zoekt-archive-index/archive.go @@ -50,10 +50,7 @@ func (a *tarArchive) Next() (*File, error) { } func (a *tarArchive) Close() error { - if a.closer != n...
zoekt-archive-index: use io.ReadCloser to simplify io.Closer usage Using io.ReadCloser allows us to avoid the tricky control flow we previously had around setting an `io.Reader` and `io.Closer` separately. Change-Id: Ifaccf2ba<I>b<I>de<I>f<I>d7ea<I>e1c<I>
google_zoekt
train
137b73c03e8d047855cd890cd93203408228d726
diff --git a/cytoscape-snap-to-grid.js b/cytoscape-snap-to-grid.js index <HASH>..<HASH> 100644 --- a/cytoscape-snap-to-grid.js +++ b/cytoscape-snap-to-grid.js @@ -878,7 +878,7 @@ module.exports = function (opts, cy, $, debounce) { } } } - }, 60);...
debounce time of guidelines lowered to <I>ms
iVis-at-Bilkent_cytoscape.js-grid-guide
train
12589f522410c8fd52ec64d4ca89ea4de103b658
diff --git a/cli/src/test/java/org/jboss/as/cli/OperatorsTestCase.java b/cli/src/test/java/org/jboss/as/cli/OperatorsTestCase.java index <HASH>..<HASH> 100644 --- a/cli/src/test/java/org/jboss/as/cli/OperatorsTestCase.java +++ b/cli/src/test/java/org/jboss/as/cli/OperatorsTestCase.java @@ -193,7 +193,7 @@ public class ...
Fix for WFCORE-<I>, upgrade CLI to aesh <I>
wildfly_wildfly-core
train
f795a88b259e6c1dd4e41f6826afad5cddc517ee
diff --git a/java-monitoring-dashboards/proto-google-cloud-monitoring-dashboard-v1/src/main/java/com/google/monitoring/dashboard/v1/TimeSeriesQuery.java b/java-monitoring-dashboards/proto-google-cloud-monitoring-dashboard-v1/src/main/java/com/google/monitoring/dashboard/v1/TimeSeriesQuery.java index <HASH>..<HASH> 1006...
feat(generator): update protoc to <I> (#<I>) This PR was generated using Autosynth. :rainbow: Synth log will be available here: <URL>
googleapis_google-cloud-java
train
e47db52ab3c5c3a8bfacb738ecb2ae47bf74b3c2
diff --git a/src/core/Typeahead.js b/src/core/Typeahead.js index <HASH>..<HASH> 100644 --- a/src/core/Typeahead.js +++ b/src/core/Typeahead.js @@ -292,59 +292,41 @@ class Typeahead extends React.Component<Props, TypeaheadState> { _input: Ref<HTMLInputElement> = null; _referenceElement: Ref<ReferenceElement> = nul...
Revert back to `componentWillReceiveProps`
ericgio_react-bootstrap-typeahead
train
8db7f0ef5d52b83a94436d6ca6d97e45c5ff94ef
diff --git a/tools/compute_font_metrics.py b/tools/compute_font_metrics.py index <HASH>..<HASH> 100755 --- a/tools/compute_font_metrics.py +++ b/tools/compute_font_metrics.py @@ -254,13 +254,13 @@ def main(): {"name":"weight_int","label":"WEIGHT_INT","datatype":"integer","editable":True}, {"name":"width",...
compute: change order of html table
googlefonts_fontbakery
train
7095d49bf8ff7512b5f757cd376f2ede1944a4b4
diff --git a/src/js/mstepper.js b/src/js/mstepper.js index <HASH>..<HASH> 100644 --- a/src/js/mstepper.js +++ b/src/js/mstepper.js @@ -735,29 +735,19 @@ class MStepper { * @returns {number} - The height without "px". */ static getUnknownHeight(el) { - // Clones the element to insert it invisible - ...
Changing the way getUnknownHeight method works(it doesn't clone anymore)
Kinark_Materialize-stepper
train
4aaa1e83e602734a1f5a00329476b4013956bafc
diff --git a/sdk/keyvault/azure-keyvault-secrets/tests/perfstress_tests/list_secrets.py b/sdk/keyvault/azure-keyvault-secrets/tests/perfstress_tests/list_secrets.py index <HASH>..<HASH> 100644 --- a/sdk/keyvault/azure-keyvault-secrets/tests/perfstress_tests/list_secrets.py +++ b/sdk/keyvault/azure-keyvault-secrets/test...
[Perf] keyvault-secrets test improvements (#<I>) - Rename option from "list-size" to "count" to align with other languages - Validate vault contains 0 secrets before running
Azure_azure-sdk-for-python
train
1732adcc3eb11477d9fe9258fe772e3defaa3b34
diff --git a/master/buildbot/changes/svnpoller.py b/master/buildbot/changes/svnpoller.py index <HASH>..<HASH> 100644 --- a/master/buildbot/changes/svnpoller.py +++ b/master/buildbot/changes/svnpoller.py @@ -288,9 +288,11 @@ class SVNPoller(base.PollingChangeSource, util.ComparableMixin): return text def...
svnpoller: Don't fail when revisions contain changes outside our prefix. When getting the logs, revisions that don't affect the SVNPoller.svnurl path are already being filtered out by svn. Since the poller doesn't even consider them, I would expect it not to consider unrelated paths that come with the logs and just f...
buildbot_buildbot
train
b1f2582b9a1203470bdd7aa9b539d9d83bfa1a4b
diff --git a/dohq_artifactory/admin.py b/dohq_artifactory/admin.py index <HASH>..<HASH> 100644 --- a/dohq_artifactory/admin.py +++ b/dohq_artifactory/admin.py @@ -218,6 +218,8 @@ class Group(ArtifactoryObjectCRUD): class GroupLDAP(Group): def __init__(self, artifactory, name, realmAttributes): + # Must b...
LDAP group fix, but not worked :(
devopshq_artifactory
train
f0472fdd766bce33033f4eb2a6d6ac12a8364055
diff --git a/system/src/Grav/Common/Filesystem/Folder.php b/system/src/Grav/Common/Filesystem/Folder.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Common/Filesystem/Folder.php +++ b/system/src/Grav/Common/Filesystem/Folder.php @@ -72,8 +72,8 @@ abstract class Folder public static function getRelativePath($...
Fix Folder::getRelativePath() so that it works with backslashes
getgrav_grav
train
dfd886fac34ea5bf8f98af27039b6a9449eec253
diff --git a/tests/dummy/app/routes/components-examples/flexberry-objectlistview/limit-function-example.js b/tests/dummy/app/routes/components-examples/flexberry-objectlistview/limit-function-example.js index <HASH>..<HASH> 100644 --- a/tests/dummy/app/routes/components-examples/flexberry-objectlistview/limit-function-...
dellete illegal spase
Flexberry_ember-flexberry
train
7398ebad9b83c9dc430b2557e4fd794caf5a096c
diff --git a/aeron-driver/src/main/java/uk/co/real_logic/aeron/driver/DriverConnection.java b/aeron-driver/src/main/java/uk/co/real_logic/aeron/driver/DriverConnection.java index <HASH>..<HASH> 100644 --- a/aeron-driver/src/main/java/uk/co/real_logic/aeron/driver/DriverConnection.java +++ b/aeron-driver/src/main/java/u...
[Java]: Naming consistency.
real-logic_aeron
train
cfea9b1096202421b8ee0cfbd43327d71b9bd45d
diff --git a/src/Image.php b/src/Image.php index <HASH>..<HASH> 100644 --- a/src/Image.php +++ b/src/Image.php @@ -1154,7 +1154,7 @@ class Image extends ImageAutodoc implements \ArrayAccess $arguments = array_merge([$name, $instance], $arguments); - $arguments = self::unwrap($arguments); + $a...
Arguments array needs to be numerically indexed The arguments array needs to be numerically indexed because the array unpacking operator (...) does not work with associative arrays.
libvips_php-vips
train
3299baad927f14648d0b1b03e883a4a1fb649196
diff --git a/doc/source/conf.py b/doc/source/conf.py index <HASH>..<HASH> 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -37,7 +37,7 @@ extensions = [ 'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode', - 'sphinx.ext.githubpages', + # 'sphinx.ext.githubpages', 'sph...
Added reqs to req-file. (#<I>)
jonathf_chaospy
train
274d0c2c71a2620aa3b11c8a349bb82a34814df0
diff --git a/ComLinkoScope.php b/ComLinkoScope.php index <HASH>..<HASH> 100644 --- a/ComLinkoScope.php +++ b/ComLinkoScope.php @@ -92,19 +92,21 @@ class ComLinkoScope { $this->api->unlikeComment($id); $c = $this->getComment($id); + $this->api->useAdminToken = true; return $thi...
Use Admin Token where needed. Bugs found while testing with a non-admin user.
ShortCirquit_LinkoScopeApi
train
30d93a0e9b93a0bc4fbd3f1fb9bade6c3feacd94
diff --git a/genome_sort/webapp.py b/genome_sort/webapp.py index <HASH>..<HASH> 100644 --- a/genome_sort/webapp.py +++ b/genome_sort/webapp.py @@ -59,6 +59,8 @@ def download_species_data(analysis_id,tax_id): @APP.route('/analysis/<analysis_id>') def analysis(analysis_id): + if not os.path.exists(join_path(APP.co...
If user calls /analysis/<analysis_id> and dir /tmp/analysis_id does not exist then we redirect to /sort_sequence/<analysis_id>
Phelimb_metasort
train
e5a31148d5a8b0a4a179df684bf3b1482ae6ac72
diff --git a/lxd/device/disk.go b/lxd/device/disk.go index <HASH>..<HASH> 100644 --- a/lxd/device/disk.go +++ b/lxd/device/disk.go @@ -1466,7 +1466,7 @@ func (d *disk) postStop() error { } _, err = pool.UnmountCustomVolume(storageProjectName, d.config["source"], nil) - if err != nil { + if err != nil && !erro...
lxd/device/disk: Ignore storageDrivers.ErrInUse error from pool.UnmountCustomVolume in postStop This can occur when multiple running instances have the same disk attached and one of them is stopped. The last one to stop will perform the actual unmount.
lxc_lxd
train
65992bde9e28a656f214770c5c4a257ff48db7eb
diff --git a/scheduler/scheduler.go b/scheduler/scheduler.go index <HASH>..<HASH> 100644 --- a/scheduler/scheduler.go +++ b/scheduler/scheduler.go @@ -1101,14 +1101,19 @@ func (driver *MesosSchedulerDriver) _stop(cause error, stopStatus mesos.Status) default: } close(driver.stopCh) - if cause != nil { - lo...
avoid deadlock on Stop() or Abort() invoked from within a Scheduler callback
mesos_mesos-go
train
bd48eabf9b7d0f4cc1fdca237e658e03cec4be92
diff --git a/src/worker/analysis.worker.js b/src/worker/analysis.worker.js index <HASH>..<HASH> 100644 --- a/src/worker/analysis.worker.js +++ b/src/worker/analysis.worker.js @@ -2,6 +2,7 @@ import Jed from "jed"; import omit from "lodash/omit"; import merge from "lodash/merge"; +const isUndefined = require( "lodash...
Add LargestKeywordDistanceAssessment in the configuration
Yoast_YoastSEO.js
train
a21873f42358903f2ce1088189ad0b66ca8e0f67
diff --git a/code/checkout/steps/CheckoutStep_Address.php b/code/checkout/steps/CheckoutStep_Address.php index <HASH>..<HASH> 100644 --- a/code/checkout/steps/CheckoutStep_Address.php +++ b/code/checkout/steps/CheckoutStep_Address.php @@ -36,7 +36,7 @@ class CheckoutStep_Address extends CheckoutStep{ $form->setActio...
Update CheckoutStep_Address.php Use different extension names for the ShippingAddressForm and the BillingAddressForm
silvershop_silvershop-core
train
5249b1c13391ce287f1bed0fb700ea9032ca2d1b
diff --git a/ejb3/src/main/java/org/jboss/as/ejb3/cache/distributable/DistributableCacheFactoryBuilderServiceConfigurator.java b/ejb3/src/main/java/org/jboss/as/ejb3/cache/distributable/DistributableCacheFactoryBuilderServiceConfigurator.java index <HASH>..<HASH> 100644 --- a/ejb3/src/main/java/org/jboss/as/ejb3/cache/...
WFLY-<I> Stateful bean with @StatefulTimeout value -1 should not timeout or removed (apply the fix to DistributableCacheFactoryBuilderServiceConfigurator besides SimpleCache; loosen the condition to allow for all negative values)
wildfly_wildfly
train
de6b9b1ebc66ce9d2ce476baa931c2009003b60d
diff --git a/Libraries/OpenGraphInterface.php b/Libraries/OpenGraphInterface.php index <HASH>..<HASH> 100644 --- a/Libraries/OpenGraphInterface.php +++ b/Libraries/OpenGraphInterface.php @@ -12,4 +12,4 @@ interface OpenGraphInterface { public function removeMeta(); } -?> \ No newline at end of file +?>
Update OpenGraphInterface.php This file ends with no newline character. It won't render properly on a terminal, and it's considered a bad practice. Add a simple line feed as the last character to fix it.
beyerz_OpenGraphProtocolBundle
train
ce11a6dc28318a9f5caa78f659b7e8e32b136ec7
diff --git a/TeamComp/tier.py b/TeamComp/tier.py index <HASH>..<HASH> 100644 --- a/TeamComp/tier.py +++ b/TeamComp/tier.py @@ -41,6 +41,12 @@ class Tier(Enum): silver = 5 bronze = 6 + @classmethod + def all_tiers_below(cls, tier): + for t in cls: + if not t.is_better_or_equal(tier): ...
Added the ability to remove all players below a certain tier
MakersF_LoLScraper
train
9256dc322157f210d13c4db2fec765e7de878828
diff --git a/activeweb/src/main/java/org/javalite/activeweb/freemarker/FormTag.java b/activeweb/src/main/java/org/javalite/activeweb/freemarker/FormTag.java index <HASH>..<HASH> 100644 --- a/activeweb/src/main/java/org/javalite/activeweb/freemarker/FormTag.java +++ b/activeweb/src/main/java/org/javalite/activeweb/freem...
if form tag params has controller do not fail if environment does not have one
javalite_activeweb
train
1abfbeca2ba3b181705dcab7646f0800bafea638
diff --git a/js/angular/components/common/common.js b/js/angular/components/common/common.js index <HASH>..<HASH> 100644 --- a/js/angular/components/common/common.js +++ b/js/angular/components/common/common.js @@ -117,7 +117,7 @@ function link($scope, element, attrs) { var swipeDirection; var hammer...
Fixes check for undefined on Hammer elements. This can cause console errors in some circumstances.
base-apps_angular-base-apps
train
d9bd99476cdc857000642fb5b2894a2aeff23018
diff --git a/mod/forum/lib.php b/mod/forum/lib.php index <HASH>..<HASH> 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -3680,6 +3680,22 @@ function forum_add_user_default_subscriptions($userid, $context) { case CONTEXT_SYSTEM: // For the whole site if ($courses = get_records('course'...
temporary patch for the forum trouble that is breaking installs MDL-<I> ; merged from MOODLE_<I>_STABLE
moodle_moodle
train
85f4eb7aa0f6dc839c7db335f3b9427cfee7cc85
diff --git a/server/Actuator.rb b/server/Actuator.rb index <HASH>..<HASH> 100644 --- a/server/Actuator.rb +++ b/server/Actuator.rb @@ -129,7 +129,7 @@ class Actuator end def write( value_, option_) - ret = @proxy_iface.write( value_, option_) + ret = safe_write( value_, option_) if defined? $da...
add error signal and rescue system for measure and actuator
openplacos_openplacos
train
804eb572c423885c6cf6affc4d1fbebffab1d4c5
diff --git a/src/main/java/io/javalin/Javalin.java b/src/main/java/io/javalin/Javalin.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/javalin/Javalin.java +++ b/src/main/java/io/javalin/Javalin.java @@ -422,7 +422,7 @@ public class Javalin { } private Javalin addHandler(@NotNull HandlerType handlerT...
[routing] Ignore casing
tipsy_javalin
train
f67a49c4f486c3f3a56ee6db59665e6eb776b750
diff --git a/GVRf/Framework/src/org/gearvrf/GVRContext.java b/GVRf/Framework/src/org/gearvrf/GVRContext.java index <HASH>..<HASH> 100644 --- a/GVRf/Framework/src/org/gearvrf/GVRContext.java +++ b/GVRf/Framework/src/org/gearvrf/GVRContext.java @@ -1004,13 +1004,13 @@ public abstract class GVRContext { * @since 1.6...
Capture at the first place in GVRF when creating a texture on non-glthead, and print out the stack in java layer for debugging convenience.
Samsung_GearVRf
train
21038fc0de2692c6c929122588644decbe0321ed
diff --git a/docs/src/style_guide/StyleGuide.js b/docs/src/style_guide/StyleGuide.js index <HASH>..<HASH> 100644 --- a/docs/src/style_guide/StyleGuide.js +++ b/docs/src/style_guide/StyleGuide.js @@ -6,7 +6,6 @@ var Route = Router.Route; var DefaultRoute = Router.DefaultRoute; var RouteHandler = Router.RouteHandler; ...
Migration to router context instead of mixin.
grommet_grommet
train
e9346b0b9492dae57bc60973ae75b69a1fe4d13a
diff --git a/array.js b/array.js index <HASH>..<HASH> 100644 --- a/array.js +++ b/array.js @@ -12,6 +12,7 @@ module.exports = function createArrayListener (listen) { arr(onChange) function onChange (data) { + if (!arr.getLength()) return var diff = data._diff diff.forEach(function (change...
Continue out of listen loop if array is empty
bendrucker_weakmap-event
train
371b6144162b1567e16b5ede9bc3ea339d86df29
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ### Changes +* Removed deprecation warnings (`E_USER_DEPRECATED`) when using `Kreait\Firebase` and `Kreait\Firebase\Factory` + #### Internal * Storage and Firestore clients are now instan...
Remove E_USER_DEPRECATED warnings
kreait_firebase-php
train
638a5d8b1bba48749cff9d47033b566bd842beb5
diff --git a/core/src/test/java/org/infinispan/jmx/RpcManagerMBeanTest.java b/core/src/test/java/org/infinispan/jmx/RpcManagerMBeanTest.java index <HASH>..<HASH> 100644 --- a/core/src/test/java/org/infinispan/jmx/RpcManagerMBeanTest.java +++ b/core/src/test/java/org/infinispan/jmx/RpcManagerMBeanTest.java @@ -22,7 +22,...
[ISPN-<I>] (Avoid marshalling or calling RPCDIspatcher if sole member of cluster) Removed unused import.
infinispan_infinispan
train
3ec4da6ac63f9541519d67ffd5015b2a326de1f5
diff --git a/etcdmain/etcd.go b/etcdmain/etcd.go index <HASH>..<HASH> 100644 --- a/etcdmain/etcd.go +++ b/etcdmain/etcd.go @@ -151,6 +151,7 @@ func startEtcd() { if err != nil { log.Fatalf("etcd: error setting up initial cluster: %v", err) } + log.Printf("etcd: initial cluster members: %s", cls.String()) if ...
etcd: print initial cluster members during startup etcd now prints the initial clusters members during startup. ``` <I>/<I>/<I> <I>:<I>:<I> etcd: initial cluster members: etcd0=http://<I>:<I>,etcd1=http://<I>:<I>,etcd2=http://<I>:<I> ```
etcd-io_etcd
train
a16aa68c1d811f074d16b6d3ae6f9839c7fceb09
diff --git a/src/Composer/DependencyResolver/Solver.php b/src/Composer/DependencyResolver/Solver.php index <HASH>..<HASH> 100644 --- a/src/Composer/DependencyResolver/Solver.php +++ b/src/Composer/DependencyResolver/Solver.php @@ -1352,7 +1352,7 @@ class Solver } // conflict - lis...
Rule literals are sorted, so first literal added is not first retrieved Fixes #<I>
mothership-ec_composer
train
608b4ea78909901182aeb4636ef106a2125c7427
diff --git a/base/standard/src/main/java/org/openscience/cdk/fingerprint/Fingerprinter.java b/base/standard/src/main/java/org/openscience/cdk/fingerprint/Fingerprinter.java index <HASH>..<HASH> 100644 --- a/base/standard/src/main/java/org/openscience/cdk/fingerprint/Fingerprinter.java +++ b/base/standard/src/main/java/...
Cuts in half the number of paths we need to encode, only do the more expensive canonical store when the start and end of the path are ordered lexicographically.
cdk_cdk
train
12e150e29f0294a2e652523abdf2dd2a6066ec94
diff --git a/lib/jitsu.js b/lib/jitsu.js index <HASH>..<HASH> 100644 --- a/lib/jitsu.js +++ b/lib/jitsu.js @@ -388,7 +388,7 @@ jitsu.showError = function (command, err, shallow, skip) { return errors.connection.length ? unknownError('Error contacting drone(s):', errors.connection[0].stack) - ...
[fix] Update bad reference to `errors`.
nodejitsu_jitsu
train
fb2a6958a4ff28dddc91a39e4a60ae9587ae15a3
diff --git a/src/Lang/hr.php b/src/Lang/hr.php index <HASH>..<HASH> 100644 --- a/src/Lang/hr.php +++ b/src/Lang/hr.php @@ -39,7 +39,7 @@ return [ 'monday' => 'ponedjeljak', 'tuesday' => 'utorak', 'wednesday' => 'srijeda', - 'thursday' => 'cetvrtak', + 'thursday' => 'četvrtak', 'friday' => 'pet...
Update hr.php (Croatian) Typo in day name.
jenssegers_date
train
bfe9dfffaca454b58f50dbaab35d93d90ac152f5
diff --git a/structurizr-dot/src/com/structurizr/io/dot/DotWriter.java b/structurizr-dot/src/com/structurizr/io/dot/DotWriter.java index <HASH>..<HASH> 100644 --- a/structurizr-dot/src/com/structurizr/io/dot/DotWriter.java +++ b/structurizr-dot/src/com/structurizr/io/dot/DotWriter.java @@ -15,8 +15,9 @@ import java.io....
Tweaked some javadoc.
structurizr_java
train
8968666506a3fb8fbd7bde28dcffff4dee1fd6bd
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,9 @@ from __future__ import print_function from setuptools import setup, find_packages from codecs import open -from os import path +import sys +from os import getcwd, path +sys.path.append(path.dirname(getcwd())) ...
add working dir to path to prevent ModuleNotFoundError during pip install
hammerlab_stancache
train
8666165bc5fe72b65805b878b2c781a05a34a963
diff --git a/Executer/CommandExecuter.php b/Executer/CommandExecuter.php index <HASH>..<HASH> 100644 --- a/Executer/CommandExecuter.php +++ b/Executer/CommandExecuter.php @@ -38,10 +38,6 @@ class CommandExecuter $input = new StringInput($commandString); $output = new StringOutput(); - if('cac...
It is not required any or to force --no-warmup on cache:clear command
CoreSphere_ConsoleBundle
train
7b67ac606f560fccfea2ecf59d8cfc06d507ba27
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ use oat\taoTaskQueue\model\Queue; use oat\taoTaskQueue\model\QueueBroker\RdsQueueBroker; use oat\taoTaskQueue\model\QueueBroker\SqsQueueBroker; use oat\taoTaskQueue\model\TaskLogInterface; -use oat\taoT...
TAO-<I> - setMaxIterations when selecting the dedicated queue
oat-sa_extension-tao-task-queue
train
dacb0d0ee8b1f7c0d194408cbd759ef5a5032801
diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/editorView.js b/bundles/org.eclipse.orion.client.ui/web/orion/editorView.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/orion/editorView.js +++ b/bundles/org.eclipse.orion.client.ui/web/orion/editorView.js @@ -502,8 +502,8 @@ defin...
Bug <I> - Code Edit widget: Do not call editor.showProblems() if there is no validator service.
eclipse_orion.client
train
cff51e209257f01d528cefef06f66eec5a7972e0
diff --git a/django_ses/views.py b/django_ses/views.py index <HASH>..<HASH> 100644 --- a/django_ses/views.py +++ b/django_ses/views.py @@ -184,8 +184,6 @@ def handle_bounce(request): http://docs.aws.amazon.com/sns/latest/gsg/json-formats.html#http-subscription-confirmation-json """ - import pdb;pdb.s...
Removed pdb code :(
django-ses_django-ses
train
b070554a8aaf4b33f2c1e3b1b128eed47ed28fb9
diff --git a/astrobase/cpserver/checkplotserver_handlers.py b/astrobase/cpserver/checkplotserver_handlers.py index <HASH>..<HASH> 100644 --- a/astrobase/cpserver/checkplotserver_handlers.py +++ b/astrobase/cpserver/checkplotserver_handlers.py @@ -13,6 +13,7 @@ These are Tornado handlers for serving checkplots and opera...
checkplotserver: fix some more py2 stuff
waqasbhatti_astrobase
train
ae57140040f47eeddcb60ef5177d472de1809a9f
diff --git a/app/core/PhpBenchmark.php b/app/core/PhpBenchmark.php index <HASH>..<HASH> 100644 --- a/app/core/PhpBenchmark.php +++ b/app/core/PhpBenchmark.php @@ -37,7 +37,7 @@ class PhpBenchmark { $this->closures[] = $callable; } - public function run($count = 10000) { + public function run($count = 1000000) { ...
Increased default run count to one million.
smuuf_phpcb
train
6487686c646e77411d886617c778683f794691ea
diff --git a/src/Tooltip/Tooltip.js b/src/Tooltip/Tooltip.js index <HASH>..<HASH> 100644 --- a/src/Tooltip/Tooltip.js +++ b/src/Tooltip/Tooltip.js @@ -276,10 +276,7 @@ class Tooltip extends React.Component { const placement = theme.direction === 'rtl' ? flipPlacement(placementProp) : placementProp; let open...
[Tooltip] Remove title from chldrenProps (#<I>)
mui-org_material-ui
train
b25e93d0bbaf26226cc1e026b27fa8789e9cab5d
diff --git a/lib/_cache.js b/lib/_cache.js index <HASH>..<HASH> 100644 --- a/lib/_cache.js +++ b/lib/_cache.js @@ -1,6 +1,6 @@ 'use strict'; -var getNull = require('es5-ext/function/k')(null) +var getNull = require('es5-ext/function/constant')(null) , toArray = require('es5-ext/object/to-array') , memoiz...
Update up to changes in es5-ext
medikoo_xlint
train
5f5fee4ebbaa098aa1c371eabe0a93977229d38d
diff --git a/src/Anonym/Components/XCacheDriver.php b/src/Anonym/Components/XCacheDriver.php index <HASH>..<HASH> 100644 --- a/src/Anonym/Components/XCacheDriver.php +++ b/src/Anonym/Components/XCacheDriver.php @@ -14,7 +14,9 @@ namespace Anonym\Components\Cache; * Class XCacheDriver * @package Anonym\Components\Ca...
added flushable interface to xcache cache driver
AnonymPHP_Anonym-Cache
train
abc440dec5db4f32384ea285e9c1836af3ff7363
diff --git a/lib/active_scaffold/finder.rb b/lib/active_scaffold/finder.rb index <HASH>..<HASH> 100644 --- a/lib/active_scaffold/finder.rb +++ b/lib/active_scaffold/finder.rb @@ -374,13 +374,6 @@ module ActiveScaffold find_options = finder_options(options) query = beginning_of_chain.where(nil) # where(n...
fix removing duplicated rows when outer_joins is used in nested scaffolds on rails4
activescaffold_active_scaffold
train
ee10c53107a50574975c5b4fb619dcd3364a7a9c
diff --git a/library/src/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java b/library/src/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java index <HASH>..<HASH> 100644 --- a/library/src/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java +++ b/library/src/com/handma...
Fix #<I>. Don't remove Empty View from View Hierarchy, leave it up to the dev.
chrisbanes_Android-PullToRefresh
train
ac6bce8ab84f98aedc8649d117163e6b519ea0a8
diff --git a/example/scripts/chapter_2.rb b/example/scripts/chapter_2.rb index <HASH>..<HASH> 100644 --- a/example/scripts/chapter_2.rb +++ b/example/scripts/chapter_2.rb @@ -4,7 +4,7 @@ background :id => 'city', character :id => 'Rosalinda', :resource => 'resources/characters/rosalind...
Place Rosalida to the center of the screen in chapter 2
RoxasShadow_sottolio
train
df0a70bfb680c10a1635fc2a9d60fc615bf6d9e7
diff --git a/internal/backend/local/backend_apply.go b/internal/backend/local/backend_apply.go index <HASH>..<HASH> 100644 --- a/internal/backend/local/backend_apply.go +++ b/internal/backend/local/backend_apply.go @@ -2,6 +2,7 @@ package local import ( "context" + "errors" "fmt" "log" @@ -16,6 +17,9 @@ impo...
check for cancellation before apply confirmation When executing an apply with no plan, it's possible for a cancellation to arrive during the final batch of provider operations, resulting in no errors in the plan. The run context was next checked during the confirmation for apply, but in the case of -auto-approve that ...
hashicorp_terraform
train