hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
123da4dd948a2bf9939ebde59675b0fd22fc2662 | diff --git a/lib/oauth2.js b/lib/oauth2.js
index <HASH>..<HASH> 100755
--- a/lib/oauth2.js
+++ b/lib/oauth2.js
@@ -149,6 +149,13 @@ Strategy.prototype.makeRequest = function makeRequest(options, done) {
}
}
+ // CASE: e.g. auth url is wrong
+ if (!body) {
+ ... | 🎨 error handling if auth url is wrong
no issue | TryGhost_passport-ghost | train |
d2063cf7c42b187a26fdd297ab23194d94d950cf | diff --git a/lucene/src/main/java/com/orientechnologies/lucene/operator/OLuceneOperatorFactory.java b/lucene/src/main/java/com/orientechnologies/lucene/operator/OLuceneOperatorFactory.java
index <HASH>..<HASH> 100644
--- a/lucene/src/main/java/com/orientechnologies/lucene/operator/OLuceneOperatorFactory.java
+++ b/luce... | enables old lucene operator until all will be migrated | orientechnologies_orientdb | train |
72adb4c0f5815386ee4f290d2f1ca757d99ef08c | diff --git a/src/Proxy/ProxyTrait.php b/src/Proxy/ProxyTrait.php
index <HASH>..<HASH> 100644
--- a/src/Proxy/ProxyTrait.php
+++ b/src/Proxy/ProxyTrait.php
@@ -36,7 +36,6 @@ use function array_flip;
use function array_keys;
use function array_pop;
use function class_exists;
-use function class_implements;
use functi... | Remove not used "use" in ProxyTrait | TeknooSoftware_states | train |
80d2fcfb6c1719f7087fb8792b9d69c17697b690 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -40,6 +40,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The argument `field` within the `OrderByClause` used for `@orderBy` will be renamed to `column`
in v5 https... | Remove broken NOT from @whereConstraints #<I> (#<I>) | nuwave_lighthouse | train |
d229584946de3eee27d8d78907dcd63c48f8255c | diff --git a/quilt/error.py b/quilt/error.py
index <HASH>..<HASH> 100644
--- a/quilt/error.py
+++ b/quilt/error.py
@@ -22,7 +22,14 @@
class QuiltError(Exception):
pass
+
class NoPatchesInSeries(QuiltError):
def __str__(self):
return "No patch in series file %s" % self.args[0].series_file
+
+
+c... | Add new NoAppliedPatch error class
The class is intended to be raised if a no applied patches are
available. | bjoernricks_python-quilt | train |
51b973ac09f593c4dfc057c7a0348fb424e0d281 | diff --git a/src/app/Exceptions/Template.php b/src/app/Exceptions/Template.php
index <HASH>..<HASH> 100644
--- a/src/app/Exceptions/Template.php
+++ b/src/app/Exceptions/Template.php
@@ -17,7 +17,7 @@ class Template extends EnsoException
public static function unknownRootAttributes($attrs)
{
return n... | fixed wrong placeholder name in form template validation | laravel-enso_FormBuilder | train |
155c3fc4361df1d2700e4c51963570060c671693 | diff --git a/src/tagify.js b/src/tagify.js
index <HASH>..<HASH> 100644
--- a/src/tagify.js
+++ b/src/tagify.js
@@ -14,10 +14,14 @@ import events, { triggerChangeEvent } from './parts/events'
*/
function Tagify( input, settings ){
if( !input ){
- console.warn('Tagify: ', 'input element not found', input)
... | [bugfix] mock tagify methods when input element does not exists | yairEO_tagify | train |
55e625ceaf5b7b935d61144bd2c560790075d742 | diff --git a/lib/summary.js b/lib/summary.js
index <HASH>..<HASH> 100644
--- a/lib/summary.js
+++ b/lib/summary.js
@@ -255,7 +255,7 @@ _.assign(RunSummary, {
emitter.on('request', function (err, o) {
if (err || !(o && o.response)) { return; }
- var size = o.response.size(),
+ ... | Added tests and fixed issue with size function missing from response | postmanlabs_newman | train |
b812a1d8f670443bfc48f6c294c4ef2b81299805 | diff --git a/pyVmomi/VmomiSupport.py b/pyVmomi/VmomiSupport.py
index <HASH>..<HASH> 100644
--- a/pyVmomi/VmomiSupport.py
+++ b/pyVmomi/VmomiSupport.py
@@ -1260,9 +1260,6 @@ class _BuildVersions:
def GetNamespace(self, vmodlNs):
return self._nsMap[vmodlNs]
- def GetInternalNamespace(self, vmodlNs):
- ... | Support for build-time versions in pyVmomi
Since introduction of meta-versions and related
generated versions, we need facility, allowing
code to specify those versions during run-time.
(Note that although version classes are well-
defined, the particular versions that correspond
to a class change from build to build... | vmware_pyvmomi | train |
8c1c8e08eb799cdb9f157ff65f9a23fdba22f6e4 | diff --git a/cleverhans/attacks_tfe.py b/cleverhans/attacks_tfe.py
index <HASH>..<HASH> 100644
--- a/cleverhans/attacks_tfe.py
+++ b/cleverhans/attacks_tfe.py
@@ -1,8 +1,10 @@
from abc import ABCMeta
-import numpy as np
-from six.moves import xrange
+from distutils.version import LooseVersion
import warnings
import ... | fix imports for attacks_tfe.py | tensorflow_cleverhans | train |
924f963e695077fcce1128f53f97bcce239172f7 | diff --git a/executor/distsql.go b/executor/distsql.go
index <HASH>..<HASH> 100644
--- a/executor/distsql.go
+++ b/executor/distsql.go
@@ -374,6 +374,9 @@ type IndexLookUpExecutor struct {
// extraPIDColumnIndex is used for partition reader to add an extra partition ID column, default -1
extraPIDColumnIndex offse... | executor: call cancel when closing IndexLookUpExecutor (#<I>) | pingcap_tidb | train |
5739ca8e5b29250219e6b8d90b3d1dfe38db76f9 | diff --git a/addon/affinity-engine/configs/affinity-engine.js b/addon/affinity-engine/configs/affinity-engine.js
index <HASH>..<HASH> 100644
--- a/addon/affinity-engine/configs/affinity-engine.js
+++ b/addon/affinity-engine/configs/affinity-engine.js
@@ -1,33 +1,35 @@
export default {
priority: 0,
- all: {
- at... | prevent default config conflicts with user config | affinity-engine_affinity-engine | train |
3fedd51e290d7ea9410c804b48f68fa3b1f41e9c | diff --git a/lib/https/index.js b/lib/https/index.js
index <HASH>..<HASH> 100644
--- a/lib/https/index.js
+++ b/lib/https/index.js
@@ -173,6 +173,10 @@ function _handleWebsocket(socket, clientIp, clientPort, callback, wss) {
}
data.realUrl = fullUrl = matchedUrl = util.encodeNonAsciiChar(ruleUrlValue)... | refactor: websocket | avwo_whistle | train |
b2154dd95a470d38fe7f98ecbd04a2a0aa5aa3d5 | diff --git a/lib/hako/schedulers/ecs.rb b/lib/hako/schedulers/ecs.rb
index <HASH>..<HASH> 100644
--- a/lib/hako/schedulers/ecs.rb
+++ b/lib/hako/schedulers/ecs.rb
@@ -500,6 +500,7 @@ module Hako
],
},
count: 1,
+ placement_constraints: @placement_constraints,
start... | support placement_constraints to run_task | eagletmt_hako | train |
ffee2c5abc5231b0b7fa6f3e10e38de6fdda3c66 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
# html-validator
-A [Node.js](https://nodejs.org/) module for validating html using [validator.w3.org/nu](http://validator.w3.org/nu/)
+A [Node.js](https://nodejs.org/) module for validating html using [v... | Removes use strict. Switches to https (patch) | zrrrzzt_html-validator | train |
7e6fa4a7d217d8e5f6d80d41c15e67abc8845e39 | diff --git a/server-coreless/src/main/java/org/openqa/selenium/server/HtmlIdentifier.java b/server-coreless/src/main/java/org/openqa/selenium/server/HtmlIdentifier.java
index <HASH>..<HASH> 100644
--- a/server-coreless/src/main/java/org/openqa/selenium/server/HtmlIdentifier.java
+++ b/server-coreless/src/main/java/org/... | fix for drudgereport.com: apparently conservatives don't believe in valid HTML. this rule should help without hurting things too much
r<I> | SeleniumHQ_selenium | train |
0e710ffbd4d8e119f7cdbcfe1024dd0e01950d3c | diff --git a/test/filter.js b/test/filter.js
index <HASH>..<HASH> 100644
--- a/test/filter.js
+++ b/test/filter.js
@@ -523,6 +523,14 @@ test('with a between query', t => {
run('permits', options, 211, t)
})
+test('with a OBJECTID query on data that requires dynamic OBJECTID generation', t => {
+ const options = ... | Add test to filter.js that tests where parameter with OBJECTID on data without a predefined OBJECTID property. | koopjs_winnow | train |
52c9fe3340f540d793289952f14190b97bc53b8f | diff --git a/samples/core/src/test/java/io/oasp/gastronomy/restaurant/general/common/RestTestClientBuilder.java b/samples/core/src/test/java/io/oasp/gastronomy/restaurant/general/common/RestTestClientBuilder.java
index <HASH>..<HASH> 100644
--- a/samples/core/src/test/java/io/oasp/gastronomy/restaurant/general/common/R... | added status check in constructor of RestTestClientBuilder. Renamed 'user' property to 'lign'. Removed possibility to set centralized 'login' in application.properties | oasp_oasp4j | train |
bc05c19ae4be308b6b8169a3af676bdc03033feb | diff --git a/resources/pages/AppContainer.js b/resources/pages/AppContainer.js
index <HASH>..<HASH> 100644
--- a/resources/pages/AppContainer.js
+++ b/resources/pages/AppContainer.js
@@ -4,32 +4,31 @@ import {hot} from 'react-hot-loader';
import App from 'vendor/miaoxing/app/modules/app';
class AppContainer extends... | feat: 完善AppContainer | miaoxing_admin | train |
37d29a7ab1df8d3bc21fcdbb6b07e66cc3dd0393 | diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index <HASH>..<HASH> 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,8 +6,6 @@ variables:
WEB_DOCUMENT_ROOT: $CI_PROJECT_DIR/development/public
GIT_STRATEGY: clone
LOG_STDOUT: $CI_PROJECT_DIR/stdout.log
- PERCY_BRANCH: $CI_DEV_BRANCH
- PERCY_TARGE... | NEXT-<I> - Improve cypress percy integration in platform | shopware_platform | train |
20ca67d1926e6af2e6dd81a268fdfa973ba4d7ff | diff --git a/src/main/java/org/vesalainen/grammar/state/DFA.java b/src/main/java/org/vesalainen/grammar/state/DFA.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/vesalainen/grammar/state/DFA.java
+++ b/src/main/java/org/vesalainen/grammar/state/DFA.java
@@ -26,6 +26,7 @@ import java.util.HashSet;
import java.... | Changing to new DiGraph(Iterator) interface. | tvesalainen_lpg | train |
b2f3e83754916013f4f1f88a1e06d5ca4fe5ba01 | diff --git a/eventbinder/src/main/java/com/google/web/bindery/event/gwt/rebind/binder/EventBinderGenerator.java b/eventbinder/src/main/java/com/google/web/bindery/event/gwt/rebind/binder/EventBinderGenerator.java
index <HASH>..<HASH> 100644
--- a/eventbinder/src/main/java/com/google/web/bindery/event/gwt/rebind/binder/... | Remove dependency on the Preconditions class, which is being remove in GWT <I>. | google_gwteventbinder | train |
7bbf56be5119ec801a44e39fcc7b9bd761bccb65 | diff --git a/presto-main/src/main/java/com/facebook/presto/operator/TaskContext.java b/presto-main/src/main/java/com/facebook/presto/operator/TaskContext.java
index <HASH>..<HASH> 100644
--- a/presto-main/src/main/java/com/facebook/presto/operator/TaskContext.java
+++ b/presto-main/src/main/java/com/facebook/presto/ope... | Simplify recording of task start and end time stats | prestodb_presto | train |
c60b6d3cbf20b7fb274051a9b0a56cf4e53b0e0e | diff --git a/providence-generator-java/src/main/java/net/morimekta/providence/generator/format/java/messages/BuilderCommonMemberFormatter.java b/providence-generator-java/src/main/java/net/morimekta/providence/generator/format/java/messages/BuilderCommonMemberFormatter.java
index <HASH>..<HASH> 100644
--- a/providence-... | Correct use @NonNull not @Nullable for ref enum setter. | morimekta_providence | train |
b7bb3c3ba92945688f07056f4905a69d3cab9ef2 | diff --git a/lib/rubycritic/smell.rb b/lib/rubycritic/smell.rb
index <HASH>..<HASH> 100644
--- a/lib/rubycritic/smell.rb
+++ b/lib/rubycritic/smell.rb
@@ -11,6 +11,10 @@ module Rubycritic
attribute :message
attribute :score
attribute :type
+
+ def paths
+ locations.map(&:path)
+ end
end
... | Add a paths reader to Smell | whitesmith_rubycritic | train |
88c008970ba447498d646c1072dc5a90e7b3c42e | diff --git a/bag.go b/bag.go
index <HASH>..<HASH> 100644
--- a/bag.go
+++ b/bag.go
@@ -126,11 +126,19 @@ func (b *Bag) Manifest() (*Manifest, error) {
// METHODS FOR MANAGING BAG TAG FILES
func (b *Bag) AddTagfile(name string) error {
- tf, err := NewTagFile(filepath.Join(b.Path(), name))
- if tf != nil {
- b.tagf... | Adding tag files to subdirectories now works. | APTrust_bagins | train |
a113acdda8f752cfbf8b15449eb76b21527bebfc | diff --git a/mod/forum/view.php b/mod/forum/view.php
index <HASH>..<HASH> 100644
--- a/mod/forum/view.php
+++ b/mod/forum/view.php
@@ -154,7 +154,7 @@
}
if (($forum->trackingtype == FORUM_TRACKING_OPTIONAL) && forum_tp_can_track_forums($forum)) {
- echo '<div class="helplink" id="tracking... | merged from <I> :: MDL-<I> :: added closing '>' in line <I>. | moodle_moodle | train |
19e8a822bcae958e36517f74366f375499c5826c | diff --git a/lib/supervisor.js b/lib/supervisor.js
index <HASH>..<HASH> 100644
--- a/lib/supervisor.js
+++ b/lib/supervisor.js
@@ -148,7 +148,7 @@ function run(
var headline = "elm-test " + elmTestVersion;
var bar = _.repeat("-", headline.length);
- console.log("\n" + headline + "... | Remove a spurious newline. | rtfeldman_node-test-runner | train |
6fec25b0d317a496e7669708192a09dd6d403eac | diff --git a/src/Middleware/RequestBodyBufferMiddleware.php b/src/Middleware/RequestBodyBufferMiddleware.php
index <HASH>..<HASH> 100644
--- a/src/Middleware/RequestBodyBufferMiddleware.php
+++ b/src/Middleware/RequestBodyBufferMiddleware.php
@@ -4,10 +4,10 @@ namespace React\Http\Middleware;
use OverflowException;
... | Keep request body in memory also after consuming request body | reactphp_http | train |
448a747566d648260a2877c1019ed1a07fc02fa0 | diff --git a/addon/components/week-glance.js b/addon/components/week-glance.js
index <HASH>..<HASH> 100644
--- a/addon/components/week-glance.js
+++ b/addon/components/week-glance.js
@@ -26,16 +26,22 @@ export default Component.extend({
const year = this.get('year');
const week = this.get('week');
const ... | accomodate for null value year and dual nature of moment attribute accessors. | ilios_common | train |
f7c5b76f24d88a389af31f2fcb90ed4bffe1c8d9 | diff --git a/lib/redis/connection/memory.rb b/lib/redis/connection/memory.rb
index <HASH>..<HASH> 100644
--- a/lib/redis/connection/memory.rb
+++ b/lib/redis/connection/memory.rb
@@ -976,14 +976,7 @@ class Redis
data_type_check(key, ZSet)
return [] unless data[key]
- # Sort by score, or if sc... | refactor key-value sorting into method | guilleiguaran_fakeredis | train |
20a9e10aa1346ce48ab5ca4eff03ac52d9210d0a | diff --git a/molgenis-data-mysql/src/main/java/org/molgenis/data/mysql/MySqlConfiguration.java b/molgenis-data-mysql/src/main/java/org/molgenis/data/mysql/MySqlConfiguration.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-mysql/src/main/java/org/molgenis/data/mysql/MySqlConfiguration.java
+++ b/molgenis-data-mysql... | share the async jdbc template to keep the total number of threads in check | molgenis_molgenis | train |
8da28dc20a84517e42eb3499a6b3bd663073e3d0 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@ setup_requires = [
]
install_requires = [
- 'inspire-schemas~=61.1.3',
+ 'inspire-schemas~=61.0',
'inspire-utils~=3.0,>=3.0.0',
'pypeg2~=2.0,>=2.15.2',
'python-dateutil~=2.0,>=2.6.1', | setup: revert unnecessary upgrade of inspire-schemas | inspirehep_inspire-query-parser | train |
2c102b83df04cf5ce1cf3a59a20533e1636d7fe7 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
*.pyc
-docs/_build
\ No newline at end of file
+docs/_build
+pyes/tests/.noseids
diff --git a/pyes/convert_errors.py b/pyes/convert_errors.py
index <HASH>..<HASH> 100644
--- a/pyes/convert_errors.py
+++ b... | hacked in a nice curl message to exceptions, for easier debugging | aparo_pyes | train |
fbf5b4353df1ffe48061d147973b7fda7e8fce63 | diff --git a/src/kba/pipeline/_clean_visible.py b/src/kba/pipeline/_clean_visible.py
index <HASH>..<HASH> 100644
--- a/src/kba/pipeline/_clean_visible.py
+++ b/src/kba/pipeline/_clean_visible.py
@@ -17,6 +17,7 @@ import logging
import itertools
import traceback
import lxml.etree
+from _clean_html import drop_invalid... | catching a rare error in clean_visible: a tiny tiny
fraction of the kba-<I> "social" stream apparently has control characters or other invalid UTF8
chars, and we were treating this as text/plain which does not go through clean_html, so they
were not getting caught before reaching serialization by lxml for tagging. | trec-kba_streamcorpus-pipeline | train |
90768f341030efa8e1ce253172bda37e324ae3fc | diff --git a/lib/dynamoid/adapter.rb b/lib/dynamoid/adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/dynamoid/adapter.rb
+++ b/lib/dynamoid/adapter.rb
@@ -179,9 +179,7 @@ module Dynamoid
end
def self.adapter_plugin_class
- unless Dynamoid.const_defined?(:AdapterPlugin) && Dynamoid::AdapterPlugin.const_... | Fix threadsafety of Dynamoid::Adapter | Dynamoid_dynamoid | train |
491ba3adb4ec11b3ad216b1c8d7d71e7e8a03108 | diff --git a/qualysapi/config.py b/qualysapi/config.py
index <HASH>..<HASH> 100644
--- a/qualysapi/config.py
+++ b/qualysapi/config.py
@@ -5,7 +5,7 @@ import getpass
import logging
import os
import stat
-from configparser import ConfigParser
+from configparser import RawConfigParser
import qualysapi.settings as q... | Read configuration values as literal strings
Configuration values were read using ConfigParser, which does string interpolation, for instance making it impossible to use "%". This commit switches to RawConfigParser to avoid any special treatment of configuration values. | paragbaxi_qualysapi | train |
c315afc242d3bef4431d27af601760d81a9d2179 | diff --git a/amd/object-store/ReadOnlyObjectStore.js b/amd/object-store/ReadOnlyObjectStore.js
index <HASH>..<HASH> 100644
--- a/amd/object-store/ReadOnlyObjectStore.js
+++ b/amd/object-store/ReadOnlyObjectStore.js
@@ -63,7 +63,8 @@ define(["./AbstractReadOnlyStorage", "./CursorDirection", "./ReadOnlyIndex", "./
... | fixed support for case-insensitive cursor direction strings | jurca_indexed-db.es6 | train |
d233be704191e6dd72a93548efc4b42bb29c29c9 | diff --git a/transport/src/main/java/io/netty/channel/socket/aio/AioSocketChannel.java b/transport/src/main/java/io/netty/channel/socket/aio/AioSocketChannel.java
index <HASH>..<HASH> 100644
--- a/transport/src/main/java/io/netty/channel/socket/aio/AioSocketChannel.java
+++ b/transport/src/main/java/io/netty/channel/so... | AIO: Act on the right ByteBuf when a exception was caught during write | netty_netty | train |
f0aab3749f74ee6628e0c7e0e4ec30383dd51016 | diff --git a/bin/importjs.js b/bin/importjs.js
index <HASH>..<HASH> 100755
--- a/bin/importjs.js
+++ b/bin/importjs.js
@@ -83,88 +83,3 @@ program.command('goto <word> <pathToFile>')
});
program.parse(process.argv);
-// require 'import_js'
-// require 'slop'
-// require 'json'
-//
-// opts = Slop.parse do |o|
-// ... | Remove old CLI code (commented out)
I believe we now support roughly the same feature set as the old tool.
So we don't need this lying around anymore. | Galooshi_import-js | train |
967abc53ae7f03fe6cb22aa1969bb0909960dcb6 | diff --git a/src/test/java/com/profesorfalken/wmi4java/WMI4JavaTest.java b/src/test/java/com/profesorfalken/wmi4java/WMI4JavaTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/profesorfalken/wmi4java/WMI4JavaTest.java
+++ b/src/test/java/com/profesorfalken/wmi4java/WMI4JavaTest.java
@@ -184,31 +184,35 @@ pub... | Avoid to execute new test in a no-Windows environment | profesorfalken_WMI4Java | train |
9d37a83a79e346312d0f93cdff346a8c9ca56d8a | diff --git a/test/general/openpgp.js b/test/general/openpgp.js
index <HASH>..<HASH> 100644
--- a/test/general/openpgp.js
+++ b/test/general/openpgp.js
@@ -365,7 +365,11 @@ describe('OpenPGP.js public api tests', function() {
openpgp.initWorker({ path:'../dist/openpgp.worker.js' });
});
- tests();... | Api tests work under node.js | openpgpjs_openpgpjs | train |
fa2e4cac8952f52ce69a10fc846dd4e2fb48ae01 | diff --git a/lib/artifactory/resources/base.rb b/lib/artifactory/resources/base.rb
index <HASH>..<HASH> 100644
--- a/lib/artifactory/resources/base.rb
+++ b/lib/artifactory/resources/base.rb
@@ -91,6 +91,30 @@ module Artifactory
from_hash(client.get(url), client: client)
end
+ #
+ # List all the... | Move shared 'list_from_config' method to base class. | chef_artifactory-client | train |
3280f7b0111b705d2218096121a20f6471f1f4e8 | diff --git a/sockeye/utils.py b/sockeye/utils.py
index <HASH>..<HASH> 100644
--- a/sockeye/utils.py
+++ b/sockeye/utils.py
@@ -629,7 +629,7 @@ def acquire_gpus(requested_device_ids: List[int], lock_dir: str = "/tmp",
if master_lock is not None and not any_failed:
try:
... | Ignore pylint warning about bare except statement (#<I>) | awslabs_sockeye | train |
a9f87dbf95feb2d73a7028bc1ac21f6868f6ac67 | diff --git a/tests/PresenceChannelTest.php b/tests/PresenceChannelTest.php
index <HASH>..<HASH> 100644
--- a/tests/PresenceChannelTest.php
+++ b/tests/PresenceChannelTest.php
@@ -4,7 +4,6 @@ namespace BeyondCode\LaravelWebSockets\Test;
use BeyondCode\LaravelWebSockets\API\TriggerEvent;
use BeyondCode\LaravelWebSock... | Apply fixes from StyleCI (#<I>) | beyondcode_laravel-websockets | train |
547ad921d8f26b6cd3e0b8c727bfee13e7e6277c | diff --git a/lib/pluginManager/index.js b/lib/pluginManager/index.js
index <HASH>..<HASH> 100644
--- a/lib/pluginManager/index.js
+++ b/lib/pluginManager/index.js
@@ -31,6 +31,28 @@ var pluginManager = {
// load one plugin running related plugin.js file
loadPlugin: function loadPlugin(pluginFile, npmModuleName, p... | update plugin load to split get plugins method | wejs_we-core | train |
683eb77197f62be6a62838d3a76e1332a4f9e694 | diff --git a/Changelog b/Changelog
index <HASH>..<HASH> 100644
--- a/Changelog
+++ b/Changelog
@@ -23,6 +23,10 @@ Releases
First release that requires Python 3.
+ * Fixed issue where Delocate would attempt to modify the install names of a
+ non-copied library which dynamically links to a copied library.
+ ... | Don't follow libraries which won't be copied.
Combines lib_flit_func and copy_flit_func behavior into one function.
This makes sure that a file which won't be copied will not have its
dependencies analyzed.
Fixes #<I>
Since the previous behavior is assumed to be wrong the tests have been updated. | matthew-brett_delocate | train |
20e7cdb3fefc756d50116cbc247379bb26a2ced1 | diff --git a/benchmark/parse_json_and_marshal.rb b/benchmark/parse_json_and_marshal.rb
index <HASH>..<HASH> 100644
--- a/benchmark/parse_json_and_marshal.rb
+++ b/benchmark/parse_json_and_marshal.rb
@@ -13,6 +13,8 @@ marshal_file = File.new(marshal_filename, 'r')
# warm up the filesystem
json.read
json.rewind
+marsh... | warming up marshal file pointer too | brianmario_yajl-ruby | train |
530ae009a8edfb30b3aa9ff98c0787c72080087f | diff --git a/activejdbc/src/main/java/org/javalite/activejdbc/LazyList.java b/activejdbc/src/main/java/org/javalite/activejdbc/LazyList.java
index <HASH>..<HASH> 100644
--- a/activejdbc/src/main/java/org/javalite/activejdbc/LazyList.java
+++ b/activejdbc/src/main/java/org/javalite/activejdbc/LazyList.java
@@ -365,29 +3... | #<I> Added LazyList.collectDistinct() | javalite_activejdbc | train |
dc57a7a5a7670b3103f1882845bfdb07138422db | diff --git a/src/Symfony/Component/DomCrawler/Crawler.php b/src/Symfony/Component/DomCrawler/Crawler.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/DomCrawler/Crawler.php
+++ b/src/Symfony/Component/DomCrawler/Crawler.php
@@ -755,7 +755,7 @@ class Crawler extends \SplObjectStorage
throw new \I... | [DomCrawler] Invalid uri created from forms if base tag present | symfony_symfony | train |
0716732371c8f8d2c53f2a225b426788e5f291d4 | diff --git a/budget/transactions.py b/budget/transactions.py
index <HASH>..<HASH> 100644
--- a/budget/transactions.py
+++ b/budget/transactions.py
@@ -606,16 +606,16 @@ class Transactions():
self.filter_range(i)
# If selected category item is "Income" or "Expenses"
... | And mroe refactoring | mthxx_Budget | train |
51185e2712fc0a773d103dbac467e4c95da93096 | diff --git a/lib/wechat/responder.rb b/lib/wechat/responder.rb
index <HASH>..<HASH> 100644
--- a/lib/wechat/responder.rb
+++ b/lib/wechat/responder.rb
@@ -189,7 +189,7 @@ module Wechat
render text: process_response(response_msg)
end
else
- render nothing: true, status: 200, content_typ... | Rails 5 prefer head instead of render nothing | Eric-Guo_wechat | train |
4601fb4f3c90669d89632f8879e4ec5d3f759f02 | diff --git a/lib/dotenv/rails.rb b/lib/dotenv/rails.rb
index <HASH>..<HASH> 100644
--- a/lib/dotenv/rails.rb
+++ b/lib/dotenv/rails.rb
@@ -9,7 +9,7 @@ require "dotenv"
#
# See https://github.com/bkeepers/dotenv/issues/219
if defined?(Rake.application)
- is_running_specs = Rake.application.top_level_tasks.grep(/^spe... | fix for parallel spec tasks initializing in development | bkeepers_dotenv | train |
a274e0ad2b0d36f24b48c15ceeeb912b77a59264 | diff --git a/gputools/core/ocltypes.py b/gputools/core/ocltypes.py
index <HASH>..<HASH> 100644
--- a/gputools/core/ocltypes.py
+++ b/gputools/core/ocltypes.py
@@ -91,13 +91,13 @@ def _wrap_OCLArray(cls):
def write_array(self, data, **kwargs):
queue = get_device().queue
- return cl.enqueue_write_b... | Remove deprecated enqueue_write/read functions | maweigert_gputools | train |
7d0f1f11cb7a9c6dfcf654298777b88cb6a1e680 | diff --git a/salt/modules/rh_service.py b/salt/modules/rh_service.py
index <HASH>..<HASH> 100644
--- a/salt/modules/rh_service.py
+++ b/salt/modules/rh_service.py
@@ -44,6 +44,7 @@ def __virtual__():
'''
# Enable on these platforms only.
enable = set((
+ 'XenServer',
'RedHat',
'C... | fix for: service.enabled fails on xen server #<I> | saltstack_salt | train |
888c48ec232d36998e5fcf85606a4cecd1165632 | diff --git a/lib/nodes/lib.js b/lib/nodes/lib.js
index <HASH>..<HASH> 100644
--- a/lib/nodes/lib.js
+++ b/lib/nodes/lib.js
@@ -319,19 +319,21 @@ registry.decl(GitLibraryNodeName, ScmLibraryNodeName, /** @lends GitLibraryNode.
* @param {String} o.target Library path.
* @param {String} o.url Reposito... | Git library checkout fixed to work with commit hashes (close #<I>)
Parameter branch is added to specify branch name. Use treeish to specify
commit or tag. | bem-archive_bem-tools | train |
0e82fc2485d97a3f5f7e424e03dad486aaff0941 | diff --git a/furious/_pkg_meta.py b/furious/_pkg_meta.py
index <HASH>..<HASH> 100644
--- a/furious/_pkg_meta.py
+++ b/furious/_pkg_meta.py
@@ -1,2 +1,2 @@
-version_info = (1, 1, 0)
+version_info = (1, 2, 0)
version = '.'.join(map(str, version_info)) | Updating to <I>
Incrementing a minor version to <I> | Workiva_furious | train |
689b72607e9639261c21fb39cfc2072ee3e741d9 | diff --git a/caffeine/src/main/java/com/github/benmanes/caffeine/cache/stats/StatsCounter.java b/caffeine/src/main/java/com/github/benmanes/caffeine/cache/stats/StatsCounter.java
index <HASH>..<HASH> 100644
--- a/caffeine/src/main/java/com/github/benmanes/caffeine/cache/stats/StatsCounter.java
+++ b/caffeine/src/main/j... | Specify when and how StatsCounter#recordLoadSuccess and recordLoadFailure events are recorded more precisely | ben-manes_caffeine | train |
31b56cc67f1f4489119409fbc1f2470e6b850e44 | diff --git a/teslajsonpy/teslaproxy.py b/teslajsonpy/teslaproxy.py
index <HASH>..<HASH> 100644
--- a/teslajsonpy/teslaproxy.py
+++ b/teslajsonpy/teslaproxy.py
@@ -100,8 +100,9 @@ class TeslaProxy(AuthCaptureProxy):
return return_timer_countdown_refresh_html(
max(30 * (self.waf_retr... | fix: increase time for waf retry | zabuldon_teslajsonpy | train |
07fb9e754ef6ab10c92b647883b29caad116c76d | diff --git a/CMSSeeder.php b/CMSSeeder.php
index <HASH>..<HASH> 100644
--- a/CMSSeeder.php
+++ b/CMSSeeder.php
@@ -271,20 +271,23 @@ class CMSSeeder extends Seeder {
{
// gzero config options
$options = [
- 'main' => [
- 'siteName' => [],
- ... | Options seeds and repository fixes KMS-<I> | GrupaZero_core | train |
b3acf6a96c8d8da23838b738586a4d20c558f9b2 | diff --git a/tests/e2e/kubetest2-kops/deployer/common.go b/tests/e2e/kubetest2-kops/deployer/common.go
index <HASH>..<HASH> 100644
--- a/tests/e2e/kubetest2-kops/deployer/common.go
+++ b/tests/e2e/kubetest2-kops/deployer/common.go
@@ -70,10 +70,6 @@ func (d *deployer) verifyKopsFlags() error {
return errors.New("mi... | Don't check for existence of binary path before the build stage has occurred | kubernetes_kops | train |
78a35d9a5fff0d93fd92e2973defee4c13ba165d | diff --git a/bundles/org.eclipse.orion.client.cf/web/cfui/cfUtil.js b/bundles/org.eclipse.orion.client.cf/web/cfui/cfUtil.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.cf/web/cfui/cfUtil.js
+++ b/bundles/org.eclipse.orion.client.cf/web/cfui/cfUtil.js
@@ -50,6 +50,8 @@ define(['i18n!cfui/nls/mess... | prepareLaunchConfigurationContent in cfUtil should return deferred | eclipse_orion.client | train |
986f15d6e0ac68142219acd1d0e0b1eeb59fb336 | diff --git a/lib/compile.js b/lib/compile.js
index <HASH>..<HASH> 100644
--- a/lib/compile.js
+++ b/lib/compile.js
@@ -14,7 +14,12 @@ module.exports = {
.fromCallback(cb => compiler.run(cb))
.then(stats => {
- let consoleStats = {
+ if (!this.multiCompile) {
+ stats = { stats: [st... | use one liner solution and update unit test | serverless-heaven_serverless-webpack | train |
fcffd20611b05fd9c7751d70bffd7c778cd8c7c9 | diff --git a/src/Charcoal/Ui/ConditionalizableTrait.php b/src/Charcoal/Ui/ConditionalizableTrait.php
index <HASH>..<HASH> 100644
--- a/src/Charcoal/Ui/ConditionalizableTrait.php
+++ b/src/Charcoal/Ui/ConditionalizableTrait.php
@@ -68,7 +68,7 @@ trait ConditionalizableTrait
);
}
- unset($t... | Fix ConditionalizableTrait
Replaced `unset()` with NULL assignment to preserve the class property. | locomotivemtl_charcoal-ui | train |
1bb1a941a0ec4325b29186f75f86718b36de8c09 | diff --git a/lib/hawkular/inventory/entities.rb b/lib/hawkular/inventory/entities.rb
index <HASH>..<HASH> 100644
--- a/lib/hawkular/inventory/entities.rb
+++ b/lib/hawkular/inventory/entities.rb
@@ -35,18 +35,6 @@ module Hawkular::Inventory
def to_h
@_hash.dup
end
-
- def to_h
- metric_hash =... | HAWKULAR-<I> Minor fixes after merging alerting work | hawkular_hawkular-client-ruby | train |
52d598f6fbba74133f0d8c165afcfbc82517728a | diff --git a/addon/initializers/component-styles.js b/addon/initializers/component-styles.js
index <HASH>..<HASH> 100644
--- a/addon/initializers/component-styles.js
+++ b/addon/initializers/component-styles.js
@@ -6,29 +6,28 @@ const {
ComponentLookup,
} = Ember;
-export function initialize() {
-
- ComponentLoo... | moved the componentlookup and compont repoens out of the initialize method so that they will be done before application instatiation rather then after and only ran once for all tests per @rwjblue suggestion | ebryn_ember-component-css | train |
f832f0443a780aa95324df5bc9f8426aef74c9ae | diff --git a/src/FINDOLOGIC/Export/CSV/CSVExporter.php b/src/FINDOLOGIC/Export/CSV/CSVExporter.php
index <HASH>..<HASH> 100644
--- a/src/FINDOLOGIC/Export/CSV/CSVExporter.php
+++ b/src/FINDOLOGIC/Export/CSV/CSVExporter.php
@@ -32,14 +32,14 @@ class CSVExporter extends Exporter
// To enable pagination, don't wr... | Make sure property column headings are only written to CSV if it's the heading (#<I>) | findologic_libflexport | train |
d7b6866c4605bb96e7d4e77002aa2f61ee1fe158 | diff --git a/maintenancemode/tests/settings.py b/maintenancemode/tests/settings.py
index <HASH>..<HASH> 100644
--- a/maintenancemode/tests/settings.py
+++ b/maintenancemode/tests/settings.py
@@ -54,3 +54,6 @@ SITE_ID = 1
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
DATABASES = {"default": {"ENGIN... | Adjust test setup to work with Django 3
IGNORE_URLS is now based on MAINTENANCE_IGNORE_URLS, but IGNORE_URLS was
still used. | shanx_django-maintenancemode | train |
d933a0d974abe0b4c486efd9d47d235b579c5820 | diff --git a/tools/kevoree-kevscript/lib/elements/sets.js b/tools/kevoree-kevscript/lib/elements/sets.js
index <HASH>..<HASH> 100644
--- a/tools/kevoree-kevscript/lib/elements/sets.js
+++ b/tools/kevoree-kevscript/lib/elements/sets.js
@@ -11,17 +11,10 @@ module.exports = function (model) {
str += '\n';... | rollback attribute value checks (known issue: "" & '' aren't processed properly yet) | kevoree_kevoree-js | train |
6e10c463f25581e31622adbe07420aa8f397e10a | diff --git a/lib/flapjack/patches.rb b/lib/flapjack/patches.rb
index <HASH>..<HASH> 100644
--- a/lib/flapjack/patches.rb
+++ b/lib/flapjack/patches.rb
@@ -116,3 +116,73 @@ class Redis
end
end
end
+
+module GLI
+ class Command
+ attr_accessor :passthrough
+ def _action
+ @action
+ end
+ end
+
+ ... | Duckpunch the fuck out of GLI to allow passthrough of args to non-Ruby subcommands | flapjack_flapjack | train |
44711f573d0787424e87634b36b76b98065c33ae | diff --git a/applications/default/extensions/user/user.js b/applications/default/extensions/user/user.js
index <HASH>..<HASH> 100644
--- a/applications/default/extensions/user/user.js
+++ b/applications/default/extensions/user/user.js
@@ -312,7 +312,6 @@ user.route = function(routes, callback) {
var data = reque... | Fixing creating users. #<I> | recidive_choko | train |
8786a0f3f042da50983021499c562ce0f7f13a75 | diff --git a/lib/cf/cli/app/push.rb b/lib/cf/cli/app/push.rb
index <HASH>..<HASH> 100644
--- a/lib/cf/cli/app/push.rb
+++ b/lib/cf/cli/app/push.rb
@@ -24,7 +24,7 @@ module CF::App
}
input :memory, :desc => "Memory limit"
input :instances, :desc => "Number of instances to run", :type ... | do not prompt for a start command during push
[Finishes #<I>] | cloudfoundry-attic_cf | train |
03a8a4473f6dbcc834301e7c2f0e0edadb23c9b6 | diff --git a/components/connection_protocols/websocket.js b/components/connection_protocols/websocket.js
index <HASH>..<HASH> 100644
--- a/components/connection_protocols/websocket.js
+++ b/components/connection_protocols/websocket.js
@@ -90,11 +90,21 @@ WebSocketConnection.prototype._chooseAndConnect = function() {
... | Fix issue where a new connection can be attempted twice | DoctorMcKay_node-steam-user | train |
fa33f84f6f24e219a0a666dc779c60cc20879fc9 | diff --git a/src/me/corsin/javatools/misc/PoolableImpl.java b/src/me/corsin/javatools/misc/PoolableImpl.java
index <HASH>..<HASH> 100644
--- a/src/me/corsin/javatools/misc/PoolableImpl.java
+++ b/src/me/corsin/javatools/misc/PoolableImpl.java
@@ -35,8 +35,6 @@ public class PoolableImpl implements Poolable {
if (this... | Removed the runtime exception when releasing a PoolableImpl that has not pool | rFlex_SCJavaTools | train |
5e679cf6c3989a96a970f7fae05ecb516690b26a | diff --git a/lib/redfish/definition.rb b/lib/redfish/definition.rb
index <HASH>..<HASH> 100644
--- a/lib/redfish/definition.rb
+++ b/lib/redfish/definition.rb
@@ -96,5 +96,13 @@ module Redfish
:domains_directory => self.domains_directory
})
end
+
+ def e... | Start to support exporting to a file | realityforge_redfish | train |
09f72464a591b2b094c00a709f0235137e5ff96a | diff --git a/src/ServiceManager.php b/src/ServiceManager.php
index <HASH>..<HASH> 100644
--- a/src/ServiceManager.php
+++ b/src/ServiceManager.php
@@ -99,6 +99,11 @@ class ServiceManager implements ServiceLocatorInterface
protected $throwExceptionInCreate = true;
/**
+ * @var array map of characters to ... | Micro (Really micro) optimization for canonicalizeName | mxc-commons_mxc-servicemanager | train |
400db8b93a06b06c1bc28e00784d84ed99bfef7e | diff --git a/structurizr-client/src/com/structurizr/api/StructurizrClient.java b/structurizr-client/src/com/structurizr/api/StructurizrClient.java
index <HASH>..<HASH> 100644
--- a/structurizr-client/src/com/structurizr/api/StructurizrClient.java
+++ b/structurizr-client/src/com/structurizr/api/StructurizrClient.java
@... | No need to send thumbnail data back to the server ... it's already stored there, outside of the workspace JSON document. | structurizr_java | train |
f2ef3c4c9b62e49b49c2ef8dda6b7218927f9d3a | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
short_description = 'Calculate RMSD using, translation and rotation, between molecules'
setup(name='rmsd',
- version='1.2.0',
+ vers... | changes to make it work on pypi | charnley_rmsd | train |
3023c7f424d0d07fc5332a89269524681adff48d | diff --git a/base.php b/base.php
index <HASH>..<HASH> 100644
--- a/base.php
+++ b/base.php
@@ -184,14 +184,16 @@ class Base extends Prefab implements ArrayAccess {
'/(?<!\w)@(\w(?:[\w\.\[\]]|\->|::)*)/',
function($var) use($fw) {
return '$'.preg_replace_callback(
- '/\.(\w+)|\[((?:[^\[\]]*|(?R))*)\]/',... | Smart detection of PHP functions in template expressions | bcosca_fatfree-core | train |
1828d14f59e32832ee25ea1dfb22eb530c27e8d5 | diff --git a/lib/ORM/DataMapper.php b/lib/ORM/DataMapper.php
index <HASH>..<HASH> 100644
--- a/lib/ORM/DataMapper.php
+++ b/lib/ORM/DataMapper.php
@@ -214,14 +214,25 @@ class DataMapper
$casts = $this->mapper->getTypeCasts();
$setters = $this->mapper->getSetters();
+ if(isset($setters[$name])... | Added 'setRawColumn' | opis_database | train |
352a935be4eea1035f9f51eff280510f4d3a18e3 | diff --git a/frontend/src/component/application/__tests__/application-edit-component-test.js b/frontend/src/component/application/__tests__/application-edit-component-test.js
index <HASH>..<HASH> 100644
--- a/frontend/src/component/application/__tests__/application-edit-component-test.js
+++ b/frontend/src/component/ap... | fixed timezone in test timestamp | Unleash_unleash | train |
8c2f9e1d2bd0ac0f8b7918d409a32824576e3089 | diff --git a/cake/libs/router.php b/cake/libs/router.php
index <HASH>..<HASH> 100644
--- a/cake/libs/router.php
+++ b/cake/libs/router.php
@@ -506,7 +506,7 @@ class Router {
* @return array Returns an array containing the altered URL and the parsed extension.
* @access private
*/
- function __parseExtension($url)... | Removing E_STRICT errors from router | cakephp_cakephp | train |
70d3625760aac9994790bd023f1b5060fe1d06c5 | diff --git a/activerecord/lib/active_record/errors.rb b/activerecord/lib/active_record/errors.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/errors.rb
+++ b/activerecord/lib/active_record/errors.rb
@@ -196,4 +196,7 @@ module ActiveRecord
"Unknown primary key for table #{model.table_name} in ... | disallow mutating a relation once loaded | rails_rails | train |
e4c2bea2a74a428b9fdf7bf350e218c8cd71fdc5 | diff --git a/flag/__init__.py b/flag/__init__.py
index <HASH>..<HASH> 100644
--- a/flag/__init__.py
+++ b/flag/__init__.py
@@ -13,4 +13,4 @@ __all__ = [
'int', 'string'
]
-__version__ = '0.1.1'
+__version__ = '0.3.1'
diff --git a/flag/core.py b/flag/core.py
index <HASH>..<HASH> 100644
--- a/flag/core.py
+++ b/f... | Added __hash__ magic method | danielchatfield_flag | train |
1b20b24a1b549fb58c69ad1ddd66f423d5bb38cf | diff --git a/lib/identity_cache.rb b/lib/identity_cache.rb
index <HASH>..<HASH> 100644
--- a/lib/identity_cache.rb
+++ b/lib/identity_cache.rb
@@ -30,7 +30,7 @@ module IdentityCache
@logger || Rails.logger
end
- def should_cache?
+ def should_cache? # :nodoc:
!readonly && ActiveRecord::Base.c... | WIP: dealing with schema changes for embeded associations | Shopify_identity_cache | train |
8d8d5cc9dbdde363b30872418c453060310101d8 | diff --git a/text/text.go b/text/text.go
index <HASH>..<HASH> 100644
--- a/text/text.go
+++ b/text/text.go
@@ -61,10 +61,7 @@ func RangeTable(table *unicode.RangeTable) []rune {
// Text exports two important fields: Orig and Dot. Dot is the position where the next character
// will be written. Dot is automatically mo... | Document that Clear resets the Dot to Orig
Remove note on how to reset Dot to the Orig | faiface_pixel | train |
58837285bd1ad0f77a5b733078663fc338ab07a8 | diff --git a/provision/juju/stubs_test.go b/provision/juju/stubs_test.go
index <HASH>..<HASH> 100644
--- a/provision/juju/stubs_test.go
+++ b/provision/juju/stubs_test.go
@@ -1,4 +1,4 @@
-// Copyright 2012 tsuru authors. All rights reserved.
+// Copyright 2013 tsuru authors. All rights reserved.
// Use of this source ... | provision/juju: update copyright header in stubs_test.go | tsuru_tsuru | train |
798c49ad856f87cde483432f842361b39484453c | diff --git a/cdi/src/main/java/javax/enterprise/inject/spi/Annotated.java b/cdi/src/main/java/javax/enterprise/inject/spi/Annotated.java
index <HASH>..<HASH> 100644
--- a/cdi/src/main/java/javax/enterprise/inject/spi/Annotated.java
+++ b/cdi/src/main/java/javax/enterprise/inject/spi/Annotated.java
@@ -51,7 +51,7 @@ pub... | A few fixes to JavaDocs | weld_api | train |
15be4c04f1e802d79e35089902cb9be07c66005f | diff --git a/pyneuroml/tune/NeuroMLController.py b/pyneuroml/tune/NeuroMLController.py
index <HASH>..<HASH> 100644
--- a/pyneuroml/tune/NeuroMLController.py
+++ b/pyneuroml/tune/NeuroMLController.py
@@ -99,8 +99,28 @@ class NeuroMLController():
chanDens = cd
... | Option to tune reversal potentials | NeuroML_pyNeuroML | train |
138cd87d7e911c82bd8fc83b9476fdbd2f62cdeb | diff --git a/README b/README
index <HASH>..<HASH> 100644
--- a/README
+++ b/README
@@ -0,0 +1,26 @@
+To use:
+
+ gem install saucelabs-adapter --source gems.pivotallabs.com
+
+ cd your_project
+
+ script/generate saucelabs_adapter
+
+Install the python script dependencies with:
+
+ easy_install ...
+
+Then
+
+ r... | removes dependencies on Rails
adds options for user to set the location of the configuration yaml file
adds options for user to set the local application server port (defaults to <I>) | pivotal-legacy_saucelabs-adapter | train |
6bf9fe08efda6456d4223b7291dc286d5a52c4ac | diff --git a/pyp2rpm/filters.py b/pyp2rpm/filters.py
index <HASH>..<HASH> 100644
--- a/pyp2rpm/filters.py
+++ b/pyp2rpm/filters.py
@@ -34,12 +34,11 @@ def python_bin_for_python_version(name, version, default_string='__python2'):
def macroed_pkg_name(pkg_name, srcname):
- if srcname:
- return 'python-%{sr... | Rename option: handle the case when the provided name is without python-prefix | fedora-python_pyp2rpm | train |
8a401da09b253029c9152fc349050f4b721cd34f | diff --git a/shardingsphere-scaling/shardingsphere-scaling-core/src/main/java/org/apache/shardingsphere/scaling/core/execute/executor/channel/MemoryChannel.java b/shardingsphere-scaling/shardingsphere-scaling-core/src/main/java/org/apache/shardingsphere/scaling/core/execute/executor/channel/MemoryChannel.java
index <HA... | remove unused field. (#<I>)
Co-authored-by: qiulu3 <Lucas<I>> | apache_incubator-shardingsphere | train |
da620ddaa875676f87e818fbd8c870da3243de8e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ import os
MAJOR = 0
MINOR = 2
-MICRO = 5
+MICRO = 7
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) | Finally get setup.py working with pypi | capnproto_pycapnp | train |
6200ed98499429f2d655ff6cffe63ca6152c1a89 | diff --git a/PhpAmqpLib/Wire/IO/StreamIO.php b/PhpAmqpLib/Wire/IO/StreamIO.php
index <HASH>..<HASH> 100644
--- a/PhpAmqpLib/Wire/IO/StreamIO.php
+++ b/PhpAmqpLib/Wire/IO/StreamIO.php
@@ -405,6 +405,8 @@ class StreamIO extends AbstractIO
$write = null;
$except = null;
$result = false;
+ ... | Ensure integer values are actually integers for HHVM compatibility | php-amqplib_php-amqplib | train |
b5ae5f426fc321b840d4115803937f9e07034174 | diff --git a/src/u2flib_server/U2F.php b/src/u2flib_server/U2F.php
index <HASH>..<HASH> 100644
--- a/src/u2flib_server/U2F.php
+++ b/src/u2flib_server/U2F.php
@@ -80,7 +80,8 @@ class U2F {
$x509 = new File_X509();
$registration->certificate = base64_encode(substr($rawReg, 67 + $khLen, $certLen));
$cert =... | php <I> doesn't support array dereferencing | Yubico_php-u2flib-server | train |
d2c2f9385ea5679cb1197d3fc04050925f55314d | diff --git a/js/kraken.js b/js/kraken.js
index <HASH>..<HASH> 100644
--- a/js/kraken.js
+++ b/js/kraken.js
@@ -630,17 +630,14 @@ module.exports = class kraken extends Exchange {
return this.parseLedger (data, currency, since, limit);
}
- async fetchLedgerItem (id, code = undefined, params = {}) {
+ ... | added kraken fetchLedgerItemsByIds | ccxt_ccxt | train |
7211ec56b19efcaeacb73211a37b532c7b2a6309 | diff --git a/closure/goog/debug/logger.js b/closure/goog/debug/logger.js
index <HASH>..<HASH> 100644
--- a/closure/goog/debug/logger.js
+++ b/closure/goog/debug/logger.js
@@ -97,6 +97,10 @@ goog.debug.Logger = function(name) {
};
+/** @const */
+goog.debug.Logger.ROOT_LOGGER_NAME = '';
+
+
/**
* @define {boolea... | Add a constant for the root logger name.
-------------
Created by MOE: <URL> | google_closure-library | train |
212297ef02c14112349e38e1d06aab3be4c6e1fd | diff --git a/tests/test_pkey.py b/tests/test_pkey.py
index <HASH>..<HASH> 100644
--- a/tests/test_pkey.py
+++ b/tests/test_pkey.py
@@ -470,7 +470,7 @@ class KeyTest(unittest.TestCase):
def test_ed25519_nonbytes_password(self):
# https://github.com/paramiko/paramiko/issues/1039
key = Ed25519Key.fr... | Uncaught typo in test suite
Was limited to the <I> branch, master either never got it or fixed it
without a backport. | paramiko_paramiko | train |
9abf222ca9dd20f8babf7afd4db173766dd97384 | diff --git a/src/client/pkg/grpcutil/dialer.go b/src/client/pkg/grpcutil/dialer.go
index <HASH>..<HASH> 100644
--- a/src/client/pkg/grpcutil/dialer.go
+++ b/src/client/pkg/grpcutil/dialer.go
@@ -44,7 +44,7 @@ func (d *dialer) Dial(addr string) (*grpc.ClientConn, error) {
grpc.WithUnaryInterceptor(tracing.UnaryClient... | Fix lint issues with string.Index | pachyderm_pachyderm | train |
47becf803c2fa45466a391a60d2ae598ad562ee6 | diff --git a/oz/core/actions.py b/oz/core/actions.py
index <HASH>..<HASH> 100644
--- a/oz/core/actions.py
+++ b/oz/core/actions.py
@@ -77,7 +77,7 @@ def server():
else:
ssl_options = None
- srv = tornado.httpserver.HTTPServer(application, ssl_options=ssl_options)
+ srv = tornado.ht... | Add xheaders=True option to the HTTPServer instance
This instructs Tornado to pass on the value of the X-Real-Ip/X-Forwared-For headers to the remote_ip field.
This is useful when running behind a reverse proxy or load balancer (which most sites do these days). | dailymuse_oz | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.