hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
b06c6e19c01d13c4cef3b97a7f299e1eaa41a36e | diff --git a/dci/common/schemas.py b/dci/common/schemas.py
index <HASH>..<HASH> 100644
--- a/dci/common/schemas.py
+++ b/dci/common/schemas.py
@@ -242,10 +242,11 @@ user = utils.dict_merge(base, {
v.Optional('password'): six.text_type,
'fullname': six.text_type,
'email': v.Any(Email, msg=INVALID_EMAIL),
... | User: Do not fail with <I> on missing team_id
Currently, when running a user creation request and team_id is missing,
it crashes with a <I>. This commit ensures it fails cleanly.
Change-Id: I<I>c<I>bb<I>e8b<I>d<I>c<I>b<I>c8ea
Fixes: <URL> | redhat-cip_dci-control-server | train |
0cbccf2702294fd7aa0adda9eba6d14d70a555f9 | diff --git a/go/test/endtoend/vtgate/schematracker/loadkeyspace/schema_load_keyspace_test.go b/go/test/endtoend/vtgate/schematracker/loadkeyspace/schema_load_keyspace_test.go
index <HASH>..<HASH> 100644
--- a/go/test/endtoend/vtgate/schematracker/loadkeyspace/schema_load_keyspace_test.go
+++ b/go/test/endtoend/vtgate/s... | Improved schema tracker E2E tests | vitessio_vitess | train |
c81611197087851a7867bc84ea96ca3e827549e1 | diff --git a/astrobase/hatpilc.py b/astrobase/hatpilc.py
index <HASH>..<HASH> 100644
--- a/astrobase/hatpilc.py
+++ b/astrobase/hatpilc.py
@@ -17,6 +17,11 @@ import os.path
import gzip
import re
+try:
+ import cPickle as pickle
+except:
+ import pickle
+
import numpy as np
@@ -160,3 +165,64 @@ def read_h... | hatpilc: added concatenation and pickle writing | waqasbhatti_astrobase | train |
7566911d74ca3674c35231809d6f68f5dfc2ee16 | diff --git a/src/CfdiUtils/CadenaOrigen.php b/src/CfdiUtils/CadenaOrigen.php
index <HASH>..<HASH> 100644
--- a/src/CfdiUtils/CadenaOrigen.php
+++ b/src/CfdiUtils/CadenaOrigen.php
@@ -65,12 +65,10 @@ class CadenaOrigen
}
$xslt = new XSLTProcessor();
- if (! $xslt->importStyleSheet(... | Fix case of XSLTProcessor methods | eclipxe13_CfdiUtils | train |
545a8aab80cc247e8a5a1364d2df2bf7eec1b96a | diff --git a/java/server/src/org/openqa/selenium/grid/commands/InfoCommand.java b/java/server/src/org/openqa/selenium/grid/commands/InfoCommand.java
index <HASH>..<HASH> 100644
--- a/java/server/src/org/openqa/selenium/grid/commands/InfoCommand.java
+++ b/java/server/src/org/openqa/selenium/grid/commands/InfoCommand.ja... | Make output of info command more readable | SeleniumHQ_selenium | train |
b74dea7bfd297c0d38ea12e7c52a8ae59f43c980 | diff --git a/src/phpDocumentor/Application.php b/src/phpDocumentor/Application.php
index <HASH>..<HASH> 100644
--- a/src/phpDocumentor/Application.php
+++ b/src/phpDocumentor/Application.php
@@ -63,17 +63,7 @@ final class Application
public function cacheFolder() : string
{
- if ($this->cacheFolder =... | Revert cache folder change
The cache folder is checked in the constructor and far before we can
actually determine one. As such we cannot pass our own, and perhaps need
to find another way to do caching. | phpDocumentor_phpDocumentor2 | train |
f5779169aeefdf19cce9a2a861134b8951537980 | diff --git a/lib/lino/command_line_builder.rb b/lib/lino/command_line_builder.rb
index <HASH>..<HASH> 100644
--- a/lib/lino/command_line_builder.rb
+++ b/lib/lino/command_line_builder.rb
@@ -22,57 +22,32 @@ module Lino
@option_separator = option_separator
end
- def with_option switch, value
- Comm... | Dry up command line builder implementation. | tobyclemson_lino | train |
59fd33ce94d1207e1d5bc5a9aae5885e68a10f5f | diff --git a/pyls/python_ls.py b/pyls/python_ls.py
index <HASH>..<HASH> 100644
--- a/pyls/python_ls.py
+++ b/pyls/python_ls.py
@@ -1,8 +1,9 @@
# Copyright 2017 Palantir Technologies, Inc.
+from functools import partial
import logging
+import os
import socketserver
import threading
-from functools import partial
... | Pass on ConnectionResetError in _StreamHandlerWrapper (#<I>) | palantir_python-language-server | train |
7a875e451b96a013c538ba40b34b1c50884a1296 | diff --git a/lib/nimbus.rb b/lib/nimbus.rb
index <HASH>..<HASH> 100644
--- a/lib/nimbus.rb
+++ b/lib/nimbus.rb
@@ -20,6 +20,7 @@ module Nimbus
STDERR = $stderr
STDOUT = $stdout
+ STDOUT.sync = true
# Nimbus module singleton methods.
#
@@ -43,19 +44,16 @@ module Nimbus
# Writes message to the stand... | sync STDOUT for auto-flush | xuanxu_nimbus | train |
4f39d4fb3a18d37519d9aca2b5abf4fdbc00128b | diff --git a/backup/backuplib.php b/backup/backuplib.php
index <HASH>..<HASH> 100644
--- a/backup/backuplib.php
+++ b/backup/backuplib.php
@@ -104,17 +104,13 @@
global $CFG;
- //Execute the insert
- $status = execute_sql($sql_insert,false);
+ //Now execute the count
+ $ids = cou... | Changed the log_check_backup function to execute a count_records
instead of selecting everyting (crash when there is a lot of log entries). | moodle_moodle | train |
61217aa1b9cb815ded469e19b4174d7d23727598 | diff --git a/zipline/pipeline/classifiers/classifier.py b/zipline/pipeline/classifiers/classifier.py
index <HASH>..<HASH> 100644
--- a/zipline/pipeline/classifiers/classifier.py
+++ b/zipline/pipeline/classifiers/classifier.py
@@ -22,18 +22,15 @@ from zipline.pipeline.sentinels import NotSpecified
from zipline.pipelin... | MAINT: Remove unused imports. | quantopian_zipline | train |
f4e03e3936a2e28bc76be85d1385d8e5920b8406 | diff --git a/scripts/dccsend.py b/scripts/dccsend.py
index <HASH>..<HASH> 100644
--- a/scripts/dccsend.py
+++ b/scripts/dccsend.py
@@ -56,7 +56,7 @@ class DCCSend(irc.client.SimpleIRCClient):
def send_chunk(self):
data = self.file.read(1024)
- self.dcc.send_data(data)
+ self.dcc.send_bytes... | Should have been 'send_bytes' | jaraco_irc | train |
ee3e9896716738f448a496ad1d7ebe4ff9276891 | diff --git a/Controller/ActivityController.php b/Controller/ActivityController.php
index <HASH>..<HASH> 100644
--- a/Controller/ActivityController.php
+++ b/Controller/ActivityController.php
@@ -86,6 +86,7 @@ class ActivityController
'id' => $resource->getId(),
'name' =... | [CoreBundle] activity update | claroline_Distribution | train |
3464fedfc9bbb34e4752d18b0a3c550789fcd49a | diff --git a/test/katello_test_helper.rb b/test/katello_test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/katello_test_helper.rb
+++ b/test/katello_test_helper.rb
@@ -91,6 +91,7 @@ class ActionController::TestCase
set_default_locale
setup_engine_routes if load_engine_routes
@controller.stubs(:require... | refs #<I> - manually loading permissions to fix tests
lots of controller tests where failing saying that they could not find a
particular permission. now that we're manually loading the permissions,
these messages no longer occur. | Katello_katello | train |
3886f387eb942c601cfd1dc50baf20465cfb54ca | diff --git a/src/rez/build_process.py b/src/rez/build_process.py
index <HASH>..<HASH> 100644
--- a/src/rez/build_process.py
+++ b/src/rez/build_process.py
@@ -56,7 +56,7 @@ class BuildProcess(object):
hook_names = self.package.settings.release_hooks or []
self.hooks = create_release_hooks(hook_names, ... | + Add option to build only selected variants. | nerdvegas_rez | train |
64b80b5d45dd6f6f1bc4b11636d5713b868741fc | diff --git a/lib/classes/media/subdef.class.php b/lib/classes/media/subdef.class.php
index <HASH>..<HASH> 100644
--- a/lib/classes/media/subdef.class.php
+++ b/lib/classes/media/subdef.class.php
@@ -506,33 +506,53 @@ class media_subdef extends media_abstract implements cache_cacheableInterface
$databox = $record->... | Fix token renewal on subdefinitions re-creation | alchemy-fr_Phraseanet | train |
18e58ef5e46f5e9b67323db126832b03861286f4 | diff --git a/classes/Pods.php b/classes/Pods.php
index <HASH>..<HASH> 100644
--- a/classes/Pods.php
+++ b/classes/Pods.php
@@ -42,7 +42,7 @@ class Pods {
public $ui;
/**
- * Constructor - Pods CMS core
+ * Constructor - Pods Framework core
*
* @param string $pod The pod name
* @par... | Formatting and detail_url support added back into field() | pods-framework_pods | train |
b35da8ad4b2353b16345ed08c328e1683f4b4c6f | diff --git a/dependency-check-cli/src/main/java/org/owasp/dependencycheck/App.java b/dependency-check-cli/src/main/java/org/owasp/dependencycheck/App.java
index <HASH>..<HASH> 100644
--- a/dependency-check-cli/src/main/java/org/owasp/dependencycheck/App.java
+++ b/dependency-check-cli/src/main/java/org/owasp/dependency... | exposing the hints file to the CLI with new option "--hints" | jeremylong_DependencyCheck | train |
cbfc7bd63d44978c8c6dfd5ade34994c12df506b | diff --git a/quickcache/tests/test_quickcache.py b/quickcache/tests/test_quickcache.py
index <HASH>..<HASH> 100644
--- a/quickcache/tests/test_quickcache.py
+++ b/quickcache/tests/test_quickcache.py
@@ -13,6 +13,7 @@ class CacheMock(LocMemCache):
def __init__(self, name, params):
self.name = name
... | Harden soft asserts while unit testing | dimagi_quickcache | train |
2b45926a8e2efcd4f114c142e409540e373b1842 | diff --git a/tests/Sabre/DAV/Auth/Backend/AbstractBasicTest.php b/tests/Sabre/DAV/Auth/Backend/AbstractBasicTest.php
index <HASH>..<HASH> 100644
--- a/tests/Sabre/DAV/Auth/Backend/AbstractBasicTest.php
+++ b/tests/Sabre/DAV/Auth/Backend/AbstractBasicTest.php
@@ -65,7 +65,7 @@ class AbstractBasicTest extends \PHPUnit_Fr... | Fixed unittest for recent sabre/http updates. | sabre-io_dav | train |
47a97c3a3d92365d4e46cd71148a40abae718edd | diff --git a/phonopy/version.py b/phonopy/version.py
index <HASH>..<HASH> 100644
--- a/phonopy/version.py
+++ b/phonopy/version.py
@@ -32,4 +32,4 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
-__version__ = "1.11.12"
+__version__ = "1.11.14" | Increment version number to <I> | atztogo_phonopy | train |
9dbcd132c37ddebc949f330e8163e4606aec81ad | diff --git a/bin/buildpack-packager b/bin/buildpack-packager
index <HASH>..<HASH> 100755
--- a/bin/buildpack-packager
+++ b/bin/buildpack-packager
@@ -56,7 +56,13 @@ end
validator = Buildpack::ManifestValidator.new(manifest_path)
unless validator.valid?
- STDERR.puts validator.errors
+ errors = validator.errors
+... | Clean up buildpack-packager error output
[#<I>] | cloudfoundry_buildpack-packager | train |
f7a59ec1683d55f1efd2fc9046e0e3fd3af7310f | diff --git a/app/controllers/railswiki/pages_controller.rb b/app/controllers/railswiki/pages_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/railswiki/pages_controller.rb
+++ b/app/controllers/railswiki/pages_controller.rb
@@ -29,8 +29,6 @@ module Railswiki
# GET /pages/1
def show
- req... | Do not require special permissions for showing a Special page
Otherwise a new install will always crash, because we're trying to
render the default Welcome page, which is marked as a special page. | soundasleep_railswiki | train |
95dc89e5fcb01c43169cf31de3830ab1cfce1c19 | diff --git a/tests/utils.py b/tests/utils.py
index <HASH>..<HASH> 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -48,9 +48,9 @@ def run_test(test_name, mock_stdout=False, mock_stderr=False):
"""
test_path = path.join(cwd, test_name)
try:
+ sys.path.append(path.abspath(test_path))
os.... | run_test: use absolute path in sys.path for the test | Nic30_sphinx-hwt | train |
d4ab522f611b5d8a67b559ec50b2bddb04980195 | diff --git a/mitm6/mitm6.py b/mitm6/mitm6.py
index <HASH>..<HASH> 100644
--- a/mitm6/mitm6.py
+++ b/mitm6/mitm6.py
@@ -72,6 +72,11 @@ class Config(object):
self.selfptr = ipaddress.ip_address(str(self.selfaddr)).reverse_pointer + '.'
self.ipv6noaddr = random.randint(1,9999)
self.ipv6noaddrc =... | Add SOA and dynamic updates support for Kerberos relaying | fox-it_mitm6 | train |
607563eb35f6d662f0eb45fad079c95fcc5cec45 | diff --git a/jbehave-core/src/main/java/org/jbehave/core/failures/IgnoringStepsFailure.java b/jbehave-core/src/main/java/org/jbehave/core/failures/IgnoringStepsFailure.java
index <HASH>..<HASH> 100644
--- a/jbehave-core/src/main/java/org/jbehave/core/failures/IgnoringStepsFailure.java
+++ b/jbehave-core/src/main/java/o... | JBEHAVE-<I>: Updated javadoc. | jbehave_jbehave-core | train |
295e5086262c51cdb0b0bbff28033e02becdca7c | diff --git a/lib/bolt/version.rb b/lib/bolt/version.rb
index <HASH>..<HASH> 100644
--- a/lib/bolt/version.rb
+++ b/lib/bolt/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Bolt
- VERSION = '2.22.0'
+ VERSION = '2.23.0'
end | (GEM) update bolt version to <I> | puppetlabs_bolt | train |
ccad7fd521fdb189505424b9e85e6c5038fc01bc | diff --git a/stripe/src/main/java/com/stripe/android/view/PaymentAuthWebView.java b/stripe/src/main/java/com/stripe/android/view/PaymentAuthWebView.java
index <HASH>..<HASH> 100644
--- a/stripe/src/main/java/com/stripe/android/view/PaymentAuthWebView.java
+++ b/stripe/src/main/java/com/stripe/android/view/PaymentAuthWe... | Set PaymentAuthWebViewActivity result in one place (#<I>)
We always want to return a result, so set it in onCreate().
Result code is not used downstream so we can always use "OK" | stripe_stripe-android | train |
1e7e7ff883e9a27dab2cab60bc7fec4589f821c0 | diff --git a/src/CmsBundle/DependencyInjection/Configuration.php b/src/CmsBundle/DependencyInjection/Configuration.php
index <HASH>..<HASH> 100644
--- a/src/CmsBundle/DependencyInjection/Configuration.php
+++ b/src/CmsBundle/DependencyInjection/Configuration.php
@@ -63,6 +63,11 @@ class Configuration implements Configu... | Provide roles Admin and Super Admin by default with content edit access | Opifer_Cms | train |
20aed7389dab1d88a3e2909ecb41021a4ed8b816 | diff --git a/packages/ringcentral-widgets-demo/dev-server/Phone.js b/packages/ringcentral-widgets-demo/dev-server/Phone.js
index <HASH>..<HASH> 100644
--- a/packages/ringcentral-widgets-demo/dev-server/Phone.js
+++ b/packages/ringcentral-widgets-demo/dev-server/Phone.js
@@ -62,6 +62,7 @@ import { ModuleFactory } from '... | fix(IncomingCallPage, Phone.js): fix ringing page display issues (#<I>)
* Answer and Hold Incoming call control should update when current call disconnected
<URL> | ringcentral_ringcentral-js-widgets | train |
301c1b854410a87d4a6c17f611c05cb18906681d | diff --git a/src/components/intercom-url-tracker/intercom-url-tracker.js b/src/components/intercom-url-tracker/intercom-url-tracker.js
index <HASH>..<HASH> 100644
--- a/src/components/intercom-url-tracker/intercom-url-tracker.js
+++ b/src/components/intercom-url-tracker/intercom-url-tracker.js
@@ -14,6 +14,7 @@ class I... | refactor: disable eslint camcelcase for all unsafe lifeycle methods | commercetools_merchant-center-application-kit | train |
fb1264ea72bc60f457ee931e5ee83660e7a4fdd2 | diff --git a/lib/transproc/function.rb b/lib/transproc/function.rb
index <HASH>..<HASH> 100644
--- a/lib/transproc/function.rb
+++ b/lib/transproc/function.rb
@@ -85,7 +85,8 @@ module Transproc
#
# @api public
def to_ast
- [name, args]
+ args_ast = args.map { |arg| arg.respond_to?(:to_ast) ? ar... | Use arguments #to_ast if they responds such
There are a lot of transformations where they receive procs as an argument
Those procs are often transformations themselves, so it's useful to render
their nested #to_ast | solnic_transproc | train |
28a0bbd6e9445e2a04c0d3810ecdbc262b96ff22 | diff --git a/Entity/AbstractBuilderInterface.php b/Entity/AbstractBuilderInterface.php
index <HASH>..<HASH> 100644
--- a/Entity/AbstractBuilderInterface.php
+++ b/Entity/AbstractBuilderInterface.php
@@ -13,9 +13,15 @@ interface AbstractBuilderInterface extends GenericBuilderInterface
* @param string $class
... | Adding the metadata to the builder and mutator interfaces. | GoIntegro_hateoas-bundle | train |
648548f317feea22f47b8bd2de8e1dfc5452c330 | diff --git a/app/Factories/MarkdownFactory.php b/app/Factories/MarkdownFactory.php
index <HASH>..<HASH> 100644
--- a/app/Factories/MarkdownFactory.php
+++ b/app/Factories/MarkdownFactory.php
@@ -50,11 +50,12 @@ use function trim;
*/
class MarkdownFactory implements MarkdownFactoryInterface
{
+ // Commonmark uses... | Fix: #<I> - wrong name for multi-line notes | fisharebest_webtrees | train |
71b26a158862521cc1b58e3ecd9b4d3a074e5313 | diff --git a/subsystem-test/framework/src/main/java/org/jboss/as/subsystem/test/AbstractSubsystemBaseTest.java b/subsystem-test/framework/src/main/java/org/jboss/as/subsystem/test/AbstractSubsystemBaseTest.java
index <HASH>..<HASH> 100644
--- a/subsystem-test/framework/src/main/java/org/jboss/as/subsystem/test/Abstract... | [WFLY-<I>] Test that all the controllers start in standardSubsystemTest()
was: 1e<I>a<I>bc<I>f<I>a<I>b<I>fef<I>b6 | wildfly_wildfly-core | train |
966a4bc7dce983840d77e399618286a9a62eb98b | diff --git a/uncompyle6/semantics/fragments.py b/uncompyle6/semantics/fragments.py
index <HASH>..<HASH> 100644
--- a/uncompyle6/semantics/fragments.py
+++ b/uncompyle6/semantics/fragments.py
@@ -383,11 +383,18 @@ class FragmentsWalker(pysource.SourceWalker, object):
self.prune() # stop recursing
def n_i... | Track changes in ifelstmtr..
in fragments from pysource | rocky_python-uncompyle6 | train |
99ac0be908efe3d0af6033513392f593fbdc3b4d | diff --git a/pysat/tests/test_avg.py b/pysat/tests/test_avg.py
index <HASH>..<HASH> 100644
--- a/pysat/tests/test_avg.py
+++ b/pysat/tests/test_avg.py
@@ -167,6 +167,7 @@ class TestConstellation:
def test_constellation_average(self):
for i in self.testC.instruments:
i.bounds = (pysat.datetime... | Update test_avg.py
Added bounds to individual instrument being compared against constellation. | rstoneback_pysat | train |
60e0b8523924ab889d094b5954dd241f66609cf9 | diff --git a/tinycontent/tests.py b/tinycontent/tests.py
index <HASH>..<HASH> 100644
--- a/tinycontent/tests.py
+++ b/tinycontent/tests.py
@@ -85,7 +85,7 @@ class TinyContentTestCase(unittest.TestCase):
self.assertEqual("This is a test.",
render_template_with_context(t, ctx))
- d... | Oops - long lines makes PEP8 sad. | dominicrodger_django-tinycontent | train |
6ab2762adc33e9d6173da8798dcceb92a116e6a4 | diff --git a/src/jsep.js b/src/jsep.js
index <HASH>..<HASH> 100644
--- a/src/jsep.js
+++ b/src/jsep.js
@@ -3,7 +3,7 @@
var default_unary_ops = ["-", "!"], // Permissible unary operations
default_binary_ops = ["+", "-", "*", "/", "&&", "||", "&", "|", "<<", ">>", "===", "==", ">=", "<=", "<", ">"], //Permissible... | Renamed 'constants' to 'keywords' | soney_jsep | train |
7369285ac23c13ea49754e33b72a98832e70b35e | diff --git a/ignite/metrics/gan/inception_score.py b/ignite/metrics/gan/inception_score.py
index <HASH>..<HASH> 100644
--- a/ignite/metrics/gan/inception_score.py
+++ b/ignite/metrics/gan/inception_score.py
@@ -97,19 +97,27 @@ class InceptionScore(_BaseInceptionMetric):
probabilities = self._extract_features... | Data Type mismatch Fix (check on GPU CI) (#<I>)
* Device mismatch
* Device management fixed
* removed extra type conversion
* Update ignite/metrics/gan/fid.py
* Fix for dtype in IS
* IS return type to float
* Mypy fix | pytorch_ignite | train |
d35d6d307f5162cd4edcbf0b90a4d3e11397315d | diff --git a/lib/marked.js b/lib/marked.js
index <HASH>..<HASH> 100644
--- a/lib/marked.js
+++ b/lib/marked.js
@@ -631,6 +631,9 @@ function parseText() {
}
function parse(src) {
+ if (!src.links) {
+ throw new Error('SRC tokens for parse should include a `links` property, which should be an object.');
+ }
t... | Throw an exception when parsing with no links object | remarkjs_remark | train |
f43ef38400cac34d49b879d6a9be6481d4410bf3 | diff --git a/test_utils/scripts/get_version.py b/test_utils/scripts/get_version.py
index <HASH>..<HASH> 100644
--- a/test_utils/scripts/get_version.py
+++ b/test_utils/scripts/get_version.py
@@ -18,4 +18,4 @@ from __future__ import print_function
from pkg_resources import get_distribution
-print(get_distribution('... | Fix docs helper script for getting version. (#<I>) | googleapis_google-cloud-python | train |
bb80eb041a1ecf9743c6b04982605016f8620330 | diff --git a/ontospy/core/ontospy.py b/ontospy/core/ontospy.py
index <HASH>..<HASH> 100755
--- a/ontospy/core/ontospy.py
+++ b/ontospy/core/ontospy.py
@@ -127,7 +127,7 @@ class Ontospy(object):
if credentials and type(credentials) == tuple:
# https://github.com/RDFLib/rdflib/issues/343
... | domain/ranges values marked as ext_model=True if not part of main model | lambdamusic_Ontospy | train |
45333a63a55b0727bc7e8fa8dff751996f649703 | diff --git a/lib/cli/kit/system.rb b/lib/cli/kit/system.rb
index <HASH>..<HASH> 100644
--- a/lib/cli/kit/system.rb
+++ b/lib/cli/kit/system.rb
@@ -135,7 +135,7 @@ module CLI
.returns([IO, IO, Process::Waiter])
)
)
- .returns([String, String, Process::Status])
+ ... | Fix some mistakes from 2f0a<I>b | Shopify_cli-kit | train |
86b6b491dce1afcb9b8d92b48df327bb546bc5cc | diff --git a/child/child.go b/child/child.go
index <HASH>..<HASH> 100644
--- a/child/child.go
+++ b/child/child.go
@@ -213,10 +213,9 @@ func (c *Child) Stop() {
log.Printf("[WARN] (child) already stopped")
return
}
+ c.kill()
close(c.stopCh)
c.stopped = true
-
- c.kill()
}
func (c *Child) start() error ... | Only mark as stopped after child is killed | hashicorp_consul-template | train |
605b2326bee58ae021b1224a3c7b6e70b31a2866 | diff --git a/h2o-algos/src/main/java/hex/deeplearning/DeepLearningModel.java b/h2o-algos/src/main/java/hex/deeplearning/DeepLearningModel.java
index <HASH>..<HASH> 100644
--- a/h2o-algos/src/main/java/hex/deeplearning/DeepLearningModel.java
+++ b/h2o-algos/src/main/java/hex/deeplearning/DeepLearningModel.java
@@ -12,7 ... | Add scoringHistory TwoDimTable for DL and print that by default.
Note - Can be too long, need to add "tail -n <I>" functionality. | h2oai_h2o-3 | train |
300248ab5a324fc0af71dfef3230094ddd93483b | diff --git a/ffn/core.py b/ffn/core.py
index <HASH>..<HASH> 100644
--- a/ffn/core.py
+++ b/ffn/core.py
@@ -1550,6 +1550,57 @@ def random_weights(n, bounds=(0., 1.), total=1.0):
return w
+def plot_heatmap(data, title='Heatmap', show_legend=True,
+ show_labels=True, label_fmt='.2f',
+ ... | added heatmap and fixed field bug in data.get | pmorissette_ffn | train |
7bcda3bc7a4d59a138541eac5b88af531a11b30f | diff --git a/scripts/generateJSParserDemo.php b/scripts/generateJSParserDemo.php
index <HASH>..<HASH> 100644
--- a/scripts/generateJSParserDemo.php
+++ b/scripts/generateJSParserDemo.php
@@ -16,6 +16,7 @@ $cb->BBCodes->addPredefinedBBCode('LIST');
$cb->BBCodes->addPredefinedBBCode('COLOR');
$cb->BBCodes->addPredefine... | Implemented a partial-update algorithm in JSParserDemo. Attributes syncing is still missing | s9e_TextFormatter | train |
3dfd1cbe211108f93fb83b7a9a15c4b1943883a6 | diff --git a/jujupy.py b/jujupy.py
index <HASH>..<HASH> 100644
--- a/jujupy.py
+++ b/jujupy.py
@@ -9,6 +9,7 @@ import httplib
import socket
import subprocess
import sys
+import tempfile
from time import sleep
import urllib2
@@ -97,7 +98,13 @@ class JujuClientDevel:
def get_juju_output(self, environment, c... | Write stderr to a temp file. | juju_juju | train |
60cbcec3990dd7437f547bdb2b85eb95b0457300 | diff --git a/dvc/commands/plots.py b/dvc/commands/plots.py
index <HASH>..<HASH> 100644
--- a/dvc/commands/plots.py
+++ b/dvc/commands/plots.py
@@ -38,9 +38,8 @@ class CmdPlots(CmdBase):
def run(self):
from pathlib import Path
- from dvc_render import render_html
-
from dvc.render.match i... | formatting: consider dvc-render as a known first party for ordering imports | iterative_dvc | train |
fbe7bcf1d650be27bef86c1c4b1ecd835ab8c332 | diff --git a/activemodel/test/models/contact.rb b/activemodel/test/models/contact.rb
index <HASH>..<HASH> 100644
--- a/activemodel/test/models/contact.rb
+++ b/activemodel/test/models/contact.rb
@@ -19,7 +19,7 @@ class Contact
end
def initialize(options = {})
- options.each { |name, value| send("#{name}=", v... | These test model accessors are public methods | rails_rails | train |
c7798c6703585dc29ff149f37137750b55ae3131 | diff --git a/docs/source/usage.rst b/docs/source/usage.rst
index <HASH>..<HASH> 100644
--- a/docs/source/usage.rst
+++ b/docs/source/usage.rst
@@ -17,7 +17,7 @@ objects, or custom `~.Command` objects.
Classes can be part of a single document, or can act as pieces on their own.
With the `~.LatexObject.dumps` method,... | Use short links in docstrings now as well | JelteF_PyLaTeX | train |
7bd41b7880f70c9deca692d6ea446e74a8e4b8f9 | diff --git a/php/WP_CLI/SynopsisValidator.php b/php/WP_CLI/SynopsisValidator.php
index <HASH>..<HASH> 100644
--- a/php/WP_CLI/SynopsisValidator.php
+++ b/php/WP_CLI/SynopsisValidator.php
@@ -50,7 +50,7 @@ class SynopsisValidator {
$errors['fatal'][] = "missing --$key parameter";
}
} else {
- if ( true... | Exclude assoc args with that have an optional value from being unset
An assoc args with an option value shouldn't trigger the message "--foo parameter needs a value".
Because it doesn't needs a value. Else it would defeat the whole purpose of having `--foo[=<bar>]`.
It needs to be available within the command so you c... | wp-cli_extension-command | train |
d4e4179ae2b26ad765bda77e249e14ef5c0537f6 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -230,7 +230,7 @@ texinfo_documents = [
('index', 'mockextras', u'mockextras Documentation',
u'Andrew Burrows', 'mockextras', 'The mockextras library adds a number of features that are found in other mock... | Fix up typo in conf.py | manahl_mockextras | train |
105f4610c7a42bac55a7120b4c845885e6c0bcd3 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -1,3 +1,4 @@
+const { YAMLException } = require('js-yaml');
const getSpecificationObject = require('./helpers/getSpecificationObject');
const createSpecification = require('./helpers/createSpecification');
... | coverage for yaml malformatting | Surnet_swagger-jsdoc | train |
8c106fd628e57475cea05759cdc6e1d233f4e9cc | diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -23,7 +23,7 @@ class Test::Unit::TestCase
def test_filename(entry = caller.first)
test_name = Haml::Util.caller_info(entry)[2]
- test_name.sub!(/^block in /, '')
+ te... | [Sass] Fix a test incompatibility with Ruby <I>. | sass_ruby-sass | train |
8edea91f58cb235a60ccfedfe46d31058c25532a | diff --git a/lib/dynamo-backup.js b/lib/dynamo-backup.js
index <HASH>..<HASH> 100644
--- a/lib/dynamo-backup.js
+++ b/lib/dynamo-backup.js
@@ -19,7 +19,7 @@ function DynamoBackup(options) {
this.backupPath = options.backupPath;
this.bucket = options.bucket;
this.stopOnFailure = options.stopOnFailure || f... | Fixing typo in new param name | markitx_dynamo-backup-to-s3 | train |
05ebde447b4be1166e3e18581e0a1c30e075b9fa | diff --git a/libkbfs/conflict_resolver.go b/libkbfs/conflict_resolver.go
index <HASH>..<HASH> 100644
--- a/libkbfs/conflict_resolver.go
+++ b/libkbfs/conflict_resolver.go
@@ -1266,6 +1266,10 @@ func (cr *ConflictResolver) fixRenameConflicts(ctx context.Context,
var removeRenames []BlockPointer
var doubleRenames []B... | cr: ignore renames if the whole chain has been deleted
Also fix a bookkeeping issue exposed by this -- if a block has been
overwritten already on the merged branch, it shouldn't be unreferenced
again in the resolution.
Issue: KBFS-<I> | keybase_client | train |
f87247e387fbdbbb9fefaa19887e932c63e4f503 | diff --git a/lib/rubycritic/report_generators/view_helpers.rb b/lib/rubycritic/report_generators/view_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/rubycritic/report_generators/view_helpers.rb
+++ b/lib/rubycritic/report_generators/view_helpers.rb
@@ -14,11 +14,11 @@ module Rubycritic
end
def asset_path(... | Refactor `asset_path`, `file_path` and `relative_path` methods | whitesmith_rubycritic | train |
35d89a7a12392c3cc38bd5f154eb845974dd4159 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and we use [Semantic Versioning](http://semver.org/spec/v2.0.0.html), like stric
**NOTE**: there is not an entry for every version. Some versions included super minor changes, and as a result w... | Fix bug where changing nodes paths can result in the old path persisting in the path-map file | CONNECT-platform_connect-platform | train |
3644c31389debd1ebece2c730ec3c22d5c9be972 | diff --git a/Gemfile.lock b/Gemfile.lock
index <HASH>..<HASH> 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- parallel_cucumber (0.2.0.pre.34)
+ parallel_cucumber (0.2.0.pre.35)
cucumber (~> 2)
parallel (~> 1.9)
redis (~> 3.3)
@@ -33,12 +33,12 @@ GE... | Add startup-timeout since appium takes <I>s now. | badoo_parallel_cucumber | train |
3e8e827305720ac882fa0a0666b1cbce8cb4039d | diff --git a/scss.py b/scss.py
index <HASH>..<HASH> 100644
--- a/scss.py
+++ b/scss.py
@@ -1921,7 +1921,7 @@ def _sprite_file(map, sprite):
sprite = sprite_map.get(sprite)
if sprite:
- return StringValue(sprite[1])
+ return QuotedStringValue(sprite[1])
return StringValue(None)
def ... | Using quoted strings for files and urls (needing for passing them as arguments) | Kronuz_pyScss | train |
a0bd5110145d253b091ff6311190d303a7e3bc07 | diff --git a/hazelcast/src/main/java/com/hazelcast/instance/NodeExtensionFactory.java b/hazelcast/src/main/java/com/hazelcast/instance/NodeExtensionFactory.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/instance/NodeExtensionFactory.java
+++ b/hazelcast/src/main/java/com/hazelcast/instance... | Fixing logging in case of OSGI error, due to null NodeEngine | hazelcast_hazelcast | train |
b0328d37e8a4aeb50aa7ed848f1070a98535262c | diff --git a/src/filesystem/impls/appshell/AppshellFileSystem.js b/src/filesystem/impls/appshell/AppshellFileSystem.js
index <HASH>..<HASH> 100644
--- a/src/filesystem/impls/appshell/AppshellFileSystem.js
+++ b/src/filesystem/impls/appshell/AppshellFileSystem.js
@@ -35,6 +35,9 @@ define(function (require, exports, modu... | Exclude .git files from console warnings | adobe_brackets | train |
a8fd66abc0ef1cfa8f1089f15cab918bf85831d9 | diff --git a/generator/Data/XCB/Python/Parse.hs b/generator/Data/XCB/Python/Parse.hs
index <HASH>..<HASH> 100644
--- a/generator/Data/XCB/Python/Parse.hs
+++ b/generator/Data/XCB/Python/Parse.hs
@@ -342,17 +342,23 @@ structElemToPyPack _ m accessor (SField n typ _ _) =
falseB = mkCall (mkDot synthetic "pa... | add length parameter to lists w/ unspecified length
Although it is unnecessary for the binding itself, for API compatibilty
with xcb (which also doesn't use this parameter), we add a length parameter
where necessary.
Closes #<I> | tych0_xcffib | train |
e2ff9cc6b650d079e561883c2d7b081ff3e705c5 | diff --git a/kafka_scanner/__init__.py b/kafka_scanner/__init__.py
index <HASH>..<HASH> 100644
--- a/kafka_scanner/__init__.py
+++ b/kafka_scanner/__init__.py
@@ -3,7 +3,6 @@ import time
import shutil
import tempfile
import atexit
-import threading
import logging
from collections import Iterable, defaultdict, Or... | remove periodic log of activity (was useful when scanner was unstable) | scrapinghub_kafka-scanner | train |
9bd9c48af3c3652aee8d0a810ecf744654259525 | diff --git a/core/src/main/java/hudson/tasks/ArtifactArchiver.java b/core/src/main/java/hudson/tasks/ArtifactArchiver.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/tasks/ArtifactArchiver.java
+++ b/core/src/main/java/hudson/tasks/ArtifactArchiver.java
@@ -266,6 +266,7 @@ public class ArtifactArchiver... | [JENKINS-<I>] Log the diagnosed cause just in case | jenkinsci_jenkins | train |
055f3bd9724b6642c7dddbbbba0b7133dc8e07c3 | diff --git a/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/BuildCommandExecutor.java b/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/BuildCommandExecutor.java
index <HASH>..<HASH> 100644
--- a/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/BuildCommandExecutor.java
+++ b/cellbase-app/src/main/... | release/<I>: Disgenet and HPO code made Deprecated at BuildCommandExecutor - both data sources are currently integrated within the Gene data model | opencb_cellbase | train |
265a42b2fb1ae5189a2123ca7b8c302288314c99 | diff --git a/common/src/main/java/com/emc/pravega/common/metrics/NullStatsLogger.java b/common/src/main/java/com/emc/pravega/common/metrics/NullStatsLogger.java
index <HASH>..<HASH> 100644
--- a/common/src/main/java/com/emc/pravega/common/metrics/NullStatsLogger.java
+++ b/common/src/main/java/com/emc/pravega/common/me... | Issue <I>: catch metrics exceptions inside metrics module (#<I>)
* put all metrics create/register into try{}catch{} block to avoid panic the logic code path | pravega_pravega | train |
47a0111d491a7efe30253fabd532e09859b98867 | diff --git a/lib/gds_api/rummager.rb b/lib/gds_api/rummager.rb
index <HASH>..<HASH> 100644
--- a/lib/gds_api/rummager.rb
+++ b/lib/gds_api/rummager.rb
@@ -25,6 +25,33 @@ module GdsApi
)
end
+ # Deletes a content-document from the index. Content documents are pages
+ # on GOV.UK returned by search in... | Add support for Rummager's `delete_content` & `get_content`
These endpoints were added some time ago, but didn't have support in
this gem. | alphagov_gds-api-adapters | train |
93e9a470895e90bdb3871d7040c97a3cc34dc42a | diff --git a/src/test/java/com/github/jmchilton/blend4j/galaxy/TestHelpers.java b/src/test/java/com/github/jmchilton/blend4j/galaxy/TestHelpers.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/github/jmchilton/blend4j/galaxy/TestHelpers.java
+++ b/src/test/java/com/github/jmchilton/blend4j/galaxy/TestHelpers.ja... | Improved error logging to try to hunt down workflow test problem. | galaxyproject_blend4j | train |
cdec0c50bf5492f115462bf8f892c475baa08475 | diff --git a/upload/catalog/controller/extension/module/pp_button.php b/upload/catalog/controller/extension/module/pp_button.php
index <HASH>..<HASH> 100644
--- a/upload/catalog/controller/extension/module/pp_button.php
+++ b/upload/catalog/controller/extension/module/pp_button.php
@@ -24,7 +24,7 @@ class ControllerExt... | Corrected "live" to correct term "production" for PayPal config. | opencart_opencart | train |
554ec1ceb3e4950294843f1dc66dc285252d9664 | diff --git a/ros_buildfarm/common.py b/ros_buildfarm/common.py
index <HASH>..<HASH> 100644
--- a/ros_buildfarm/common.py
+++ b/ros_buildfarm/common.py
@@ -21,6 +21,14 @@ except ImportError:
from urlparse import urlparse
+package_format_mapping = {
+ 'debian': 'deb',
+ 'fedora': 'rpm',
+ 'rhel': 'rpm',... | Add mapping from OS names to packaging formats (#<I>) | ros-infrastructure_ros_buildfarm | train |
f246c54e30ec90def6eedd181daa20c5017fc17f | diff --git a/vendor/plugins/alchemy/app/helpers/application_helper.rb b/vendor/plugins/alchemy/app/helpers/application_helper.rb
index <HASH>..<HASH> 100644
--- a/vendor/plugins/alchemy/app/helpers/application_helper.rb
+++ b/vendor/plugins/alchemy/app/helpers/application_helper.rb
@@ -421,7 +421,7 @@ module Applicatio... | protocol in urls has to be strings.... | AlchemyCMS_alchemy_cms | train |
de59bad0f89d50673283debb090805f86f504091 | diff --git a/system/src/Grav/Framework/Flex/FlexObject.php b/system/src/Grav/Framework/Flex/FlexObject.php
index <HASH>..<HASH> 100644
--- a/system/src/Grav/Framework/Flex/FlexObject.php
+++ b/system/src/Grav/Framework/Flex/FlexObject.php
@@ -55,9 +55,13 @@ class FlexObject implements FlexObjectInterface, FlexAuthorize... | Keep storage key and timestamp inside FlexObject (allows diff check against stored object) | getgrav_grav | train |
e8fc548e5d6012cf845a0d50f3f3deb442c4c51a | diff --git a/src/Themosis/Forms/Fields/Types/BaseType.php b/src/Themosis/Forms/Fields/Types/BaseType.php
index <HASH>..<HASH> 100644
--- a/src/Themosis/Forms/Fields/Types/BaseType.php
+++ b/src/Themosis/Forms/Fields/Types/BaseType.php
@@ -44,6 +44,7 @@ abstract class BaseType extends HtmlBuilder implements \ArrayAccess... | Fix #<I>. Page settings can be registered for the REST API. | themosis_framework | train |
95060fc0034a039844d2e31aa8c2deb619743ca8 | diff --git a/src/com/opera/core/systems/ScopeServices.java b/src/com/opera/core/systems/ScopeServices.java
index <HASH>..<HASH> 100644
--- a/src/com/opera/core/systems/ScopeServices.java
+++ b/src/com/opera/core/systems/ScopeServices.java
@@ -193,6 +193,11 @@ public class ScopeServices implements IConnectionHandler {
... | Added documentation for ScopeServices' constructor | operasoftware_operaprestodriver | train |
3ad0779e566067f26422a74f108d81ac458e4333 | diff --git a/activerecord/test/cases/relation_test.rb b/activerecord/test/cases/relation_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/relation_test.rb
+++ b/activerecord/test/cases/relation_test.rb
@@ -80,6 +80,15 @@ module ActiveRecord
assert_equal({}, relation.where_values_hash)
end
... | testing combined nodes are not traversed | rails_rails | train |
31ef2fdc0cb5f805e08b01fd579c0afea72c0652 | diff --git a/src/main/java/com/googlecode/lanterna/gui2/Panel.java b/src/main/java/com/googlecode/lanterna/gui2/Panel.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/googlecode/lanterna/gui2/Panel.java
+++ b/src/main/java/com/googlecode/lanterna/gui2/Panel.java
@@ -51,7 +51,8 @@ public class Panel extends Abst... | Should be enough to just call add on the new container when moving a component, instead of having to first remove it from the previous | mabe02_lanterna | train |
e86b0178e2006ffd2a949d60ca49cbc386f5f36d | diff --git a/core/eolearn/core/visualizations.py b/core/eolearn/core/visualizations.py
index <HASH>..<HASH> 100644
--- a/core/eolearn/core/visualizations.py
+++ b/core/eolearn/core/visualizations.py
@@ -306,6 +306,8 @@ class Visualization:
epsg_number = self.eopatch.bbox.crs.ogc_string().split(':')[1]
... | data is copied when applying mask, so it does not effect original data | sentinel-hub_eo-learn | train |
b20053bf5f4890289cdc824b8072a097af555a5e | diff --git a/exhibitor-core/src/main/java/com/netflix/exhibitor/core/processes/Details.java b/exhibitor-core/src/main/java/com/netflix/exhibitor/core/processes/Details.java
index <HASH>..<HASH> 100644
--- a/exhibitor-core/src/main/java/com/netflix/exhibitor/core/processes/Details.java
+++ b/exhibitor-core/src/main/java... | Issue <I>: cleanup task wasn't using correct JARs for <I>.x | soabase_exhibitor | train |
82e389ed30fd979d4a627b1edbda52c6dde34ae6 | diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -566,6 +566,7 @@ if ActiveRecord::Base.connection.supports_migrations?
if bob.moment_... | reload bob after his journy to a new timezone | rails_rails | train |
6d3da6861eb37c9b3785d8f845e65861165c48ae | diff --git a/lib/did_you_mean.rb b/lib/did_you_mean.rb
index <HASH>..<HASH> 100644
--- a/lib/did_you_mean.rb
+++ b/lib/did_you_mean.rb
@@ -107,8 +107,7 @@ module DidYouMean
# Updates the primary formatter used to format the suggestions.
def self.formatter=(*)
- warn "The custom formatter feature has been dep... | Bring back the ability to set a formatter for error_highlight
error_highlight depends on this in test: <URL> | yuki24_did_you_mean | train |
04d3f368c24fc5e3ac2fbb5b46b8e2b2c8ccb9a0 | diff --git a/code/GridFieldOrderableRows.php b/code/GridFieldOrderableRows.php
index <HASH>..<HASH> 100755
--- a/code/GridFieldOrderableRows.php
+++ b/code/GridFieldOrderableRows.php
@@ -339,17 +339,39 @@ class GridFieldOrderableRows extends RequestHandler implements
$pool = array_values($values);
sort($pool);
... | Added functionality so that GridFieldOrderableRows updates *_versions table for Versioned data objects. | symbiote_silverstripe-gridfieldextensions | train |
ba13447086a7d5efd65a36f86e992c1123cc6fd8 | diff --git a/src/Factory/ImageServiceFactory.php b/src/Factory/ImageServiceFactory.php
index <HASH>..<HASH> 100644
--- a/src/Factory/ImageServiceFactory.php
+++ b/src/Factory/ImageServiceFactory.php
@@ -15,9 +15,7 @@ class ImageServiceFactory implements FactoryInterface
$imageLoaderManager = $serviceLocator->g... | inject cache manager at all the time to image service | hrevert_HtImgModule | train |
6898c167c3906b87dcf52cf6c088ae9f08f3ad22 | diff --git a/activerecord/test/cases/associations/cascaded_eager_loading_test.rb b/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
+++ b/activerecord/test/cases/associations/cascaded_eager_loading_t... | Make sure about which is the first element of the query, fixes a postgresql <I> failing test | rails_rails | train |
c540d0fc0d34c099c9c38bea38a6b1fe74a05292 | diff --git a/input.go b/input.go
index <HASH>..<HASH> 100644
--- a/input.go
+++ b/input.go
@@ -119,7 +119,7 @@ type Touch interface {
//
// Touches always returns nil on desktops.
func Touches() []Touch {
- t := input.Get().Touches()
+ t := ui.AdjustedTouches()
tt := make([]Touch, len(t))
for i := 0; i < len(tt)... | ui: Add AdjustedTouches for consistency | hajimehoshi_ebiten | train |
daebdebea5b602cf8a03d245701f1995329ceac3 | diff --git a/src/main/java/net/revelc/code/formatter/LineEnding.java b/src/main/java/net/revelc/code/formatter/LineEnding.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/revelc/code/formatter/LineEnding.java
+++ b/src/main/java/net/revelc/code/formatter/LineEnding.java
@@ -94,7 +94,8 @@ public enum LineEnding ... | [ci] Break another if statement that contained 'return' so it completes naturally | revelc_formatter-maven-plugin | train |
30819126e0eb5eb9bf9c379f624f545b309973cc | diff --git a/ns_api/ns_api.py b/ns_api/ns_api.py
index <HASH>..<HASH> 100644
--- a/ns_api/ns_api.py
+++ b/ns_api/ns_api.py
@@ -24,7 +24,6 @@ def _parse_da_time(time):
def vertrektijden(station):
- #url = 'http://www.ns.nl/actuele-vertrektijden/main.action?xml=false'
url = 'http://www.ns.nl/actuele-vertrekt... | Fixed some lints by removing old commented out code | aquatix_ns-api | train |
787bdb7f3f6aaf1e0bc44ea037df507880d0bd7a | diff --git a/lib/transform.js b/lib/transform.js
index <HASH>..<HASH> 100644
--- a/lib/transform.js
+++ b/lib/transform.js
@@ -15,7 +15,6 @@ function ImageTransformStream(options) {
util.inherits(ImageTransformStream, stream.Transform)
ImageTransformStream.prototype._transform = function collectImageData(chunk, enc... | String-encoded data transform test | furagu_easy-gd | train |
96ef5e105d7f74b7858b5fb562f2815b30be6a8e | diff --git a/js-es6/libs/dom/collection.js b/js-es6/libs/dom/collection.js
index <HASH>..<HASH> 100644
--- a/js-es6/libs/dom/collection.js
+++ b/js-es6/libs/dom/collection.js
@@ -31,8 +31,8 @@ export default class Collection {
Container.getCollectionMethods().forEach(method => {
Collection.prototype[method] = f... | Add read/write promises to Container. | titon_toolkit | train |
18fdcbddda2d094df319ceda3c148f6396a8b482 | diff --git a/README.rdoc b/README.rdoc
index <HASH>..<HASH> 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -10,15 +10,27 @@ Source:: <tt>git clone git://github.com/habermann24/phoney.git</tt>
== Feature overview
-* Create from phone number by parsing a string
+* Create phone number by parsing a string
requir... | Parser tests pass now, yay. | haberbyte_phoney | train |
ae1d4aef38039fddaa55d4b41fd43892fff872f6 | diff --git a/tdigest.go b/tdigest.go
index <HASH>..<HASH> 100644
--- a/tdigest.go
+++ b/tdigest.go
@@ -30,7 +30,7 @@ func New(compression float64) *TDigest {
}
}
-// Percentile returns the desired percentile estimation.
+// Quantile returns the desired percentile estimation.
// Values of p must be between 0 and 1... | Rename the last `Percentile` reference to `Quantile` | caio_go-tdigest | train |
d9434e977021743026c4d4a6eb4d1911fda8a80c | diff --git a/flux_led/models_db.py b/flux_led/models_db.py
index <HASH>..<HASH> 100755
--- a/flux_led/models_db.py
+++ b/flux_led/models_db.py
@@ -696,25 +696,25 @@ MODELS = [
device_config=IMMUTABLE_DEVICE_CONFIG,
),
LEDENETModel(
- model_num=0x1B,
+ model_num=0x19,
models=[],... | Add support for new models (#<I>) | Danielhiversen_flux_led | train |
5aa080438da6b9385539210b07e06a687767816f | diff --git a/courge.py b/courge.py
index <HASH>..<HASH> 100644
--- a/courge.py
+++ b/courge.py
@@ -8,16 +8,15 @@ vsd_options = {
data = {'parentObject' :
{
- 'resourceName': 'enterprises',
- 'id': '4aae6a26-6427-4055-b514-ecd73524823b'
+ 'resourceName': 'subnets',
+ ... | Fixed addError method when setup is failing | nuagenetworks_monolithe | train |
97e8572746871f5d0d656809f8b45e57ff11e5c0 | diff --git a/datasources/GeoJson.js b/datasources/GeoJson.js
index <HASH>..<HASH> 100644
--- a/datasources/GeoJson.js
+++ b/datasources/GeoJson.js
@@ -3,7 +3,7 @@ var projector = require("../projector");
var GeoJsonSource = function(options) {
- this._projection = options.projection || "4326"; //"+proj=merc +a=63... | Fixes to only project if no load error, project with correct signature, and not to set default projection for dataset to allow current testing setup to work until internals play nice with projector | nodetiles_nodetiles-core | train |
2e896441f66399b5ac15d81528b6befbcf8beb66 | diff --git a/byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java b/byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java
index <HASH>..<HASH> 100644
--- a/byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java
+++ b/byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java
@@ -1557,13 +1557,14 @@ publi... | Rather copy array that reusing on adjustment. | raphw_byte-buddy | train |
de372f277e27ad47a73796e4f52a9db30b57e4c1 | diff --git a/salt/returners/couchbase_return.py b/salt/returners/couchbase_return.py
index <HASH>..<HASH> 100644
--- a/salt/returners/couchbase_return.py
+++ b/salt/returners/couchbase_return.py
@@ -3,15 +3,37 @@
Simple returner for Couchbase. Optional configuration
settings are listed below, along with sane defaults... | 1. returner no need to check whether the jid exists for external job cache setup
2. add full_ret to return doc so that the document will be informative
3. make ttl as a config attribute because salt-minion does not have keep_jobs attribute
4. add password into config attribute
5. update the documents accordingly | saltstack_salt | train |
f1304b688c18845d5c7435d675526db18305ade3 | diff --git a/higlass/tilesets.py b/higlass/tilesets.py
index <HASH>..<HASH> 100644
--- a/higlass/tilesets.py
+++ b/higlass/tilesets.py
@@ -103,9 +103,9 @@ def bam(filepath, index_filename=None, uuid=None, chromsizes=None, **kwargs):
return Tileset(
uuid=uuid,
- tileset_info=lambda: tileset_info(f... | Don't include chromsizes | higlass_higlass-python | train |
c16de7c280f056b607e0297f98c4203d45abd20a | diff --git a/src/bundler.js b/src/bundler.js
index <HASH>..<HASH> 100644
--- a/src/bundler.js
+++ b/src/bundler.js
@@ -168,7 +168,7 @@ class Bundler {
let output_path = permalink.match(/\.html$/)
? permalink
: path.join(permalink, 'index.html');
- fs.outputFile(path.join(this.config.distDir, output_path), c... | Write posts/lists to disk synchronously to ensure order | marceljs_marcel | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.