hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
97e943ecf7cc05efd9104a1cd56b4edbf6805778
diff --git a/src/Lodge/Postcode/Postcode.php b/src/Lodge/Postcode/Postcode.php index <HASH>..<HASH> 100644 --- a/src/Lodge/Postcode/Postcode.php +++ b/src/Lodge/Postcode/Postcode.php @@ -1,9 +1,19 @@ <?php namespace Lodge\Postcode; - class Postcode { + protected $apiKey; + protected $postcode; + protected $country; +...
Added support for API key in constructor, and setting country
Daursu_postcode-lookup
train
04f994fece02b1acc69685d70de2a415c6424621
diff --git a/utils.py b/utils.py index <HASH>..<HASH> 100644 --- a/utils.py +++ b/utils.py @@ -92,7 +92,7 @@ def _get_legacy_bibdocs(recid, filename=None): (bibdoc.fullpath, bibdoc.is_restricted(current_user)) for bibdoc in BibRecDocs(recid).list_latest_files(list_hidden=False) if not bibdoc....
documents: improvement of legacy filename handling * Improves support in filenames with dashes `-` on legacy `BibDocFile`.
inveniosoftware-attic_invenio-documents
train
18f5cc80e6260e67be22dac472f335b2ec22b1c6
diff --git a/testsuite/manualmode/src/test/java/org/jboss/as/test/manualmode/management/cli/CLIEmbedServerTestCase.java b/testsuite/manualmode/src/test/java/org/jboss/as/test/manualmode/management/cli/CLIEmbedServerTestCase.java index <HASH>..<HASH> 100644 --- a/testsuite/manualmode/src/test/java/org/jboss/as/test/manu...
[WFCORE-<I>] Initialize the log manager early for the CLIEmbededServerTestCase to ensure early initialization doesn't break replacing stdout.
wildfly_wildfly-core
train
6e5cdf8515fa6bb5331ffe712a857cb46b0c701e
diff --git a/src/util/application.rb b/src/util/application.rb index <HASH>..<HASH> 100644 --- a/src/util/application.rb +++ b/src/util/application.rb @@ -3,8 +3,9 @@ require 'sbsm/drbserver' require 'state/global' -require 'util/transaction' +require 'util/polling_manager' require 'util/session' +require 'util/tr...
ChangeSet <I>: require statement added src/util/application.rb: minor change
zdavatz_xmlconv
train
3d1299c5d302b7242d70103c1fc015b2baaf5776
diff --git a/guava/src/com/google/common/collect/MapMaker.java b/guava/src/com/google/common/collect/MapMaker.java index <HASH>..<HASH> 100644 --- a/guava/src/com/google/common/collect/MapMaker.java +++ b/guava/src/com/google/common/collect/MapMaker.java @@ -79,12 +79,15 @@ import javax.annotation.Nullable; * created...
Clarify the behavior of Map.size() in a MapMaker-built Map with weak or soft references, borrowing phrasing from CacheBuilder. Motivated by <URL>
google_guava
train
5c4dfa80dcc13ced99dfda4b325e8ee5ae27c567
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ class build_ext_subclass(build_ext): self.cfitsio_dir = 'cfitsio%s' % self.cfitsio_version self.cfitsio_build_dir = os.path.join('build', self.cfitsio_dir) self.cfitsio_zlib_dir = os.p...
Properly handle the dependency on libfitsio.a, via a hack.
esheldon_fitsio
train
a3ef36bb72d8dc22ebf6faf1e1ef2c38509a0b15
diff --git a/run_tests.py b/run_tests.py index <HASH>..<HASH> 100755 --- a/run_tests.py +++ b/run_tests.py @@ -59,6 +59,7 @@ if not settings.configured: 'django.core.context_processors.request', 'timepiece.context_processors.quick_search', 'timepiece.context_processors.extra_nav',...
Added missing context processor to settings in run_tests.py
caktus_django-timepiece
train
36641ce4131753f8e353dbb94705af8b19264f61
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ -webforge-common -=============== +# webforge-common -Boilerplate for Webforge and Psc - CMS +Boilerplate for Webforge and Psc - CMS This small library should cover all common code between webforge and Ps...
a better start for datetime tests
webforge-labs_webforge-common
train
92a3d6c9c97bc6fdef7ae5c71dfd62e9ffd2ce0a
diff --git a/hydpy/core/variabletools.py b/hydpy/core/variabletools.py index <HASH>..<HASH> 100644 --- a/hydpy/core/variabletools.py +++ b/hydpy/core/variabletools.py @@ -157,6 +157,8 @@ def _compare_variables_function_generator( """ def comparison_function(self, other): """Wrapper for comparison fun...
Improve the performance of comparisons between identical `Variable` objects (module `variabletools`).
hydpy-dev_hydpy
train
39e1422a38eb4d11157066d3e2b1c3b9503f984e
diff --git a/src/base/datastorage.js b/src/base/datastorage.js index <HASH>..<HASH> 100644 --- a/src/base/datastorage.js +++ b/src/base/datastorage.js @@ -340,20 +340,26 @@ export class Storage { }, []); // get min/max for the filtered rows - let min; - let max; + let min = filtered[0]; + let ma...
add minAbsNear0 to hook getLimits() result. Use it to get correct "symlog" linear part near 0
vizabi_vizabi
train
f0de349575ca7c30f05a6840f8bba18c6b95ca83
diff --git a/db.go b/db.go index <HASH>..<HASH> 100755 --- a/db.go +++ b/db.go @@ -216,7 +216,10 @@ func ListColumnFamilies(opts *Options, name string) ([]string, error) { } namesLen := int(cLen) names := make([]string, namesLen) - cNamesArr := (*[1 << 30]*C.char)(unsafe.Pointer(cNames))[:namesLen:namesLen] + // ...
Workaround for Linux <I>-bit build
tecbot_gorocksdb
train
a87abdfb883a49e815b000d2ddeb493e3deb0966
diff --git a/rsocket-core/src/main/java/io/rsocket/core/LeaseSpec.java b/rsocket-core/src/main/java/io/rsocket/core/LeaseSpec.java index <HASH>..<HASH> 100644 --- a/rsocket-core/src/main/java/io/rsocket/core/LeaseSpec.java +++ b/rsocket-core/src/main/java/io/rsocket/core/LeaseSpec.java @@ -38,7 +38,7 @@ public final cl...
fixes typo in LeaseSpec initialisation (#<I>)
rsocket_rsocket-java
train
1e4cd047f483b2eb433b022278f1d5aad5edd1db
diff --git a/src/Models/Attributes/MbString.php b/src/Models/Attributes/MbString.php index <HASH>..<HASH> 100644 --- a/src/Models/Attributes/MbString.php +++ b/src/Models/Attributes/MbString.php @@ -47,7 +47,7 @@ class MbString * * @return string[] */ - public static function str_split($value) + ...
Renamed str_split to strSplit to conform with code style.
Adldap2_Adldap2
train
7d11c9b3d832666d5abb87b34e535c3ac4938aa1
diff --git a/resolwe/flow/views/collection.py b/resolwe/flow/views/collection.py index <HASH>..<HASH> 100644 --- a/resolwe/flow/views/collection.py +++ b/resolwe/flow/views/collection.py @@ -41,7 +41,9 @@ class CollectionViewSet(ElasticSearchCombinedViewSet, permission_classes = (get_permissions_class(),) doc...
Add filter by tags to collection api endpoint
genialis_resolwe
train
4e5c07522c3d9afc52b07389c933c5ff17c1d255
diff --git a/num2words/lang_PT_BR.py b/num2words/lang_PT_BR.py index <HASH>..<HASH> 100644 --- a/num2words/lang_PT_BR.py +++ b/num2words/lang_PT_BR.py @@ -30,9 +30,9 @@ class Num2Word_PT_BR(lang_EU.Num2Word_EU): def setup(self): self.negword = "menos " - self.pointword = "ponto" + self.poi...
In Brazilian Portuguese the decimal sign is comma ',' instead of dot '.'. Ex.: we use 1,<I> instead of <I>
savoirfairelinux_num2words
train
96382d487f7d8cce7c94290af743f7ec1d974973
diff --git a/trollimage/xrimage.py b/trollimage/xrimage.py index <HASH>..<HASH> 100644 --- a/trollimage/xrimage.py +++ b/trollimage/xrimage.py @@ -179,20 +179,28 @@ class XRImage(object): """Mode of the image.""" return ''.join(self.data['bands'].values) - def save(self, filename, fformat=None, f...
Add 'compute' keyword to `rio_save` for delayed dask storing
pytroll_trollimage
train
81f599ff39c0967a304c84dbec3accb8a8e3b515
diff --git a/tests/calc/disagg_test.py b/tests/calc/disagg_test.py index <HASH>..<HASH> 100644 --- a/tests/calc/disagg_test.py +++ b/tests/calc/disagg_test.py @@ -64,6 +64,10 @@ class _BaseDisaggTestCase(unittest.TestCase): assert tom.time_span == self.tom.time_span return iter(self.ruptures) ...
tests/calcs/disagg_test: Added `test_source_errors` to test for handling/source_id reporting in the case of computation failures on a given source.
gem_oq-engine
train
f434884e6aa6f5ec20fc12f763e5d68306f73cb1
diff --git a/qtpy/QtGui.py b/qtpy/QtGui.py index <HASH>..<HASH> 100644 --- a/qtpy/QtGui.py +++ b/qtpy/QtGui.py @@ -14,6 +14,7 @@ from . import PYQT6, PYQT5, PYSIDE2, PYSIDE6, PythonQtError if PYQT6: from PyQt6 import QtGui from PyQt6.QtGui import * + QFontMetrics.width = QFontMetrics.horizontalAdvance ...
'width' need for PyQt6 same as PySide6
spyder-ide_qtpy
train
13ce4e0ea514627e1cbab17ce7fae4744f229fcf
diff --git a/manage.py b/manage.py index <HASH>..<HASH> 100644 --- a/manage.py +++ b/manage.py @@ -34,19 +34,5 @@ def check(): os.system('pep257 examples/') -@manager.command -def test(): - """Run unittests.""" - os.system('find ./objects -name "*.pyc" -exec rm -rf {} \\;') - os.system('find ./tests -...
Remove test command from manage.py
ets-labs_python-dependency-injector
train
5f39ac7fc908cc0120b5d3a5d5aa1434082a7d6c
diff --git a/django_mailbox/models.py b/django_mailbox/models.py index <HASH>..<HASH> 100755 --- a/django_mailbox/models.py +++ b/django_mailbox/models.py @@ -110,7 +110,9 @@ class Mailbox(models.Model): msg.mailbox = self msg.subject = message['subject'][0:255] msg.message_id = message['mess...
Separate address field into two distinct fields storing TO and FROM headers.
coddingtonbear_django-mailbox
train
9867011cc24aa75bfd3ac1b294349c869ecb9bfe
diff --git a/uniqueid-core/src/main/java/org/lable/util/uniqueid/UniqueIDGenerator.java b/uniqueid-core/src/main/java/org/lable/util/uniqueid/UniqueIDGenerator.java index <HASH>..<HASH> 100644 --- a/uniqueid-core/src/main/java/org/lable/util/uniqueid/UniqueIDGenerator.java +++ b/uniqueid-core/src/main/java/org/lable/ut...
Remove unused imports and superfluous javadoc comments.
LableOrg_java-uniqueid
train
2d16250cea311b4cb4bf2b3cbedd038a053b3e1b
diff --git a/src/authorize.js b/src/authorize.js index <HASH>..<HASH> 100644 --- a/src/authorize.js +++ b/src/authorize.js @@ -7,6 +7,8 @@ hash; if (hashPos === -1) { return; } hash = location.href.substring(hashPos+1); + // if hash is not of the form #key=val&key=val, it's probably not for us + ...
Fix params extraction from location hash The current code broke applications that use hash navigation. For example, if I access my application with url <URL>
remotestorage_remotestorage.js
train
57e3afa7a3f20ce91de3989d67574df0f55b1b80
diff --git a/MongodbManager.php b/MongodbManager.php index <HASH>..<HASH> 100755 --- a/MongodbManager.php +++ b/MongodbManager.php @@ -17,6 +17,10 @@ use yii\db\Expression; use yii\di\Instance; use yii\base\InvalidCallException; use yii\base\InvalidParamException; +use yii\rbac\Assignment; +use yii\rbac\Item; +...
Added namespaces. Fixed set condition in method removeItem(), because method yii\mongodb\Collection::buildCondition() expected array
letyii_yii2-rbac-mongodb
train
5e1a2801cb3868e4055fb705d02fe106b90d3709
diff --git a/lib/aposLocals.js b/lib/aposLocals.js index <HASH>..<HASH> 100644 --- a/lib/aposLocals.js +++ b/lib/aposLocals.js @@ -141,6 +141,7 @@ module.exports = function(self) { if (!options.controls) { options.controls = self.defaultControls; } + options.styles = options.styles || self.c...
Make the style choices available to the normal view and virtual view of areas for the benefit of always-on editors like AposEditor2
apostrophecms_apostrophe
train
d1794c171453919a157a19c9adb1784b8318138a
diff --git a/api/tasks.go b/api/tasks.go index <HASH>..<HASH> 100644 --- a/api/tasks.go +++ b/api/tasks.go @@ -334,10 +334,13 @@ func (tmpl *Template) Canonicalize() { if tmpl.ChangeMode == nil { tmpl.ChangeMode = helper.StringToPtr("restart") } - if *tmpl.ChangeMode == "signal" && tmpl.ChangeSignal == nil { - ...
Missed initializing another field in Template!
hashicorp_nomad
train
30de0eb4e1bd1861a777e9d8e80d612680fac712
diff --git a/test/tests/button/error.js b/test/tests/button/error.js index <HASH>..<HASH> 100644 --- a/test/tests/button/error.js +++ b/test/tests/button/error.js @@ -19,6 +19,84 @@ for (let flow of [ 'popup', 'iframe' ]) { window.paypal.Checkout.contexts.iframe = false; }); + it.only('sh...
Add tests for error cases in payment method
paypal_paypal-checkout-components
train
aa27643a02c07a21e16babb261d99c5528b64fe2
diff --git a/Twig/AvatarExtension.php b/Twig/AvatarExtension.php index <HASH>..<HASH> 100644 --- a/Twig/AvatarExtension.php +++ b/Twig/AvatarExtension.php @@ -52,7 +52,13 @@ class AvatarExtension extends \Twig_Extension */ public function getUserEmail() { - return $this->context->getToken()->getU...
[Backoffice] Safe check before access user.
Clastic_BackofficeBundle
train
f88499a77b33597afd5b24142db10e89a56643f7
diff --git a/src/printer-php.js b/src/printer-php.js index <HASH>..<HASH> 100644 --- a/src/printer-php.js +++ b/src/printer-php.js @@ -37,16 +37,14 @@ function handleLiteral(node) { } function handleArugments(args) { - return group( - join(", ", - args.map((param) => { - return group(concat([ - ...
glimmer of grouping happyness on long lines
prettier_plugin-php
train
a2cb3478bfc476ad2a060f02403f6f4c02e02196
diff --git a/src/main/java/com/datumbox/common/utilities/RandomGenerator.java b/src/main/java/com/datumbox/common/utilities/RandomGenerator.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/datumbox/common/utilities/RandomGenerator.java +++ b/src/main/java/com/datumbox/common/utilities/RandomGenerator.java @@ -3...
Making public methods of RandomGenerator synchronized
datumbox_datumbox-framework
train
86f649ecf328be79b40ee0a999c984f3d6c2dd5b
diff --git a/spec/page_spec.rb b/spec/page_spec.rb index <HASH>..<HASH> 100644 --- a/spec/page_spec.rb +++ b/spec/page_spec.rb @@ -194,6 +194,16 @@ describe PDF::Reader::Page, "graphic_states()" do end end +describe PDF::Reader::Page, "orientation()" do + + it "should return the orientation of cairo-basic.pdf pa...
Add spec for new method orientation()
yob_pdf-reader
train
6257eafcf360197c3a091810ef1d51c2180c4c66
diff --git a/shardingsphere-db-protocol/shardingsphere-db-protocol-opengauss/src/main/java/org/apache/shardingsphere/db/protocol/opengauss/packet/command/query/extended/bind/OpenGaussComBatchBindPacket.java b/shardingsphere-db-protocol/shardingsphere-db-protocol-opengauss/src/main/java/org/apache/shardingsphere/db/prot...
Replace ByteBuf#readBytes with readCharSequence (#<I>)
apache_incubator-shardingsphere
train
0bfce1ee02b94d978e4654c4512e1e810b432618
diff --git a/heroku/models.py b/heroku/models.py index <HASH>..<HASH> 100644 --- a/heroku/models.py +++ b/heroku/models.py @@ -180,7 +180,7 @@ class App(BaseResource): def __repr__(self): return "<app '{0}'>".format(self.name) - def new(self, name=None, stack='cedar'): + def new(self, name=None, s...
allowing client to provide region for new app
heroku_heroku.py
train
91a3178c7bb436d2b671a5efee3149ee0ab8a6cd
diff --git a/Demo_Compare_Files.py b/Demo_Compare_Files.py index <HASH>..<HASH> 100644 --- a/Demo_Compare_Files.py +++ b/Demo_Compare_Files.py @@ -5,16 +5,18 @@ sg.SetOptions(button_color=sg.COLOR_SYSTEM_DEFAULT) def GetFilesToCompare(): with sg.FlexForm('File Compare') as form: form_rows = [[sg.Text('En...
Changed MsgBox to Popup, fix for when button target is key
PySimpleGUI_PySimpleGUI
train
b45fbdac7a7eb10f0202939cf64df577103af3c3
diff --git a/lib/review/book/index.rb b/lib/review/book/index.rb index <HASH>..<HASH> 100644 --- a/lib/review/book/index.rb +++ b/lib/review/book/index.rb @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2018 Minero Aoki, Kenshi Muto +# Copyright (c) 2008-2019 Minero Aoki, Kenshi Muto # 2002-2007 Minero Aoki # # ...
skip notoc from counting. Closes: #<I>
kmuto_review
train
732c137cf4ed27bf3289981721da318dce436ce0
diff --git a/lib/kafka/prometheus.rb b/lib/kafka/prometheus.rb index <HASH>..<HASH> 100644 --- a/lib/kafka/prometheus.rb +++ b/lib/kafka/prometheus.rb @@ -74,8 +74,7 @@ module Kafka @process_message_latency = Prometheus.registry.histogram(:consumer_process_message_latency, 'Latency', {}, LATENCY_BUC...
Removed consumer_timelag_now to be more similar to statsd plugin
zendesk_ruby-kafka
train
59ec0dd16cc4fe18dd0998b0be096c822b4d2710
diff --git a/static/js/deposit/form.js b/static/js/deposit/form.js index <HASH>..<HASH> 100644 --- a/static/js/deposit/form.js +++ b/static/js/deposit/form.js @@ -110,7 +110,8 @@ define(function(require, exports, module) { } var fields = $(selector).serializeArray(), uploader = this.select('upl...
deposit: Bootstrap multiselect fix * Adds special support for Bootstrap multiselect as serializeArray() omits the field. * Amends onCheckboxChanged to not send a request when a Bootstrap multiselect checkbox is changed.
inveniosoftware_invenio-deposit
train
9132ef29cdbbc0fcc7670bf8dc03ec55f76bb6e6
diff --git a/src/main/java/com/bitso/Bitso.java b/src/main/java/com/bitso/Bitso.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/bitso/Bitso.java +++ b/src/main/java/com/bitso/Bitso.java @@ -274,7 +274,14 @@ public class Bitso { System.err.println("Unable to request quote: " + ret); re...
if there's a JSONException, print the stack trace and the returned json
bitsoex_bitso-java
train
f1df4878ba6a6ebed8b787143e8ada232256127d
diff --git a/XBRL-Instance.php b/XBRL-Instance.php index <HASH>..<HASH> 100644 --- a/XBRL-Instance.php +++ b/XBRL-Instance.php @@ -226,7 +226,7 @@ class XBRL_Instance /** * Creates an instance object from a JSON string, perhaps in a zip file - * @param string $output_path + * @param string $cache_path ...
DocBlock updates and fix to normalizePrefix() to accommodate the implicit 'xml' prefix.
bseddon_XBRL
train
29d3f5ae70828394e629c91bbfd08e02ca3726da
diff --git a/faker/tests/__init__.py b/faker/tests/__init__.py index <HASH>..<HASH> 100644 --- a/faker/tests/__init__.py +++ b/faker/tests/__init__.py @@ -17,12 +17,12 @@ import logging try: from mock import patch -except ImportError: +except ImportError: # pragma: no cover from unittest.mock import patch...
add # pragma: no cover comments
joke2k_faker
train
bfb1247dea9143ded5738f2dca9be3707b3cc3a9
diff --git a/treeherder/services/elasticsearch/connection.py b/treeherder/services/elasticsearch/connection.py index <HASH>..<HASH> 100644 --- a/treeherder/services/elasticsearch/connection.py +++ b/treeherder/services/elasticsearch/connection.py @@ -1,4 +1,5 @@ from django.conf import settings from elasticsearch imp...
Don't break Django startup The Elasticsearch connection is constructed at import time, which happens during Django's bootstrapping. When no Elasticsearch URL exists we return None instead.
mozilla_treeherder
train
39348b47ce04c243e8fbf696005c270c88969258
diff --git a/src/main/java/org/efaps/eql/JSONCI.java b/src/main/java/org/efaps/eql/JSONCI.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/efaps/eql/JSONCI.java +++ b/src/main/java/org/efaps/eql/JSONCI.java @@ -20,8 +20,10 @@ import java.util.UUID; import org.efaps.admin.datamodel.Attribute; import org.efap...
- Issue #<I>: Add the AttributeType to the JSON reply for CIType closes #<I>
eFaps_eFaps-Kernel
train
8e0f41e489d7e60a5733a880860a847857688a99
diff --git a/arctic/chunkstore/chunkstore.py b/arctic/chunkstore/chunkstore.py index <HASH>..<HASH> 100644 --- a/arctic/chunkstore/chunkstore.py +++ b/arctic/chunkstore/chunkstore.py @@ -94,7 +94,7 @@ class ChunkStore(object): chunk_range: range object a date range to delete """ - ...
Date Chunker support for DatetimeIndexes
manahl_arctic
train
310236eeadaca05fcff22a0865d37443fdbb4537
diff --git a/lib/rack/traffic_logger/formatter/json.rb b/lib/rack/traffic_logger/formatter/json.rb index <HASH>..<HASH> 100644 --- a/lib/rack/traffic_logger/formatter/json.rb +++ b/lib/rack/traffic_logger/formatter/json.rb @@ -5,8 +5,11 @@ module Rack class Formatter class JSON < self - def format(...
added pretty printing to JSON formatter
hx_rack-traffic-logger
train
64176f8d63a87dd50b865a9298543bc892d33950
diff --git a/java/src/main/java/gherkin/Main.java b/java/src/main/java/gherkin/Main.java index <HASH>..<HASH> 100644 --- a/java/src/main/java/gherkin/Main.java +++ b/java/src/main/java/gherkin/Main.java @@ -20,7 +20,7 @@ public class Main { } }; - private Lexer lexer; + private Parser parser; ...
Fixing bug in Main. Release <I>
cucumber-attic_gherkin2
train
d03b711047ca5dd092f7a0a2b7055b1174dae4f2
diff --git a/tests/test_core.py b/tests/test_core.py index <HASH>..<HASH> 100755 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -97,12 +97,6 @@ class CoreTest(GorillaTestCase): settings_2.some_value = 123 self.assertEqual(settings_1, settings_2) - self.assertEqual(str(gorilla.Settings()...
Give up on testing the representation output Python 2/3 compatibility makes it too annoying to test.
christophercrouzet_gorilla
train
6efd95cfb04a3c25bd8433dcf4223507f9c5864c
diff --git a/store.go b/store.go index <HASH>..<HASH> 100644 --- a/store.go +++ b/store.go @@ -139,7 +139,8 @@ func (c *controller) getNetworksFromStore() ([]*network, error) { ec := &endpointCnt{n: n} err = store.GetObject(datastore.Key(ec.Key()...), ec) if err != nil { - return nil, fmt.Errorf("could n...
getNetworksFromStore should not fail on inconsistent network state
docker_libnetwork
train
6f2a55557bad5d352e7d2097153e98841117e34f
diff --git a/docs/Hash.md b/docs/Hash.md index <HASH>..<HASH> 100644 --- a/docs/Hash.md +++ b/docs/Hash.md @@ -5,7 +5,7 @@ The examplified methods are already ported. The non documented methods must be i ## Hash (ported or to port methods) - clear -- collect +- collect - Use map instead. - **compact** (not in ruby...
Implemented Hash::map()
mjacobus_php-objects
train
8a296b92b447f86825d26efe0ecebeed8bfa9c17
diff --git a/algorithm/cga.go b/algorithm/cga.go index <HASH>..<HASH> 100644 --- a/algorithm/cga.go +++ b/algorithm/cga.go @@ -8,6 +8,7 @@ import ( "github.com/twpayne/go-geom/algorithm/internal/ray_crossing" "github.com/twpayne/go-geom/algorithm/location" "github.com/twpayne/go-geom/algorithm/orientation" + "mat...
Add DistanceFromPointToLine to algorithms
twpayne_go-geom
train
ec20211fbcc9299bf0fff597a079d4611876caef
diff --git a/lib/memcached.js b/lib/memcached.js index <HASH>..<HASH> 100644 --- a/lib/memcached.js +++ b/lib/memcached.js @@ -442,7 +442,7 @@ Client.config = { } , 'SERVER_ERROR': function servererror(tokens, dataSet, err, queue, S, memcached) { - (memcached || this.memcached).connectionIssue(tokens.spl...
pass socket into connectionIssue on SERVER_ERROR fixes 3rd-Eden/node-memcached#<I>
3rd-Eden_memcached
train
aefeb4b7f372196cf26404303e06fc071f21ede8
diff --git a/src/main/java/no/priv/garshol/duke/Processor.java b/src/main/java/no/priv/garshol/duke/Processor.java index <HASH>..<HASH> 100644 --- a/src/main/java/no/priv/garshol/duke/Processor.java +++ b/src/main/java/no/priv/garshol/duke/Processor.java @@ -7,6 +7,7 @@ import java.util.Collections; import java.util.C...
Issue <I> - Switched the listener collection from an ArrayList to CopyOnWriteArrayList and exposed an new method for removing a listener.
larsga_Duke
train
4e5a7a1b1acde3d53002465016e0c3f596eb45b9
diff --git a/presto-kafka/src/main/java/com/facebook/presto/kafka/KafkaConnectorFactory.java b/presto-kafka/src/main/java/com/facebook/presto/kafka/KafkaConnectorFactory.java index <HASH>..<HASH> 100644 --- a/presto-kafka/src/main/java/com/facebook/presto/kafka/KafkaConnectorFactory.java +++ b/presto-kafka/src/main/jav...
Cleanup warnings in KafkaConnectorFactory
prestodb_presto
train
d3868f4bbb7dc4908ac2be04ca40252cb12302f4
diff --git a/fbchat_archive_parser/parser.py b/fbchat_archive_parser/parser.py index <HASH>..<HASH> 100644 --- a/fbchat_archive_parser/parser.py +++ b/fbchat_archive_parser/parser.py @@ -7,7 +7,6 @@ import hashlib from io import open from datetime import datetime, timedelta -from threading import Thread from sorte...
Removed the threading/callback thing
ownaginatious_fbchat-archive-parser
train
00a8e302a1cf7239e735a9f3e5b6575da15f9648
diff --git a/lib/endpoints/class-wp-rest-terms-controller.php b/lib/endpoints/class-wp-rest-terms-controller.php index <HASH>..<HASH> 100755 --- a/lib/endpoints/class-wp-rest-terms-controller.php +++ b/lib/endpoints/class-wp-rest-terms-controller.php @@ -113,8 +113,13 @@ class WP_REST_Terms_Controller extends WP_REST_C...
Use the `prepared_args` that are passed to `get_terms` to determine pagination headers
WP-API_WP-API
train
034d6514e0b094b2ea249d0e5fed0e249d09fa6f
diff --git a/activesupport/test/core_ext/time_with_zone_test.rb b/activesupport/test/core_ext/time_with_zone_test.rb index <HASH>..<HASH> 100644 --- a/activesupport/test/core_ext/time_with_zone_test.rb +++ b/activesupport/test/core_ext/time_with_zone_test.rb @@ -677,7 +677,7 @@ class TimeWithZoneTest < ActiveSupport::T...
TimeWithZone#sunday?, monday?, tuesday?, ... are public methods
rails_rails
train
5f317e778f548fa696bfd57e314306d87a593fdb
diff --git a/packet/bgp.go b/packet/bgp.go index <HASH>..<HASH> 100644 --- a/packet/bgp.go +++ b/packet/bgp.go @@ -2294,25 +2294,26 @@ func flowSpecFragmentParser(rf RouteFamily, args []string) (FlowSpecComponentInt if len(args) < 2 { return nil, fmt.Errorf("invalid flowspec fragment specifier") } - value := 0 +...
packet: make multiple flow spec fragmentation flags ORed match instead of ANDed
osrg_gobgp
train
ff0e428891545c6640d9a8adf90b791b5976ab03
diff --git a/app/models/manager_refresh/inventory_collection.rb b/app/models/manager_refresh/inventory_collection.rb index <HASH>..<HASH> 100644 --- a/app/models/manager_refresh/inventory_collection.rb +++ b/app/models/manager_refresh/inventory_collection.rb @@ -657,7 +657,7 @@ module ManagerRefresh @unique_inde...
Inventory collection logging is bad Inventory collection logging is bad (transferred from ManageIQ/manageiq@2ad<I>aadc1b<I>eaabe<I>f<I>df4f<I>ea)
ManageIQ_inventory_refresh
train
e6fb78344eba7a7a3dfc77bd18d2fb4eb4e682b7
diff --git a/src/selectize.js b/src/selectize.js index <HASH>..<HASH> 100644 --- a/src/selectize.js +++ b/src/selectize.js @@ -115,6 +115,7 @@ $.extend(Selectize.prototype, { var timeout_focus; var classes; var classes_plugins; + var inputId; inputMode = self.settings.mode; classes =...
update existing labels pointing to the original input/select to point to the selectize input/select #<I>
selectize_selectize.js
train
a38aa54e3ac68bd6a166a459ed3e5a11e952e5dc
diff --git a/src/Rector/AbstractRector.php b/src/Rector/AbstractRector.php index <HASH>..<HASH> 100644 --- a/src/Rector/AbstractRector.php +++ b/src/Rector/AbstractRector.php @@ -137,6 +137,8 @@ abstract class AbstractRector extends NodeVisitorAbstract implements RectorInter } /** + * @todo maybe use le...
AbstractRector: fix node prepending for If_ statement
rectorphp_rector
train
a34d955e9677950e06f4aa2bf9504e0499ea156e
diff --git a/lib/hive/diagnostic.rb b/lib/hive/diagnostic.rb index <HASH>..<HASH> 100644 --- a/lib/hive/diagnostic.rb +++ b/lib/hive/diagnostic.rb @@ -1,53 +1,55 @@ require 'hive' -require 'device_api/android' +# require 'device_api/android' require 'hive/results' - + module Hive - class Diagnostic - - c...
Removed Rails ref and fix indentation
bbc_hive-runner
train
370459095efad7c24a9e83565ca12e928f71e592
diff --git a/src/com/google/javascript/jscomp/Compiler.java b/src/com/google/javascript/jscomp/Compiler.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/Compiler.java +++ b/src/com/google/javascript/jscomp/Compiler.java @@ -1164,6 +1164,11 @@ public class Compiler extends AbstractCompiler impleme...
Call SourceMap.reset() before generating code for the --print_source_after_each_pass flag and similar flags. Otherwise (if source maps are enabled) we get a Preconditions failure when trying to generate code the second time. ------------- Created by MOE: <URL>
google_closure-compiler
train
78519dca00c4dcce5646fbd787db4f01947eb664
diff --git a/lib/sprockets/rails.rb b/lib/sprockets/rails.rb index <HASH>..<HASH> 100644 --- a/lib/sprockets/rails.rb +++ b/lib/sprockets/rails.rb @@ -2,73 +2,91 @@ require 'sprockets' require 'action_controller/railtie' require 'sprockets/rails/helper' +module Rails + class Application < Engine + # Returns Spr...
Shuffle stuff around to get rake task ordering right
rails_sprockets-rails
train
4868055d024f99a57206e3d0d0f36da1223118ff
diff --git a/packages/reporters/dev-server/src/Server.js b/packages/reporters/dev-server/src/Server.js index <HASH>..<HASH> 100644 --- a/packages/reporters/dev-server/src/Server.js +++ b/packages/reporters/dev-server/src/Server.js @@ -204,7 +204,10 @@ export default class Server extends EventEmitter { setHeaders...
Fix devserver flow violations with mime
parcel-bundler_parcel
train
6c524d42302bcdc5e41734367ac6dd72e783c27f
diff --git a/src/flake8_aaa/line_markers.py b/src/flake8_aaa/line_markers.py index <HASH>..<HASH> 100644 --- a/src/flake8_aaa/line_markers.py +++ b/src/flake8_aaa/line_markers.py @@ -94,14 +94,35 @@ class LineMarkers(list): numbered_lines = list(enumerate(self)) return next(filter(lambda l: l[1] is bl...
Handle case where second block does not exist when checking spacing
jamescooke_flake8-aaa
train
5a57ab6005d15d77b5e81ec4943719556a381e6b
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -685,12 +685,19 @@ end <td>Class method to make the current table searchable.</td> </tr> <tr> - <td>refreshable</td> - <td>Class method to make the current table refreshable.<p>You must also specify the fo...
Made callback pattern more consistent. Made all strings configurable. Updated documentation.
infinitered_ProMotion
train
e8bb8b81a48c24761374c78ff86acf211c533d94
diff --git a/topydo/lib/EditCommand.py b/topydo/lib/EditCommand.py index <HASH>..<HASH> 100644 --- a/topydo/lib/EditCommand.py +++ b/topydo/lib/EditCommand.py @@ -32,12 +32,15 @@ class EditCommand(MultiCommand, ListCommand): p_error, p_input) self.is_expression = False + self.edit_archive...
Edit the archive file with '-d' option. This implements archive option from #2.
bram85_topydo
train
9c1ba6b6dda4c0d573adb0e0bf6c116eaa6542b7
diff --git a/morango/syncsession.py b/morango/syncsession.py index <HASH>..<HASH> 100644 --- a/morango/syncsession.py +++ b/morango/syncsession.py @@ -85,9 +85,9 @@ class SyncClient(object): with connection.cursor() as cursor: queue_buffer = """INSERT INTO {outgoing_buffer} ...
Update sql queries to include new field.
learningequality_morango
train
e64ac20a3b168a5950c8900cf66d8e39e9747ff3
diff --git a/v2/handler.js b/v2/handler.js index <HASH>..<HASH> 100644 --- a/v2/handler.js +++ b/v2/handler.js @@ -133,7 +133,8 @@ TChannelV2Handler.prototype.writeCopy = function writeCopy(buffer) { TChannelV2Handler.prototype.pushFrame = function pushFrame(frame) { var self = this; - var writeBuffer = self...
TChannelV2Handler: don't make a gratuitous copy of a non-shared buffer
uber_tchannel-node
train
3ebf2977f1b0cec4d91c51a82fff9158e0e12c4e
diff --git a/bzr_exporter.py b/bzr_exporter.py index <HASH>..<HASH> 100755 --- a/bzr_exporter.py +++ b/bzr_exporter.py @@ -42,37 +42,6 @@ from bzrlib import ( from bzrlib.plugins.fastimport import commands, helpers, marks_file -# This is adapted from _linear_view_verisons in log.py in bzr 1.12. -def _iter_linear_r...
Stop fast-export from exceeding the maximum recursion depth
jelmer_python-fastimport
train
d299cc359aec623af7839fb57bfb07d1c54a9038
diff --git a/src/Defender/Middlewares/NeedsPermissionMiddleware.php b/src/Defender/Middlewares/NeedsPermissionMiddleware.php index <HASH>..<HASH> 100644 --- a/src/Defender/Middlewares/NeedsPermissionMiddleware.php +++ b/src/Defender/Middlewares/NeedsPermissionMiddleware.php @@ -1,7 +1,7 @@ <?php namespace Artesaos\De...
[Fix] Fix the exception when the application does not have a user logged in.
artesaos_defender
train
b99ff5edcc567f34c275c0dc2646e72417af8282
diff --git a/__tests__/stringify.js b/__tests__/stringify.js index <HASH>..<HASH> 100644 --- a/__tests__/stringify.js +++ b/__tests__/stringify.js @@ -105,3 +105,11 @@ test('Map with non-Pair item', () => { doc.contents.items.push('TEST') expect(() => String(doc)).toThrow(/^Map items must all be pairs.*TEST/) })...
Quote plain strings ending with a ":" (Fixes #<I>)
eemeli_yaml
train
42b22f1acc8d51850cd05e10628c73d51bead493
diff --git a/src/java/com/threerings/presents/dobj/DObject.java b/src/java/com/threerings/presents/dobj/DObject.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/presents/dobj/DObject.java +++ b/src/java/com/threerings/presents/dobj/DObject.java @@ -1,5 +1,5 @@ // -// $Id: DObject.java,v 1.49 2002/09/19 1...
Experimental alternate toString() formatting style for DObject. Hopefully it will be well liked. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1
threerings_narya
train
a45b1f9987effb444ff9fc33a499aa3aaab8e168
diff --git a/lib/strong_migrations/checker.rb b/lib/strong_migrations/checker.rb index <HASH>..<HASH> 100644 --- a/lib/strong_migrations/checker.rb +++ b/lib/strong_migrations/checker.rb @@ -250,6 +250,7 @@ Then add the foreign key in separate migrations." result = yield + # outdated statistics + a new ...
Added comment about analyze [skip ci]
ankane_strong_migrations
train
0b4da8c71bc4e46b3b7f244aa54ffe61656844b6
diff --git a/README.rdoc b/README.rdoc index <HASH>..<HASH> 100644 --- a/README.rdoc +++ b/README.rdoc @@ -77,7 +77,7 @@ See RestClient::Resource docs for details. == Exceptions (see http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html) -* for results code between 200 and 206 a RestClient::Response will be retur...
added <I> Multi-Status to the list of legit codes
rest-client_rest-client
train
dc1d8c3781a9fef1209faa599287259b7be40e7a
diff --git a/ide/webstorm/webstorm.js b/ide/webstorm/webstorm.js index <HASH>..<HASH> 100644 --- a/ide/webstorm/webstorm.js +++ b/ide/webstorm/webstorm.js @@ -23,8 +23,11 @@ function WebStorm() { this.executable = 'wstorm'; } else { // todo in windows check if this webstorm.exe exists otherwise ...
fix(windows) Fixed the check for existence of webstorm executable file on Windows.
impaler_ide-template
train
6e00c5432b1dcbd207b25906b57e6c1e8469bb91
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ * [chain.unsuppress](#chainunsuppress) * [chain.bind](#chainbind) * [chain.name](#chainname) - * [promix.handler](#promixhandler) + * [promix.handle](#promixhandle) * [promix.promise](#promixpromise)...
Changed promix.handler() to promix.handle() throughout the module.
pachet_promix
train
ed0cf2a7366e9ae3929635d74154f208b71e2e6f
diff --git a/lib/active_enum/extensions.rb b/lib/active_enum/extensions.rb index <HASH>..<HASH> 100644 --- a/lib/active_enum/extensions.rb +++ b/lib/active_enum/extensions.rb @@ -63,24 +63,26 @@ module ActiveEnum # user.sex(:meta_key) # def define_active_enum_read_method(attribute) - defin...
refactor extension method definitions AR method overrides with class_eval to remove some awkward code and evaluate the read method return value once instead of per attribute method call
adzap_active_enum
train
c2f152ac216f3c8863c20abb96e918b0432ade21
diff --git a/lang/fr/moodle.php b/lang/fr/moodle.php index <HASH>..<HASH> 100644 --- a/lang/fr/moodle.php +++ b/lang/fr/moodle.php @@ -288,6 +288,8 @@ $string['deletingexistingcoursedata'] = 'Suppression des donn $string['deletingolddata'] = 'Suppression des anciennes donn�es'; $string['department'] = 'D�partement'; ...
New strings for the user list type selection feature.
moodle_moodle
train
c07a6c505a35b18b648f7a574450da0c0547348e
diff --git a/hebel/layers/logistic_layer.py b/hebel/layers/logistic_layer.py index <HASH>..<HASH> 100644 --- a/hebel/layers/logistic_layer.py +++ b/hebel/layers/logistic_layer.py @@ -295,7 +295,7 @@ class LogisticLayer(TopLayer): loss = cross_entropy(activations, targets) - if average: loss = loss.m...
Fix average test error on LogisticLayer
hannes-brt_hebel
train
f7757a58fc2c62a8583fd897eac114a19956555b
diff --git a/src/utils/utils.js b/src/utils/utils.js index <HASH>..<HASH> 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -454,7 +454,7 @@ Utils.multiCentroid = function (polygons) { return centroid; }; -Utils.polygonArea = function (polygon) { +Utils.signedPolygonAreaSum = function (polygon) { ...
add util to detect polygon ring winding order
tangrams_tangram
train
a8953a2a5da530657a19d8d0231739347021aa27
diff --git a/aws-java-sdk-core/src/main/java/com/amazonaws/ClientConfiguration.java b/aws-java-sdk-core/src/main/java/com/amazonaws/ClientConfiguration.java index <HASH>..<HASH> 100644 --- a/aws-java-sdk-core/src/main/java/com/amazonaws/ClientConfiguration.java +++ b/aws-java-sdk-core/src/main/java/com/amazonaws/Client...
Change environment non proxy hosts to expect a comma separated list
aws_aws-sdk-java
train
048cee32b8b247c0a6d71144e038309a69205168
diff --git a/golfilesystem/copy.go b/golfilesystem/copy.go index <HASH>..<HASH> 100644 --- a/golfilesystem/copy.go +++ b/golfilesystem/copy.go @@ -59,7 +59,7 @@ func CopyFile(src, dst string) error { if err = MkDir(path.Dir(dst)); err != nil { return err } - err = copyFileContents(src, dst) + err = copyFileConte...
[golfilesystem] made copy over FileMode to destination
abhishekkr_gol
train
c86486a62fb3f9663de913c7034ea13f47af4239
diff --git a/lib/query_string_search/comparator.rb b/lib/query_string_search/comparator.rb index <HASH>..<HASH> 100644 --- a/lib/query_string_search/comparator.rb +++ b/lib/query_string_search/comparator.rb @@ -43,13 +43,15 @@ module QueryStringSearch module Comparator class ComparisonFactory def self.bu...
Consolidate comparison instantiation Rubocop likes this way better
umn-asr_query_string_search
train
1e0fbb068366b7b5d01cd90771e5467a6971cd6a
diff --git a/kite/main.go b/kite/main.go index <HASH>..<HASH> 100644 --- a/kite/main.go +++ b/kite/main.go @@ -233,7 +233,7 @@ func (k *Kite) createMethodMap(rcvr interface{}, methods map[string]string) { for alternativeName, method := range methods { m, ok := kiteStruct.MethodByName(method) if !ok { - slog.P...
kite: refactor and small cosmetic fixes
koding_kite
train
8a1e611a03da8374567c9654f8baf29b66c83c6e
diff --git a/persist/sqldb/migrate.go b/persist/sqldb/migrate.go index <HASH>..<HASH> 100644 --- a/persist/sqldb/migrate.go +++ b/persist/sqldb/migrate.go @@ -148,7 +148,7 @@ func (m migrate) Exec(ctx context.Context) error { ansiSQLChange(`alter table argo_archived_workflows add primary key(clustername,uid)`), a...
feat: Update archived workdflow column to be JSON. Closes #<I> (#<I>)
argoproj_argo
train
e6f04890312dccafb295fb0a38f441c81c9f137f
diff --git a/src/test/java/org/junit/tests/internal/runners/statements/FailOnTimeoutTest.java b/src/test/java/org/junit/tests/internal/runners/statements/FailOnTimeoutTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/junit/tests/internal/runners/statements/FailOnTimeoutTest.java +++ b/src/test/java/org/juni...
Use builder instead of deprecated constructor
junit-team_junit4
train
e662071f75408ef199d7f08a4897f26d15b52f89
diff --git a/htmlparsing.py b/htmlparsing.py index <HASH>..<HASH> 100644 --- a/htmlparsing.py +++ b/htmlparsing.py @@ -32,7 +32,7 @@ GITHUB_FILE_TAG = 'blob-wrapper data type-text' # --------------------------- def get_github_text(raw_html): - html = BeautifulSoup(raw_html) + html = BeautifulSoup(raw_html, "h...
get rid of Beautifulsoup warning
blockstack_blockstack-proofs-py
train
6628efcc6e78490740cff5a30a087112273c56dc
diff --git a/datajoint/base_relation.py b/datajoint/base_relation.py index <HASH>..<HASH> 100644 --- a/datajoint/base_relation.py +++ b/datajoint/base_relation.py @@ -261,7 +261,7 @@ class BaseRelation(RelationalOperand, metaclass=abc.ABCMeta): sql = 'INSERT IGNORE' else: ...
be more verbose on changes
datajoint_datajoint-python
train
4fc410545637e22f1b4131f4393c0af2afc1d3b6
diff --git a/lxd/storage_volumes.go b/lxd/storage_volumes.go index <HASH>..<HASH> 100644 --- a/lxd/storage_volumes.go +++ b/lxd/storage_volumes.go @@ -570,7 +570,7 @@ func doVolumeCreateOrCopy(d *Daemon, r *http.Request, requestProjectName string, return pool.CreateCustomVolume(projectName, req.Name, req.Descriptio...
lxd: Support for copy/move custom storage volume between projects
lxc_lxd
train
323128105f335bed6ef5ab50b639c64a4828ac14
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -46,15 +46,9 @@ test('basic', async t => { t.ok(bundleJsZip); }); -test('roundtrip', async t => { - const out = randomPath(); - const outSrc = join(out, 'src'); - const outDst = join(out, 'dst'); - - await...
extract unzipping to a function
erikdesjardins_zip-webpack-plugin
train
a7b1d1631e2fe7c7014ac7d732a53b8891089f2c
diff --git a/bundles/org.eclipse.orion.client.editor/web/orion/editor/edit.js b/bundles/org.eclipse.orion.client.editor/web/orion/editor/edit.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.editor/web/orion/editor/edit.js +++ b/bundles/org.eclipse.orion.client.editor/web/orion/editor/edit.js @@ -1...
content assist should not activate when readonly
eclipse_orion.client
train
ca49cd476b0e7b56fec35ac24d7b861687685287
diff --git a/xibless/base.py b/xibless/base.py index <HASH>..<HASH> 100644 --- a/xibless/base.py +++ b/xibless/base.py @@ -54,9 +54,8 @@ class GeneratedItem(object): PROPERTIES = [] def __init__(self): - self.creationOrder = globalvars.globalGenerationCounter.creationToken() - # In case we...
Make sure we generate all generated items (not just those in the module namespace) and fixed a bug where we would sometimes end up with two generated item with the same varname.
hsoft_xibless
train
24963ce53cae8b3b40252db749922f6e26848de7
diff --git a/parse.go b/parse.go index <HASH>..<HASH> 100644 --- a/parse.go +++ b/parse.go @@ -324,13 +324,13 @@ func (p *parser) posErr(pos position, format string, v ...interface{}) { } func (p *parser) curErr(format string, v ...interface{}) { + if p.tok == EOF { + p.pos = p.npos + } p.posErr(p.pos, format, v...
Move EOF position erroring to correct func
mvdan_sh
train
4858537930fe5ffb8b9b54d93b64c421b9952233
diff --git a/src/main/java/com/amazon/sqs/javamessaging/SQSMessageConsumer.java b/src/main/java/com/amazon/sqs/javamessaging/SQSMessageConsumer.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/amazon/sqs/javamessaging/SQSMessageConsumer.java +++ b/src/main/java/com/amazon/sqs/javamessaging/SQSMessageConsumer.ja...
Add checkClosed() to all three receive*() methods As per <URL>
awslabs_amazon-sqs-java-messaging-lib
train
cca736173428a0c33fb42d887601aab71608ab89
diff --git a/db/common/src/main/java/org/commonjava/indy/db/common/AbstractStoreDataManager.java b/db/common/src/main/java/org/commonjava/indy/db/common/AbstractStoreDataManager.java index <HASH>..<HASH> 100644 --- a/db/common/src/main/java/org/commonjava/indy/db/common/AbstractStoreDataManager.java +++ b/db/common/src...
Some code simplify Conflicts: db/common/src/main/java/org/commonjava/indy/db/common/AbstractStoreDataManager.java
Commonjava_indy
train
eed2235859c1cb0090ce689261ce7fc58a206a76
diff --git a/types/types.go b/types/types.go index <HASH>..<HASH> 100644 --- a/types/types.go +++ b/types/types.go @@ -132,6 +132,7 @@ type Version struct { Os string Arch string KernelVersion string `json:",omitempty"` + Experimental bool } // GET "/info"
fix experimental version and release script add api version experimental
docker_engine-api
train
9b7060393ec0fd7e103b039a5507843270e5908f
diff --git a/br/pkg/stream/stream_mgr.go b/br/pkg/stream/stream_mgr.go index <HASH>..<HASH> 100644 --- a/br/pkg/stream/stream_mgr.go +++ b/br/pkg/stream/stream_mgr.go @@ -179,7 +179,7 @@ func FastUnmarshalMetaData( m := &backuppb.Metadata{} err = m.Unmarshal(b) if err != nil { - if !strings.HasSuffix(pat...
log-backup: fixed bugs about log truncate left some files and log truncate update log-min-date (#<I>) close pingcap/tidb#<I>, ref pingcap/tidb#<I>, ref pingcap/tidb#<I>
pingcap_tidb
train
3a672bac7c30be8598bf901e2ea23ed2003ceffa
diff --git a/rows/plugins/plugin_pdf.py b/rows/plugins/plugin_pdf.py index <HASH>..<HASH> 100644 --- a/rows/plugins/plugin_pdf.py +++ b/rows/plugins/plugin_pdf.py @@ -352,9 +352,8 @@ class HeaderPositionAlgorithm(YGroupsAlgorithm): line.append(y_objs) lines.append(line) - for ...
Do not raise exception if some object is not selected
turicas_rows
train
e9af894a31ffc50b53ae44c41ed8405c3b444507
diff --git a/tests/Silex/Tests/Provider/SessionServiceProviderTest.php b/tests/Silex/Tests/Provider/SessionServiceProviderTest.php index <HASH>..<HASH> 100644 --- a/tests/Silex/Tests/Provider/SessionServiceProviderTest.php +++ b/tests/Silex/Tests/Provider/SessionServiceProviderTest.php @@ -30,6 +30,11 @@ class SessionS...
Added simple smoke test for default session provider setup
silexphp_Silex
train
0d00ed8368ed6c7356d3203e3762fe3b002694cc
diff --git a/rtcpeerconnection.js b/rtcpeerconnection.js index <HASH>..<HASH> 100644 --- a/rtcpeerconnection.js +++ b/rtcpeerconnection.js @@ -1012,6 +1012,19 @@ module.exports = function(window, edgeVersion) { transceiver.rtpSender.setTransport(transceiver.dtlsTransport); } + // If the off...
fix rtx issue when called with a non-rtx answer, rtx was still sent. Fixes <URL>
otalk_rtcpeerconnection-shim
train
7c9c593bfca9d261b1473881f2e77fce2cb39694
diff --git a/Task/Generate.php b/Task/Generate.php index <HASH>..<HASH> 100644 --- a/Task/Generate.php +++ b/Task/Generate.php @@ -36,20 +36,22 @@ class Generate extends Base { * * @param $environment * The current environment handler. - * @param $component_name - * A component name. Currently support...
Fixed total mess with component name / type; changed parameter name for Generate task constructor to be more accurate; added param to getGenerator().
drupal-code-builder_drupal-code-builder
train