hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
1fd77304779461572b0b7d09b3b67dd68a7e73fc | diff --git a/lib/ghtorrent/adapters/base_adapter.rb b/lib/ghtorrent/adapters/base_adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/ghtorrent/adapters/base_adapter.rb
+++ b/lib/ghtorrent/adapters/base_adapter.rb
@@ -5,12 +5,12 @@ module GHTorrent
ENTITIES = [:users, :commits, :followers, :repos, :events, :org_membe... | Use binary search to look for valid entities | gousiosg_github-mirror | train |
9f931eba7758bb0c68fca237edb2ea67294f331d | diff --git a/example/ActualUseCases.py b/example/ActualUseCases.py
index <HASH>..<HASH> 100644
--- a/example/ActualUseCases.py
+++ b/example/ActualUseCases.py
@@ -2,7 +2,7 @@ import sys
sys.path.insert(0, '../')
import unittest
-import sinon.sinon as sinon
+import sinon
from TestClass import ForTestOnly
def A_f... | fix CI failed (import) | note35_sinon | train |
c75e6ff235c2635ef421c7136b606c703b434569 | diff --git a/stravalib/attributes.py b/stravalib/attributes.py
index <HASH>..<HASH> 100644
--- a/stravalib/attributes.py
+++ b/stravalib/attributes.py
@@ -14,6 +14,10 @@ from units.quantity import Quantity
import stravalib.model
+# Depending on the type of request, objects will be returned in meta, summary or det... | Fixes #<I> - Adding a desc/link for resource states attrs | hozn_stravalib | train |
9eba9ac2a3959318f68544f62302d944463e1363 | diff --git a/green/suite.py b/green/suite.py
index <HASH>..<HASH> 100644
--- a/green/suite.py
+++ b/green/suite.py
@@ -3,7 +3,8 @@ from __future__ import print_function
from fnmatch import fnmatch
import sys
-from unittest.suite import _call_if_exists, _isnotsuite, TestSuite
+from unittest.suite import _call_if_exi... | Unit and functional tests. Fixed some imports. No coverage on the unmodified portion of the function ported from python. Resolves #<I>. | CleanCut_green | train |
61483a7938e41daabb5e133017dd84351be8f055 | diff --git a/lib/ui/src/components/preview/iframe.js b/lib/ui/src/components/preview/iframe.js
index <HASH>..<HASH> 100644
--- a/lib/ui/src/components/preview/iframe.js
+++ b/lib/ui/src/components/preview/iframe.js
@@ -4,6 +4,8 @@ import PropTypes from 'prop-types';
import { styled } from '@storybook/theming';
+co... | Fix zoom compat issues with addon centered for browsers other than firefox | storybooks_storybook | train |
6dd50114fb4a84cac9c749d338ce2e09b3b6a865 | diff --git a/aiohttp_json_rpc/exceptions.py b/aiohttp_json_rpc/exceptions.py
index <HASH>..<HASH> 100644
--- a/aiohttp_json_rpc/exceptions.py
+++ b/aiohttp_json_rpc/exceptions.py
@@ -21,7 +21,7 @@ class RpcError(Exception):
if(error_code is not None and
error_code not in self.lookup_table.keys())... | Fix over-indentation in exceptions.py | pengutronix_aiohttp-json-rpc | train |
1f940f99858ca71177ce220bf04d8bd66e12c2d0 | diff --git a/src/com/google/javascript/jscomp/Compiler.java b/src/com/google/javascript/jscomp/Compiler.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/Compiler.java
+++ b/src/com/google/javascript/jscomp/Compiler.java
@@ -1048,35 +1048,6 @@ public class Compiler extends AbstractCompiler {
... | Automated g4 rollback.
*** Reason for rollback ***
broke tests
*** Original change description ***
Add an API to allow incrementally added files to the Compile State.
DELTA=<I> (1 added, <I> deleted, 1 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> | google_closure-compiler | train |
b1754074e5a74c2437cf7119730cbc35aeb9d0b8 | diff --git a/lib/devise/rails.rb b/lib/devise/rails.rb
index <HASH>..<HASH> 100644
--- a/lib/devise/rails.rb
+++ b/lib/devise/rails.rb
@@ -35,13 +35,6 @@ module Devise
Devise::TokenGenerator.new(
Devise::CachingKeyGenerator.new(Devise::KeyGenerator.new(secret_key))
)
- else
- ... | Only raise on missing secret key after a route is defined | plataformatec_devise | train |
18aa80f7f7d4066eeda4364567e09e9d86eeaa75 | diff --git a/lib/stemcell/launcher.rb b/lib/stemcell/launcher.rb
index <HASH>..<HASH> 100644
--- a/lib/stemcell/launcher.rb
+++ b/lib/stemcell/launcher.rb
@@ -75,6 +75,7 @@ module Stemcell
@region = opts['region']
@vpc_id = opts['vpc_id']
+ @ec2_endpoint = opts['ec2_endpoint']
@aws_access_ke... | Add support for a custom EC2 endpoint | airbnb_stemcell | train |
e5acbd9833eccc90aa2267401b1c6f1464ec32b5 | diff --git a/build/tasks/test.js b/build/tasks/test.js
index <HASH>..<HASH> 100644
--- a/build/tasks/test.js
+++ b/build/tasks/test.js
@@ -1,46 +1,18 @@
-var gulp = require('gulp');
-var karma = require('karma').server;
+var gulp = require('gulp');
+var KarmaServer = require('karma').Server;
/**
* Run test ... | refactor(test): Updated karma usage | SpoonX_aurelia-authentication | train |
d4e10101bdcb0182cc9568810b2c63f95551cfa0 | diff --git a/grip/app.py b/grip/app.py
index <HASH>..<HASH> 100644
--- a/grip/app.py
+++ b/grip/app.py
@@ -126,9 +126,8 @@ class Grip(Flask):
"""
Renders the specified cache file.
"""
- # FUTURE: Use subpath exactly instead of flattening it here
return send_from_directory(
- ... | Extract and reuse cache_filename. | joeyespo_grip | train |
24b445a96ac4ca65fbe4c1eac0994d8800113321 | diff --git a/pipenv/cli.py b/pipenv/cli.py
index <HASH>..<HASH> 100644
--- a/pipenv/cli.py
+++ b/pipenv/cli.py
@@ -1872,16 +1872,18 @@ def install(
# pip install:
with spinner():
-
- c = pip_install(package_name, ignore_hashes=True, allow_global=system, no_deps=False, verbose=verbose, pre... | WIP: Relative file and path installation
* Issues - #<I>, #<I>, #<I> and to a lesser extent #<I> #<I> and more
* Fixed: Local file path installation (resolves in pipfile as relative
path)
* Pass file:// URI to Requirements library for resolving
TODO:
* Ignore non-explicit directory paths lacking os.sep or ./
* Add te... | pypa_pipenv | train |
28713e39c3193868599c58f0ba2849f778cf450c | diff --git a/pages/static/pages/javascript/pages_list.js b/pages/static/pages/javascript/pages_list.js
index <HASH>..<HASH> 100644
--- a/pages/static/pages/javascript/pages_list.js
+++ b/pages/static/pages/javascript/pages_list.js
@@ -12,6 +12,11 @@ $(function () {
}
}
+ function update_actions() {
+... | page list admin: fix select/deselect all pages
checkboxes for changed items in the list after expand/collapse/move pages
did not interact properly with the select/deselect-all checkbox | batiste_django-page-cms | train |
a254ae30210f5e5929676c5b7b27d213829c39de | diff --git a/process/context/info_test.go b/process/context/info_test.go
index <HASH>..<HASH> 100644
--- a/process/context/info_test.go
+++ b/process/context/info_test.go
@@ -162,6 +162,10 @@ myprocess0/xyz123:
volumes: []
envvars:
ENV_VAR: some value
+ status:
+ state: ""
+ failed: false
+ m... | Add a Juju-level status to process.Info. | juju_juju | train |
359bdd7614ce6305c25995f9db0da5a5e95f8eff | diff --git a/gffutils/create.py b/gffutils/create.py
index <HASH>..<HASH> 100644
--- a/gffutils/create.py
+++ b/gffutils/create.py
@@ -888,7 +888,8 @@ def create_db(data, dbfn, id_spec=None, force=False, verbose=False,
gtf_subfeature='exon', force_gff=False,
force_dialect_check=False, from... | add option to sort attribute values
this was causing a lot of py3 test failures, apparently i was depending
too much on py2 default order for sets/dicts | daler_gffutils | train |
fc5e8e40324140ae4866fe371cc217f6576bf4fd | diff --git a/EloquentUserProvider.php b/EloquentUserProvider.php
index <HASH>..<HASH> 100755
--- a/EloquentUserProvider.php
+++ b/EloquentUserProvider.php
@@ -157,6 +157,7 @@ class EloquentUserProvider implements UserProvider
/**
* Get a new query builder for the model instance.
*
+ * @param \Illu... | include newQuery shouldreceive on test cases for retrieveByToken moethod | illuminate_auth | train |
e91bfbc8dc5e03e1def5b19705a14d4d557b693b | diff --git a/plugins/CoreConsole/Commands/RunTests.php b/plugins/CoreConsole/Commands/RunTests.php
index <HASH>..<HASH> 100644
--- a/plugins/CoreConsole/Commands/RunTests.php
+++ b/plugins/CoreConsole/Commands/RunTests.php
@@ -36,7 +36,7 @@ class RunTests extends ConsoleCommand
$groups = array_map('ucfirst', $... | Refs #<I> use the phpunit binary from composer | matomo-org_matomo | train |
45d4ceba6395d8318e140c362fab16a4419a6ee3 | diff --git a/lib/guard/jasmine/phantomjs/lib/console.js b/lib/guard/jasmine/phantomjs/lib/console.js
index <HASH>..<HASH> 100644
--- a/lib/guard/jasmine/phantomjs/lib/console.js
+++ b/lib/guard/jasmine/phantomjs/lib/console.js
@@ -1,6 +1,6 @@
(function() {
var Console,
- __slice = Array.prototype.slice;
+ __s... | Re-compile with the latest CoffeeScript version. | guard_guard-jasmine | train |
bcb82f70657e9d3b1a14a5c71f916d121f463f70 | diff --git a/plugin-annotation/scripts/code-gen.js b/plugin-annotation/scripts/code-gen.js
index <HASH>..<HASH> 100644
--- a/plugin-annotation/scripts/code-gen.js
+++ b/plugin-annotation/scripts/code-gen.js
@@ -32,7 +32,6 @@ global.unhyphenate = function (str) {
};
global.writeIfModified = function(filename, newCon... | [annotation] - fix code gen script | mapbox_mapbox-plugins-android | train |
0615f45343dbd8c1819068990017a788f8754ec9 | diff --git a/etcdlock/lock.py b/etcdlock/lock.py
index <HASH>..<HASH> 100644
--- a/etcdlock/lock.py
+++ b/etcdlock/lock.py
@@ -1,4 +1,5 @@
import etcd
+import uuid
class Lock(object):
@@ -35,6 +36,24 @@ class Lock(object):
def __exit__(self, type, value, traceback):
self.release()
- def acquire... | Use nose tests and flush out the basic acquire and release mechanism | appuri_python-etcd-lock | train |
ca32364232648540e8e4f2fae4a935e7f2189c6e | diff --git a/lib/puppet/provider/selmodule/semodule.rb b/lib/puppet/provider/selmodule/semodule.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/provider/selmodule/semodule.rb
+++ b/lib/puppet/provider/selmodule/semodule.rb
@@ -117,8 +117,7 @@ Puppet::Type.type(:selmodule).provide(:semodule) do
lines = ()
begi... | (#<I>) Fix selmodule error on each_lines
This adds a test for selmodversion_loaded (which previously had no coverage at
all) and fixes the conflicting use of readline and each_line by choosing just
one. | puppetlabs_puppet | train |
0cddaf05e0c7298a5488855bb2d5ad09a0aaa217 | diff --git a/bundles/BlockManagerBundle/DependencyInjection/Configuration.php b/bundles/BlockManagerBundle/DependencyInjection/Configuration.php
index <HASH>..<HASH> 100644
--- a/bundles/BlockManagerBundle/DependencyInjection/Configuration.php
+++ b/bundles/BlockManagerBundle/DependencyInjection/Configuration.php
@@ -7... | Use relevant attribute as key names in template resolver config | netgen-layouts_layouts-core | train |
da7f066919fb6eeabb428d533963d15b120c7591 | diff --git a/arviz/__init__.py b/arviz/__init__.py
index <HASH>..<HASH> 100644
--- a/arviz/__init__.py
+++ b/arviz/__init__.py
@@ -1,6 +1,6 @@
# pylint: disable=wildcard-import,invalid-name,wrong-import-position
"""ArviZ is a library for exploratory analysis of Bayesian models."""
-__version__ = "0.3.1"
+__version__ ... | update version number to <I> (#<I>)
* update version number to <I> | arviz-devs_arviz | train |
5c87e9adddc22703a3dbbb785e32fafe0e91ce78 | diff --git a/actionpack/lib/action_controller/resources.rb b/actionpack/lib/action_controller/resources.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_controller/resources.rb
+++ b/actionpack/lib/action_controller/resources.rb
@@ -91,7 +91,7 @@ module ActionController
end
def shallow_path_pr... | Ensure shallow routes respects namespace [#<I> state:resolved] | rails_rails | train |
a347d06921c39914af8ba8fee12927a93ddec699 | diff --git a/lib/nodes/null.js b/lib/nodes/null.js
index <HASH>..<HASH> 100644
--- a/lib/nodes/null.js
+++ b/lib/nodes/null.js
@@ -50,6 +50,17 @@ Null.prototype.toBoolean = function(){
};
/**
+ * Check if the node is a null node.
+ *
+ * @return {Boolean}
+ * @api public
+ */
+
+Null.prototype.__defineGetter__('isN... | Added / employed Null#isNull | stylus_stylus | train |
51de291b495a73bc93922a5dfb97acc24ef7ae9d | diff --git a/src/path.js b/src/path.js
index <HASH>..<HASH> 100644
--- a/src/path.js
+++ b/src/path.js
@@ -4,6 +4,7 @@
*/
/*#ifndef(UMD)*/
"use strict";
+/*global _GPF_START*/ // 0
/*global _GPF_NOT_FOUND*/ // -1
/*global _gpfArrayForEach*/ // Almost like [].forEach (undefined are also enumerated)
/*global _gpfA... | no-magic-numbers (#<I>) | ArnaudBuchholz_gpf-js | train |
f6bd053a5478da50446acf94a197764e16ed16b4 | diff --git a/test/unit/event.test.js b/test/unit/event.test.js
index <HASH>..<HASH> 100644
--- a/test/unit/event.test.js
+++ b/test/unit/event.test.js
@@ -135,7 +135,7 @@ describe('Event', function () {
expect(beforeJSON.script.id).to.not.be(afterJSON.script.id);
expect(afterJSON.script).to.... | Addressed PR#<I> comments | postmanlabs_postman-collection | train |
7fbe6691e19909c73b5144ba47f7a81244f67146 | diff --git a/out_request.js b/out_request.js
index <HASH>..<HASH> 100644
--- a/out_request.js
+++ b/out_request.js
@@ -515,12 +515,12 @@ TChannelOutRequest.prototype.onTimeout = function onTimeout(now) {
}
if (!self.res || self.res.state === States.Initial) {
- self.end = now;
self.timedOut ... | out_request: set self.end in emitError() only | uber_tchannel-node | train |
6c0187b92639b692a4afa3a8d7988894c77b0b33 | diff --git a/lib/sfn/command/events.rb b/lib/sfn/command/events.rb
index <HASH>..<HASH> 100644
--- a/lib/sfn/command/events.rb
+++ b/lib/sfn/command/events.rb
@@ -73,9 +73,12 @@ module Sfn
if(e.class.to_s.start_with?('Errno'))
ui.warn "Connection error encountered: #{e.message} (retrying)"
... | Log unexpected errors when fetching events
On unexpected errors during event fetching, display error
and transition into connection error pause and retry state.
Fixes sparkleformation/sparkle_formation#<I> | sparkleformation_sfn | train |
2e7987054123ddd278881dfe6c960c8d11c76f7c | diff --git a/predix/service.py b/predix/service.py
index <HASH>..<HASH> 100644
--- a/predix/service.py
+++ b/predix/service.py
@@ -82,7 +82,10 @@ class Service(object):
response = self.session.post(uri, headers=headers,
data=json.dumps(data))
if response.status_code in [200, 204]:
- ... | update json response for empty reply | PredixDev_predixpy | train |
bcfb1e82460af5a403ecdf0053706c4c1f2fad12 | diff --git a/wftool/workflow.py b/wftool/workflow.py
index <HASH>..<HASH> 100644
--- a/wftool/workflow.py
+++ b/wftool/workflow.py
@@ -4,6 +4,8 @@ import codecs
from functools import partial
+from .step import Step
+
class WorkflowGenerator(object):
@@ -91,6 +93,34 @@ class WorkflowGenerator(object):
... | Add first version of WorkflowGenerator to_script method
WorkflowGenerator.to_script() reads a cwl file containing a
workflow and generates the script that was (could have been)
used to create the workflow. The method does not yet work correctly. | NLeSC_scriptcwl | train |
1f8895c4e2f9189032383771d322afdbfdac5e37 | diff --git a/pathvalidate/variable/_elasticsearch.py b/pathvalidate/variable/_elasticsearch.py
index <HASH>..<HASH> 100644
--- a/pathvalidate/variable/_elasticsearch.py
+++ b/pathvalidate/variable/_elasticsearch.py
@@ -13,7 +13,7 @@ from ._base import VarNameSanitizer
class ElasticsearchIndexNameSanitizer(VarNameSan... | Change to avoid "DeprecationWarning: invalid escape sequence" | thombashi_pathvalidate | train |
1f774d5d6a72fbb43ed24ec6d9278a6dc0d481fa | diff --git a/internal/client/github.go b/internal/client/github.go
index <HASH>..<HASH> 100644
--- a/internal/client/github.go
+++ b/internal/client/github.go
@@ -66,7 +66,7 @@ func (c *githubClient) Changelog(ctx *context.Context, repo Repo, prev, current
var log []string
for _, commit := range result.Commits {
... | fix: changelog filters and sort when using github | goreleaser_goreleaser | train |
52e5a3517ff53b5a1357ab05d34aae4ef68a1571 | diff --git a/p2p/discovery/mdns/mdns.go b/p2p/discovery/mdns/mdns.go
index <HASH>..<HASH> 100644
--- a/p2p/discovery/mdns/mdns.go
+++ b/p2p/discovery/mdns/mdns.go
@@ -176,6 +176,9 @@ func (s *mdnsService) startResolver(ctx context.Context) {
continue
}
for _, info := range infos {
+ if info.ID == s.host... | mdns: don't discover ourselves (#<I>)
* bug fixed in mdns.go
* TestSelfDiscovery removed
* TestOtherDiscovery modified
* TestOtherDiscovery modified
* gofmt unhappy fixed? | libp2p_go-libp2p | train |
bb4b25e314fb232d4ca304d01ea4f0c33893de65 | diff --git a/lib/benchmark/bigo/chart.rb b/lib/benchmark/bigo/chart.rb
index <HASH>..<HASH> 100644
--- a/lib/benchmark/bigo/chart.rb
+++ b/lib/benchmark/bigo/chart.rb
@@ -14,9 +14,8 @@ module Benchmark
charts << { name: 'Growth Chart', data: @data, opts: chart_opts(@data) }
if opts[:compare]
- ... | Don't need to pass sizes around anymore | davy_benchmark-bigo | train |
aab72143db594fe1479c51c0fa66e16b78d7caaf | diff --git a/service/amqp/src/main/java/org/kaazing/gateway/service/amqp/AmqpProxyServiceExtensionSpi.java b/service/amqp/src/main/java/org/kaazing/gateway/service/amqp/AmqpProxyServiceExtensionSpi.java
index <HASH>..<HASH> 100644
--- a/service/amqp/src/main/java/org/kaazing/gateway/service/amqp/AmqpProxyServiceExtensi... | kaazing/gateway#<I> Add the service properties to the AmqpProxyServiceExtensionSpi so that extensions can make use of any additional properties when doing work. | kaazing_gateway | train |
ec25d3078ed1e8fac1b6df94bc984688637e2de2 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -52,9 +52,6 @@ function fastifyReact (fastify, options, next) {
}
app.render(req.raw, reply.res, path, req.query, opts.next || {})
- .then(() => {
- reply.sent = true
- })
}
}
} | 'sent = true' after app.render() wasn't needed. | fastify_fastify-nextjs | train |
166d072cd4e8382e9a3652cf48bfc3a0421fcf9b | diff --git a/core/server/services/email-analytics/jobs/index.js b/core/server/services/email-analytics/jobs/index.js
index <HASH>..<HASH> 100644
--- a/core/server/services/email-analytics/jobs/index.js
+++ b/core/server/services/email-analytics/jobs/index.js
@@ -17,8 +17,8 @@ module.exports = {
// don't re... | Fixed email analytics job not being registered when creating an email
no issue
- job registration was checking for submitted emails in it's email count but the job registration method is called as soon as an email is created meaning the email has a status of 'pending' which prevented the analytics job from being star... | TryGhost_Ghost | train |
8a989d7bc84fba04387e0c8fe18aac50b774970c | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -14,22 +14,35 @@ exports.INSPECT_MAX_BYTES = 50
Buffer.poolSize = 8192
/**
- * If `Buffer._useTypedArrays`:
+ * If `TYPED_ARRAY_SUPPORT`:
* === true Use Uint8Array implementation (fastest)
- * === false Use Obje... | make IE<I> use the Object implementation
IE<I> has a broken `TypedArray.prototype.subarray` function which
returns arrays of incorrect length in some situations. | feross_buffer | train |
54b4d1d4afa7f9becc4aad56d09b92eac9238b84 | diff --git a/lib/mongoid/finders.rb b/lib/mongoid/finders.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/finders.rb
+++ b/lib/mongoid/finders.rb
@@ -112,9 +112,7 @@ module Mongoid
# Find the first +Document+ given the conditions.
#
# @example Find the first document.
- # Person.first(:conditions =... | Update first/last rdoc not to show argument acceptance. [close #<I>] | mongodb_mongoid | train |
5c60659e04ce68ee0ff812f9d792caa9d377fefe | diff --git a/pptx/oxml/shapes/shared.py b/pptx/oxml/shapes/shared.py
index <HASH>..<HASH> 100644
--- a/pptx/oxml/shapes/shared.py
+++ b/pptx/oxml/shapes/shared.py
@@ -87,6 +87,13 @@ class BaseShapeElement(BaseOxmlElement):
return int(self._nvXxPr.cNvPr.get('id'))
@property
+ def shape_name(self):
+ ... | shp: add test for BaseShape.name | scanny_python-pptx | train |
2864d20c6d3cc98d2a1dcfcfefdbb6a2af45422e | diff --git a/ratings/models.py b/ratings/models.py
index <HASH>..<HASH> 100644
--- a/ratings/models.py
+++ b/ratings/models.py
@@ -162,10 +162,26 @@ class _RatingsDescriptor(object):
query = self.rating_model.base_kwargs(self.rated_model)
return self.rating_model._default_manager.filter(**query)
... | Clean up the order_by_rating() method to handle explicitly FK'd
RatedItems to be annotated nicely. | django-de_django-simple-ratings | train |
0b871103c58c65325a8a408fc5a312f550c409ec | diff --git a/js/bitfinex.js b/js/bitfinex.js
index <HASH>..<HASH> 100644
--- a/js/bitfinex.js
+++ b/js/bitfinex.js
@@ -3,7 +3,7 @@
// ---------------------------------------------------------------------------
const Exchange = require ('./base/Exchange');
-const { NotImplemented, DDoSProtection, AuthenticationErro... | added NotSupported exception to bitfinex | ccxt_ccxt | train |
fb557254aad78f044f79cd9958150d2da250e84a | diff --git a/src/main/java/org/vesalainen/parser/util/Input.java b/src/main/java/org/vesalainen/parser/util/Input.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/vesalainen/parser/util/Input.java
+++ b/src/main/java/org/vesalainen/parser/util/Input.java
@@ -1136,10 +1136,13 @@ public abstract class Input<I,B e... | Fixed ring buffer indexes overflowing | tvesalainen_lpg | train |
2fc1fd6f3a2b2b6552f944a38d8153ee7b5b71f1 | diff --git a/yamcs-client/examples/authenticate.py b/yamcs-client/examples/authenticate.py
index <HASH>..<HASH> 100644
--- a/yamcs-client/examples/authenticate.py
+++ b/yamcs-client/examples/authenticate.py
@@ -13,7 +13,7 @@ def authenticate_with_username_password():
credentials = Credentials(username='admin', pas... | Deprecate few remaining data_link occurrences | yamcs_yamcs-python | train |
124742a7923885cc6f35fdd58891fc7d645a7235 | diff --git a/lib/blockchainmonitor.js b/lib/blockchainmonitor.js
index <HASH>..<HASH> 100644
--- a/lib/blockchainmonitor.js
+++ b/lib/blockchainmonitor.js
@@ -92,7 +92,7 @@ BlockchainMonitor.prototype._handleTxId = function(data, processIt) {
self.storage.fetchTxByHash(data.txid, function(err, txp) {
if (err)... | update active addresses from bc monitor | bitpay_bitcore-wallet-service | train |
eceb704d2f7f3c2fe339e0724853e72ce3de7210 | diff --git a/eppy/tests/tinynumpy_tests/test_tinyndarray.py b/eppy/tests/tinynumpy_tests/test_tinyndarray.py
index <HASH>..<HASH> 100644
--- a/eppy/tests/tinynumpy_tests/test_tinyndarray.py
+++ b/eppy/tests/tinynumpy_tests/test_tinyndarray.py
@@ -1,6 +1,12 @@
-import tinynumpy
-import numpy
+import eppy.geometry.tinynu... | Adjusted tinynumpy's testing nomenclature to work without numpy installed | santoshphilip_eppy | train |
839d2dcba8becee02846d6fb2f8a2770e0fbbbd9 | diff --git a/src/AlphaRPC/Manager/Storage/MemcacheStorage.php b/src/AlphaRPC/Manager/Storage/MemcacheStorage.php
index <HASH>..<HASH> 100644
--- a/src/AlphaRPC/Manager/Storage/MemcacheStorage.php
+++ b/src/AlphaRPC/Manager/Storage/MemcacheStorage.php
@@ -61,6 +61,11 @@ class MemcacheStorage extends AbstractStorage
... | Add ability to store values of arbitrary size. | alphacomm_alpharpc | train |
907e4e6465ea76e952ea69430dc2e60339d30ec1 | diff --git a/src/WindowsAzure/ServiceRuntime/RoleEnvironment.php b/src/WindowsAzure/ServiceRuntime/RoleEnvironment.php
index <HASH>..<HASH> 100644
--- a/src/WindowsAzure/ServiceRuntime/RoleEnvironment.php
+++ b/src/WindowsAzure/ServiceRuntime/RoleEnvironment.php
@@ -51,7 +51,7 @@ class RoleEnvironment
*
* ... | $<I>: backslash needs to be escaped for RoleEnvironment.VERSION_ENDPOINT_FIXED_PATH. | Azure_azure-sdk-for-php | train |
b01705f9032afa65104903844fd7a09fd76a031e | diff --git a/test/integration/servicegroup.post.spec.js b/test/integration/servicegroup.post.spec.js
index <HASH>..<HASH> 100644
--- a/test/integration/servicegroup.post.spec.js
+++ b/test/integration/servicegroup.post.spec.js
@@ -1,87 +1,59 @@
-'use strict';
-
/* dependencies */
-const path = require('path');
-const ... | refactor(integration): implement to es6 and use mongoose-test-helpers | CodeTanzania_majifix-service-group | train |
2ba322fedd3e9ddf4c3e0af04044738188146b6a | diff --git a/tests/mock_tests.py b/tests/mock_tests.py
index <HASH>..<HASH> 100644
--- a/tests/mock_tests.py
+++ b/tests/mock_tests.py
@@ -6,6 +6,10 @@ internet access is unavailable.
"""
from datetime import datetime
import unittest
+try:
+ import ConfigParser
+except ImportError:
+ import configparser as Con... | Mocked config parser to fix travis path issues | burnash_gspread | train |
1c2f5bb2870983e0107aba63771d841c0a88736d | diff --git a/awslimitchecker/tests/test_trustedadvisor.py b/awslimitchecker/tests/test_trustedadvisor.py
index <HASH>..<HASH> 100644
--- a/awslimitchecker/tests/test_trustedadvisor.py
+++ b/awslimitchecker/tests/test_trustedadvisor.py
@@ -1118,6 +1118,62 @@ class TestPollForRefresh(object):
call.debug('Che... | issue #<I> - handle case where TA check refresh goes from processing to none; previously this was an infinite loop | jantman_awslimitchecker | train |
c0cb7d18e892710c44490e541771c34545d23aae | diff --git a/lib/carcass.js b/lib/carcass.js
index <HASH>..<HASH> 100644
--- a/lib/carcass.js
+++ b/lib/carcass.js
@@ -15,11 +15,11 @@ module.exports = function(obj) {
obj.deferred = require('./deferred');
// Also a ready-to-use promise (resolved with the obj itself).
- // TODO: use cases / examples?
+ ... | Temporally disabled promise flow - not ready. | Wiredcraft_carcass | train |
7a50e5d769101930c4d0048fda38197a05c7ebd7 | diff --git a/resources/lang/fi-FI/cachet.php b/resources/lang/fi-FI/cachet.php
index <HASH>..<HASH> 100644
--- a/resources/lang/fi-FI/cachet.php
+++ b/resources/lang/fi-FI/cachet.php
@@ -92,6 +92,7 @@ return [
'email' => [
'subscribe' => 'Subscribe to email updates.',
'subscr... | New translations cachet.php (Finnish) | CachetHQ_Cachet | train |
5a6d95f94fa2d1c30073533def98463f019c2ffd | diff --git a/org.jenetics/src/main/java/org/jenetics/BitChromosome.java b/org.jenetics/src/main/java/org/jenetics/BitChromosome.java
index <HASH>..<HASH> 100644
--- a/org.jenetics/src/main/java/org/jenetics/BitChromosome.java
+++ b/org.jenetics/src/main/java/org/jenetics/BitChromosome.java
@@ -53,7 +53,7 @@ import org.... | Optimize the count of set bits. | jenetics_jenetics | train |
31ac1fe752079f147897ab1a43879b252ad6f2c1 | diff --git a/kernel/classes/datatypes/ezkeyword/ezkeyword.php b/kernel/classes/datatypes/ezkeyword/ezkeyword.php
index <HASH>..<HASH> 100644
--- a/kernel/classes/datatypes/ezkeyword/ezkeyword.php
+++ b/kernel/classes/datatypes/ezkeyword/ezkeyword.php
@@ -90,7 +90,8 @@ class eZKeyword
*/
function initializeKey... | - Keywords can now be added as an array, not just a string
git-svn-id: file:///home/patrick.allaert/svn-git/ezp-repo/ezpublish/trunk@<I> a<I>eee8c-daba-<I>-acae-fa<I>f<I> | ezsystems_ezpublish-legacy | train |
6fb3f0148809e16d824c8edd1381a0164ad22998 | diff --git a/go/vt/vttablet/onlineddl/executor.go b/go/vt/vttablet/onlineddl/executor.go
index <HASH>..<HASH> 100644
--- a/go/vt/vttablet/onlineddl/executor.go
+++ b/go/vt/vttablet/onlineddl/executor.go
@@ -477,12 +477,12 @@ func (e *Executor) executeDirectly(ctx context.Context, onlineDDL *schema.Online
}
// valid... | inspected wrong table name (the original table). No winspectin gthe target table | vitessio_vitess | train |
5b63c5f3acd28b8dc916249ba7d77328f34c92bc | diff --git a/lib/travis/model/job/queue.rb b/lib/travis/model/job/queue.rb
index <HASH>..<HASH> 100644
--- a/lib/travis/model/job/queue.rb
+++ b/lib/travis/model/job/queue.rb
@@ -13,13 +13,14 @@ class Job
repo_name = job.repository.try(:name)
owner = job.repository.try(:owner_name)
langua... | Add preliminary multi-os support
Job's `:os` parameter is now configured and used for queue selection.
Queue selection logic needs to be fixed; it currently relies heavily
on the order in which the queues appear in `Travis.config`. | travis-ci_travis-core | train |
b7b1e492070e708c99b605817c94e7bdba50d1ef | diff --git a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/modules/messaging/router/RouterActor.java b/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/modules/messaging/router/RouterActor.java
index <HASH>..<HASH> 100644
--- a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/... | fix(core): Fixing isLoaded flag in chat | actorapp_actor-platform | train |
271bea61277550d22dab3a195100f018d915a4cc | diff --git a/shared/network.go b/shared/network.go
index <HASH>..<HASH> 100644
--- a/shared/network.go
+++ b/shared/network.go
@@ -238,8 +238,9 @@ func WebsocketRecvStream(w io.Writer, conn *websocket.Conn) chan bool {
return ch
}
-func WebsocketProxy(source *websocket.Conn, target *websocket.Conn) chan bool {
- f... | shared/network: Fix channel handling in WebsocketProxy
Closes #<I> | lxc_lxd | train |
3d116ad49646363b204698f5b306da6cf45c074f | diff --git a/config/paperclip.php b/config/paperclip.php
index <HASH>..<HASH> 100644
--- a/config/paperclip.php
+++ b/config/paperclip.php
@@ -115,6 +115,9 @@ return [
// Set this to true in order to prevent file uploads from being deleted as attachments are destroyed.
'preserve-files' => false,
+ // A s... | Allow configuration of delete/null hash | czim_laravel-paperclip | train |
39a732dadf504550ead9c9ae55e9fae34c8bc468 | diff --git a/src/org/citygml4j/builder/convert/citygml/ADEConverter.java b/src/org/citygml4j/builder/convert/citygml/ADEConverter.java
index <HASH>..<HASH> 100644
--- a/src/org/citygml4j/builder/convert/citygml/ADEConverter.java
+++ b/src/org/citygml4j/builder/convert/citygml/ADEConverter.java
@@ -42,8 +42,9 @@ public ... | changed ADEConverter implementation - a ADEConvertBuilder cannot change the CityGMLConvertContext of the invoking CityGMLConvertBuilder anymore | citygml4j_citygml4j | train |
62c4999556784282952bfa717bbe464ff71eb766 | diff --git a/rapidoid-utils/src/main/java/org/rapidoid/util/Cls.java b/rapidoid-utils/src/main/java/org/rapidoid/util/Cls.java
index <HASH>..<HASH> 100644
--- a/rapidoid-utils/src/main/java/org/rapidoid/util/Cls.java
+++ b/rapidoid-utils/src/main/java/org/rapidoid/util/Cls.java
@@ -665,6 +665,19 @@ public class Cls {
... | Added support for string-to-enum type conversion. | rapidoid_rapidoid | train |
c51a4c16f097676d1d08c0a585063a6ad93788da | diff --git a/backbone-nested.js b/backbone-nested.js
index <HASH>..<HASH> 100644
--- a/backbone-nested.js
+++ b/backbone-nested.js
@@ -98,7 +98,7 @@
var changed = this.changed = {};
var model = this;
- var setChanged = function(obj, prefix) {
+ var setChanged = function(obj, prefix, options) {... | add options argument to :
setChanged
_delayedChange
_delayedTrigger | afeld_backbone-nested | train |
88fdd8a490e825fb6a32de8994550731249cb428 | diff --git a/lib/kafka-consumer.js b/lib/kafka-consumer.js
index <HASH>..<HASH> 100644
--- a/lib/kafka-consumer.js
+++ b/lib/kafka-consumer.js
@@ -48,10 +48,14 @@ Consumer.prototype.getConsumer = Promise.method(function (opts) {
return new Promise(function(resolve) {
consumer.on('ready', function() {
+ c... | Add debug logging on getConsumer | waldophotos_kafka-avro | train |
391f2de67556f0df3b28eacfe26240bbed7d0f12 | diff --git a/test/level2/core/files/staffNS.xml.js b/test/level2/core/files/staffNS.xml.js
index <HASH>..<HASH> 100644
--- a/test/level2/core/files/staffNS.xml.js
+++ b/test/level2/core/files/staffNS.xml.js
@@ -199,7 +199,7 @@ exports.staffNS = function() {
var ent1Ref = doc.createEntityReference("ent1");
//add... | FIXED: changed proper casing of 'Texas' to invalid 'texas' to make a pass | jsdom_jsdom | train |
559a2a0fab79c9396ee6a7d3f64ebd44397d35ef | diff --git a/src/engine/sequencer.js b/src/engine/sequencer.js
index <HASH>..<HASH> 100644
--- a/src/engine/sequencer.js
+++ b/src/engine/sequencer.js
@@ -88,11 +88,6 @@ Sequencer.prototype.startThread = function (thread) {
// Start showing run feedback in the editor.
this.runtime.glowBlock(currentBlockId, tr... | Remove redundant piece of code
The stack is pushed in after the thread finishes (`proceedThread`). | LLK_scratch-vm | train |
2996a0bddf52a8b58d566da98e61b3d6039eb5c3 | diff --git a/test/src/template/hooks/focus_hook_spec.js b/test/src/template/hooks/focus_hook_spec.js
index <HASH>..<HASH> 100644
--- a/test/src/template/hooks/focus_hook_spec.js
+++ b/test/src/template/hooks/focus_hook_spec.js
@@ -24,29 +24,30 @@ describe('focus_hook.js', function() {
});
it('should focus an ... | Minor fixes to focus_hook spec | wayfair_tungstenjs | train |
9af0f24ef9c80d25556ca0bf7c2f91b5d17fabca | diff --git a/languagetool-language-modules/de/src/main/java/org/languagetool/rules/de/GermanSpellerRule.java b/languagetool-language-modules/de/src/main/java/org/languagetool/rules/de/GermanSpellerRule.java
index <HASH>..<HASH> 100644
--- a/languagetool-language-modules/de/src/main/java/org/languagetool/rules/de/German... | [de] suggest "Toll Collect" and "Opel Arena" | languagetool-org_languagetool | train |
eef3368e6efdaa6818eedcf8d25d69da8df8343f | diff --git a/lib/lazy_high_charts/layout_helper.rb b/lib/lazy_high_charts/layout_helper.rb
index <HASH>..<HASH> 100644
--- a/lib/lazy_high_charts/layout_helper.rb
+++ b/lib/lazy_high_charts/layout_helper.rb
@@ -32,7 +32,7 @@ module LazyHighCharts
graph =<<-EOJS
<script type="text/javascript">
- fun... | Correct the syntax, needs a wrapper | michelson_lazy_high_charts | train |
eeb82361de00f86f0840c2fcdd30a5e84c49232d | diff --git a/lib/puppet/interface.rb b/lib/puppet/interface.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/interface.rb
+++ b/lib/puppet/interface.rb
@@ -53,7 +53,7 @@ class Puppet::Interface
def [](name, version)
unless face = Puppet::Interface::FaceCollection[name, version]
if current = Puppet::... | maint: better error report for a missing version of a face.
We would report this:
Could not find version <I> of Puppet::Face[:version_matching, "<I>"]
That is not actually so helpful, not least because people wonder why it
reports a version number they didn't ask for. Instead, we just report the
requested name no... | puppetlabs_puppet | train |
9fc7562c40dfdccd938dbfb173c53d3e86c54fff | diff --git a/lib/insult/spy.rb b/lib/insult/spy.rb
index <HASH>..<HASH> 100644
--- a/lib/insult/spy.rb
+++ b/lib/insult/spy.rb
@@ -1,5 +1,7 @@
module Insult
class Spy
+ CallLog = Struct.new(:object, :args, :block)
+
attr_reader :base_object, :method_name
def initialize(object, method_name)
@base... | use a class instead of a hash for call logs | ryanong_spy | train |
7198d9e88d3ac8942bc3cc26d2afa096b92d21e2 | diff --git a/example.py b/example.py
index <HASH>..<HASH> 100644
--- a/example.py
+++ b/example.py
@@ -79,6 +79,7 @@ class SampleAppHTTPRequestHandler(BaseHTTPRequestHandler):
res = Response(
query['SAMLResponse'].pop(),
self.settings['idp_cert_fingerprint'],
+ issuer=self.... | Validate in SAMLResponse the Audience | onelogin_python-saml | train |
0d213bd777cbd9daf71f1ab46da9a65632e8c548 | diff --git a/lib/commands.js b/lib/commands.js
index <HASH>..<HASH> 100644
--- a/lib/commands.js
+++ b/lib/commands.js
@@ -9,6 +9,17 @@
"use strict";
module.exports = [
+/**
+ * Send direct drive instructions to the drone.
+ *
+ * @param tilt: Number
+ * @param forward: Number
+ * @param turn: Number
+ * @param up:... | Update node-rolling-spider to <I> and update driver | ChrisTheBaron_cylon-rolling-spider | train |
f340ca5a1d7b0fc74c19e09f184ec61d62192764 | diff --git a/jplephem/names.py b/jplephem/names.py
index <HASH>..<HASH> 100644
--- a/jplephem/names.py
+++ b/jplephem/names.py
@@ -593,6 +593,10 @@ target_name_pairs = [
(399064, 'DSS-64'),
(399065, 'DSS-65'),
(399066, 'DSS-66'),
+
+ # ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/README.txt
+ (100000... | Add names for timescales now included in DE<I> | brandon-rhodes_python-jplephem | train |
2a11830eee806eeb8ce2a6646d0b2ec9e92f8e2c | diff --git a/test/virtual-output-test.js b/test/virtual-output-test.js
index <HASH>..<HASH> 100644
--- a/test/virtual-output-test.js
+++ b/test/virtual-output-test.js
@@ -2,8 +2,12 @@ var midi = require("../build/default/midi.node");
var output = new midi.output();
output.openVirtualPort("node-midi Virtual Output")... | Update the virtual output test file to take some time between messages so the results are visible. | justinlatimer_node-midi | train |
7ca858ecd7102c889e6d1646284180572a0a8b3d | diff --git a/resources/lang/zh-TW/dashboard.php b/resources/lang/zh-TW/dashboard.php
index <HASH>..<HASH> 100644
--- a/resources/lang/zh-TW/dashboard.php
+++ b/resources/lang/zh-TW/dashboard.php
@@ -35,6 +35,7 @@ return [
'failure' => 'Something went wrong updating the incident update',
],... | New translations dashboard.php (Chinese Traditional) | CachetHQ_Cachet | train |
cfb2a29fadf9cd76e2395830198865d565984c8b | diff --git a/lib/resque/job.rb b/lib/resque/job.rb
index <HASH>..<HASH> 100644
--- a/lib/resque/job.rb
+++ b/lib/resque/job.rb
@@ -226,12 +226,17 @@ module Resque
# Given an exception object, hands off the needed parameters to
# the Failure module.
def fail(exception)
- run_failure_hooks(exception)
... | Enable workers to restart when they fail on a job and on_failure hooks also cause errors
* Add helpful log message for failures during on_failure hooks | resque_resque | train |
8e6431014faf71c8e5e1fcaa053d7dc34c7d9b51 | diff --git a/libraries/joomla/installer/adapters/template.php b/libraries/joomla/installer/adapters/template.php
index <HASH>..<HASH> 100644
--- a/libraries/joomla/installer/adapters/template.php
+++ b/libraries/joomla/installer/adapters/template.php
@@ -505,7 +505,7 @@ class JInstallerTemplate extends JAdapterInstance... | Update libraries/joomla/installer/adapters/template.php | joomla_joomla-framework | train |
433f17da4c329bd47da68cbb16886beb42031e2c | diff --git a/lib/msgDB.js b/lib/msgDB.js
index <HASH>..<HASH> 100644
--- a/lib/msgDB.js
+++ b/lib/msgDB.js
@@ -282,7 +282,9 @@ module.exports = function createMsgDB (path, options) {
update(entry, function (batch) {
cb(batch)
if (postEvent && batch) {
- db.emit(postEvent, batch[0].value)
+ ... | emit event on nextTick after entry-processing, to prevent choking db on bad handlers | tradle_tim-old-engine | train |
7b1f9d28daab35ca207ae8200b4a933e20c22546 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -62,13 +62,13 @@ author = 'Phoenix Zerin'
#
# :see: http://stackoverflow.com/a/2073599/
-from pkg_resources import require
-__version__ = require('filters')[0].version
-
-# The short X.Y version.
-version =... | Removed readthedocs-breaking configuration.
Readthedocs uses tag names for versioning anyway.
See <URL> | eflglobal_filters | train |
1266ee7adf757e020e4e030d98976df5dfeda5c3 | diff --git a/test/e2e/cluster_size_autoscaling.go b/test/e2e/cluster_size_autoscaling.go
index <HASH>..<HASH> 100644
--- a/test/e2e/cluster_size_autoscaling.go
+++ b/test/e2e/cluster_size_autoscaling.go
@@ -237,13 +237,19 @@ var _ = framework.KubeDescribe("Cluster size autoscaling [Slow]", func() {
// However at th... | Skip not registered nodes in labeling in CA e2e tests | kubernetes_kubernetes | train |
a1a55951c11307eab679f46a8166c7fecb90219a | diff --git a/marrow/mailer/__init__.py b/marrow/mailer/__init__.py
index <HASH>..<HASH> 100644
--- a/marrow/mailer/__init__.py
+++ b/marrow/mailer/__init__.py
@@ -46,21 +46,35 @@ class Mailer(object):
self.config = config = Bunch.partial(prefix, config)
try:
- self.manager_con... | Additional testing and allowed (deprecated) use of raw "transport" and "manager" directives. | marrow_mailer | train |
4fb5d5c09a490326b6920cab75897f1ed6c52ba9 | diff --git a/lib/AggregateRequestHandler.php b/lib/AggregateRequestHandler.php
index <HASH>..<HASH> 100644
--- a/lib/AggregateRequestHandler.php
+++ b/lib/AggregateRequestHandler.php
@@ -105,7 +105,7 @@ class AggregateRequestHandler implements ServerObserver {
*/
public function onServerUpdate(Server $server... | Remove dedicated debug option accessors | amphp_http-server | train |
e155f870cd58f9a7270503e3d778233fda88353b | diff --git a/src/ol/renderer/canvas/canvasvectorlayerrenderer.js b/src/ol/renderer/canvas/canvasvectorlayerrenderer.js
index <HASH>..<HASH> 100644
--- a/src/ol/renderer/canvas/canvasvectorlayerrenderer.js
+++ b/src/ol/renderer/canvas/canvasvectorlayerrenderer.js
@@ -6,7 +6,10 @@ goog.require('ol.Size');
goog.require('... | Fixing RTree, and using it for retrieving geometries | openlayers_openlayers | train |
96bc767965888a920f118d61b89241bc2fc9e11d | diff --git a/core/src/main/java/hudson/model/Run.java b/core/src/main/java/hudson/model/Run.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/model/Run.java
+++ b/core/src/main/java/hudson/model/Run.java
@@ -878,7 +878,7 @@ public abstract class Run <JobT extends Job<JobT,RunT>,RunT extends Run<JobT,Run
... | [JENKINS-<I>] better not to show the size for directories, I think. | jenkinsci_jenkins | train |
62ef8eda74ee8805e62f47bd64f959452454b126 | diff --git a/src/main/java/org/primefaces/extensions/component/gchart/model/GChartType.java b/src/main/java/org/primefaces/extensions/component/gchart/model/GChartType.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/primefaces/extensions/component/gchart/model/GChartType.java
+++ b/src/main/java/org/primefaces... | Fix #<I>: Added ScatterChart to GChart. | primefaces-extensions_core | train |
af843649deee1b75f680efb3f0dad6e8244a1542 | diff --git a/lancet/__init__.py b/lancet/__init__.py
index <HASH>..<HASH> 100644
--- a/lancet/__init__.py
+++ b/lancet/__init__.py
@@ -412,9 +412,9 @@ class StaticArgs(BaseArgs):
HTML = param.Callable(default=str, doc='''
Callable to process HTML markup as returned by the 'html'
method. De... | Fix to docstring in StaticArgs | ioam_lancet | train |
7445f0e00f58a79f5cbb93d99561648037c1fc5f | diff --git a/satpy/readers/aapp_l1b.py b/satpy/readers/aapp_l1b.py
index <HASH>..<HASH> 100644
--- a/satpy/readers/aapp_l1b.py
+++ b/satpy/readers/aapp_l1b.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (c) 2012, 2013, 2014, 2015, 2016, 2017
+# Copyright (c) 2012 - 2019, Pytroll
# ... | Masking for both 3a and 3b, avoiding data in the transition all together | pytroll_satpy | train |
3d6f895fbe0492c6179f0d1644518250b0ea8c20 | diff --git a/detox/src/devices/android/ADB.js b/detox/src/devices/android/ADB.js
index <HASH>..<HASH> 100644
--- a/detox/src/devices/android/ADB.js
+++ b/detox/src/devices/android/ADB.js
@@ -23,7 +23,7 @@ class ADB {
mUserActivityTimeoutOverrideFromWindowManager,
} = await this._getPowerStatus(deviceId);
... | fix(attached-android): reverse port forwarding, and screen unlocking (#<I>)
* android: unlock device when 'Dozing' as well as 'Asleep'
* android: setup reverse port forwarding for DetoxServer
Resolves #<I>, #<I>, #<I> | wix_Detox | train |
2bf7cfbdd0b812f4aea61d5fe6be18c246502b35 | diff --git a/pytil/tests/conftest.py b/pytil/tests/conftest.py
index <HASH>..<HASH> 100644
--- a/pytil/tests/conftest.py
+++ b/pytil/tests/conftest.py
@@ -15,9 +15,10 @@
# You should have received a copy of the GNU Lesser General Public License
# along with pytil. If not, see <http://www.gnu.org/licenses/>.
+impor... | Ignore SIGPIPE correctly
Did not ignore it previously. | timdiels_pytil | train |
83099dad7ec753946b63e9bc936fa670067ba39a | diff --git a/astroid/brain/brain_attrs.py b/astroid/brain/brain_attrs.py
index <HASH>..<HASH> 100644
--- a/astroid/brain/brain_attrs.py
+++ b/astroid/brain/brain_attrs.py
@@ -34,7 +34,7 @@ def attr_attributes_transform(node):
"""
# Astroid can't infer this attribute properly
# Prevents https://github.com... | Fix parent reference in transform (incorrectly referred to body as parent) | PyCQA_astroid | train |
821dbb88d30a89434f86eeee94af0bae51a134f1 | diff --git a/src/import/load-costume.js b/src/import/load-costume.js
index <HASH>..<HASH> 100644
--- a/src/import/load-costume.js
+++ b/src/import/load-costume.js
@@ -121,6 +121,10 @@ const fetchBitmapCanvas_ = function (costume, runtime, rotationCenter) {
}
costume.bitmapResolution = 2;
+ //... | Remove promise finally because we are having trouble with polyfills | LLK_scratch-vm | train |
99c628c677793371be0b569dc9e7dae1befc36c9 | diff --git a/tasks/buster.js b/tasks/buster.js
index <HASH>..<HASH> 100644
--- a/tasks/buster.js
+++ b/tasks/buster.js
@@ -15,6 +15,14 @@ module.exports = function (grunt) {
growl.init(grunt);
}
+ var runServer = config.shouldRunServer(configData);
+ var runPhantomjs = config.shouldRunPhantomjs(conf... | Don't run server nor phantom if `test` is in args
We might want to spawn the server and phantomjs only once on task
startup, while executing the tests multiple times later.
A usecase is with a watch task monitoring file changes where we don't
want the overhead of starting the server and binding phantomjs each time
th... | busterjs_grunt-buster | train |
9fed768732271f50bf11af4f754237a90fd24495 | diff --git a/test/e2e/nvidia-gpus.go b/test/e2e/nvidia-gpus.go
index <HASH>..<HASH> 100644
--- a/test/e2e/nvidia-gpus.go
+++ b/test/e2e/nvidia-gpus.go
@@ -17,6 +17,8 @@ limitations under the License.
package e2e
import (
+ "io/ioutil"
+ "net/http"
"strings"
"time"
@@ -29,7 +31,6 @@ import (
"k8s.io/kubernet... | Use nvidia driver installer from external repo.
That installer decouples itself from COS image version (as long as the
image version is newer than cos-stable-<I>-<I>-<I>-0).
A separate commit in the test-infra repo will update the cos version
used for this test to cos-stable-<I>-<I>-<I>-0. | kubernetes_kubernetes | train |
c7f0759d2560d96a523f963ba6ed4ca715a36ecd | diff --git a/lib/db.js b/lib/db.js
index <HASH>..<HASH> 100644
--- a/lib/db.js
+++ b/lib/db.js
@@ -49,8 +49,6 @@ function createConstructor (db) {
}
console.log('database %s was dropped', name);
});
-
- return this;
}
/**
@@ -66,7 +64,6 @@ function createConstructor (db) {
}
db... | db: prevent printing db name after method execution | aheckmann_gomon | train |
a38409b60265bfea49b92b1628d84ce18a8ee9e2 | diff --git a/holoviews/core/data.py b/holoviews/core/data.py
index <HASH>..<HASH> 100644
--- a/holoviews/core/data.py
+++ b/holoviews/core/data.py
@@ -1466,7 +1466,7 @@ class GridColumns(DictColumns):
@classmethod
- def coord_mask(cls, columns, arr, ind):
+ def key_select_mask(cls, columns, values, ind):... | Renamed GridColumns coord_mask to key_select_mask | pyviz_holoviews | train |
e24e5dd8c1b2a7479d5348dc4528339b214bdb9b | diff --git a/lib/beaker-pe/install/pe_utils.rb b/lib/beaker-pe/install/pe_utils.rb
index <HASH>..<HASH> 100644
--- a/lib/beaker-pe/install/pe_utils.rb
+++ b/lib/beaker-pe/install/pe_utils.rb
@@ -524,7 +524,7 @@ module Beaker
# Do a generic install if this is masterless, not all the same PE version, an upgrad... | (PE-<I>) Add logic to determine installer type for postgres upgrades
Previously if there was an upgrade occuring we'd just consider the install
type as just generic.
With the addition of external postgres support to beaker-pe, that needs to
be handled in its own method. So this PR adds in additional logic for checking... | puppetlabs_beaker-pe | train |
abae83d711bd670fc570e70963b5c7ede6c9a47f | diff --git a/lib/meta.js b/lib/meta.js
index <HASH>..<HASH> 100644
--- a/lib/meta.js
+++ b/lib/meta.js
@@ -25,7 +25,7 @@ function Meta() {
this.values[key] = value;
};
meta.Map.prototype.extend = function () {
- var result = new meta.Map;
+ var result = new meta.Map();
result.values = Object.creat... | Made jshint happy. | metascript_metascript | train |
0b0e6f13c02a425f60bfed9db401392d72f419c6 | diff --git a/actionpack/lib/action_dispatch/middleware/reloader.rb b/actionpack/lib/action_dispatch/middleware/reloader.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/middleware/reloader.rb
+++ b/actionpack/lib/action_dispatch/middleware/reloader.rb
@@ -6,7 +6,7 @@ module ActionDispatch
# after ... | Typo (request -> response) | rails_rails | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.