hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
2a832b0941f0a6f5ec024dc2c527f6ed95e8114c | diff --git a/pmagpy/convert_2_magic.py b/pmagpy/convert_2_magic.py
index <HASH>..<HASH> 100644
--- a/pmagpy/convert_2_magic.py
+++ b/pmagpy/convert_2_magic.py
@@ -882,6 +882,7 @@ def cit(dir_path=".", input_dir_path="", magfile="", user="", meas_file="measure
if input_dir_path == '':
input_dir_path = '.'
... | one more fix for cit_magic | PmagPy_PmagPy | train |
bb37ecd895a1bcb6abf0f76534c4b6fb9030256a | diff --git a/lib/reek/source/source_code.rb b/lib/reek/source/source_code.rb
index <HASH>..<HASH> 100644
--- a/lib/reek/source/source_code.rb
+++ b/lib/reek/source/source_code.rb
@@ -1,7 +1,8 @@
# frozen_string_literal: true
require_relative '../cli/silencer'
-Reek::CLI::Silencer.without_warnings { require 'parser/... | Use current ruby for parsing | troessner_reek | train |
5af42d37d1878483606f7409b83ea903b0958663 | diff --git a/hdate/date.py b/hdate/date.py
index <HASH>..<HASH> 100644
--- a/hdate/date.py
+++ b/hdate/date.py
@@ -236,7 +236,7 @@ class HDate(BaseClass):
return omer_day
@property
- def daf_yomi(self):
+ def daf_yomi_repr(self):
"""Return a tuple of mesechta and daf."""
days_sin... | rename daf_yomi properties to be more intuitive | royi1000_py-libhdate | train |
295604d6df2a51ec930f10286a4e293cc8f4a226 | diff --git a/caddyconfig/httpcaddyfile/httptype.go b/caddyconfig/httpcaddyfile/httptype.go
index <HASH>..<HASH> 100644
--- a/caddyconfig/httpcaddyfile/httptype.go
+++ b/caddyconfig/httpcaddyfile/httptype.go
@@ -252,18 +252,6 @@ func (st ServerType) Setup(originalServerBlocks []caddyfile.ServerBlock,
}
}
}
- if... | httpcaddyfile: Why was this code repeated?? | mholt_caddy | train |
b8b0be6db652092cb7c64f584bd57a59f6ced32f | diff --git a/django_afip/models.py b/django_afip/models.py
index <HASH>..<HASH> 100644
--- a/django_afip/models.py
+++ b/django_afip/models.py
@@ -328,6 +328,13 @@ class TaxPayer(models.Model):
return results
+ def __repr__(self):
+ return '<TaxPayer {}: {}, CUIT {}>'.format(
+ self.pk... | Improve a few str(), repr() and help_text | WhyNotHugo_django-afip | train |
a26d86c3ec97a495663f229166e8484ddb9ee70e | diff --git a/scapy.py b/scapy.py
index <HASH>..<HASH> 100755
--- a/scapy.py
+++ b/scapy.py
@@ -9217,6 +9217,15 @@ L3Types = { ETH_P_IP : IP,
}
+def flush_fd(fd):
+ if type(fd) is not int:
+ fd = fd.fileno()
+ while 1:
+ r,w,e = select([fd],[],[],0)
+ if r:
+ os.rea... | Fixes incomplete reception buffer flushing (ticket #<I>)
There is a race condition between the time a socket is created and the
time it is initialized (BPF filter pushed, bound to an interface). Indeed,
packets captured in between would still be delivered when reading the socket.
Setting reception buffers to 0 was par... | secdev_scapy | train |
1efb28ee400968d787f4bae765df0554de3690d5 | diff --git a/examples/HHTut/HHTut.py b/examples/HHTut/HHTut.py
index <HASH>..<HASH> 100644
--- a/examples/HHTut/HHTut.py
+++ b/examples/HHTut/HHTut.py
@@ -56,10 +56,10 @@ netParams['connParams'] = []
netParams['connParams'].append(
{'preTags': {'popLabel': 'PYR'}, 'postTags': {'popLabel': 'PYR'},
- 'connList... | finished fromListConn function; tested on simple HHTut example; added comments | Neurosim-lab_netpyne | train |
6c857071a324861647fd2711955e9c3c41cb703f | diff --git a/config/software/chef-init.rb b/config/software/chef-init.rb
index <HASH>..<HASH> 100644
--- a/config/software/chef-init.rb
+++ b/config/software/chef-init.rb
@@ -21,8 +21,9 @@ source git: "https://github.com/opscode/chef-init"
relative_path "chef-init"
-dependency "runit"
+dependency "bundler"
depend... | Ensure `bundler` dep is properly declared
We need to install bundler before attempting a
`bundle install`. | chef_chef | train |
98780eabec1fa5c39d2aa7bc36d91b46577c38e4 | diff --git a/titan-persistit/src/main/java/com/thinkaurelius/titan/diskstorage/persistit/PersistitKeyValueStore.java b/titan-persistit/src/main/java/com/thinkaurelius/titan/diskstorage/persistit/PersistitKeyValueStore.java
index <HASH>..<HASH> 100644
--- a/titan-persistit/src/main/java/com/thinkaurelius/titan/diskstora... | restricting exchange instances to the thread the were instantiated on | thinkaurelius_titan | train |
b0a1af1163c7c3a53bc79389ae0936652ddc8930 | diff --git a/client/protege/src/main/java/it/unibz/inf/ontop/protege/core/OBDAModel.java b/client/protege/src/main/java/it/unibz/inf/ontop/protege/core/OBDAModel.java
index <HASH>..<HASH> 100644
--- a/client/protege/src/main/java/it/unibz/inf/ontop/protege/core/OBDAModel.java
+++ b/client/protege/src/main/java/it/unibz... | do not update id for mapping with the same id | ontop_ontop | train |
82fa37eccf69b7b68bee4fc8a9f06cde249ac723 | diff --git a/testing/junit_ext/src/java/com/google/j2objc/testing/JUnitTestRunner.java b/testing/junit_ext/src/java/com/google/j2objc/testing/JUnitTestRunner.java
index <HASH>..<HASH> 100644
--- a/testing/junit_ext/src/java/com/google/j2objc/testing/JUnitTestRunner.java
+++ b/testing/junit_ext/src/java/com/google/j2obj... | Fix for "J2Objc's JUnitTestRunner attempts to instantiate abstract classes" (b/
<I>) | google_j2objc | train |
162aedb4c12e94fa5be588a97bcd6bec677f91b3 | diff --git a/keanu-examples/bayesianMethodsForHackers/src/main/java/examples/TextMessaging.java b/keanu-examples/bayesianMethodsForHackers/src/main/java/examples/TextMessaging.java
index <HASH>..<HASH> 100644
--- a/keanu-examples/bayesianMethodsForHackers/src/main/java/examples/TextMessaging.java
+++ b/keanu-examples/b... | change text messaging example to use new Exponential distribution | improbable-research_keanu | train |
a9d1a70c8df77dc455d7317a5a5ffb7c44ac8d2e | diff --git a/client/extensions/woocommerce/app/store-stats/store-stats-chart/index.js b/client/extensions/woocommerce/app/store-stats/store-stats-chart/index.js
index <HASH>..<HASH> 100644
--- a/client/extensions/woocommerce/app/store-stats/store-stats-chart/index.js
+++ b/client/extensions/woocommerce/app/store-stats/... | Fix the recording of the `calypso_woocommerce_stats_chart_tab_click` by ensuring we pass valid data. | Automattic_wp-calypso | train |
ce3b6eb638d1c3294d4f0a8b63d75395c5b6099d | diff --git a/core/DataFiles/SearchEngines.php b/core/DataFiles/SearchEngines.php
index <HASH>..<HASH> 100644
--- a/core/DataFiles/SearchEngines.php
+++ b/core/DataFiles/SearchEngines.php
@@ -943,6 +943,12 @@ if (!isset($GLOBALS['Piwik_SearchEngines'])) {
// X-recherche
'www.x-recherche.com' ... | refs #<I> added detection for yahoo! japan; improved handling for search enginge detection | matomo-org_matomo | train |
51781ba77777a04b9e467f156fe6aefd9a432d5e | diff --git a/ezp/Persistence/LegacyStorage/Content/LocationGateway.php b/ezp/Persistence/LegacyStorage/Content/LocationGateway.php
index <HASH>..<HASH> 100644
--- a/ezp/Persistence/LegacyStorage/Content/LocationGateway.php
+++ b/ezp/Persistence/LegacyStorage/Content/LocationGateway.php
@@ -76,9 +76,9 @@ abstract class ... | Implemented unhiding a subtree
Surprisingly complex operation, since we need to ensure that explicitely
hidden subtrees of the subtree to unhide still stay hidden. Still might
be possible to optimize that set of queries currently used for that. | ezsystems_ezpublish-kernel | train |
fbfe565b44e76cce80a26293ebb0184fbd650675 | diff --git a/ui/src/sources/components/InfluxTable.js b/ui/src/sources/components/InfluxTable.js
index <HASH>..<HASH> 100644
--- a/ui/src/sources/components/InfluxTable.js
+++ b/ui/src/sources/components/InfluxTable.js
@@ -105,16 +105,17 @@ const InfluxTable = ({
<h2 className="panel-title">
{is... | Change 'Source' to 'Connection' in configuration pages | influxdata_influxdb | train |
231fbdbd4ec171fa1df4cb4d3d647601956ec046 | diff --git a/cpenv/module.py b/cpenv/module.py
index <HASH>..<HASH> 100644
--- a/cpenv/module.py
+++ b/cpenv/module.py
@@ -135,7 +135,7 @@ class Module(object):
path=kwargs.get('path', self.path),
qual_name=kwargs.get('qual_name', self.qual_name),
real_name=kwargs.get('real_name',... | add: support for four decimal versions | cpenv_cpenv | train |
933ef0a0c5e8e159e35e4ffb3a4137794f208ed3 | diff --git a/tests/junit/org/jgroups/protocols/AUTHTest.java b/tests/junit/org/jgroups/protocols/AUTHTest.java
index <HASH>..<HASH> 100644
--- a/tests/junit/org/jgroups/protocols/AUTHTest.java
+++ b/tests/junit/org/jgroups/protocols/AUTHTest.java
@@ -30,7 +30,7 @@ public class AUTHTest extends ChannelTestBase {
... | replaced assertXXX() with assert | belaban_JGroups | train |
d3f925fef757b77d9270a33f136ff6013f0fdcfe | diff --git a/lib/jets/builders/code_builder.rb b/lib/jets/builders/code_builder.rb
index <HASH>..<HASH> 100644
--- a/lib/jets/builders/code_builder.rb
+++ b/lib/jets/builders/code_builder.rb
@@ -98,8 +98,8 @@ module Jets::Builders
# Code prep and zipping
check_code_size!
- calculate_md5s # must be ... | fix subtle bug when code doesnt get uploaded from newly generated shims | tongueroo_jets | train |
96cc5b320c76ff2d379c94e1d05d1be42a3de8e3 | diff --git a/readabilitySAX.js b/readabilitySAX.js
index <HASH>..<HASH> 100644
--- a/readabilitySAX.js
+++ b/readabilitySAX.js
@@ -456,14 +456,7 @@ Readability.prototype.onclosetag = function(tagName){
elem.addInfo();
//clean conditionally
- if(tagName in removeIfEmpty && elem.info.linkLength + elem.info.textLeng... | Moved removal of empty tags
Will now also remove tags in cleanConditionally | fb55_readabilitySAX | train |
d58899284e41dfe9224d99b9d4ce2613b762241f | diff --git a/projects/samskivert/src/java/com/samskivert/swing/Label.java b/projects/samskivert/src/java/com/samskivert/swing/Label.java
index <HASH>..<HASH> 100644
--- a/projects/samskivert/src/java/com/samskivert/swing/Label.java
+++ b/projects/samskivert/src/java/com/samskivert/swing/Label.java
@@ -1,5 +1,5 @@
//
-... | Oh no, not again. We have to account for our style adjustments when
computing width and height all the time rather than tacking them on at the
end.
git-svn-id: <URL> | samskivert_samskivert | train |
b5333476db74893e928502cf96c659a101b891e2 | diff --git a/course/lib.php b/course/lib.php
index <HASH>..<HASH> 100644
--- a/course/lib.php
+++ b/course/lib.php
@@ -1085,7 +1085,7 @@ function print_courses_sideblock($category=0, $width="100%") {
$moddata[]="<a $linkcss href=\"$CFG->wwwroot/course/category.php?id=$category->id\">$category->name</a>";
... | Search link should go to listing (it has a search box anyway) | moodle_moodle | train |
e9f9e4d2490f6e6241963732b9e8ed54f3b997b1 | diff --git a/server.go b/server.go
index <HASH>..<HASH> 100644
--- a/server.go
+++ b/server.go
@@ -221,6 +221,16 @@ type JWTConfig struct {
Subject string `yaml:"subject" json:"subject"`
}
+func (self *JWTConfig) SignedString(input string) (string, error) {
+ var alg = typeutil.OrString(self.Algo... | Add jwtSign function for signing arbitrary strings | ghetzel_diecast | train |
a58e4997b87236368b3b88219d784960d91235dd | diff --git a/src/test/java/de/rototor/pdfbox/graphics2d/PdfBoxGraphics2DTestBase.java b/src/test/java/de/rototor/pdfbox/graphics2d/PdfBoxGraphics2DTestBase.java
index <HASH>..<HASH> 100644
--- a/src/test/java/de/rototor/pdfbox/graphics2d/PdfBoxGraphics2DTestBase.java
+++ b/src/test/java/de/rototor/pdfbox/graphics2d/Pdf... | revert to the master version of PdfBoxGraphics2DTestBase.java | rototor_pdfbox-graphics2d | train |
40e18ebc802ed59e58b323347b1d87869162ac23 | diff --git a/lfshttp/endpoint.go b/lfshttp/endpoint.go
index <HASH>..<HASH> 100644
--- a/lfshttp/endpoint.go
+++ b/lfshttp/endpoint.go
@@ -125,7 +125,7 @@ func EndpointFromLocalPath(path string) Endpoint {
} else {
gitpath = filepath.Join(path, ".git")
}
- if file, err := os.Lstat(gitpath); err == nil && file.Is... | lfshttp: allow gitlinks in local path endpoints
As an addendum to commit b5ecbd9ca4ef, we now allow local path
endpoints to refer to .git files (i.e., gitlinks) as well as to
directories, per PR advice from bk<I>. | git-lfs_git-lfs | train |
53adaa76d1a13a0a1e18237eba49e7035b15134b | diff --git a/configure.py b/configure.py
index <HASH>..<HASH> 100755
--- a/configure.py
+++ b/configure.py
@@ -319,7 +319,7 @@ n.newline()
n.comment('Generate the manual using asciidoc.')
n.rule('asciidoc',
- command='asciidoc -a toc -o $out $in',
+ command='asciidoc -a toc -a max-width=45em -o $out $in... | manual: limit width to <I>em
I had a local user stylesheet that was doing this for all sites
so I hadn't noticed how bad it was! | ninja-build_ninja | train |
7e09258409633ef3f3dbc4f45b89c1a5bb09b05c | diff --git a/kafka/codec.py b/kafka/codec.py
index <HASH>..<HASH> 100644
--- a/kafka/codec.py
+++ b/kafka/codec.py
@@ -9,9 +9,8 @@ _XERIAL_V1_FORMAT = 'bccccccBii'
try:
import snappy
- _HAS_SNAPPY = True
except ImportError:
- _HAS_SNAPPY = False
+ snappy = None
try:
import lz4
@@ -28,7 +27,7 @... | Write xerial-formatted snappy by default; use buffers to reduce copies | dpkp_kafka-python | train |
4551c9a73de46630885e5e40429ece78b5751091 | diff --git a/cherrypy/_cperror.py b/cherrypy/_cperror.py
index <HASH>..<HASH> 100644
--- a/cherrypy/_cperror.py
+++ b/cherrypy/_cperror.py
@@ -39,14 +39,16 @@ class InternalRedirect(Exception):
if params is not None:
if isinstance(params, basestring):
- request.queryString... | Renamed queryString into query_string | cherrypy_cheroot | train |
885e461ae3852acead946c5cd0c674d4d6a20642 | diff --git a/_pytest/python.py b/_pytest/python.py
index <HASH>..<HASH> 100644
--- a/_pytest/python.py
+++ b/_pytest/python.py
@@ -1830,7 +1830,10 @@ class FixtureManager:
if fixturedef.params is not None:
func_params = getattr(getattr(metafunc.function, 'parametrize', None), 'args... | Fix overriding of fixtures with parametrization.
Fixes #<I>, see #<I>. | pytest-dev_pytest | train |
1739f2af7743fcc36f0fe5be02276cf7f60a671b | diff --git a/ddl/db_test.go b/ddl/db_test.go
index <HASH>..<HASH> 100644
--- a/ddl/db_test.go
+++ b/ddl/db_test.go
@@ -5276,6 +5276,23 @@ func (s *testSerialDBSuite) TestCommitTxnWithIndexChange(c *C) {
tk.MustExec("admin check table t1")
}
+// TestAddIndexFailOnCaseWhenCanExit is used to close #19325.
+func (s *t... | ddl: exit add index on generated column with `case-when` expression parse error (#<I>) | pingcap_tidb | train |
0c5d70bf9e947d763faa35bafa98d625196a3cc9 | diff --git a/tests.py b/tests.py
index <HASH>..<HASH> 100644
--- a/tests.py
+++ b/tests.py
@@ -105,3 +105,16 @@ class ConstantsTest(TestCase):
reporter_abbv, k
)
)
+
+ def test_no_variation_is_same_as_key(self):
+ """Are any variations... | Adds a new test that ensures no variation is identical to the item it's supposed to be a variation of.
There were several of these, and they're all fixed as of now. | freelawproject_reporters-db | train |
8e786a17dd22ad3b4601b5302d162870c0ebdd23 | diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/AssertionFinder.php b/src/Psalm/Internal/Analyzer/Statements/Expression/AssertionFinder.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/AssertionFinder.php
+++ b/src/Psalm/Internal/Analyzer/Statements/Expression/Asser... | Deal with a reconciled var more accurately
Ref #<I> | vimeo_psalm | train |
1ac52c6305666205e7c44b09b3d8645764b259e7 | diff --git a/valideer/base.py b/valideer/base.py
index <HASH>..<HASH> 100644
--- a/valideer/base.py
+++ b/valideer/base.py
@@ -17,19 +17,17 @@ class ValidationError(ValueError):
self.msg = msg
self.value = value
self.context = []
- super(ValidationError, self).__init__(self.message)
+ ... | Allow customizing the value's string representation in ValidationError | podio_valideer | train |
7cfad0564ea121c61eec7b8f307c1fe53ab6e644 | diff --git a/betfairlightweight/__init__.py b/betfairlightweight/__init__.py
index <HASH>..<HASH> 100644
--- a/betfairlightweight/__init__.py
+++ b/betfairlightweight/__init__.py
@@ -4,5 +4,5 @@ from .streaming import StreamListener
__title__ = 'betfairlightweight'
-__version__ = '0.8.3'
+__version__ = '0.8.4'
__... | <I>
clear cache added
prevention of data being send after socket is stop() | liampauling_betfair | train |
6793910473ddebf40ccb85effa6a4633c98c06de | diff --git a/packages/xod-project/src/extractBoundInputsToConstNodes.js b/packages/xod-project/src/extractBoundInputsToConstNodes.js
index <HASH>..<HASH> 100644
--- a/packages/xod-project/src/extractBoundInputsToConstNodes.js
+++ b/packages/xod-project/src/extractBoundInputsToConstNodes.js
@@ -290,7 +290,7 @@ const ext... | fix(xod-project): dont forget autogenerated patches when extracting bound inputs
Fixes #<I> | xodio_xod | train |
3c5abcfbfcba7a5018ea3fc6aa41fbb8bbcd7259 | diff --git a/test/integration-test.js b/test/integration-test.js
index <HASH>..<HASH> 100644
--- a/test/integration-test.js
+++ b/test/integration-test.js
@@ -7,10 +7,6 @@ var rm = require('rimraf')
var cwd = path.join(__dirname, 'native-module')
test('can prebuild a native module for electron', function (t) {
- i... | Removing unnecessary checks in integration tests. | prebuild_prebuild | train |
7efb7e36ef36dd58b26fe495bbd0ecaf717be771 | diff --git a/lib/traffic_light_controller/server.rb b/lib/traffic_light_controller/server.rb
index <HASH>..<HASH> 100644
--- a/lib/traffic_light_controller/server.rb
+++ b/lib/traffic_light_controller/server.rb
@@ -46,6 +46,7 @@ module TrafficLightController
def process(path)
board.turnOff
board.setH... | Reissue connection on each, well, connection | jcmuller_traffic_light_controller | train |
8341f9e6c3cf7945632ac4b9edae94e26dfc586d | diff --git a/tests/Message/ServerAuthorizeResponseTest.php b/tests/Message/ServerAuthorizeResponseTest.php
index <HASH>..<HASH> 100644
--- a/tests/Message/ServerAuthorizeResponseTest.php
+++ b/tests/Message/ServerAuthorizeResponseTest.php
@@ -21,6 +21,8 @@ class ServerAuthorizeResponseTest extends TestCase
$th... | Additional tests for ServerAuthorizeResponse | thephpleague_omnipay-sagepay | train |
16419607d173c166dcd6a92a428496a59b43960c | diff --git a/holoviews/core/data/grid.py b/holoviews/core/data/grid.py
index <HASH>..<HASH> 100644
--- a/holoviews/core/data/grid.py
+++ b/holoviews/core/data/grid.py
@@ -92,8 +92,11 @@ class GridInterface(DictInterface):
@classmethod
- def shape(cls, dataset):
- return cls.length(dataset), len(datas... | Added gridded option to GridInterface.shape | pyviz_holoviews | train |
1fbd0697aee4353b1c076bf497c1c12252e0ed72 | diff --git a/src/test/java/com/maxmind/geoip2/ClientTest.java b/src/test/java/com/maxmind/geoip2/ClientTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/maxmind/geoip2/ClientTest.java
+++ b/src/test/java/com/maxmind/geoip2/ClientTest.java
@@ -3,6 +3,7 @@ package com.maxmind.geoip2;
import java.lang.*;
imp... | I added a function that tells if port is available | maxmind_GeoIP2-java | train |
c297a637cf9cfb38d71b4f93f6bf22897e0c9519 | diff --git a/Grid/Type/GridType.php b/Grid/Type/GridType.php
index <HASH>..<HASH> 100755
--- a/Grid/Type/GridType.php
+++ b/Grid/Type/GridType.php
@@ -56,14 +56,30 @@ class GridType extends AbstractType
'sortable' => true,
));
- $resolver->setAllowedTypes('source', array('null', '... | Added support for OptionsResolver < <I> | APY_APYDataGridBundle | train |
462991c5f6de2c8c1ed4464938d0b162ff6fea9f | diff --git a/app/src/main/java/org/jboss/hal/client/runtime/subsystem/io/WorkerPreview.java b/app/src/main/java/org/jboss/hal/client/runtime/subsystem/io/WorkerPreview.java
index <HASH>..<HASH> 100644
--- a/app/src/main/java/org/jboss/hal/client/runtime/subsystem/io/WorkerPreview.java
+++ b/app/src/main/java/org/jboss/... | [HAL-<I>] Add BusyWorkerThreadCount metric in IO WorkerPreview | hal_console | train |
4b81931b62da7c71d8b55e61463507300cd70058 | diff --git a/gremlin-python/src/main/jython/gremlin_python/structure/io/graphbinaryV1.py b/gremlin-python/src/main/jython/gremlin_python/structure/io/graphbinaryV1.py
index <HASH>..<HASH> 100644
--- a/gremlin-python/src/main/jython/gremlin_python/structure/io/graphbinaryV1.py
+++ b/gremlin-python/src/main/jython/gremli... | Added duration derser to python graphbinary | apache_tinkerpop | train |
481d22a58ad465cf9d1a2b08a56a58a7ebed20ca | diff --git a/shoebot/core/bot.py b/shoebot/core/bot.py
index <HASH>..<HASH> 100644
--- a/shoebot/core/bot.py
+++ b/shoebot/core/bot.py
@@ -258,7 +258,7 @@ class Bot(object):
if surface:
if defer is None:
defer=False
- self._canvas.output(surface, defer)
+ sel... | Make naming more consistant -
canvas snapshot function renamed to snapshot | shoebot_shoebot | train |
8b5257f841940bfbbecbbc6cd173dd7013c6d1bf | diff --git a/droidparts/src/org/droidparts/net/ImageFetcher.java b/droidparts/src/org/droidparts/net/ImageFetcher.java
index <HASH>..<HASH> 100644
--- a/droidparts/src/org/droidparts/net/ImageFetcher.java
+++ b/droidparts/src/org/droidparts/net/ImageFetcher.java
@@ -61,7 +61,7 @@ public class ImageFetcher {
int cross... | ImageFetcher: back to single thread. | droidparts_droidparts | train |
4bc68c4cc907dfe30c4971aeabc8a6b49949d682 | diff --git a/src/utils/__tests__/get-class-list-from-props.test.js b/src/utils/__tests__/get-class-list-from-props.test.js
index <HASH>..<HASH> 100644
--- a/src/utils/__tests__/get-class-list-from-props.test.js
+++ b/src/utils/__tests__/get-class-list-from-props.test.js
@@ -78,4 +78,43 @@ describe('get class list', () ... | Add null check when building up class list (fixes #<I>) (#<I>) | FortAwesome_react-fontawesome | train |
5db1ab895c31bb4e4c83b9ae7d62d264e14ddfb6 | diff --git a/spring-boot-admin-server/src/main/java/de/codecentric/boot/admin/server/notify/CompositeNotifier.java b/spring-boot-admin-server/src/main/java/de/codecentric/boot/admin/server/notify/CompositeNotifier.java
index <HASH>..<HASH> 100644
--- a/spring-boot-admin-server/src/main/java/de/codecentric/boot/admin/se... | Catch errors in CompositeNotifier and resume with next
fixes #<I> | codecentric_spring-boot-admin | train |
ff04ee880f79bdd4a94e7bfe40e398b8da78d0f8 | diff --git a/node_modules_add/kwf-webpack/config/webpack.kwf.config.js b/node_modules_add/kwf-webpack/config/webpack.kwf.config.js
index <HASH>..<HASH> 100644
--- a/node_modules_add/kwf-webpack/config/webpack.kwf.config.js
+++ b/node_modules_add/kwf-webpack/config/webpack.kwf.config.js
@@ -87,6 +87,19 @@ module.exports... | disable caching-loader, not yet ready | koala-framework_koala-framework | train |
6cea11f6eca962cf07b2b3d322e910357d717e4e | diff --git a/app/log.go b/app/log.go
index <HASH>..<HASH> 100644
--- a/app/log.go
+++ b/app/log.go
@@ -29,6 +29,7 @@ var (
bulkQueueMaxSize = 10000
rateLimitWarningInterval = 5 * time.Second
+ globalRateLimiter = rate.NewLimiter(rate.Inf, 1)
buckets = append([]float64{0.1, 0.5}, prometheus.Exponent... | log: add global logs rate limiter for entire instance
(cherry picked from commit a4ef7cfb<I>e<I>f<I>b4b1a9aed<I>d4e<I>b) | tsuru_tsuru | train |
9b4ee40ba4f04cbd7bd4b6e182862f0d926835c7 | diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/metrics/parser/MetricsParseListener.java b/engine/src/main/java/org/camunda/bpm/engine/impl/metrics/parser/MetricsParseListener.java
index <HASH>..<HASH> 100644
--- a/engine/src/main/java/org/camunda/bpm/engine/impl/metrics/parser/MetricsParseListener.java
+... | chore(engine): code cleanup
related to CAM-<I> | camunda_camunda-bpm-platform | train |
c4d98c4c8ed9d28628f566b2a080fef8a41745fa | diff --git a/bosh-director/spec/unit/jobs/import_compiled_packages_spec.rb b/bosh-director/spec/unit/jobs/import_compiled_packages_spec.rb
index <HASH>..<HASH> 100644
--- a/bosh-director/spec/unit/jobs/import_compiled_packages_spec.rb
+++ b/bosh-director/spec/unit/jobs/import_compiled_packages_spec.rb
@@ -22,7 +22,7 @@... | fix CompiledPackage stubs | cloudfoundry_bosh | train |
e9da1a01c366deb07923a548c3083e917502fa2b | diff --git a/maven-plugin/src/main/java/io/sundr/maven/GenerateBomMojo.java b/maven-plugin/src/main/java/io/sundr/maven/GenerateBomMojo.java
index <HASH>..<HASH> 100644
--- a/maven-plugin/src/main/java/io/sundr/maven/GenerateBomMojo.java
+++ b/maven-plugin/src/main/java/io/sundr/maven/GenerateBomMojo.java
@@ -42,7 +42,... | Apply additional check if the generate-bom is applicable to the project. | sundrio_sundrio | train |
f4208ff77274e1e223c6edea17e6f75440ec5377 | diff --git a/tofu/openadas2tofu/_read_files.py b/tofu/openadas2tofu/_read_files.py
index <HASH>..<HASH> 100644
--- a/tofu/openadas2tofu/_read_files.py
+++ b/tofu/openadas2tofu/_read_files.py
@@ -51,7 +51,19 @@ def _get_subdir_from_pattern(path, pattern):
def read(adas_path, **kwdargs):
- """ Read openadas-forma... | [Issue<I>] Added docstr to read() and read_all() | ToFuProject_tofu | train |
e0d20eadd62bd6703694710c2f17380baef4d019 | diff --git a/test/dialects/value-expression-tests.js b/test/dialects/value-expression-tests.js
index <HASH>..<HASH> 100644
--- a/test/dialects/value-expression-tests.js
+++ b/test/dialects/value-expression-tests.js
@@ -19,6 +19,10 @@ Harness.test({
text : 'SELECT `customer`.`name`, (`customer`.`income` % ?) FROM ... | Added value-expression-tests for SqlServer. | brianc_node-sql | train |
73f8145d2e6bb7243a7debc8d32100bcef3d21b0 | diff --git a/sisu-inject/guice-plexus/guice-plexus-shim/src/main/java/org/codehaus/plexus/ContainerConfiguration.java b/sisu-inject/guice-plexus/guice-plexus-shim/src/main/java/org/codehaus/plexus/ContainerConfiguration.java
index <HASH>..<HASH> 100644
--- a/sisu-inject/guice-plexus/guice-plexus-shim/src/main/java/org/... | SPICE-<I>: support custom boot modules, so discovered components can be overridden at startup | sonatype_sisu | train |
919381f0d50297fb08e848f707ac66ba2d52b63b | diff --git a/js/therock.js b/js/therock.js
index <HASH>..<HASH> 100644
--- a/js/therock.js
+++ b/js/therock.js
@@ -31,6 +31,7 @@ module.exports = class therock extends Exchange {
'api': {
'public': {
'get': [
+ 'funds',
'... | proper therock markets fix #<I> | ccxt_ccxt | train |
a2c5ad5645384d55358a61b0e1fddf89d550724b | diff --git a/lib/Proem/Service/AssetManager.php b/lib/Proem/Service/AssetManager.php
index <HASH>..<HASH> 100644
--- a/lib/Proem/Service/AssetManager.php
+++ b/lib/Proem/Service/AssetManager.php
@@ -172,7 +172,7 @@ class AssetManager implements AssetManagerInterface
*
* @param string $object The complete ob... | Cleaned AssetResolver's resolve() interface making it simpler to use. | proem_proem | train |
3bec9d8e7bc8529d6abf2a3b9c09cfa1b16215f5 | diff --git a/ngDraggable.js b/ngDraggable.js
index <HASH>..<HASH> 100644
--- a/ngDraggable.js
+++ b/ngDraggable.js
@@ -43,9 +43,11 @@ angular.module("ngDraggable", [])
var _releaseEvents = 'touchend mouseup';
// to identify the element in order to prevent getting superflous e... | Fixed issue #<I>: Problems with matrix3d transform on parent elements | fatlinesofcode_ngDraggable | train |
a1f1fd8651394afcfd765534f00a561c388fb31c | diff --git a/autoapi/mappers/python.py b/autoapi/mappers/python.py
index <HASH>..<HASH> 100644
--- a/autoapi/mappers/python.py
+++ b/autoapi/mappers/python.py
@@ -93,7 +93,9 @@ class PythonSphinxMapper(SphinxMapperBase):
# Find import chains and resolve the placeholders together
visited = {id(... | Fixed properly resolving definitions imported more than once | rtfd_sphinx-autoapi | train |
75d8924016dcb0d25cb9e473b2a6ffb38fdbec91 | diff --git a/structr-core/src/main/java/org/structr/schema/action/ActionContext.java b/structr-core/src/main/java/org/structr/schema/action/ActionContext.java
index <HASH>..<HASH> 100644
--- a/structr-core/src/main/java/org/structr/schema/action/ActionContext.java
+++ b/structr-core/src/main/java/org/structr/schema/act... | Enhancement: Adds configuration parameter to override the 'baseUrl' which is useful to prefix links to local web resources. | structr_structr | train |
e8cae33d70a935017c9b50feabe4182178bf58da | diff --git a/src/I18n/DateFormatTrait.php b/src/I18n/DateFormatTrait.php
index <HASH>..<HASH> 100644
--- a/src/I18n/DateFormatTrait.php
+++ b/src/I18n/DateFormatTrait.php
@@ -193,9 +193,9 @@ trait DateFormatTrait
$time = $this;
// This is required for testI18nFormatWithOffsetTimezone to pass
- ... | improved test, removed condition to let tests pass, need help on non-utc offset <-> timezone conversion | cakephp_cakephp | train |
cb119a92d8271d90fab12c3a67ab913c02f38407 | diff --git a/js/feature/featureParsers.js b/js/feature/featureParsers.js
index <HASH>..<HASH> 100644
--- a/js/feature/featureParsers.js
+++ b/js/feature/featureParsers.js
@@ -338,7 +338,7 @@ function parseFixedStep(line) {
var tokens = line.split(/\s+/),
cc = tokens[1].split("=")[1],
- ss = parse... | Off-by-1 wig track bug for fixed and variable step. Fixes #<I> | igvteam_igv.js | train |
2f97ce70456ce44f33572a5d78956311af2a2e7d | diff --git a/webpack-config.js b/webpack-config.js
index <HASH>..<HASH> 100755
--- a/webpack-config.js
+++ b/webpack-config.js
@@ -17,7 +17,7 @@ var config = {
'./src/app'
],
output: {
- path: path.join(__dirname, 'dist'),
+ path: path.resolve('./dist'),
filename: 'app.js',
publicPath: '/stat... | fix loaders path issue in webpack config | nicolas-briemant_web-component-env | train |
54a92bc114e9c778fc772494fbe36238b7b8258c | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -1,4 +1,5 @@
var Config = require('./lib/config'),
+ _ = require('underscore'),
rc = require('rc');
-module.exports = Config(rc, 'heinzel');
+module.exports = Config(rc, _).load('heinzel');
diff --git a/lib/config.j... | refactored constructor0 | heinzelmannchen_heinzelmannchen-config | train |
c83b384521c73ce1621f0413a6a3e82b75dcc86a | diff --git a/lib/xbox-api/version.rb b/lib/xbox-api/version.rb
index <HASH>..<HASH> 100644
--- a/lib/xbox-api/version.rb
+++ b/lib/xbox-api/version.rb
@@ -1,5 +1,5 @@
module XboxApi
module Wrapper
- VERSION = "0.1.5"
+ VERSION = "0.1.7"
end
end | <I> - replace fakeweb and multi-json with webmock and yajl | audibleblink_xbox-api | train |
3aed7fe3e6a1f2fb50eb7103cbcccce4cb6b42ac | diff --git a/lib/capybara/selenium/node.rb b/lib/capybara/selenium/node.rb
index <HASH>..<HASH> 100644
--- a/lib/capybara/selenium/node.rb
+++ b/lib/capybara/selenium/node.rb
@@ -92,7 +92,7 @@ class Capybara::Selenium::Node < Capybara::Driver::Node
scroll_to_center
end
- if e.is_a?(::Selenium::WebDrive... | Workaround should only be for marionette | teamcapybara_capybara | train |
2c5d305c446d37dbb789c42ec0f902512d2ee8de | diff --git a/src/Cortex/Node.php b/src/Cortex/Node.php
index <HASH>..<HASH> 100644
--- a/src/Cortex/Node.php
+++ b/src/Cortex/Node.php
@@ -222,7 +222,7 @@ class Node
# - The "begin" label must have only one argument ("begin")
# - "topic" labels must be lowercase but can inherit other topic... | Updated the phpcode to phpstan's standard. | axiom-labs_rivescript-php | train |
95295f7aa8e3fbcf90923d9ab7982d4437dbc556 | diff --git a/codenerix/forms.py b/codenerix/forms.py
index <HASH>..<HASH> 100644
--- a/codenerix/forms.py
+++ b/codenerix/forms.py
@@ -22,7 +22,8 @@ from djng.forms.angular_model import NgModelFormMixin
from djng.forms import NgFormValidationMixin, NgForm, NgModelForm
from django.utils.translation import ugettext a... | Compatibility with NullBooleanField | codenerix_django-codenerix | train |
0075d2aefc247ffbe31bfe50abe4896abaf82931 | diff --git a/src/Yggdrasil/Core/Controller/ApiController.php b/src/Yggdrasil/Core/Controller/ApiController.php
index <HASH>..<HASH> 100644
--- a/src/Yggdrasil/Core/Controller/ApiController.php
+++ b/src/Yggdrasil/Core/Controller/ApiController.php
@@ -64,8 +64,8 @@ abstract class ApiController
}
}
... | Fix fromBody ApiController method | Assasz_yggdrasil | train |
ccd9cbeb6c1f72a898778d6fba588c881b6fa557 | diff --git a/pages/app/models/refinery/page.rb b/pages/app/models/refinery/page.rb
index <HASH>..<HASH> 100644
--- a/pages/app/models/refinery/page.rb
+++ b/pages/app/models/refinery/page.rb
@@ -124,7 +124,7 @@ module Refinery
# Wrap up the logic of finding the pages based on the translations table.
def... | Convert locale from symbol to string before using in condition | refinery_refinerycms | train |
126f877fb7c3f54ac13e9df224d6ec6bc73462c1 | diff --git a/gremlin/gremlin-server/src/main/java/com/tinkerpop/gremlin/server/GremlinServerHandler.java b/gremlin/gremlin-server/src/main/java/com/tinkerpop/gremlin/server/GremlinServerHandler.java
index <HASH>..<HASH> 100644
--- a/gremlin/gremlin-server/src/main/java/com/tinkerpop/gremlin/server/GremlinServerHandler.... | OpProcessorException not thrown from message handler anymore. | apache_tinkerpop | train |
6725ae6f640215aa097b63e0f83b9005d186c023 | diff --git a/http/macro_service.go b/http/macro_service.go
index <HASH>..<HASH> 100644
--- a/http/macro_service.go
+++ b/http/macro_service.go
@@ -92,8 +92,7 @@ func requestMacroID(ctx context.Context) (platform.ID, error) {
params := httprouter.ParamsFromContext(ctx)
urlID := params.ByName("id")
if urlID == "" {... | feat(platform/id): method to create an invalid id | influxdata_influxdb | train |
5947fddf1cac7fc69d4ce76fdd8bfa874c784e29 | diff --git a/src/test/java/io/vlingo/http/resource/TestResponseConsumer.java b/src/test/java/io/vlingo/http/resource/TestResponseConsumer.java
index <HASH>..<HASH> 100644
--- a/src/test/java/io/vlingo/http/resource/TestResponseConsumer.java
+++ b/src/test/java/io/vlingo/http/resource/TestResponseConsumer.java
@@ -49,7 ... | Use incrementAndGet() rather than set(). | vlingo_vlingo-http | train |
91f728967d81b1f3ee2046527110e1c90d652fd6 | diff --git a/lib/fuel_surcharge/chronopost.rb b/lib/fuel_surcharge/chronopost.rb
index <HASH>..<HASH> 100644
--- a/lib/fuel_surcharge/chronopost.rb
+++ b/lib/fuel_surcharge/chronopost.rb
@@ -22,15 +22,15 @@ module FuelSurcharge
def air_percentage
@air_percentage ||= begin
- content = HTMLScanner.n... | Fix indentation and add explaination about map(&:to_s) | levups_fuel_surcharge | train |
4092259d2b8f77668f7abc1b3313671ec998b6f6 | diff --git a/test/integration/async_request_test.js b/test/integration/async_request_test.js
index <HASH>..<HASH> 100644
--- a/test/integration/async_request_test.js
+++ b/test/integration/async_request_test.js
@@ -7,6 +7,7 @@ var ServiceRegistrationInfo = require('../../lib/service_registration_info')
var util = requ... | Use asyncRequest and shutdown test helpers in a couple of tests | opendxl_opendxl-client-javascript | train |
877da933607ebc5a66a9c087c793db778f3a00a9 | diff --git a/src/toil/batchSystems/torque.py b/src/toil/batchSystems/torque.py
index <HASH>..<HASH> 100644
--- a/src/toil/batchSystems/torque.py
+++ b/src/toil/batchSystems/torque.py
@@ -45,17 +45,25 @@ class TorqueBatchSystem(AbstractGridEngineBatchSystem):
"""
def getRunningJobIDs(self):
... | More debugging output, thanks @cket | DataBiosphere_toil | train |
5965a44fc8e27a409cf7ad7dc1779c40a3719403 | diff --git a/bundles/BlockManagerBundle/Controller/API/V1/BlockController.php b/bundles/BlockManagerBundle/Controller/API/V1/BlockController.php
index <HASH>..<HASH> 100644
--- a/bundles/BlockManagerBundle/Controller/API/V1/BlockController.php
+++ b/bundles/BlockManagerBundle/Controller/API/V1/BlockController.php
@@ -1... | Take position into account when copying block | netgen-layouts_layouts-core | train |
b807079f067b24bb2dae64944f7954dec409b101 | diff --git a/controller-client/src/main/java/org/jboss/as/controller/client/NewOperationBuilder.java b/controller-client/src/main/java/org/jboss/as/controller/client/NewOperationBuilder.java
index <HASH>..<HASH> 100644
--- a/controller-client/src/main/java/org/jboss/as/controller/client/NewOperationBuilder.java
+++ b/c... | Git rid of uses of OperationBuilder.Factory | wildfly_wildfly | train |
d3bfa6d24dec7c4aef86ced29951c1f070caab3b | diff --git a/Neos.ContentRepository/Tests/Unit/Domain/Projection/Content/TraversableNodesTest.php b/Neos.ContentRepository/Tests/Unit/Domain/Projection/Content/TraversableNodesTest.php
index <HASH>..<HASH> 100644
--- a/Neos.ContentRepository/Tests/Unit/Domain/Projection/Content/TraversableNodesTest.php
+++ b/Neos.Conte... | BUGFIX: try test cases run through without errors | neos_neos-development-collection | train |
7d0785b72592d04a88440979d5df7acfacd30254 | diff --git a/test/specs/util/ReactUtilsSpec.js b/test/specs/util/ReactUtilsSpec.js
index <HASH>..<HASH> 100644
--- a/test/specs/util/ReactUtilsSpec.js
+++ b/test/specs/util/ReactUtilsSpec.js
@@ -1,6 +1,6 @@
import React from 'react';
import { expect } from 'chai';
-import { LineChart, Line, Bar } from 'recharts';
+im... | Added test for a case where isSingleChildEqual. When the lines are drawn from parent state then this state changes an exception is thrown
<URL> | recharts_recharts | train |
bbfcf805c57d375e4d5084031f01233131d9af2d | diff --git a/visidata/sheets.py b/visidata/sheets.py
index <HASH>..<HASH> 100644
--- a/visidata/sheets.py
+++ b/visidata/sheets.py
@@ -1024,11 +1024,19 @@ def push(vd, vs, pane=0):
if not isinstance(vs, BaseSheet):
return # return instead of raise, some commands need this
- vs.vd = vd
- vs.pane =... | [splitwin] push sheet in empty pane iff splitwin | saulpw_visidata | train |
2debde7d99941ffff28125f17790d00c0e9d7b10 | diff --git a/awssig/sigv4.py b/awssig/sigv4.py
index <HASH>..<HASH> 100644
--- a/awssig/sigv4.py
+++ b/awssig/sigv4.py
@@ -564,7 +564,7 @@ class AWSSigV4S3Verifier(AWSSigV4Verifier):
The canonicalized URI path from the request.
This is similar to the SigV4 canonicalized URI path, but with multiple
-... | slashes and dots preserved (docs) | dacut_python-aws-sig | train |
b824e73ac4fde85f94aa213cf1ab37183c471933 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -65,13 +65,13 @@ $guid9 = GUID::createFromBase64('T/l0arruT6OXO7O3QOOBKg==');
$guid = GUID::createFromHex('{0C875FFC-61AB-4A75-A4AF-5F89ADCE0D63}');
-$guid->asHex(); // '0C875FFC61AB4A75A4AF5F89ADCE0D6... | Change HYPENATED to HYPHENATED | QuickenLoans_mcp-common | train |
4c16e191e16941cf241a6f746fd27cbe6575bf5b | diff --git a/question/engine/questionusage.php b/question/engine/questionusage.php
index <HASH>..<HASH> 100644
--- a/question/engine/questionusage.php
+++ b/question/engine/questionusage.php
@@ -63,7 +63,7 @@ class question_usage_by_activity {
*/
protected $preferredbehaviour = null;
- /** @var object t... | MDL-<I> question preview: improve preview ownership check.
Users should only be able to access their own quetion preview. In the
past, for reasons I can no longer remember, this was enforced
using the session. It is much better to set the question_usage to belong
to the user's context. | moodle_moodle | train |
84ab38a2d638423898613511bd0c468f8b150bb0 | diff --git a/plugin/geomajas-plugin-rasterizing/rasterizing/src/main/java/org/geomajas/plugin/rasterizing/layer/RasterDirectLayer.java b/plugin/geomajas-plugin-rasterizing/rasterizing/src/main/java/org/geomajas/plugin/rasterizing/layer/RasterDirectLayer.java
index <HASH>..<HASH> 100644
--- a/plugin/geomajas-plugin-rast... | RAST-<I>: hudson failed, writing set to true to compare | geomajas_geomajas-project-server | train |
ca20061a4318d4b37913bfe59a7de23ad6a677ea | diff --git a/core/src/main/java/io/atomix/core/Atomix.java b/core/src/main/java/io/atomix/core/Atomix.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/atomix/core/Atomix.java
+++ b/core/src/main/java/io/atomix/core/Atomix.java
@@ -21,8 +21,12 @@ import io.atomix.cluster.ClusterMembershipService;
import io.... | Reorganize package structure for all core primitives. | atomix_atomix | train |
64451eaaeee66cbd4a2cda49f44a845cb4f1d558 | diff --git a/src/field/index.js b/src/field/index.js
index <HASH>..<HASH> 100644
--- a/src/field/index.js
+++ b/src/field/index.js
@@ -15,6 +15,7 @@ export default createComponent({
props: {
...cellProps,
error: Boolean,
+ disabled: Boolean,
readonly: Boolean,
autosize: [Boolean, Object],
... | chore(Field): move disabled from attrs to props (#<I>) | youzan_vant | train |
be18a9e500d161c5663e6d713e1a491aa66846f4 | diff --git a/lib/Github/HttpClient/Builder.php b/lib/Github/HttpClient/Builder.php
index <HASH>..<HASH> 100644
--- a/lib/Github/HttpClient/Builder.php
+++ b/lib/Github/HttpClient/Builder.php
@@ -168,6 +168,9 @@ class Builder
} else {
$this->headers[$header] = array_merge((array)$this->headers[$hea... | Bugfix: headers not being passed to request (#<I>)
* Add IDE files to gitignore
* Add failing UT to show bug
* Fix bug: reset plugin when headers change
* Remove IDEs from gitignore | KnpLabs_php-github-api | train |
d4d2267014f485b48c01a334bf99f139f15fec79 | diff --git a/simpleclient/src/main/java/io/prometheus/client/Counter.java b/simpleclient/src/main/java/io/prometheus/client/Counter.java
index <HASH>..<HASH> 100644
--- a/simpleclient/src/main/java/io/prometheus/client/Counter.java
+++ b/simpleclient/src/main/java/io/prometheus/client/Counter.java
@@ -78,6 +78,16 @@ pu... | Add `build()` method that has required fields. (#<I>) | prometheus_client_java | train |
9f79ff1d2ac5d2197ebfc43ff553af6c9b30fbec | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Invert default parameter value for some methods in BankBillet view
- Use bank name in PascalCase to select the... | Use model id to select logo file | aryelgois_bank-interchange | train |
dc813446741ba30772f4b5440152da5cdfed67a7 | diff --git a/sastool/classes2/curve.py b/sastool/classes2/curve.py
index <HASH>..<HASH> 100644
--- a/sastool/classes2/curve.py
+++ b/sastool/classes2/curve.py
@@ -75,7 +75,7 @@ class Curve(ArithmeticBase):
dictionary and the fitted curve instance of the same type as
this)
"""
- ... | Fixed a bug in classes2.Curve where qError and Error were swapped in fit() | awacha_sastool | train |
0580f5a6ac78340ececb43981c6731817c1031aa | diff --git a/activerecord/lib/active_record/attribute_methods/before_type_cast.rb b/activerecord/lib/active_record/attribute_methods/before_type_cast.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/attribute_methods/before_type_cast.rb
+++ b/activerecord/lib/active_record/attribute_methods/before_ty... | No need to use inject here, use map instead. | rails_rails | train |
4d7e4828aeeb176892ea8909151e0e994d46240e | diff --git a/commerce-openapi-admin/src/main/java/com/liferay/commerce/openapi/admin/internal/resource/PriceListResourceImpl.java b/commerce-openapi-admin/src/main/java/com/liferay/commerce/openapi/admin/internal/resource/PriceListResourceImpl.java
index <HASH>..<HASH> 100644
--- a/commerce-openapi-admin/src/main/java/... | COMMERCE-<I> commerce-openapi-admin - PortalException doesn’t need to be rethrown by RuntimeException anymore | liferay_com-liferay-commerce | train |
5cafc563d1f47ef3fa27922f3e1e234e3d5ab9e5 | diff --git a/src/classdiff.py b/src/classdiff.py
index <HASH>..<HASH> 100644
--- a/src/classdiff.py
+++ b/src/classdiff.py
@@ -293,29 +293,40 @@ class CodeConstantsChange(GenericChange):
label = "Code constants"
+ def __init__(self, l, r):
+ GenericChange.__init__(self, l, r)
+ self.offsets = ... | dist manifest wasn't calling manifest checks. switched to using izip
over zip in classdiff. reduced the "pretty" output for
codeconstantschange to just the offsets that have differing const values | obriencj_python-javatools | train |
69df78e07d9a5b3a95c413eebc82225096a3a517 | diff --git a/pvlib/irradiance.py b/pvlib/irradiance.py
index <HASH>..<HASH> 100644
--- a/pvlib/irradiance.py
+++ b/pvlib/irradiance.py
@@ -4,12 +4,26 @@ global horizontal irradiance, direct normal irradiance,
diffuse horizontal irradiance, and total irradiance
under various conditions.
+Extraterrestrial radiation c... | move ipython directive out of numpydoc | pvlib_pvlib-python | train |
9b9acd34e91856a84496fb081bec5f75ab82eb4f | diff --git a/lib/right_api_client.rb b/lib/right_api_client.rb
index <HASH>..<HASH> 100644
--- a/lib/right_api_client.rb
+++ b/lib/right_api_client.rb
@@ -10,9 +10,10 @@ class RightApiClient
VERSION = '0.9.0'
ROOT_RESOURCE = '/api/session'
+ ROOT_INSTANCE_RESOURCE = '/api/session/instance'
# permitted par... | Added instance facing calls to the client | rightscale_right_api_client | train |
cd6e5ccfb89d4e5dcab75109291072993909bff8 | diff --git a/ReactNativeClient/root.js b/ReactNativeClient/root.js
index <HASH>..<HASH> 100644
--- a/ReactNativeClient/root.js
+++ b/ReactNativeClient/root.js
@@ -756,7 +756,7 @@ class AppComponent extends React.Component {
<AppNav screens={appNavInit} />
</View>
<DropdownAlert ref={ref => this.dr... | RN upgrade: Fix sidebar dark overlay | laurent22_joplin | train |
babf50b9553f8fc814401239b6d2d5a932f7f34a | diff --git a/bokeh/resources.py b/bokeh/resources.py
index <HASH>..<HASH> 100644
--- a/bokeh/resources.py
+++ b/bokeh/resources.py
@@ -290,7 +290,8 @@ class BaseResources(object):
def _inline(self, path):
begin = "/* BEGIN %s */" % path
- middle = open(path, 'rb').read().decode("utf-8")
+ ... | Fix unclosed file in resources _inline()
Raises ResourceWarning in python <I>. | bokeh_bokeh | train |
bf99235b1fa8abc6dca0905e5b2dec976365fe6b | diff --git a/app/scripts/controllers/demo.js b/app/scripts/controllers/demo.js
index <HASH>..<HASH> 100644
--- a/app/scripts/controllers/demo.js
+++ b/app/scripts/controllers/demo.js
@@ -13,9 +13,6 @@ angular.module('integrationApp')
'#B58963',
'#9E9B8C'
];
- $scope.test = "mrow"
-
- $scope.$wa... | fix issue with only the last of an element type in an ng-repeat getting updated (compile function fires only once per group for an ng-repeat) | Famous_famous-angular | train |
a4d84eae255779f31caa875de700ebef9b0f060f | diff --git a/doc/generator/collectNodes.js b/doc/generator/collectNodes.js
index <HASH>..<HASH> 100644
--- a/doc/generator/collectNodes.js
+++ b/doc/generator/collectNodes.js
@@ -105,7 +105,8 @@ function _loadDoc(mdFile) {
var _builtins = {
'Object': true, 'Array': true, 'String': true,
'Number': true, 'Boolean'... | Prevent rendering of Array types as 'Array.<...>' | substance_substance | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.