hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
96c46d182ad1c9a2123abbca3afe082bde3e103f | diff --git a/Tests/Command/GenerateCommandTest.php b/Tests/Command/GenerateCommandTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Command/GenerateCommandTest.php
+++ b/Tests/Command/GenerateCommandTest.php
@@ -19,6 +19,7 @@ abstract class GenerateCommandTest extends \PHPUnit_Framework_TestCase
$container = new Co... | Register StringUtils service on container | hechoendrupal_drupal-console | train |
811b676fbab9c99e359885032e5ebc70e442f5b8 | diff --git a/src/functions.php b/src/functions.php
index <HASH>..<HASH> 100644
--- a/src/functions.php
+++ b/src/functions.php
@@ -72,7 +72,7 @@ function uri_for($uri)
* @param resource|string|null|int|float|bool|StreamInterface|callable $resource Entity body data
* @param array ... | Fix the return typehint in docblock of stream_for function (#<I>) | guzzle_psr7 | train |
3898d9968c3e730727e9fe29ef2b302eafb8abcf | diff --git a/zk_utils.go b/zk_utils.go
index <HASH>..<HASH> 100644
--- a/zk_utils.go
+++ b/zk_utils.go
@@ -25,15 +25,15 @@ import (
)
var (
- ConsumersPath = "/consumers"
- BrokerIdsPath = "/brokers/ids"
- BrokerTopicsPath = "/brokers/topics"
- TopicConfigPath = "/config/topics"
- TopicConfigChangesPath = "/config/... | basic methods for zk utils | elodina_go_kafka_client | train |
870d315dd8daf20cba380206ff603363243dabb1 | diff --git a/src/JWadhams/JsonLogic.php b/src/JWadhams/JsonLogic.php
index <HASH>..<HASH> 100644
--- a/src/JWadhams/JsonLogic.php
+++ b/src/JWadhams/JsonLogic.php
@@ -5,6 +5,7 @@ namespace JWadhams;
class JsonLogic
{
+ private static $custom_operations = [];
public static function get_operator($logic){
return ... | add_operation with three kinds of single-function additions | jwadhams_json-logic-php | train |
8c3e794b2aa545a6fbc539fc2ac45b5bf05b9a4e | diff --git a/GITenberg.py b/GITenberg.py
index <HASH>..<HASH> 100755
--- a/GITenberg.py
+++ b/GITenberg.py
@@ -95,7 +95,8 @@ def create_github_repo(book):
gh = github3.login(username=GH_USER, password=GH_PASSWORD)
org = gh.organization(login='GITenberg')
team = org.list_teams()[0] # only one team in the ... | remove some more s and add sigma's error handling | gitenberg-dev_gitberg | train |
7e1a1e0b3545d0bd9b01304130370fe09a0ad04c | diff --git a/src/processTailwindFeatures.js b/src/processTailwindFeatures.js
index <HASH>..<HASH> 100644
--- a/src/processTailwindFeatures.js
+++ b/src/processTailwindFeatures.js
@@ -19,6 +19,7 @@ import { issueFlagNotices, flagEnabled } from './featureFlags.js'
import darkModeVariantPlugin from './flagged/darkModeVar... | Warn users who still have `target` in their config file | tailwindcss_tailwindcss | train |
28d781cb0a0b19dcc9adba214b414e8e34652168 | diff --git a/prow/plugins/plugins.go b/prow/plugins/plugins.go
index <HASH>..<HASH> 100644
--- a/prow/plugins/plugins.go
+++ b/prow/plugins/plugins.go
@@ -20,10 +20,11 @@ import (
"errors"
"fmt"
"io/ioutil"
- "k8s.io/test-infra/pkg/genyaml"
"sync"
"time"
+ "k8s.io/test-infra/pkg/genyaml"
+
"github.com/pro... | Replace *repoowners.Client to repoowners.Interface | kubernetes_test-infra | train |
121d7840a89a70171d69e2a0d883b84b732b4fa3 | diff --git a/s4/clients/s3.py b/s4/clients/s3.py
index <HASH>..<HASH> 100644
--- a/s4/clients/s3.py
+++ b/s4/clients/s3.py
@@ -2,6 +2,7 @@
import collections
import copy
import fnmatch
+import gzip
import json
import logging
import os
@@ -143,6 +144,9 @@ class S3SyncClient(SyncClient):
logger.deb... | Use gzip compression by default for s3 indexes | MichaelAquilina_S4 | train |
0171e3dafb1dc637d7bb576da6b81f0f3847e4f8 | diff --git a/admin.go b/admin.go
index <HASH>..<HASH> 100644
--- a/admin.go
+++ b/admin.go
@@ -192,6 +192,9 @@ func (ca *clusterAdmin) ListTopics() (map[string]TopicDetail, error) {
topicDetails := TopicDetail{
NumPartitions: int32(len(topic.Partitions)),
}
+ if len(topic.Partitions) > 0 {
+ topicDetails.R... | Add ReplicationFactor to ListTopics response | Shopify_sarama | train |
49082196be780486c97010533d9a1206f999e240 | diff --git a/src/main/java/com/squareup/okhttp/internal/http/HttpURLConnectionImpl.java b/src/main/java/com/squareup/okhttp/internal/http/HttpURLConnectionImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/squareup/okhttp/internal/http/HttpURLConnectionImpl.java
+++ b/src/main/java/com/squareup/okhttp/intern... | Follow up to <I> redirects. | square_okhttp | train |
608b80725fcab1f95a44ae95ffdb071a51262129 | diff --git a/pyparsing/results.py b/pyparsing/results.py
index <HASH>..<HASH> 100644
--- a/pyparsing/results.py
+++ b/pyparsing/results.py
@@ -564,7 +564,7 @@ class ParseResults:
elif self._parent:
par = self._parent()
- def find_in_parent(self, sub):
+ def find_in_parent(s... | Fix internal bug in ParseResults.getName() (how did this ever work?) | pyparsing_pyparsing | train |
f26940a519a64625c6029a58d0ff64dffeadabf6 | diff --git a/src/main/java/com/hubspot/jinjava/objects/serialization/PyishBeanSerializerModifier.java b/src/main/java/com/hubspot/jinjava/objects/serialization/PyishBeanSerializerModifier.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/hubspot/jinjava/objects/serialization/PyishBeanSerializerModifier.java
+++ ... | Change pyish serialization to never default to toString method calling | HubSpot_jinjava | train |
9f44ea5b8a7fcd805f328dfea408458fe862c392 | diff --git a/flask_sqlalchemy_booster/responses.py b/flask_sqlalchemy_booster/responses.py
index <HASH>..<HASH> 100644
--- a/flask_sqlalchemy_booster/responses.py
+++ b/flask_sqlalchemy_booster/responses.py
@@ -1,10 +1,11 @@
from flask.json import _json
from flask import abort, Response, request
from functools impor... | allowing filtering boolean | SuryaSankar_flask-sqlalchemy-booster | train |
b6937649ae40bfc3399a84b3406ead8f7d425781 | diff --git a/lib/text_bringer/echo_area.rb b/lib/text_bringer/echo_area.rb
index <HASH>..<HASH> 100644
--- a/lib/text_bringer/echo_area.rb
+++ b/lib/text_bringer/echo_area.rb
@@ -43,7 +43,7 @@ module TextBringer
if c == "\n"
break
end
- @window << c
+ @wind... | Display control characters in caret notation. | shugo_textbringer | train |
9444e2dc43109fc7ec10a7ef33c84cbac4ae778f | diff --git a/plugins/providers/virtualbox/action/sane_defaults.rb b/plugins/providers/virtualbox/action/sane_defaults.rb
index <HASH>..<HASH> 100644
--- a/plugins/providers/virtualbox/action/sane_defaults.rb
+++ b/plugins/providers/virtualbox/action/sane_defaults.rb
@@ -14,17 +14,6 @@ module VagrantPlugins
#... | Disable automatic ennoblement of hostiocache
This can cause behavior that requires re stat’ing
files to for the guest to realize they have
changed. Prevents manually dialing this option. | hashicorp_vagrant | train |
001f094c5e47c88a93b04e00e300202e8e1e78f5 | diff --git a/examples/gst-player.py b/examples/gst-player.py
index <HASH>..<HASH> 100755
--- a/examples/gst-player.py
+++ b/examples/gst-player.py
@@ -3,13 +3,17 @@
from __future__ import print_function
from livestreamer import Livestreamer, StreamError, PluginError, NoPluginError
-import gobject
+# PyGI http://sou... | Update gst-player.py for Gst <I>
I updated your gst example from <I> to <I> and up. | streamlink_streamlink | train |
3da82e14ad54dbbe8890e068189be0792c599a39 | diff --git a/cumulusci/cli/cci.py b/cumulusci/cli/cci.py
index <HASH>..<HASH> 100644
--- a/cumulusci/cli/cci.py
+++ b/cumulusci/cli/cci.py
@@ -959,7 +959,7 @@ def org_list(config, plain):
row = [org, org_config.default]
if isinstance(org_config, ScratchOrgConfig):
org_days = org_config.fo... | Add method for cleanly asking if an org is alive | SFDO-Tooling_CumulusCI | train |
b2abe757a1c47976453bc0a08a26ef613507ec97 | diff --git a/test/src/test/java/io/norberg/automatter/BuilderTest.java b/test/src/test/java/io/norberg/automatter/BuilderTest.java
index <HASH>..<HASH> 100644
--- a/test/src/test/java/io/norberg/automatter/BuilderTest.java
+++ b/test/src/test/java/io/norberg/automatter/BuilderTest.java
@@ -82,6 +82,11 @@ public class B... | verify: builder with (null) defaults can be copied | danielnorberg_auto-matter | train |
f2b6668f793411283ed18fc596ba631b40e09114 | diff --git a/lib/knife-azure/version.rb b/lib/knife-azure/version.rb
index <HASH>..<HASH> 100755
--- a/lib/knife-azure/version.rb
+++ b/lib/knife-azure/version.rb
@@ -1,6 +1,6 @@
module Knife
module Azure
- VERSION = "1.4.0.rc.2"
+ VERSION = "1.4.0"
MAJOR, MINOR, TINY = VERSION.split('.')
end
end | Update version to <I> for release | chef_knife-azure | train |
6123783b11bd9a8b069e0b6808c533a9c1cc912d | diff --git a/lib/api-client/http-client.js b/lib/api-client/http-client.js
index <HASH>..<HASH> 100644
--- a/lib/api-client/http-client.js
+++ b/lib/api-client/http-client.js
@@ -25,22 +25,35 @@ var HttpClient = function(config) {
this.config = config;
};
-function toDone(response, done) {
- // superagent puts t... | refactor(http client): improve request error handling
Abstract response handling and set the response message as the error
message when applicable. | camunda_camunda-bpm-sdk-js | train |
311cc2c5a9658a01af69a837bf77e10fa07de95f | diff --git a/src/Provider/TwigServiceProvider.php b/src/Provider/TwigServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Provider/TwigServiceProvider.php
+++ b/src/Provider/TwigServiceProvider.php
@@ -57,7 +57,8 @@ class TwigServiceProvider implements ServiceProviderInterface
$app['request_stack'... | Add deprecation for fields() with no record passed | bolt_bolt | train |
f158e1a3ee1023d2bfa833d46de18af5ccab7322 | diff --git a/ramda.js b/ramda.js
index <HASH>..<HASH> 100644
--- a/ramda.js
+++ b/ramda.js
@@ -450,11 +450,11 @@
* var next = ramda.ap(1, R.add)
*
*/
- R.ap = curry2(function(value, fn) {
+ R.ap = curry2(function(list, fn) {
if (typeof fn !== 'function' && typeof... | ap is for applicative functors | ramda_ramda | train |
520125ade22768727e577f71eaf6603e87873ec2 | diff --git a/owncloudclient/__init__.py b/owncloudclient/__init__.py
index <HASH>..<HASH> 100644
--- a/owncloudclient/__init__.py
+++ b/owncloudclient/__init__.py
@@ -35,15 +35,23 @@ class FileInfo():
def __init__(self, path, file_type = 'file', attributes = None):
self.path = path
+ if path[-1] ... | Fixed issues found while writing the unit tests | owncloud_pyocclient | train |
ff53563ff3db65c2826f041debd7e594a904920d | diff --git a/src/main/java/org/graylog2/Configuration.java b/src/main/java/org/graylog2/Configuration.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/graylog2/Configuration.java
+++ b/src/main/java/org/graylog2/Configuration.java
@@ -20,7 +20,6 @@
package org.graylog2;
-import java.net.UnknownHostExceptio... | make recent index storage type configurable. standard now: niofs | Graylog2_graylog2-server | train |
0794113561901f4512f02140c09fc13f63199379 | diff --git a/src/main/groovy/lang/MetaClassImpl.java b/src/main/groovy/lang/MetaClassImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/groovy/lang/MetaClassImpl.java
+++ b/src/main/groovy/lang/MetaClassImpl.java
@@ -1665,7 +1665,9 @@ public class MetaClassImpl extends MetaClass {
} catch (IOException io... | corrected a class loading problem when the groovy classes are loaded by the system loader and another loader
git-svn-id: <URL> | groovy_groovy-core | train |
d46ae1b8f094c402ac4430b11caf1f8506fc5160 | diff --git a/src/Services/DatabaseService.php b/src/Services/DatabaseService.php
index <HASH>..<HASH> 100644
--- a/src/Services/DatabaseService.php
+++ b/src/Services/DatabaseService.php
@@ -194,7 +194,7 @@ class DatabaseService implements ServiceInterface
}
/**
- * Fetch collection ordered and filtrate... | Add comment to simpleFetch method. | SebastianBerc_Repositories | train |
93c49ac6a9a6f140852c49a23a91a9efc2b205eb | diff --git a/spec/page_layout_spec.rb b/spec/page_layout_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/page_layout_spec.rb
+++ b/spec/page_layout_spec.rb
@@ -160,6 +160,46 @@ describe PDF::Reader::PageLayout do
expect(subject.to_s).to eq("Hello World")
end
end
+
+ context "with two runs... | replicate two integration specs into unit specs
In the previous commit I added some integration specs that confirm our
behaviour when extracting text from PDFs with overlapping characters as
a fake "bold" effect.
The fix is likely to be in PDF::Reader::PageLayout, so this takes a
small part of the data from those PDF... | yob_pdf-reader | train |
e207f6c767ca772ee4e68fa9e24a8333195eb26e | diff --git a/test/e2e/cronjob.go b/test/e2e/cronjob.go
index <HASH>..<HASH> 100644
--- a/test/e2e/cronjob.go
+++ b/test/e2e/cronjob.go
@@ -124,7 +124,7 @@ var _ = framework.KubeDescribe("CronJob", func() {
Expect(err).NotTo(HaveOccurred())
Expect(cronJob.Status.Active).Should(HaveLen(1))
- By("Ensuring exaclty... | Job: Fix CronJob e2e test for async Job deletion.
Now that the default delete option for Job is OrphanDependents,
Job deletion is asynchronous. | kubernetes_kubernetes | train |
8f070a139e04a0205996753b0142ece592ffc1e6 | diff --git a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java b/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java
+++ b/hazelcast/src/main/java/com/... | Fixed #<I> - Memory leak on backups since eviction wasn't triggered | hazelcast_hazelcast | train |
b7839d637d609a05e873c8781722fb2177d0eef5 | diff --git a/controller-client/src/main/java/org/jboss/as/controller/client/ExecutionContextBuilder.java b/controller-client/src/main/java/org/jboss/as/controller/client/ExecutionContextBuilder.java
index <HASH>..<HASH> 100644
--- a/controller-client/src/main/java/org/jboss/as/controller/client/ExecutionContextBuilder.... | Misc fixes to domain deployment handling
was: <I>cbcc<I>cb2bebc7a<I>e<I>c<I>ac8f0d6d | wildfly_wildfly-core | train |
516844ac9ca3a16ee2f7462a7faacd1f09ebc819 | diff --git a/src/main/java/us/bpsm/edn/printer/Printers.java b/src/main/java/us/bpsm/edn/printer/Printers.java
index <HASH>..<HASH> 100644
--- a/src/main/java/us/bpsm/edn/printer/Printers.java
+++ b/src/main/java/us/bpsm/edn/printer/Printers.java
@@ -158,6 +158,8 @@ public class Printers {
};
}
+
+
... | WIP rough non-working sketch of pretty-print
see TODO comments in source. | bpsm_edn-java | train |
0f45c1c8bcd972bc6d873dba8f09a9be937a89af | diff --git a/request-interfaces.go b/request-interfaces.go
index <HASH>..<HASH> 100644
--- a/request-interfaces.go
+++ b/request-interfaces.go
@@ -8,8 +8,14 @@ import (
// Interfaces are differentiated based on required returned values.
// All input arguments are to be pulled from Request (the only arg).
+// The Ha... | improve Handler interface documentation
Include list of request.Methods each is used to handle. | pkg_sftp | train |
870b7c1e070778cdec4de009e12cbe0cc1b55de1 | diff --git a/stabilizer/src/main/java/com/hazelcast/stabilizer/agent/workerjvm/WorkerJvmLauncher.java b/stabilizer/src/main/java/com/hazelcast/stabilizer/agent/workerjvm/WorkerJvmLauncher.java
index <HASH>..<HASH> 100644
--- a/stabilizer/src/main/java/com/hazelcast/stabilizer/agent/workerjvm/WorkerJvmLauncher.java
+++ ... | added again file exist checking due to worker and agent produces irrelevant logs | hazelcast_hazelcast-simulator | train |
fbc50a8f90dea3d92effbc9ce28eb5e7b9f012ee | diff --git a/src/main/java/com/spotify/docker/RemoveImageMojo.java b/src/main/java/com/spotify/docker/RemoveImageMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/spotify/docker/RemoveImageMojo.java
+++ b/src/main/java/com/spotify/docker/RemoveImageMojo.java
@@ -59,13 +59,13 @@ public class RemoveImageMojo ... | Default to the image tag from the image name in docker:removeImage instead of :latest | spotify_docker-maven-plugin | train |
07e203725111fef04b518e8e5f3452097e1d5edb | diff --git a/core/src/main/java/org/acegisecurity/vote/BasicAclEntryVoter.java b/core/src/main/java/org/acegisecurity/vote/BasicAclEntryVoter.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/acegisecurity/vote/BasicAclEntryVoter.java
+++ b/core/src/main/java/org/acegisecurity/vote/BasicAclEntryVoter.java
@... | Find target domain object argument in a manner that works if nulls are presented for the domain object argument. | spring-projects_spring-security | train |
ffe3c470e41dea6797771f086b9819616ee662b5 | diff --git a/buildbot_travis/steps/create_steps.py b/buildbot_travis/steps/create_steps.py
index <HASH>..<HASH> 100644
--- a/buildbot_travis/steps/create_steps.py
+++ b/buildbot_travis/steps/create_steps.py
@@ -33,9 +33,9 @@ class SetupVirtualEnv(ShellMixin, LoggingBuildStep):
name = "setup virtualenv"
sandbo... | fix issue with disabling test for UI testing
the hack I did in the first place didn't work becausei those steps are not really used, but StepFactory is used instead
so we need to use doStepIf method | buildbot_buildbot_travis | train |
a803ead87bad0de14d75dbd6ff1517abbae51a67 | diff --git a/js/bin.js b/js/bin.js
index <HASH>..<HASH> 100644
--- a/js/bin.js
+++ b/js/bin.js
@@ -237,6 +237,9 @@ URLFetchable.prototype.fetch = function(callback, opts) {
} catch (e) {
return callback(null);
}
+ }).catch(function(err) {
+ console.log(err);
+ return call... | Error-handling for URL resolvers. | dasmoth_dalliance | train |
2757f9334fb2666d365abb810313de78faf0bb69 | diff --git a/src/Queue/src/Bootloader/QueueBootloader.php b/src/Queue/src/Bootloader/QueueBootloader.php
index <HASH>..<HASH> 100644
--- a/src/Queue/src/Bootloader/QueueBootloader.php
+++ b/src/Queue/src/Bootloader/QueueBootloader.php
@@ -24,8 +24,6 @@ use Spiral\Queue\QueueInterface;
use Spiral\Queue\QueueManager;
u... | Gets rid of [spiral/sendit] dependency from [spiral/queue]
fixes #<I> | spiral_framework | train |
f2fedbae9bc4882000409baa4992dea111f1c9fb | diff --git a/integration/network_partition_test.go b/integration/network_partition_test.go
index <HASH>..<HASH> 100644
--- a/integration/network_partition_test.go
+++ b/integration/network_partition_test.go
@@ -50,7 +50,9 @@ func TestNetworkPartition5MembersLeaderInMinority(t *testing.T) {
// recover network partit... | integration: write to leader group first, or wait
Write to leader group first, or give more time to
acknowledge the leader after network partition recovery | etcd-io_etcd | train |
3ecd2c836a0ae86ab295f658754991a0d613e69f | diff --git a/spec/switch_point/query_cache_spec.rb b/spec/switch_point/query_cache_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/switch_point/query_cache_spec.rb
+++ b/spec/switch_point/query_cache_spec.rb
@@ -23,6 +23,16 @@ RSpec.describe SwitchPoint::QueryCache do
end
describe '#call' do
+ before do
+ ... | Fix test case for Rails' latest bug fix | eagletmt_switch_point | train |
58154c3600271a1f0d4798fc9a12a103dc0c949c | diff --git a/lfs/client.go b/lfs/client.go
index <HASH>..<HASH> 100644
--- a/lfs/client.go
+++ b/lfs/client.go
@@ -341,8 +341,11 @@ func UploadObject(o *objectResource, cb CopyCallback) *WrappedError {
req.ContentLength = int64(len(by))
req.Body = ioutil.NopCloser(bytes.NewReader(by))
res, wErr = doHttpRequest(re... | Check doHttpRequest() error in UploadObject()
This method was not checking the error from doHttpRequest() yet still
manipulating the reponse object and body. In some scenarios this can
cause a panic when trying to read from the nil reponse body.
Fixes #<I> | git-lfs_git-lfs | train |
88030fa3effe7c0a00d278de8eea6122cb89e6d1 | diff --git a/concrete/controllers/single_page/dashboard/pages/themes.php b/concrete/controllers/single_page/dashboard/pages/themes.php
index <HASH>..<HASH> 100644
--- a/concrete/controllers/single_page/dashboard/pages/themes.php
+++ b/concrete/controllers/single_page/dashboard/pages/themes.php
@@ -58,21 +58,29 @@ class... | Fixing users being able to delete core and active themes. | concrete5_concrete5 | train |
d55edfe602895dfcdbc53f7ae50ac80cfa26e2fe | diff --git a/state/model.go b/state/model.go
index <HASH>..<HASH> 100644
--- a/state/model.go
+++ b/state/model.go
@@ -579,9 +579,7 @@ func (m *Model) Owner() names.UserTag {
// Status returns the status of the model.
func (m *Model) Status() (status.StatusInfo, error) {
- db, closer := m.modelDatabase()
- defer cl... | state: Remove Model.modelDatabase()
This is no longer required now that a Model's State is always the
right one. | juju_juju | train |
f1fdbdb8939b04f98ad03f799090a01be88b0fb3 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -294,6 +294,15 @@ development:
- host: slave.db.int
```
+## OData
+You can switch OData writing off for your environment by setting the **odata_enabled** flag to false in your odata.yml file. For example:
+
+```rub... | Added odata_enabled flag. Check for slaves param first | RolfLawrenz_activerecord_sqlserver_crm | train |
3bd69b3af1b68da5d1b841e10f2d743b5234fa09 | diff --git a/MAVProxy/modules/mavproxy_wp.py b/MAVProxy/modules/mavproxy_wp.py
index <HASH>..<HASH> 100644
--- a/MAVProxy/modules/mavproxy_wp.py
+++ b/MAVProxy/modules/mavproxy_wp.py
@@ -408,7 +408,7 @@ class WPModule(mp_module.MPModule):
print("Moved WP %u to %f, %f at %.1fm" % (idx, lat, lon, wp.z))
- ... | wp: make movemulti work from other modules | ArduPilot_MAVProxy | train |
76ce8705c4c8047ff7ee55b268932fc37ac2256c | diff --git a/sb.js b/sb.js
index <HASH>..<HASH> 100644
--- a/sb.js
+++ b/sb.js
@@ -2406,35 +2406,45 @@ sb.events = {
var f = function() {
var e = window.event,tar = null,d= document.documentElement,b=document.body;
- e.pageX = e.clientX+d.scrollLeft+b.scrollLeft;
- e.pageY = e.clientY+d.scrollT... | added default properties for IE events in case they don't exist | surebert_surebert-framework | train |
558ae474fcbffe3821d7fe0bf8f2ac58897fdf6a | diff --git a/kubetest/azure_helpers.go b/kubetest/azure_helpers.go
index <HASH>..<HASH> 100644
--- a/kubetest/azure_helpers.go
+++ b/kubetest/azure_helpers.go
@@ -20,6 +20,7 @@ import (
"context"
"fmt"
"log"
+ "os"
"time"
resources "github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2018-05-01/resour... | Add job info tags to Azure resource groups | kubernetes_test-infra | train |
2ff2a62bd4f01df3266d13183d1f39c9b9c47a62 | diff --git a/lib/pipe.js b/lib/pipe.js
index <HASH>..<HASH> 100644
--- a/lib/pipe.js
+++ b/lib/pipe.js
@@ -22,22 +22,26 @@
}
function pipe(streams, options, callback) {
- var read = streams[0],
- fn = function() {
- callback.apply(null, arguments);
- }... | feature(pipe) call callback only on end | coderaiser_pipe-io | train |
85f435ec859981fbe5f60834bb39755829e54473 | diff --git a/webpack/config.js b/webpack/config.js
index <HASH>..<HASH> 100644
--- a/webpack/config.js
+++ b/webpack/config.js
@@ -23,6 +23,36 @@ if (ENV === 'development') {
compressing: false,
+ module: {
+ rules: [{
+ enforce: 'pre',
+ test: /Spec\.js$/,
+ include: path.resolve(... | Added tests on ./test/*Spec.js | angular-ui_ui-scroll | train |
0808d4271a495e1b6ea4f9a636e63a1c62567133 | diff --git a/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java b/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java
index <HASH>..<HASH> 100644
--- a/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java
+++ b/src/core/lombok/javac/handlers/HandleEqualsAndHashCode.java
@@ -85,6 +85,7 @@ public ... | Remove CacheStrategy compilation unit for javac | rzwitserloot_lombok | train |
8f390ba13d2b8912123122196fb25299efa72d1e | diff --git a/reference/cwltool/process.py b/reference/cwltool/process.py
index <HASH>..<HASH> 100644
--- a/reference/cwltool/process.py
+++ b/reference/cwltool/process.py
@@ -70,7 +70,7 @@ class Process(object):
if "type" not in c:
raise validate.ValidationException("Missing `type` in para... | Checking if c is a list | common-workflow-language_cwltool | train |
eb45b40958c8767222f191fcf4c79140f7a9dd75 | diff --git a/lib/bugsnag/configuration.rb b/lib/bugsnag/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/bugsnag/configuration.rb
+++ b/lib/bugsnag/configuration.rb
@@ -61,7 +61,6 @@ module Bugsnag
end
def set_request_data(key, value)
- Bugsnag.warn "Overwriting request data for key #{key.to_s}" ... | Remove over-zealous warning, fixes #<I> | bugsnag_bugsnag-ruby | train |
0f38c5d08c60011bb0110fd46787e0106cb5b647 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ with open('README.rst') as file:
setup(
name='MongoNotebookManager',
- version='0.1.3',
+ version='0.1.4',
description='A notebook manager for IPython with MongoDB as the backend.',
long_... | fix (rename) move all checkpoints to new filename. fixes #1 | laurenceputra_mongo_notebook_manager | train |
8d65c029cf7429c75df246c7e2c71610c3d76d76 | diff --git a/delorean/interface.py b/delorean/interface.py
index <HASH>..<HASH> 100644
--- a/delorean/interface.py
+++ b/delorean/interface.py
@@ -56,14 +56,14 @@ def parse(datetime_str, timezone=None, isofirst=True, dayfirst=True, yearfirst=T
.. doctest::
- >>> parse('2015-01-01 00:01:02 PST')
- ... | fixing tests no more support for ambiguous timezones | myusuf3_delorean | train |
fabbdf921d7def8887f6231e5d4ad771e4127dc3 | diff --git a/benchmark/rclpy/publisher-endurance-test.py b/benchmark/rclpy/publisher-endurance-test.py
index <HASH>..<HASH> 100644
--- a/benchmark/rclpy/publisher-endurance-test.py
+++ b/benchmark/rclpy/publisher-endurance-test.py
@@ -25,7 +25,7 @@ def main():
times = input('How many times do you want to run? ')
... | [PnP]Correct the converting from millisecond to second
Fix #<I> | RobotWebTools_rclnodejs | train |
3727e428ee96fa607158a60ab6615b1335905e61 | diff --git a/lib/rules/lint-table-groups.js b/lib/rules/lint-table-groups.js
index <HASH>..<HASH> 100644
--- a/lib/rules/lint-table-groups.js
+++ b/lib/rules/lint-table-groups.js
@@ -6,11 +6,12 @@ const message = 'Tables must have a table group (thead, tbody or tfoot).';
const ALLOWED_TABLE_CHILDREN = ['thead', 'tbody... | feat(lint-table-groups): allow TextNode | ember-template-lint_ember-template-lint | train |
6ba621ac9265e002066b77d41d0053b950ffd75e | diff --git a/lib/vagrant/action/builtin/cleanup_disks.rb b/lib/vagrant/action/builtin/cleanup_disks.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/action/builtin/cleanup_disks.rb
+++ b/lib/vagrant/action/builtin/cleanup_disks.rb
@@ -18,7 +18,9 @@ module Vagrant
if !defined_disks.empty?
if mac... | Add ability to cleanup and close mediums for a guest | hashicorp_vagrant | train |
9e44fd6623d3d567f00c72ffe97dd64e6dc9fbe0 | diff --git a/generators/dart.js b/generators/dart.js
index <HASH>..<HASH> 100644
--- a/generators/dart.js
+++ b/generators/dart.js
@@ -45,6 +45,9 @@ var toDart = function (curlCommand) {
}
var hasData = r.data
+ if (typeof r.data === 'number') {
+ r.data = r.data.toString()
+ }
if (hasData) {
// es... | check first for all numerical and convert to string | NickCarneiro_curlconverter | train |
856957ee7e889673ca7a1c789427c89adcc4f146 | diff --git a/tests/phpunit/unit/Extensions/BaseExtensionTest.php b/tests/phpunit/unit/Extensions/BaseExtensionTest.php
index <HASH>..<HASH> 100644
--- a/tests/phpunit/unit/Extensions/BaseExtensionTest.php
+++ b/tests/phpunit/unit/Extensions/BaseExtensionTest.php
@@ -407,34 +407,6 @@ class BaseExtensionTest extends Abst... | [Tests] Remove outdated menu tests | bolt_bolt | train |
f7b3f553b332b6cf81aefa931c4b5cbd5d36a03b | diff --git a/tests/test_engines.py b/tests/test_engines.py
index <HASH>..<HASH> 100644
--- a/tests/test_engines.py
+++ b/tests/test_engines.py
@@ -3,6 +3,8 @@
"""Tests of multiple engines for django_coverage_plugin."""
+from django_coverage_plugin import DjangoTemplatePluginException
+
from .plugin_test import Dj... | Add a test that all engines must be debug. | nedbat_django_coverage_plugin | train |
ee272f75508e42883c487d9f6d9833642f93dab7 | diff --git a/bin/replace.js b/bin/replace.js
index <HASH>..<HASH> 100755
--- a/bin/replace.js
+++ b/bin/replace.js
@@ -29,10 +29,14 @@ var options = nomnom.opts({
string: '-p, --preview',
help: "Preview the replacements, but don't modify files"
},
- count: {
- string: '-n COUNT',
+ m... | -c, --count to show number of occurances per file | raphamorim_node-replace | train |
d4efc129ffcdc3299ad4a6122f244ee3b48b0aa2 | diff --git a/openpnm/network/GenericNetwork.py b/openpnm/network/GenericNetwork.py
index <HASH>..<HASH> 100644
--- a/openpnm/network/GenericNetwork.py
+++ b/openpnm/network/GenericNetwork.py
@@ -9,6 +9,8 @@ import openpnm.models.topology as tm
logger = logging.getLogger(__name__)
ws = Workspace()
+from openpnm.util... | Speed up num_neighbors when flatten is False | PMEAL_OpenPNM | train |
94ca7ec4d5ebb0b32e89ea6a58df207ead5ead0a | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,6 +1,6 @@
"use strict";
-import React, {useState} from 'react'
+import React, {useState, useEffect } from 'react'
const getNavStyles = (indx, length) => {
let styles = []
@@ -59,6 +59,10 @@ export d... | fix next button visibility on steps length changes | srdjan_react-multistep | train |
b72b2f1bfd3ca0681adf8b6484ecaa8041929254 | diff --git a/src/edeposit/amqp/ltp/settings.py b/src/edeposit/amqp/ltp/settings.py
index <HASH>..<HASH> 100755
--- a/src/edeposit/amqp/ltp/settings.py
+++ b/src/edeposit/amqp/ltp/settings.py
@@ -28,6 +28,9 @@ import os.path
# Module configuration ========================================================
+#: Path to... | #7: Added TEMP_DIR to settings.py. | edeposit_edeposit.amqp.ltp | train |
b2d9f65cd0fc891685d1e1aff8e87bd958a8b4fc | diff --git a/Config/routes.php b/Config/routes.php
index <HASH>..<HASH> 100644
--- a/Config/routes.php
+++ b/Config/routes.php
@@ -1,2 +1,3 @@
<?php
- Router::parseExtensions('pdf');
\ No newline at end of file
+ $extensions = array_merge(array('pdf'), Router::extensions());
+ Router::parseExtensions($extensions);
\ N... | avoid overriding already configured extensions, merge instead | FriendsOfCake_CakePdf | train |
83a6ac3fee8fd538ce7e0088913ff54f0f9bcb6f | diff --git a/actionpack/lib/action_dispatch/middleware/host_authorization.rb b/actionpack/lib/action_dispatch/middleware/host_authorization.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/middleware/host_authorization.rb
+++ b/actionpack/lib/action_dispatch/middleware/host_authorization.rb
@@ -103,1... | Prevent open redirect when allowed host starts with a dot
[CVE-<I>-<I>] | rails_rails | train |
b747f0f741eccceee697e7c0525b61064bfab415 | diff --git a/satpy/readers/netcdf_utils.py b/satpy/readers/netcdf_utils.py
index <HASH>..<HASH> 100644
--- a/satpy/readers/netcdf_utils.py
+++ b/satpy/readers/netcdf_utils.py
@@ -201,7 +201,7 @@ class NetCDF4FileHandler(BaseFileHandler):
# https://github.com/pydata/xarray/issues/2954#issuecomment-491221266... | Fix bad return statement
The previous commit cannot possibly have been running at all. | pytroll_satpy | train |
c327f39eef63aa182e4c1b4fe98a3423722e54a5 | diff --git a/jpx/src/main/java/io/jenetics/jpx/GPX.java b/jpx/src/main/java/io/jenetics/jpx/GPX.java
index <HASH>..<HASH> 100644
--- a/jpx/src/main/java/io/jenetics/jpx/GPX.java
+++ b/jpx/src/main/java/io/jenetics/jpx/GPX.java
@@ -356,6 +356,18 @@ public final class GPX implements Serializable {
}
/**
+ * Set... | #3: Add additional GPX.Builder method.
The method lets you change the GPX creator. | jenetics_jpx | train |
d085c09b74c172a9e1f355f6f138ad040d19bbe7 | diff --git a/pygccxml/parser/source_reader.py b/pygccxml/parser/source_reader.py
index <HASH>..<HASH> 100644
--- a/pygccxml/parser/source_reader.py
+++ b/pygccxml/parser/source_reader.py
@@ -225,13 +225,12 @@ class source_reader_t(object):
if self.__config.define_symbols:
symbols = self.__config.d... | Improve indentation for pylint check | gccxml_pygccxml | train |
b81380275e9e5109ec36dca81008ab7c0847db2c | diff --git a/tests/test_check_parallel.py b/tests/test_check_parallel.py
index <HASH>..<HASH> 100644
--- a/tests/test_check_parallel.py
+++ b/tests/test_check_parallel.py
@@ -413,15 +413,9 @@ class TestCheckParallel:
(3, 1, 1),
(3, 1, 2),
(3, 1, 3),
- (3, 5, 1),
- ... | Don't assume test runners have more than 2 cores available | PyCQA_pylint | train |
89b095fbdcb4eb6045db0e9ca5257a3c23582eb5 | diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/clusterframework/types/ResourceProfileTest.java b/flink-runtime/src/test/java/org/apache/flink/runtime/clusterframework/types/ResourceProfileTest.java
index <HASH>..<HASH> 100755
--- a/flink-runtime/src/test/java/org/apache/flink/runtime/clusterframework... | [FLINK-<I>][tests] Simplify ResourceProfileTest tests
This closes #<I>. | apache_flink | train |
34ae393a8de8743200a7ef52d77a0d141ed63bf4 | diff --git a/lib/rails_best_practices/reviews/needless_deep_nesting_review.rb b/lib/rails_best_practices/reviews/needless_deep_nesting_review.rb
index <HASH>..<HASH> 100644
--- a/lib/rails_best_practices/reviews/needless_deep_nesting_review.rb
+++ b/lib/rails_best_practices/reviews/needless_deep_nesting_review.rb
@@ -6... | Auto corrected by following Style/OrAssignment | flyerhzm_rails_best_practices | train |
93cc78a6180475275df3b63c87b08886cf70e1e9 | diff --git a/demo/components/victory-chart-demo.js b/demo/components/victory-chart-demo.js
index <HASH>..<HASH> 100644
--- a/demo/components/victory-chart-demo.js
+++ b/demo/components/victory-chart-demo.js
@@ -386,7 +386,7 @@ class App extends React.Component {
<VictoryChart style={chartStyle} scale={"lin... | cleaning up some linting errors | FormidableLabs_victory | train |
ed2fc4a1b4d2d260bb7402773ee7f9bf0081da1c | diff --git a/ObjJAcornCompiler.js b/ObjJAcornCompiler.js
index <HASH>..<HASH> 100644
--- a/ObjJAcornCompiler.js
+++ b/ObjJAcornCompiler.js
@@ -2435,7 +2435,8 @@ ClassDeclarationStatement: function(node, st, c, format) {
ivarIdentifier = ivarDecl.id,
ivarName = ivarIdentifier.name,
... | Commit from the Cappuccino project: Fixed: Add get and set instance methods to class definition when ivar has accessors
<URL> | mrcarlberg_objj-transpiler | train |
620941c6709a884f329e80afe5e90396da242e4e | diff --git a/nhe/geo/surface/base.py b/nhe/geo/surface/base.py
index <HASH>..<HASH> 100644
--- a/nhe/geo/surface/base.py
+++ b/nhe/geo/surface/base.py
@@ -8,12 +8,15 @@ class BaseSurface(object):
"""
Base class for surface in 3D-space.
- Subclasses must implement :meth:`get_mesh`, :meth:`get_strike` and
... | geo/surface/base: mesh object is cached by BaseSurface.get_mesh() | gem_oq-engine | train |
82521fe105cad00e8168ee418a32dc19fce2c6bc | diff --git a/src/Ant/ChateaClient/Client/ApiInterface.php b/src/Ant/ChateaClient/Client/ApiInterface.php
index <HASH>..<HASH> 100755
--- a/src/Ant/ChateaClient/Client/ApiInterface.php
+++ b/src/Ant/ChateaClient/Client/ApiInterface.php
@@ -294,7 +294,7 @@ interface ApiInterface
* "email"=> "newUserName@an... | Update ApiInterface.php
include ip ApiInterface | antwebes_ChateaClientLib | train |
c8593c77c4a11bdb48c2e537993f0e25d10e3a3c | diff --git a/services/circleci/circleci.service.js b/services/circleci/circleci.service.js
index <HASH>..<HASH> 100644
--- a/services/circleci/circleci.service.js
+++ b/services/circleci/circleci.service.js
@@ -57,7 +57,7 @@ module.exports = class CircleCi extends BaseJsonService {
return {
base: 'circleci'... | Handle CircleCI urls with token correctly (#<I>) | badges_shields | train |
517db3113b7c4443f20a4e989d4bae015c5c0a39 | diff --git a/pygmsh/helpers.py b/pygmsh/helpers.py
index <HASH>..<HASH> 100644
--- a/pygmsh/helpers.py
+++ b/pygmsh/helpers.py
@@ -125,9 +125,14 @@ def generate_mesh(
] + extra_gmsh_arguments
# https://stackoverflow.com/a/803421/353337
- p = subprocess.Popen(
- [gmsh_executable] + args, stdout=sub... | exception: is gmsh installed? | nschloe_pygmsh | train |
c7519ecbbab5ebafdaeeded8014d3f8dee46228c | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -1,5 +1,6 @@
var koa = require('koa')
-var router = require('./server/router')();
+var routes = require('./server/routes')
+var router = require('./server/router')(routes);
var session = require('koa-session')
var mount = r... | Added dropbox.js. Removed routes from router.js | transloadit_uppy-server | train |
2a28919c8005b65b0e114d1cc03c57c0dd248989 | diff --git a/symphony/lib/toolkit/class.htmlpage.php b/symphony/lib/toolkit/class.htmlpage.php
index <HASH>..<HASH> 100755
--- a/symphony/lib/toolkit/class.htmlpage.php
+++ b/symphony/lib/toolkit/class.htmlpage.php
@@ -66,7 +66,7 @@
}
function addElementToHead($obj, $position=NULL){
- if(($position && isset... | Fix resolving conflicts in HTMLPage::addElementToHead. | symphonycms_symphony-2 | train |
222856d7da65a3f8194c9da6808bffc643b05d3c | diff --git a/lib/github_api/request.rb b/lib/github_api/request.rb
index <HASH>..<HASH> 100644
--- a/lib/github_api/request.rb
+++ b/lib/github_api/request.rb
@@ -43,9 +43,10 @@ module Github
case method.to_sym
when *(METHODS - METHODS_WITH_BODIES)
request.url(path, params)
+ reque... | Remove json encoding body and add ability to pass body for delete request. | piotrmurach_github | train |
c72dc38bd320067500c5ca169e0d9c6463086bb3 | diff --git a/hrp/boomer.go b/hrp/boomer.go
index <HASH>..<HASH> 100644
--- a/hrp/boomer.go
+++ b/hrp/boomer.go
@@ -1,7 +1,11 @@
package hrp
import (
+ "fmt"
+ "github.com/httprunner/httprunner/v4/hrp/internal/builtin"
+ "io/ioutil"
"os"
+ "path/filepath"
"sync"
"time"
@@ -194,7 +198,30 @@ func (b *HRPBoomer... | suport for distributing tasks that contain plugins | HttpRunner_HttpRunner | train |
338328fa15444d8415b84689839ecb0e68431bf1 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ IMPROVEMENTS:
- providers/docker: `build_args` config to specify extra args for
`docker build`. [GH-3684]
+BUG FIXES:
+
+ - core: Hostnames can be one character. [GH-3713]
+
## 1.6.1... | kernel/v2: hostnames can be one character [GH-<I>] | hashicorp_vagrant | train |
1c6a4bfed7c3e59dc7ca5affe9e9d9543d27a95d | diff --git a/blade-kit/src/main/java/com/hellokaton/blade/kit/I18nKit.java b/blade-kit/src/main/java/com/hellokaton/blade/kit/I18nKit.java
index <HASH>..<HASH> 100644
--- a/blade-kit/src/main/java/com/hellokaton/blade/kit/I18nKit.java
+++ b/blade-kit/src/main/java/com/hellokaton/blade/kit/I18nKit.java
@@ -11,56 +11,60 ... | :bug: fixed local only language | lets-blade_blade | train |
18aeaed0a61b321444bac13a38d27d986f7271ee | diff --git a/build/js/IFrame.js b/build/js/IFrame.js
index <HASH>..<HASH> 100644
--- a/build/js/IFrame.js
+++ b/build/js/IFrame.js
@@ -30,10 +30,13 @@ const SELECTOR_HEADER_MENU_ITEM = '.main-header .dropdown-item, .main-header .na
const CLASS_NAME_IFRAME_MODE = 'iframe-mode'
const Default = {
- click(item) {
+ t... | add event callback's (tabClicked, tabChanged, tabCreated) | ColorlibHQ_AdminLTE | train |
ceca8ecbeab017fc3633bc686f4586b03de1baf2 | diff --git a/paxtools-console/src/main/java/org/biopax/paxtools/PaxtoolsMain.java b/paxtools-console/src/main/java/org/biopax/paxtools/PaxtoolsMain.java
index <HASH>..<HASH> 100644
--- a/paxtools-console/src/main/java/org/biopax/paxtools/PaxtoolsMain.java
+++ b/paxtools-console/src/main/java/org/biopax/paxtools/Paxtool... | Added new "blacklist" command, and updated toss, toSifnx to use blacklist.txt in the curr. dir. if present. | BioPAX_Paxtools | train |
bf1bb749ea6d4596a35f851d6d7a5866438d2960 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -85,7 +85,20 @@ create_git_describe()
_long_description = read_readme()
-sphinx_requires = ["sphinx>=1.4,<1.6", "sphinx_rtd_theme", ]
+sphinx_requires = []
+
+# Only require sphinx for CI and readthedocs.org.
+if (
+ ... | Only require sphinx for CI and READTHEDOCS in setup.py. | array-split_array_split | train |
f265d5c5eebbd76048228573ba63d2ac34b554fa | diff --git a/pkg/util/throttle.go b/pkg/util/throttle.go
index <HASH>..<HASH> 100644
--- a/pkg/util/throttle.go
+++ b/pkg/util/throttle.go
@@ -16,10 +16,7 @@ limitations under the License.
package util
-import (
- "sync"
- "time"
-)
+import "github.com/juju/ratelimit"
type RateLimiter interface {
// CanAccept... | Switch token bucket rate limiter to github.com/juju/ratelimit | kubernetes_kubernetes | train |
3972046b77bf37fa73b918c94d957c86d860d2fe | diff --git a/libraries/lithium/data/Model.php b/libraries/lithium/data/Model.php
index <HASH>..<HASH> 100644
--- a/libraries/lithium/data/Model.php
+++ b/libraries/lithium/data/Model.php
@@ -358,6 +358,7 @@ class Model extends \lithium\core\StaticObject {
* Allows the use of syntactic-sugar like `Model::all()` inste... | Adding reference link to `\data\Model::__callStatic()`. | UnionOfRAD_framework | train |
811355353bea8916049f0acb6be961608c555496 | diff --git a/version/osversion.go b/version/osversion.go
index <HASH>..<HASH> 100644
--- a/version/osversion.go
+++ b/version/osversion.go
@@ -53,9 +53,11 @@ func darwinVersionFromKernelVersion(getKernelVersion kernelVersionFunc) string {
return darwinSeriesFromMajorVersion(majorVersion)
}
-// TODO(jam): 2014-05-0... | document bug #<I> for how we might extend the mapping in the future | juju_juju | train |
0c22e425762c4d0286134979a0a97e66527fb485 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ extras_require={}
# Notebook dependencies of IPython 3
extras_require['notebook-dependencies'] = ['ipython', 'pyzmq', 'jinja2', 'tornado',
- 'jsonschema', 'ipython'... | Fixed duplicate entry in extras_require and added 'notebook' | pyviz_holoviews | train |
888884a39962cb4cd8014f32e5fe5121330378e2 | diff --git a/rpcserver.go b/rpcserver.go
index <HASH>..<HASH> 100644
--- a/rpcserver.go
+++ b/rpcserver.go
@@ -2327,7 +2327,7 @@ func handleGetRawMempool(s *rpcServer, cmd btcjson.Cmd, closeChan <-chan struct{
}
for _, txIn := range desc.Tx.MsgTx().TxIn {
hash := &txIn.PreviousOutPoint.Hash
- if s.serve... | Use .haveTransaction in new getmempool RPC code.
The mempool is already locked and the exported version locks it, so the
unexported version is needed. | btcsuite_btcd | train |
a28244430f9e7048fc625e02d8478c46f47c30b1 | diff --git a/packages/@ember/-internals/runtime/lib/mixins/-proxy.js b/packages/@ember/-internals/runtime/lib/mixins/-proxy.js
index <HASH>..<HASH> 100644
--- a/packages/@ember/-internals/runtime/lib/mixins/-proxy.js
+++ b/packages/@ember/-internals/runtime/lib/mixins/-proxy.js
@@ -18,14 +18,6 @@ import {
import { set... | [BUGFIX lts] Ensure inheritable observers on object proxies are string based
Fixes #<I> | emberjs_ember.js | train |
c03da67aabaab6852020edf8c28533d88c87e43f | diff --git a/git/cmd.py b/git/cmd.py
index <HASH>..<HASH> 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -103,7 +103,7 @@ def handle_process_output(process, stdout_handler, stderr_handler,
for name, stream, handler in pumps:
t = threading.Thread(target=pump_stream,
args=(cmdline... | Set daemon attribute instead of using setDaemon method that was deprecated in Python <I> | gitpython-developers_GitPython | train |
0864c7db27fef1156f1cda6a5783e67bad0f298f | diff --git a/jf_agent/git/gitlab_client.py b/jf_agent/git/gitlab_client.py
index <HASH>..<HASH> 100644
--- a/jf_agent/git/gitlab_client.py
+++ b/jf_agent/git/gitlab_client.py
@@ -22,7 +22,7 @@ def log_and_print_request_error(e, action='making request', log_as_exception=Fal
if log_as_exception:
agent_log... | include traceback for gitlab errors (#<I>) | Jellyfish-AI_jf_agent | train |
ad21465b3a40f6c9e38fa58ba85b8e86eda47ca3 | diff --git a/lib/middlewares/referrerPolicy.js b/lib/middlewares/referrerPolicy.js
index <HASH>..<HASH> 100644
--- a/lib/middlewares/referrerPolicy.js
+++ b/lib/middlewares/referrerPolicy.js
@@ -21,7 +21,7 @@ module.exports = options => {
const opts = utils.merge(options, ctx.securityOptions.refererPolicy);
i... | fix: fix referrer-policy enum check (#<I>) | eggjs_egg-security | train |
bf3c65f25f0a76e61b8e75bdb460b9a6cb0a44c4 | diff --git a/server/bundler/assets-writer.js b/server/bundler/assets-writer.js
index <HASH>..<HASH> 100644
--- a/server/bundler/assets-writer.js
+++ b/server/bundler/assets-writer.js
@@ -49,9 +49,15 @@ Object.assign( AssetsWriter.prototype, {
for ( const name in stats.assetsByChunkName ) {
// make the manifest... | Build: Fix the assets writer when building sourcemaps (#<I>)
The assets writer assumed that every chunk only contained one asset, but when we build with sourcemaps, each chunk contains two assets: the chunk itself and the sourcemap for that chunk.
Teach the asset writer to deal with this and pick out the js file wh... | Automattic_wp-calypso | train |
a4af408bd53288443f47f409bd7a3192abbacb2b | diff --git a/horizon/main_test.go b/horizon/main_test.go
index <HASH>..<HASH> 100644
--- a/horizon/main_test.go
+++ b/horizon/main_test.go
@@ -47,6 +47,7 @@ var _ = Describe("Horizon", func() {
Expect(account.ID).To(Equal("GBRPYHIL2CI3FNQ4BXLFMNDLFJUNPU2HY3ZMFSHONUCEOASW7QC7OX2H"))
Expect(account.PT).To(Equal("... | Adds support for Data in horizon.LoadAccount (#<I>) | stellar_go-stellar-base | train |
eeb82ae463a4139abd7f9b98e5a131cc93641ddf | diff --git a/Controller/TeamController.php b/Controller/TeamController.php
index <HASH>..<HASH> 100644
--- a/Controller/TeamController.php
+++ b/Controller/TeamController.php
@@ -963,6 +963,13 @@ class TeamController extends Controller
{
$workspace = $team->getWorkspace();
$this->checkToolAccess(... | Fixes access to a team as a member | claroline_TeamBundle | train |
4b6f7ec94531e2346c3fbf5aeea9dfc8f5446ff6 | diff --git a/elasticsearch-dsl/lib/elasticsearch/dsl/search/queries/match.rb b/elasticsearch-dsl/lib/elasticsearch/dsl/search/queries/match.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-dsl/lib/elasticsearch/dsl/search/queries/match.rb
+++ b/elasticsearch-dsl/lib/elasticsearch/dsl/search/queries/match.rb
@@ -26,6 ... | [DSL] Added fuzziness option to the "Match" query
Closes #<I> | elastic_elasticsearch-ruby | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.