hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
58b815a6fe3f0822c8503df51248cb56e281ca4a | diff --git a/component.py b/component.py
index <HASH>..<HASH> 100644
--- a/component.py
+++ b/component.py
@@ -182,9 +182,7 @@ class Component(object):
"""Returns a TextIOWrapper around the given stream that handles UTF-8
encoding/decoding.
"""
- if isinstance(stream, io.TextIOBase):
-... | Remove StringIO usage from unit tests to simplify component code and prevent a potential issue where stdin/stdout have different encodings with Python 3 | pystorm_pystorm | train |
7260ab698068f18e180dea0d6f2f551823243c3e | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -35,7 +35,7 @@ var indexes = [
]
function mapRts (msg) {
- msg.rts = Math.min(msg.timestamp, msg.value.timestamp)
+ msg.rts = Math.min(msg.timestamp, msg.value.timestamp) || msg.timestamp
return msg
}
@@ -71,3 +71,... | if claimed timestamp is zero, use received time instead @mmckegg @AljoschaMeyer @cryptix | ssbc_ssb-query | train |
c9975f55f235de934a41b1de2e5e8106060d65ec | diff --git a/core/src/test/java/c10n/CustomAnnotationBindingTest.java b/core/src/test/java/c10n/CustomAnnotationBindingTest.java
index <HASH>..<HASH> 100755
--- a/core/src/test/java/c10n/CustomAnnotationBindingTest.java
+++ b/core/src/test/java/c10n/CustomAnnotationBindingTest.java
@@ -66,7 +66,7 @@ public class Custom... | Fixed broken test due to predefined annotations | rodionmoiseev_c10n | train |
6f219f4e5d70c5f063c626855f595ee67d89944e | diff --git a/lib/monetize.rb b/lib/monetize.rb
index <HASH>..<HASH> 100644
--- a/lib/monetize.rb
+++ b/lib/monetize.rb
@@ -92,6 +92,7 @@ module Monetize
value *= currency.subunit_to_unit
Money.new(value, currency)
end
+ singleton_class.send(:alias_method, :from_integer, :from_fixnum)
def self.from_fl... | Alias from_fixnum as from_integer method (#<I>) | RubyMoney_monetize | train |
790619083dc22a0e1a5c3a713a20add372de3aa5 | diff --git a/src/containers/EntryPage.js b/src/containers/EntryPage.js
index <HASH>..<HASH> 100644
--- a/src/containers/EntryPage.js
+++ b/src/containers/EntryPage.js
@@ -40,7 +40,7 @@ class EntryPage extends React.Component {
};
componentDidMount() {
- const { entry, newEntry, collection, slug, loadEntry } ... | Fix cms hanging when going to new entry page | netlify_netlify-cms | train |
e7303a870cb58c32160d4147e8c4d0eafb651cc1 | diff --git a/src/asynqp/serialisation.py b/src/asynqp/serialisation.py
index <HASH>..<HASH> 100644
--- a/src/asynqp/serialisation.py
+++ b/src/asynqp/serialisation.py
@@ -83,8 +83,8 @@ def read_bools(byte, number_of_bools):
@rethrow_as(struct.error, AMQPError('failed to read a boolean'))
-def read_time_stamp(strea... | Rename time_stamp to timestamp, following the style in datetime | benjamin-hodgson_asynqp | train |
e73f0de15c5e9fd3016d9e1008f5bda967eeb131 | diff --git a/__init__.py b/__init__.py
index <HASH>..<HASH> 100644
--- a/__init__.py
+++ b/__init__.py
@@ -12,6 +12,8 @@
from __future__ import absolute_import, division, print_function, unicode_literals
DEFAULT_TX_FEE = 100000
+DEFAULT_BASE_FEE = DEFAULT_TX_FEE
+DEFAULT_SMART_FEE = 400000
DEFAULT_ASSET_FEE = 1000... | Making pywaves more dynamic without breaking old functionality | PyWaves_PyWaves | train |
6064c4b9b97ad40e38a8f66aa71e6c6e469091a4 | diff --git a/lib/lolita/controllers/component_helpers.rb b/lib/lolita/controllers/component_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/lolita/controllers/component_helpers.rb
+++ b/lib/lolita/controllers/component_helpers.rb
@@ -131,7 +131,7 @@ module Lolita
#
# component_helper_path :"lolita/li... | helper detection method fixed, to ignore PathName | ithouse_lolita | train |
1d62e9c259eaf271ddf8bb8a6fddcc4f0e51ffa0 | diff --git a/core/src/main/java/hudson/util/CopyOnWriteList.java b/core/src/main/java/hudson/util/CopyOnWriteList.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/util/CopyOnWriteList.java
+++ b/core/src/main/java/hudson/util/CopyOnWriteList.java
@@ -44,7 +44,25 @@ public class CopyOnWriteList<E> implem... | fixed a problem in the iterator as pointed out by Jesse.
git-svn-id: <URL> | jenkinsci_jenkins | train |
c63b69672eb70c8453d76a914a1ee4a1e29222c9 | diff --git a/process.go b/process.go
index <HASH>..<HASH> 100644
--- a/process.go
+++ b/process.go
@@ -66,7 +66,6 @@ func (p *process) Kill(ctx context.Context, s syscall.Signal) error {
}
func (p *process) Wait(ctx context.Context) (uint32, error) {
- // TODO (ehazlett): add filtering for specific event
eventstr... | Add typeurl.Is to gate unmarshal | containerd_containerd | train |
c7e2f24140e3f879a098fc30222cd6ba4cf6983c | diff --git a/scripts/experiments/run_experiments.py b/scripts/experiments/run_experiments.py
index <HASH>..<HASH> 100644
--- a/scripts/experiments/run_experiments.py
+++ b/scripts/experiments/run_experiments.py
@@ -316,8 +316,9 @@ class DepParseExpParamsRunner(ExpParamsRunner):
brown_cf = self.get_data(data_di... | Switching to brown clusters SRL data. | mgormley_pacaya | train |
f3e8a5b6b887f8a6cb45d0a7f9de77d59cad428a | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-# v2.4.2
+# v2.4.3
* Fix issue with automatically loading Alchemy* credentials from the Bluemix environment
# v2.4.1
diff --git a/lib/base_service.js b/lib/base_service.js
index <HASH>..<HASH>... | more apikey/apikey stuff | watson-developer-cloud_node-sdk | train |
85d6efe841da23014226bd7ad4419d037937cb65 | diff --git a/example/php/index.php b/example/php/index.php
index <HASH>..<HASH> 100644
--- a/example/php/index.php
+++ b/example/php/index.php
@@ -3,6 +3,9 @@
require_once 'vendor/autoload.php';
$bugsnag = Bugsnag\Client::make('YOUR-API-KEY-HERE');
+
+$bugsnag->leaveBreadcrumb('Example breadcrumb!');
+
$bugsnag->n... | Made the example leave a breadcrumb (#<I>) | bugsnag_bugsnag-php | train |
ad338e98dac9de629a948ebf66cd163c39f74dc6 | diff --git a/CHANGELOG b/CHANGELOG
index <HASH>..<HASH> 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,7 @@
+= 0.1.4
- Fix avoid proxying immutable classes
+- Fix concat with proxy array
+- Fix merge with proxy hash
= 0.1.3
- Fix for returning immutable class from CowProxy
diff --git a/lib/cow_proxy/array.rb b/... | fix concat and merge with proxy array and hash | Programatica_cow_proxy | train |
36c4f686036638dc0e91b375905e6adcf01d1201 | diff --git a/lib/dialog.js b/lib/dialog.js
index <HASH>..<HASH> 100644
--- a/lib/dialog.js
+++ b/lib/dialog.js
@@ -418,12 +418,17 @@ class Dialog extends Emitter {
case 'MESSAGE':
case 'PUBLISH':
case 'UPDATE':
- if (0 === this.listeners(eventName).length) {
- res.send(200) ;
- ... | wrap requests within a dialog inside setImmediate (#<I>) | davehorton_drachtio-srf | train |
f5e2a66d83d8de060183d379b6346825e47e1888 | diff --git a/src/Plugin/DataType/StrawberryValuesFromJson.php b/src/Plugin/DataType/StrawberryValuesFromJson.php
index <HASH>..<HASH> 100644
--- a/src/Plugin/DataType/StrawberryValuesFromJson.php
+++ b/src/Plugin/DataType/StrawberryValuesFromJson.php
@@ -84,7 +84,7 @@ class StrawberryValuesFromJson extends ItemList {
... | If SBF value is empty, assume its processed and return [] | esmero_strawberryfield | train |
3ab89f0b665e1fcddbf985ea021fd570b089b158 | diff --git a/src/main/java/eu/interedition/collatex2/implementation/alignment/Gap.java b/src/main/java/eu/interedition/collatex2/implementation/alignment/Gap.java
index <HASH>..<HASH> 100644
--- a/src/main/java/eu/interedition/collatex2/implementation/alignment/Gap.java
+++ b/src/main/java/eu/interedition/collatex2/imp... | [RHD] Made transposition test 2 gaps work | interedition_collatex | train |
5067043eeb13c2361a1cfedabddb9e3046f0c32b | diff --git a/morris/__init__.py b/morris/__init__.py
index <HASH>..<HASH> 100644
--- a/morris/__init__.py
+++ b/morris/__init__.py
@@ -570,11 +570,12 @@ class boundmethod(object):
return self.func(self.instance, *args, **kwargs)
-class SignalTestCase(unittest.TestCase):
+class SignalInterceptorMixIn:
... | Add SignalInterceptorMixIn
This patch splits the SignalTestCase into two classes: the
SignalInterceptorMixIn which can be mixed with a unittest.TestCase (or
other similar class). One such mixture is the SignalTestCase itself.
This is a backwards-compatibility feature for Plainbox. | zyga_morris | train |
405e0aa06fe8a8702e32d2f181a5e5f699a4dfea | diff --git a/tests/run.py b/tests/run.py
index <HASH>..<HASH> 100755
--- a/tests/run.py
+++ b/tests/run.py
@@ -16,23 +16,34 @@ import coverage
from django.conf import settings
from django.test.utils import get_runner
+import colab.settings
-def runtests():
+def runtests(test_suites=[]):
if django.VERSION >... | Allowing run a specific test suite
- Works for tests/run.py | colab_colab | train |
4c758734ec1b58cd5c14062a8b502b485bdca286 | diff --git a/genes/tests.py b/genes/tests.py
index <HASH>..<HASH> 100644
--- a/genes/tests.py
+++ b/genes/tests.py
@@ -478,13 +478,16 @@ class APIResourceTestCase(ResourceTestCaseMixin, TestCase):
self.gene2 = factory.create(Gene, {'standard_name': None,
'systematic_... | Changing standard_name variable to standard_name_prefix in tests.py | greenelab_django-genes | train |
b9286700efd422d4f0d45d6f2fc3834b7c830e52 | diff --git a/pyecore/ecore.py b/pyecore/ecore.py
index <HASH>..<HASH> 100644
--- a/pyecore/ecore.py
+++ b/pyecore/ecore.py
@@ -768,10 +768,10 @@ class EStructuralFeature(ETypedElement):
class EAttribute(EStructuralFeature):
def __init__(self, name=None, eType=None, default_value=None,
lower=0, u... | Add missing parameter for EAttribute (ordered)
EAttribute can be collection, there is nothing that prevent that in
Ecore. This commit enables the user to express that a collection is
ordered or not. | pyecore_pyecore | train |
15b87f9fb4c66c7d312eca8e507e852a9b514d77 | diff --git a/lib/conceptql/operators/read.rb b/lib/conceptql/operators/read.rb
index <HASH>..<HASH> 100644
--- a/lib/conceptql/operators/read.rb
+++ b/lib/conceptql/operators/read.rb
@@ -11,9 +11,16 @@ module ConceptQL
argument :read_codes, type: :codelist, vocab: "Read"
basic_type :selection
categ... | Read: hack in support for GDM | outcomesinsights_conceptql | train |
f83e4b8bd340d1f8c32a61fe93f8142362851012 | diff --git a/src/main/java/org/redisson/connection/MasterSlaveConnectionManager.java b/src/main/java/org/redisson/connection/MasterSlaveConnectionManager.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/redisson/connection/MasterSlaveConnectionManager.java
+++ b/src/main/java/org/redisson/connection/MasterSlave... | Timeout cancellation. #<I> | redisson_redisson | train |
b8e79f4344e7762baa4be19055c375b0c74d36f4 | diff --git a/management_api.go b/management_api.go
index <HASH>..<HASH> 100644
--- a/management_api.go
+++ b/management_api.go
@@ -134,6 +134,7 @@ func (e *Enforcer) AddPolicies(rules [][]string) (bool, error) {
// Otherwise the function returns true by adding the new rule.
func (e *Enforcer) AddNamedPolicy(ptype str... | fix: slice reference (#<I>) | casbin_casbin | train |
8d1588e3a8257642f7d1ef471c3372392895510e | diff --git a/src/Role/ObjectRepositoryProvider.php b/src/Role/ObjectRepositoryProvider.php
index <HASH>..<HASH> 100644
--- a/src/Role/ObjectRepositoryProvider.php
+++ b/src/Role/ObjectRepositoryProvider.php
@@ -49,7 +49,9 @@ class ObjectRepositoryProvider
}
}
- $ro... | Reverse parent roles for FILO | API-Skeletons_zf-oauth2-doctrine-permissions-acl | train |
68235e39bf2c594779791cf4499b7fad7a1855d3 | diff --git a/safe/storage/raster.py b/safe/storage/raster.py
index <HASH>..<HASH> 100644
--- a/safe/storage/raster.py
+++ b/safe/storage/raster.py
@@ -16,8 +16,13 @@ from safe.gis.numerics import (
geotransform_to_axes,
grid_to_points
)
-from safe.common.exceptions import ReadLayerError, WriteLayerError
-fro... | Try to read .keywords file if the xml file is not compatible. | inasafe_inasafe | train |
38c7b8b7c9706f35b9772ae955236b31316b4f16 | diff --git a/lib/hooks/UnaryExpression.js b/lib/hooks/UnaryExpression.js
index <HASH>..<HASH> 100644
--- a/lib/hooks/UnaryExpression.js
+++ b/lib/hooks/UnaryExpression.js
@@ -14,6 +14,8 @@ module.exports = function UnaryExpression(node) {
endToken = endToken.next;
}
_br.limitAfter(endToken, 'DeleteOper... | fix the problem of incorrect handling for 'typeof' | millermedeiros_esformatter | train |
85e4b8e14c736636705c9f01f084c4e61ce32c84 | diff --git a/src/storage/shard.go b/src/storage/shard.go
index <HASH>..<HASH> 100644
--- a/src/storage/shard.go
+++ b/src/storage/shard.go
@@ -419,37 +419,38 @@ func (s *shard) localShards() ([]string, error) {
}
// bestRole returns the best role for us to fill in the cluster right now. If
-// all shards are curren... | Makes best role do stealing.
This allows for more adaptive resharding. | pachyderm_pachyderm | train |
a361fd050f490e550b7e2e5fbfea91b85ba3e879 | diff --git a/src/service/translate.js b/src/service/translate.js
index <HASH>..<HASH> 100644
--- a/src/service/translate.js
+++ b/src/service/translate.js
@@ -1179,11 +1179,11 @@ angular.module('pascalprecht.translate').provider('$translate', ['$STORAGE_KEY',
* @returns translation created by $missingTranslatio... | feat(missingTranslationHandlerFactory): pass interpolationParams to missingTranslationHandlerFactory
Sometimes these parameters are needed as they determine parts of the translation.
When generating a new translation key and re-translating these are needed. | angular-translate_angular-translate | train |
026ca2db87b4927d65a3ee0c52a1d0de5f6b207b | diff --git a/lib/flatiron/plugins/resourceful.js b/lib/flatiron/plugins/resourceful.js
index <HASH>..<HASH> 100644
--- a/lib/flatiron/plugins/resourceful.js
+++ b/lib/flatiron/plugins/resourceful.js
@@ -94,6 +94,8 @@ exports.init = function (done) {
app.config.get('resourceful') || {}
);
+ app.config.set('... | [fix] Set the `resourceful` config value in the app from provided options | flatiron_flatiron | train |
ddcf7f2182f72bcc35e1ef54a6df6f091ef9d36a | diff --git a/Lib/fontbakery/testrunner.py b/Lib/fontbakery/testrunner.py
index <HASH>..<HASH> 100644
--- a/Lib/fontbakery/testrunner.py
+++ b/Lib/fontbakery/testrunner.py
@@ -589,7 +589,10 @@ class TestRunner(object):
# nestable subtests. Otherwise, a STARTTEST would end the
# previous test implicitly.
... | [testrunner] FIX: ERROR if no status was returned by check (did break the process) | googlefonts_fontbakery | train |
cce095f4be1a74994e9cb6b4f087fc58658aa48d | diff --git a/compliance_checker/__init__.py b/compliance_checker/__init__.py
index <HASH>..<HASH> 100644
--- a/compliance_checker/__init__.py
+++ b/compliance_checker/__init__.py
@@ -1,3 +1,4 @@
-__import__('pkg_resources').declare_namespace(__name__)
+from pkgutil import extend_path
+__path__ = extend_path(__path__, _... | More correct way of doing namespace packages? | ioos_compliance-checker | train |
27ec190e4362d083910bbec79c80a38adaf1d313 | diff --git a/client/state/posts/test/actions.js b/client/state/posts/test/actions.js
index <HASH>..<HASH> 100644
--- a/client/state/posts/test/actions.js
+++ b/client/state/posts/test/actions.js
@@ -570,8 +570,6 @@ describe( 'actions', () => {
name: 'ribs',
description: ''
} ],
- query: undefine... | State: Merge into extended action to preserve structure | Automattic_wp-calypso | train |
1ae2f1cb875e60d6b2af7605304f0eefa44da184 | diff --git a/js/hitbtc.js b/js/hitbtc.js
index <HASH>..<HASH> 100644
--- a/js/hitbtc.js
+++ b/js/hitbtc.js
@@ -322,11 +322,13 @@ module.exports = class hitbtc extends Exchange {
return {
'info': response,
'id': id,
- 'status': undefined,
- 'fromAccount': fromAcco... | hitbtc unified transfer structure | ccxt_ccxt | train |
76228c5654e4b7d031a9141b2974cf420b5a78cd | diff --git a/data/php b/data/php
index <HASH>..<HASH> 100755
--- a/data/php
+++ b/data/php
@@ -53,5 +53,7 @@ if (isset($_SERVER['XDEBUG_CONFIG'])) {
$env = "XDEBUG_CONFIG='" . $_SERVER['XDEBUG_CONFIG'] . "'";
}
+$includePaths = array('.', $projectDirGuest . '/vendor/phpunit/phpunit');
+$arguments = array_merge(arr... | Set php include_path to composer vendor phpunit | cargomedia_vagrant-phpstorm-tunnel | train |
66d6331d0b1271922de6d073f452aab016be91c0 | diff --git a/test/unexpected-sinon.spec.js b/test/unexpected-sinon.spec.js
index <HASH>..<HASH> 100644
--- a/test/unexpected-sinon.spec.js
+++ b/test/unexpected-sinon.spec.js
@@ -543,7 +543,8 @@ describe('unexpected-sinon', function () {
"\n" +
"invocations(\n" +
... | Test: Added missing newline. | unexpectedjs_unexpected-sinon | train |
f31eb866b751831bc9c735d5998d31a58cf93fe6 | diff --git a/src/components/validity/methods-validate.js b/src/components/validity/methods-validate.js
index <HASH>..<HASH> 100644
--- a/src/components/validity/methods-validate.js
+++ b/src/components/validity/methods-validate.js
@@ -17,7 +17,7 @@ function isPromise (p: Object): boolean {
export default function (V... | :shirt: refactor: use vue utlity via from constructor | kazupon_vue-validator | train |
6166bd2b54af9eb15cfb7c8ae2fe2e168cf0f57b | diff --git a/tests/web_api/conftest.py b/tests/web_api/conftest.py
index <HASH>..<HASH> 100644
--- a/tests/web_api/conftest.py
+++ b/tests/web_api/conftest.py
@@ -42,12 +42,12 @@ Person = build_entity(
is_person = True,
)
-@pytest.fixture(scope="module")
+@pytest.fixture(scope="package")
def entities():
... | Fix // Change fixture scope to "package" to prevent recreating fixture objects for every single test | openfisca_openfisca-core | train |
44bc594e5c18be991f0f08e7080ca98ece0d4f12 | diff --git a/src/Connection.php b/src/Connection.php
index <HASH>..<HASH> 100644
--- a/src/Connection.php
+++ b/src/Connection.php
@@ -113,7 +113,7 @@ class Connection
$this->options[CURLOPT_HTTPHEADER] = [];
}
- $this->options[CURLOPT_HTTPHEADER][] = ["X-UW-ACT-AS: $user"];
+... | Test inclusion of X-UW-Act-As header. | UWEnrollmentManagement_Connection | train |
9b25cdc1623188ef7f5b0ddc262409d022996d87 | diff --git a/src/Cursor.js b/src/Cursor.js
index <HASH>..<HASH> 100644
--- a/src/Cursor.js
+++ b/src/Cursor.js
@@ -17,13 +17,68 @@ export default class Cursor {
* Creates cursor that writes direct to `stdout`.
*
* @constructor
+ * @param {Terminal} terminal Terminal instance to which cursor will be assign... | refactor(cursor): Add accessors to cursor properties | kittikjs_cursor | train |
17b0ed5d5d57f9f719cac8b40a23c27341899e76 | diff --git a/cartoframes/viz/layer.py b/cartoframes/viz/layer.py
index <HASH>..<HASH> 100644
--- a/cartoframes/viz/layer.py
+++ b/cartoframes/viz/layer.py
@@ -17,7 +17,9 @@ except ImportError:
class Layer(object):
- """Layer
+ """Layer to display data on a map. This class can be used as one or more
+ laye... | adds more info in docs about repr html | CartoDB_cartoframes | train |
5fee81ff08c2f03e020406c97b3243aef0d1061b | diff --git a/src/Model.js b/src/Model.js
index <HASH>..<HASH> 100644
--- a/src/Model.js
+++ b/src/Model.js
@@ -22,6 +22,8 @@ let _serialize = function (model, pojo, options) {
let props = model.serializeProperties || model.properties;
+ props = props.filter(prop => (!model.propertyOptions[prop] || model.propert... | Fixing a tiny bug where deserialization wasn't working with empty strings | ringa-js_ringa | train |
56d72dfc34037984c95f1a833b9f4867aa61a6da | diff --git a/lib/active_bugzilla/service.rb b/lib/active_bugzilla/service.rb
index <HASH>..<HASH> 100644
--- a/lib/active_bugzilla/service.rb
+++ b/lib/active_bugzilla/service.rb
@@ -59,10 +59,10 @@ module ActiveBugzilla
end
def https?
- URI.parse(self.bugzilla_uri).scheme == 'https'
+ URI.parse(b... | Fix 3 "offenses" detected by rubocop. | ManageIQ_active_bugzilla | train |
3bb81d033bcd5e907af1a5a5cf3589031f6aa2c2 | diff --git a/lib/oembed/provider.rb b/lib/oembed/provider.rb
index <HASH>..<HASH> 100644
--- a/lib/oembed/provider.rb
+++ b/lib/oembed/provider.rb
@@ -126,14 +126,20 @@ module OEmbed
# @deprecated *Note*: This method will be made private in the future.
def raw(url, query = {})
uri = build(url, query)
-... | extract http get class method and reuse in provider discovery | ruby-oembed_ruby-oembed | train |
05063fb3d3b5be302ff375884ef45d5bd1e25f60 | diff --git a/lib/mongoid/contexts/enumerable.rb b/lib/mongoid/contexts/enumerable.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/contexts/enumerable.rb
+++ b/lib/mongoid/contexts/enumerable.rb
@@ -5,7 +5,7 @@ module Mongoid #:nodoc:
include Paging
attr_reader :selector, :options, :documents
- del... | Fixing enumerable context first, one and last ignoring selector | mongodb_mongoid | train |
f083a06f3f97c34079a7d37692f2968df24fe8ff | diff --git a/view/ViewableData.php b/view/ViewableData.php
index <HASH>..<HASH> 100644
--- a/view/ViewableData.php
+++ b/view/ViewableData.php
@@ -93,7 +93,18 @@ class ViewableData extends Object implements IteratorAggregate {
* @return bool
*/
public function __isset($property) {
- return $this->hasField($pro... | FIX: Fix ViewableData::__isset() for getXXX() getters.
PHP7 is stricter about this.
Manual cherry-pick of of c<I>a<I>c7f<I>ab4ce1f<I>ccbc5b<I>fcaf | silverstripe_silverstripe-framework | train |
ab5e2f91c1868b2dafcece44b753ce1242f58ad7 | diff --git a/robovm/src/playn/robovm/RoboAudio.java b/robovm/src/playn/robovm/RoboAudio.java
index <HASH>..<HASH> 100644
--- a/robovm/src/playn/robovm/RoboAudio.java
+++ b/robovm/src/playn/robovm/RoboAudio.java
@@ -159,6 +159,10 @@ public class RoboAudio extends Audio {
}
}
+ void delete(RoboSoundOAL sound) ... | Delete OAL buffers on release. | playn_playn | train |
02d5dff0b2195d4e8b60ba08ec30fa6f30f78cd5 | diff --git a/pom.xml b/pom.xml
index <HASH>..<HASH> 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
<jdk.version>1.6</jdk.version>
<release.description>
\+ Added 1Ex.Trade, BitMEX, Coinsquare and EmpoEX.
- \* Fixed AllCoin and CryptoFacilities.
+ \* Fixed AllCoin, CryptoFacilities and NXT Asset Excha... | Updated peer for NXT Asset Exchange. | drpout_libdynticker | train |
54afc0e3c736157d9bfa33c2230c9f6b7fdd6259 | diff --git a/mgmt/rest/rest_v1_test.go b/mgmt/rest/rest_v1_test.go
index <HASH>..<HASH> 100644
--- a/mgmt/rest/rest_v1_test.go
+++ b/mgmt/rest/rest_v1_test.go
@@ -55,17 +55,26 @@ type restAPIInstance struct {
server *Server
}
-func startV1API(cfg *mockConfig) *restAPIInstance {
+func startV1API(cfg *mockConfig, te... | Improved readability of v1 tests:
- Divided Plugin, Tribe, Metric, and Config tests into separate methods.
- Added missing v1 test for tribe/member/:name | intelsdi-x_snap | train |
8e3fc6d7b93675755232f4c5f983786b8858d1cf | diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/section.js b/bundles/org.eclipse.orion.client.ui/web/orion/section.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.ui/web/orion/section.js
+++ b/bundles/org.eclipse.orion.client.ui/web/orion/section.js
@@ -129,6 +129,9 @@ define([
if (... | Git page Configuration (wrench) button needs accessible name | eclipse_orion.client | train |
6d6428077897d48b4256cc1854b12072ce8a9fec | diff --git a/src/codeflask.js b/src/codeflask.js
index <HASH>..<HASH> 100644
--- a/src/codeflask.js
+++ b/src/codeflask.js
@@ -250,7 +250,7 @@ export default class CodeFlask {
}
handleSelfClosingCharacters (e) {
- const openChars = ['(', '[', '{', '<']
+ const openChars = ['(', '[', '{', '<', '\'', '"']
... | wrap selected text on self closing chars | kazzkiq_CodeFlask | train |
6c9a9f4a247a7a4c5b69c9ad1f6610071200fa02 | diff --git a/openquake/baselib/datastore.py b/openquake/baselib/datastore.py
index <HASH>..<HASH> 100644
--- a/openquake/baselib/datastore.py
+++ b/openquake/baselib/datastore.py
@@ -84,7 +84,7 @@ def hdf5new(datadir=None):
return new
-def extract_calc_id_datadir(hdf5path=None, datadir=None):
+def extract_calc... | Read the ruptures from the hdf4cache [skip hazardlib] | gem_oq-engine | train |
02aaa08af012dee9a2d08e852335166510f38928 | diff --git a/app/models/socializer/activity_object.rb b/app/models/socializer/activity_object.rb
index <HASH>..<HASH> 100644
--- a/app/models/socializer/activity_object.rb
+++ b/app/models/socializer/activity_object.rb
@@ -52,16 +52,17 @@ module Socializer
end
def like!(person)
- create_activity(person... | return boolean from create_activity and check result before incrementing/decrementing the like count | socializer_socializer | train |
dfb3c716d8a64a6d84a9828f0bd89aea431a3c0e | diff --git a/pycbc/waveform/generator.py b/pycbc/waveform/generator.py
index <HASH>..<HASH> 100644
--- a/pycbc/waveform/generator.py
+++ b/pycbc/waveform/generator.py
@@ -28,6 +28,7 @@ This modules provides classes for generating waveforms.
import functools
import waveform
import ringdown
+from pycbc import coordina... | Add spin magnitude and angles to generators. (#<I>)
* Add spin magnitude and angles to generators.
* Use .format for string. | gwastro_pycbc | train |
84aae51562c04899eda59f1e48a277388b54b01e | diff --git a/lib/mastermind/version.rb b/lib/mastermind/version.rb
index <HASH>..<HASH> 100644
--- a/lib/mastermind/version.rb
+++ b/lib/mastermind/version.rb
@@ -1,3 +1,3 @@
module Mastermind
- VERSION = "0.1.0"
+ VERSION = "0.1.2"
end | updated version of mastermind to <I> | andela-oakinniranye_mastermind | train |
63f484fc2a01d0c34f59efe4543c38fc1202a53c | diff --git a/lib/bblib/core/util/cases.rb b/lib/bblib/core/util/cases.rb
index <HASH>..<HASH> 100644
--- a/lib/bblib/core/util/cases.rb
+++ b/lib/bblib/core/util/cases.rb
@@ -2,7 +2,7 @@ module BBLib
def self.title_case(str, first_only: true)
str = str.to_s unless str.is_a?(String)
ignoreables = %w(a an th... | Enhanced title case to support dotted character strings. | bblack16_bblib-ruby | train |
62b4364a77fe5ceef30afe98497a1ea9b5ca7902 | diff --git a/api/src/main/java/io/grpc/ProxyDetector.java b/api/src/main/java/io/grpc/ProxyDetector.java
index <HASH>..<HASH> 100644
--- a/api/src/main/java/io/grpc/ProxyDetector.java
+++ b/api/src/main/java/io/grpc/ProxyDetector.java
@@ -32,7 +32,7 @@ import javax.annotation.Nullable;
* underlying transport need to ... | api: Fix Javadoc reference to NameResolver.Args
NameResolver.Helper was a short-lived class that didn't get very far. We
chose NameResolver.Args instead and didn't mirror LoadBalancer. | grpc_grpc-java | train |
35884b2621e6861b0c123a0777028b7405bda37c | diff --git a/src/main/ruby/resque/jruby_worker.rb b/src/main/ruby/resque/jruby_worker.rb
index <HASH>..<HASH> 100644
--- a/src/main/ruby/resque/jruby_worker.rb
+++ b/src/main/ruby/resque/jruby_worker.rb
@@ -25,9 +25,9 @@ module Resque
def work(&block)
startup
work_loop(&block)
- unregist... | need to monkey-patch Resque::WorkerRegistry for <I> to work as expected | kares_jruby-rack-worker | train |
2927cc71ced18de78715cb655b28e9716f03f0aa | diff --git a/ospd/protocol.py b/ospd/protocol.py
index <HASH>..<HASH> 100644
--- a/ospd/protocol.py
+++ b/ospd/protocol.py
@@ -146,6 +146,32 @@ class OspRequest:
return credentials
+ @staticmethod
+ def process_alive_test_methods(cred_tree: Element, options: Dict) -> None:
+ """ Receive an XML... | Add new interface for adding alive test methods
Instead of using a bit flag which entails all
alive tests we can now also use xml elements for
every alive test method. | greenbone_ospd | train |
3c5e576cd2f6064f8dae21d2ff9c8f8ca2687de4 | diff --git a/includes/functions/functions.php b/includes/functions/functions.php
index <HASH>..<HASH> 100644
--- a/includes/functions/functions.php
+++ b/includes/functions/functions.php
@@ -788,7 +788,7 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi
$dob1 = $person1->getBirthDa... | Fix: detect twins by birth-date, not by birth-date qualifier | fisharebest_webtrees | train |
825d8278b2898a8d269284bc73f30bf00eed5242 | diff --git a/src/Parser/SyntaxTree/Node.php b/src/Parser/SyntaxTree/Node.php
index <HASH>..<HASH> 100644
--- a/src/Parser/SyntaxTree/Node.php
+++ b/src/Parser/SyntaxTree/Node.php
@@ -66,6 +66,19 @@ class Node
}
/**
+ * @param int $index
+ * @return Node
+ * @throws Exception
+ */
+ public... | Parser syntax tree Node::getChild() added | remorhaz_php-unilex | train |
536eeff454881cfe06c6ce7a729b68af15d4e98a | diff --git a/pyontutils/qnamefix.py b/pyontutils/qnamefix.py
index <HASH>..<HASH> 100755
--- a/pyontutils/qnamefix.py
+++ b/pyontutils/qnamefix.py
@@ -1,14 +1,22 @@
#!/usr/bin/env python3
-"""
- This file should be run in NIF-Ontology/ttl
- Run at NIF-Ontology 5dd555fcbacf515a475ff1fe47aed06d93cce61e
+"""Set qna... | qnamefix converted to cli program and added to setup.py | tgbugs_pyontutils | train |
f460d808baca3c5b12a11da8235fd2af1032e7d4 | diff --git a/router.go b/router.go
index <HASH>..<HASH> 100644
--- a/router.go
+++ b/router.go
@@ -168,7 +168,7 @@ func (da *doubleArray) lookup(path string, params []Param, idx int) (*node, []Pa
indices := make([]uint64, 0, 1)
for i := 0; i < len(path); i++ {
if da.bc[idx].IsAnyParam() {
- indices = append(in... | Fix a problem that can't be built in <I>bit environment | naoina_denco | train |
1e414762f357283ff7c38eea69ac53ba36660f3d | diff --git a/lib/compilers.js b/lib/compilers.js
index <HASH>..<HASH> 100644
--- a/lib/compilers.js
+++ b/lib/compilers.js
@@ -139,7 +139,7 @@ module.exports = function(extglob) {
var str = star.call(this, node);
// if the extglob has a slash explicitly defined, we know the user wants
- ... | adds a few random tests, comments | micromatch_extglob | train |
698ae8d7a391d7be8056bd74cf6397b7d3f9ef28 | diff --git a/anchore/anchore-modules/gates/10_check_dockerfile.py b/anchore/anchore-modules/gates/10_check_dockerfile.py
index <HASH>..<HASH> 100755
--- a/anchore/anchore-modules/gates/10_check_dockerfile.py
+++ b/anchore/anchore-modules/gates/10_check_dockerfile.py
@@ -10,27 +10,27 @@ gate_name = "DOCKERFILECHECK"
tr... | fixing up some help strings for gate and CVE gate trigger | anchore_anchore | train |
dd3faa05c44ae057c98a6fdf53c20710da2e4681 | diff --git a/test/lib/search.get.js b/test/lib/search.get.js
index <HASH>..<HASH> 100644
--- a/test/lib/search.get.js
+++ b/test/lib/search.get.js
@@ -155,18 +155,15 @@ describe('Get search form', function() {
fields[0].should.eql({
var: 'first',
type: 'text-single',
- ... | No longer always set 'required' | xmpp-ftw_xmpp-ftw-search | train |
b6f9d3ab764c40f4df44063f3e59ab7655ae0a97 | diff --git a/slave/buildslave/bot.py b/slave/buildslave/bot.py
index <HASH>..<HASH> 100644
--- a/slave/buildslave/bot.py
+++ b/slave/buildslave/bot.py
@@ -274,7 +274,7 @@ class Bot(pb.Referenceable, service.MultiService):
del(self.builders[name])
for d in os.listdir(self.basedir):
- ... | fix bug in detecting leftover directories, test changing builddirs on existing builders | buildbot_buildbot | train |
aa9ee16578ef0e042f743cb6dc344a1b7314f7a1 | diff --git a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/parsetree/reconstr/Serializer.java b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/parsetree/reconstr/Serializer.java
index <HASH>..<HASH> 100755
--- a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/parsetree/reconstr/Serializer.java
+++ b/plugins/org.ecli... | Removed newly introduced method that was marked as deprecated right from the beginning | eclipse_xtext-core | train |
bb2f31cca747969b30990e87c780e68a04196a6b | diff --git a/spec/moneta/adapter_activerecord_existing_connection_spec.rb b/spec/moneta/adapter_activerecord_existing_connection_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/moneta/adapter_activerecord_existing_connection_spec.rb
+++ b/spec/moneta/adapter_activerecord_existing_connection_spec.rb
@@ -25,7 +25,7 @@ des... | Specs: don't test forking where Ruby does not support it | moneta-rb_moneta | train |
6cf07eaeba2020babed840d0c69b9eca3d0fdc54 | diff --git a/lib/tty/table/operation/alignment_set.rb b/lib/tty/table/operation/alignment_set.rb
index <HASH>..<HASH> 100644
--- a/lib/tty/table/operation/alignment_set.rb
+++ b/lib/tty/table/operation/alignment_set.rb
@@ -68,15 +68,9 @@ module TTY
index = 0
row.map! do |cell|
column_... | Assume field objects for alignment. | piotrmurach_tty | train |
09e208df45ccbc6a52b573c2bebd6e344bafcbef | diff --git a/lib/gitemplate-dox/index.js b/lib/gitemplate-dox/index.js
index <HASH>..<HASH> 100644
--- a/lib/gitemplate-dox/index.js
+++ b/lib/gitemplate-dox/index.js
@@ -54,6 +54,7 @@ function GitemplateDox() {
this.builds = [];
this.params = {};
+ this.returns = {};
}
configurable(GitemplateDox.prototype... | feat(return): Add type, description, overflow text | codeactual_apidox | train |
6684642faf6a391f625805b6bb165d2a6ec60665 | diff --git a/lib/mess/tree/zoomfilter.js b/lib/mess/tree/zoomfilter.js
index <HASH>..<HASH> 100644
--- a/lib/mess/tree/zoomfilter.js
+++ b/lib/mess/tree/zoomfilter.js
@@ -67,7 +67,7 @@ tree.ZoomFilter.prototype.negate = function() {
return this;
};
-tree.ZoomFilter.prototype.toCSS = function(env) {
+tree.ZoomFi... | Don't die on zoomfilters - toXML instead of toCSS | mapbox_carto | train |
e6bc37c49be067027f23c8d0c53de36789d7ccb1 | diff --git a/lib/dci-ruby/version.rb b/lib/dci-ruby/version.rb
index <HASH>..<HASH> 100644
--- a/lib/dci-ruby/version.rb
+++ b/lib/dci-ruby/version.rb
@@ -1,3 +1,3 @@
module DCI
- VERSION = "2.1.1"
+ VERSION = "2.1.2"
end | bumped to version <I> | ltello_dci-ruby | train |
eaf0670a90d9a11bd2c3b803f5dd8977aeb8797a | diff --git a/jbpm-human-task/jbpm-human-task-core/src/test/java/org/jbpm/services/task/identity/DBUserGroupCallbackImplTest.java b/jbpm-human-task/jbpm-human-task-core/src/test/java/org/jbpm/services/task/identity/DBUserGroupCallbackImplTest.java
index <HASH>..<HASH> 100644
--- a/jbpm-human-task/jbpm-human-task-core/sr... | JBPM-<I> Persistence tests don't support Postgres Plus
Added support for com.edb.Driver class to data source properties handling. | kiegroup_jbpm | train |
4016240076ea217dfcd7377d1943999468e99e74 | diff --git a/View/ViewHandler.php b/View/ViewHandler.php
index <HASH>..<HASH> 100644
--- a/View/ViewHandler.php
+++ b/View/ViewHandler.php
@@ -211,7 +211,7 @@ class ViewHandler extends ContainerAware implements ViewHandlerInterface
$code = isset($this->forceRedirects[$format])
? $this->forceRedire... | only use a RedirectResponse if redirect is forced | FriendsOfSymfony_FOSRestBundle | train |
0c20b9a79e6a600b87362364717f0d6a67a2ce23 | diff --git a/kernel/content/ezcontentoperationcollection.php b/kernel/content/ezcontentoperationcollection.php
index <HASH>..<HASH> 100644
--- a/kernel/content/ezcontentoperationcollection.php
+++ b/kernel/content/ezcontentoperationcollection.php
@@ -1331,16 +1331,25 @@ class eZContentOperationCollection
static pu... | Implemented: reindex object when always available flag is changed | ezsystems_ezpublish-legacy | train |
48b4621dc04696d8aaf990391931f06e1661aeaf | diff --git a/ACKNOWLEDGEMENTS b/ACKNOWLEDGEMENTS
index <HASH>..<HASH> 100644
--- a/ACKNOWLEDGEMENTS
+++ b/ACKNOWLEDGEMENTS
@@ -1,6 +1,7 @@
This is a list of people who has contributed to PyUSB 1.0 development.
1.0.0-a0:
- * Thomas Reitmayr: thanks for your loads of patches to get PyUSB running with libusb 1.0.
+... | * Implemented support for FreeBSD in the libusb <I> backend. Thanks to Xiaofan Chen.
* Implemented partial support for libusb <I> Windows backend. Thanks to Xiaofan Chen.
git-svn-id: <URL> | pyusb_pyusb | train |
9a89f644fc56233f941f341ff176c0d0d2f538c1 | diff --git a/test/mockServerLambda.test.js b/test/mockServerLambda.test.js
index <HASH>..<HASH> 100644
--- a/test/mockServerLambda.test.js
+++ b/test/mockServerLambda.test.js
@@ -108,6 +108,27 @@ test('Lambda function invocations can be mocked', async (test) => {
});
});
+test('Lambda function invocations can be ... | Add testcase for mock Lambda function invocations without body requirements | lifeomic_lambda-tools | train |
89c6c03660a88a648bbd13b4e6696124fe46d013 | diff --git a/flink-core/src/main/java/org/apache/flink/configuration/ConfigurationUtils.java b/flink-core/src/main/java/org/apache/flink/configuration/ConfigurationUtils.java
index <HASH>..<HASH> 100755
--- a/flink-core/src/main/java/org/apache/flink/configuration/ConfigurationUtils.java
+++ b/flink-core/src/main/java/... | [FLINK-<I>][core] Format durations with highest unit
When converting a configuration value to a string, durations were formatted
in nanoseconds regardless of their values. This produces serialized outputs
which are hard to understand for humans.
The functionality of formatting in the highest unit which allows the val... | apache_flink | train |
8ef29713698f9a6478f65e6c4f4772f3e62018ec | diff --git a/claripy/operations.py b/claripy/operations.py
index <HASH>..<HASH> 100644
--- a/claripy/operations.py
+++ b/claripy/operations.py
@@ -341,7 +341,11 @@ def boolean_and_simplifier(*args):
if len(new_args) < len(args):
return ast.all_operations.And(*new_args)
- return _flatten_simplifier('A... | Implement flattening argument filters for other operations. | angr_claripy | train |
e8a15f267ebfdc93cc0bb94ff080ab099699c5e2 | diff --git a/lib/typhoid/typhoeus_decorator.rb b/lib/typhoid/typhoeus_decorator.rb
index <HASH>..<HASH> 100644
--- a/lib/typhoid/typhoeus_decorator.rb
+++ b/lib/typhoid/typhoeus_decorator.rb
@@ -1,26 +1,26 @@
module Typhoid
class TyphoeusDecorator < Struct.new(:source)
def self.decorate(typhoeus_klass)
- ... | rename to source_klass | sportngin_typhoid | train |
05f2618377e895738e88b13baae1ff3ecdba4621 | diff --git a/core/lib/generators/refinerycms_generator.rb b/core/lib/generators/refinerycms_generator.rb
index <HASH>..<HASH> 100644
--- a/core/lib/generators/refinerycms_generator.rb
+++ b/core/lib/generators/refinerycms_generator.rb
@@ -88,14 +88,13 @@ class RefinerycmsGenerator < ::Refinery::Generators::EngineInstal... | We do actually want migrations, parndt, come on. | refinery_refinerycms | train |
cdb84f231a0180e19fbd872ded3f97eac6193ea0 | diff --git a/classes/PodsData.php b/classes/PodsData.php
index <HASH>..<HASH> 100644
--- a/classes/PodsData.php
+++ b/classes/PodsData.php
@@ -1766,9 +1766,8 @@ class PodsData {
$mode = 'id';
$id = pods_absint( $row );
- if ( !is_numeric( $row ) || 0 === strpos( $row, '0' ) || $ro... | *Set the id to the id property instead of setting to $row and changing the $mode | pods-framework_pods | train |
9d38fb784bb6b8154c4666948efab7e0cf3867d0 | diff --git a/spec/mongo/client_spec.rb b/spec/mongo/client_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/mongo/client_spec.rb
+++ b/spec/mongo/client_spec.rb
@@ -2,14 +2,6 @@ require 'spec_helper'
describe Mongo::Client do
- before do
- if running_ssl?
- allow_any_instance_of(Mongo::Server::Monitor).to r... | No need to mock Monitor when running ssl | mongodb_mongo-ruby-driver | train |
bf586ddbeea4df44ebf9a21a17e12243bad0a327 | diff --git a/command/sdist.py b/command/sdist.py
index <HASH>..<HASH> 100644
--- a/command/sdist.py
+++ b/command/sdist.py
@@ -107,23 +107,23 @@ class sdist (Command):
def check_metadata (self):
- dist = self.distribution
+ metadata = self.distribution.metadata
missing = []
fo... | Fix 'check_metadata()' so it grovels through the distribution's metadata
object, rather than through the distribution itself (since I moved the meta-
data out to a DistributionMetadata instance). | pypa_setuptools | train |
8c9bbe375ffc7fccfe040c62cbda4cd85a88ef8a | diff --git a/src/Services/LayoutService.php b/src/Services/LayoutService.php
index <HASH>..<HASH> 100644
--- a/src/Services/LayoutService.php
+++ b/src/Services/LayoutService.php
@@ -89,4 +89,12 @@ final class LayoutService extends Service
{
return $this->client()->put($data, 'layouts/{layoutId}', ['layou... | Add delete method for layouts (#<I>) | Rebilly_rebilly-php | train |
34ca201ff0cd4020631c8e57ec33ef8935aa5028 | diff --git a/datajoint/blob.py b/datajoint/blob.py
index <HASH>..<HASH> 100644
--- a/datajoint/blob.py
+++ b/datajoint/blob.py
@@ -68,6 +68,7 @@ class Blob:
self._squeeze = squeeze
self._blob = None
self._pos = 0
+ self._pos_prev = 0
self.protocol = None
self.is_32_bi... | moved try catch into `read_value` | datajoint_datajoint-python | train |
de6aae79af7342be09edd4a8e54d38b1e92d7bba | diff --git a/Search/Adapter/TestAdapter.php b/Search/Adapter/TestAdapter.php
index <HASH>..<HASH> 100644
--- a/Search/Adapter/TestAdapter.php
+++ b/Search/Adapter/TestAdapter.php
@@ -87,7 +87,7 @@ class TestAdapter implements AdapterInterface
public function search(SearchQuery $searchQuery)
{
$hits =... | temporarily disabled global search feature of test adapter | massiveart_MassiveSearchBundle | train |
8563dcfddf23d8b92a3daba517d49fd5350d3353 | diff --git a/src/main/java/water/parser/ParseDataset.java b/src/main/java/water/parser/ParseDataset.java
index <HASH>..<HASH> 100644
--- a/src/main/java/water/parser/ParseDataset.java
+++ b/src/main/java/water/parser/ParseDataset.java
@@ -1,17 +1,16 @@
package water.parser;
+
+import com.google.common.base.Throwables;... | Include stack dump from F/J tasks | h2oai_h2o-2 | train |
7c2e0288ef15099d45accc5fd5063ef2ea0af395 | diff --git a/spec/APNS.spec.js b/spec/APNS.spec.js
index <HASH>..<HASH> 100644
--- a/spec/APNS.spec.js
+++ b/spec/APNS.spec.js
@@ -184,7 +184,7 @@ describe('APNS', () => {
'key': 'value',
'keyAgain': 'valueAgain'
});
- expect(notification.expiry).toEqual(expirationTime / 1000);
+ expect(notific... | make sure we always send apns-expiration as integer number (#<I>)
* make sure we always send integer as apns-expiration
* make sure we always send apns-expiration parameter as integer | parse-community_parse-server-push-adapter | train |
f7ae159bb72a667fef3755cc3b9cc056d33c9b1e | diff --git a/lib/commands/prepare.js b/lib/commands/prepare.js
index <HASH>..<HASH> 100644
--- a/lib/commands/prepare.js
+++ b/lib/commands/prepare.js
@@ -21,7 +21,8 @@ function Prepare (options, callback)
util.inherits(Prepare, Command);
Prepare.prototype.start = function (packet, connection) {
- connection.write... | added possibility of using encoding while writing strings | sidorares_node-mysql2 | train |
c40df3a287110bc86f8b9f559a20d0771e3b0e88 | diff --git a/libcentrifugo/integration/integration_test.go b/libcentrifugo/integration/integration_test.go
index <HASH>..<HASH> 100644
--- a/libcentrifugo/integration/integration_test.go
+++ b/libcentrifugo/integration/integration_test.go
@@ -4,6 +4,7 @@ import (
"encoding/json"
"fmt"
"strconv"
+ "sync"
"testin... | create clients for bench faster, update BenchmarkReceiveBroadcast | centrifugal_centrifugo | train |
4f8f2087c16ec8b6d9b785edbaba1c073ad15fc3 | diff --git a/src/structures/CategoryChannel.js b/src/structures/CategoryChannel.js
index <HASH>..<HASH> 100644
--- a/src/structures/CategoryChannel.js
+++ b/src/structures/CategoryChannel.js
@@ -13,6 +13,19 @@ class CategoryChannel extends GuildChannel {
get children() {
return this.guild.channels.filter(c => c... | docs/fix(setParent): docs update and nullable channel param (#<I>)
* fix(setParent): no longer in GuildChannel
* refactored
* little bit less ugly
* space/appel suggestion
* docs fix
* shhhhhhhh
* fun docs trip
* prototype thing
* mark nullable | discordjs_discord.js | train |
1a11697cd3404a7f308c05850c443fe4303b0a78 | diff --git a/pyros/rosinterface/ros_interface.py b/pyros/rosinterface/ros_interface.py
index <HASH>..<HASH> 100644
--- a/pyros/rosinterface/ros_interface.py
+++ b/pyros/rosinterface/ros_interface.py
@@ -449,10 +449,22 @@ class RosInterface(BaseInterface):
diff_opt=True,
... | now fails with explanation if ConnectionCacheProxy not available in rocon_python_comms. | pyros-dev_pyros | train |
eaedde325e7137a1a865232791714910b0973965 | diff --git a/core/src/main/java/com/orientechnologies/orient/core/db/ODatabaseDocumentInternal.java b/core/src/main/java/com/orientechnologies/orient/core/db/ODatabaseDocumentInternal.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/orient/core/db/ODatabaseDocumentInternal.java
+++ b/core... | refactor to move commit logic control inside the database implementation | orientechnologies_orientdb | train |
f5406a832da145ecb6bc29a2e4ea76d54c078730 | diff --git a/rollbar/test/asgi_tests/test_middleware.py b/rollbar/test/asgi_tests/test_middleware.py
index <HASH>..<HASH> 100644
--- a/rollbar/test/asgi_tests/test_middleware.py
+++ b/rollbar/test/asgi_tests/test_middleware.py
@@ -36,7 +36,7 @@ class ReporterMiddlewareTest(BaseTest):
with self.assertRaises(Run... | Do not use `mock.assert_called_once()` for Python<I>- | rollbar_pyrollbar | train |
c6a93c6c60d471a6ea5d1520cb4b4f2d9d8693cd | diff --git a/refcycle/i_directed_graph.py b/refcycle/i_directed_graph.py
index <HASH>..<HASH> 100644
--- a/refcycle/i_directed_graph.py
+++ b/refcycle/i_directed_graph.py
@@ -77,21 +77,24 @@ class IDirectedGraph(Container, Iterable, Sized):
"""
- def vertex_set(self):
+ @classmethod
+ def vertex_s... | Make vertex_set and vertex_dict classmethods. | mdickinson_refcycle | train |
74b98611dcbd4ac2e0c831bcd9d5436841297ec5 | diff --git a/wcomponents-core/src/main/java/com/github/bordertech/wcomponents/AbstractWComponent.java b/wcomponents-core/src/main/java/com/github/bordertech/wcomponents/AbstractWComponent.java
index <HASH>..<HASH> 100755
--- a/wcomponents-core/src/main/java/com/github/bordertech/wcomponents/AbstractWComponent.java
+++ ... | Fix Javadoc errors which cause Java8 compilation faliure. (#<I>) | BorderTech_wcomponents | train |
f0f1776f40bf7d95c4e1673473e6ea89ada717ea | diff --git a/ui/helpers/constants.js b/ui/helpers/constants.js
index <HASH>..<HASH> 100644
--- a/ui/helpers/constants.js
+++ b/ui/helpers/constants.js
@@ -6,15 +6,15 @@ import closedTreeFavicon from '../img/tree_closed.png';
export const thPlatformMap = {
linux32: 'Linux',
- 'linux32-devedition': 'Linux DevEditi... | Bug <I> - more pretty platform names and some reordering (#<I>) | mozilla_treeherder | train |
a3a8c5d3c935c33aeb778a938de0c7b031ae30d4 | diff --git a/src/Koldy/Route.php b/src/Koldy/Route.php
index <HASH>..<HASH> 100644
--- a/src/Koldy/Route.php
+++ b/src/Koldy/Route.php
@@ -186,10 +186,14 @@ class Route
throw new Exception("Unable to construct URL to site={$site}, site is not defined in configs/sites.php");
}
- if ($uri =... | Small fix regarding double slashes when generating full URL to other site | koldy_framework | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.