hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
2a0f6e678d5939335218c09555b7b075bb7c1099 | diff --git a/lib/emcee/railtie.rb b/lib/emcee/railtie.rb
index <HASH>..<HASH> 100644
--- a/lib/emcee/railtie.rb
+++ b/lib/emcee/railtie.rb
@@ -4,6 +4,7 @@ require "emcee/post_processors/script_processor"
require "emcee/post_processors/stylesheet_processor"
require "emcee/compressors/html_compressor"
require "emcee/d... | Integrate Resolver class into rail tie | ahuth_emcee | train |
8677934d48901e697845fabbb110fd8cc450725d | diff --git a/cid_test.go b/cid_test.go
index <HASH>..<HASH> 100644
--- a/cid_test.go
+++ b/cid_test.go
@@ -2,6 +2,7 @@ package cid
import (
"bytes"
+ "math/rand"
"testing"
mh "github.com/multiformats/go-multihash"
@@ -108,3 +109,12 @@ func TestPrefixRoundtrip(t *testing.T) {
t.Fatal("input prefix didnt ma... | add small test to fuzz cid creation routines | ipfs_go-cid | train |
1e5389c96bbec9bac17703f7405791a3f190fb0b | diff --git a/packages/jsx/lib/logger/index.js b/packages/jsx/lib/logger/index.js
index <HASH>..<HASH> 100644
--- a/packages/jsx/lib/logger/index.js
+++ b/packages/jsx/lib/logger/index.js
@@ -1,16 +1,18 @@
import raven from "raven-js";
-export const ravenConfiguration = {
- autoBreadcrumbs: true,
- captureUnhan... | refactor(logger): Don't assume we'll have a `window` when instantiating a `logger`.
'cause we won't if we try and do SSR. | randytarampi_me | train |
a9c990f0afc168172c5858caa041071aa1e06e13 | diff --git a/config/webpack.config.prod.js b/config/webpack.config.prod.js
index <HASH>..<HASH> 100644
--- a/config/webpack.config.prod.js
+++ b/config/webpack.config.prod.js
@@ -81,6 +81,10 @@ module.exports = {
// We don't currently advertise code splitting but Webpack supports it.
filename: 'static/js/[nam... | Update webpack prod config (#<I>) | Pajn_tscomp | train |
f730fe091fdb9aab8b608e710d260efdf4e8a077 | diff --git a/websockets/protocol.py b/websockets/protocol.py
index <HASH>..<HASH> 100644
--- a/websockets/protocol.py
+++ b/websockets/protocol.py
@@ -219,7 +219,7 @@ class WebSocketCommonProtocol(asyncio.StreamReaderProtocol):
"""
# 4.1. The WebSocket Connection is Established.
- assert self... | Test enum identity instead of equality.
The docs say this is recommended. | aaugustin_websockets | train |
b5cb43f4a4b6b414dc1eca536ac30a8da118f805 | diff --git a/socialregistration/contrib/foursquare/models.py b/socialregistration/contrib/foursquare/models.py
index <HASH>..<HASH> 100644
--- a/socialregistration/contrib/foursquare/models.py
+++ b/socialregistration/contrib/foursquare/models.py
@@ -33,4 +33,4 @@ def save_foursquare_token(sender, user, profile, client... | Dispatch uid fix | flashingpumpkin_django-socialregistration | train |
34870e105398b897756dfbd9834d22b33d8a9053 | diff --git a/lib/bitcoin/rpc/request_handler.rb b/lib/bitcoin/rpc/request_handler.rb
index <HASH>..<HASH> 100644
--- a/lib/bitcoin/rpc/request_handler.rb
+++ b/lib/bitcoin/rpc/request_handler.rb
@@ -49,7 +49,7 @@ module Bitcoin
# Returns connected peer information.
def getpeerinfo
node.pool.peers... | Fix to parse services fields in version message for RequestHandler | chaintope_bitcoinrb | train |
dacda44ef24b46c7d7f8d8117c1bd6d45c4b10b9 | diff --git a/tasks/changeBinariesRights.js b/tasks/changeBinariesRights.js
index <HASH>..<HASH> 100644
--- a/tasks/changeBinariesRights.js
+++ b/tasks/changeBinariesRights.js
@@ -1,20 +1,14 @@
const childProcess = require('child_process')
const path = require('path')
-if (process.platform === 'darwin') {
- console... | tasks/changeBinariesRights: lint | Electra-project_electra-js | train |
cb0f8c78e10722fe1672a51db4f86483213dee06 | diff --git a/src-dev/Mouf/Controllers/AbstractMoufInstanceController.php b/src-dev/Mouf/Controllers/AbstractMoufInstanceController.php
index <HASH>..<HASH> 100755
--- a/src-dev/Mouf/Controllers/AbstractMoufInstanceController.php
+++ b/src-dev/Mouf/Controllers/AbstractMoufInstanceController.php
@@ -140,45 +140,50 @@ abs... | Fixing bug in instances declared via PHP code triggered by the new documentation in instances page feature. | thecodingmachine_mouf | train |
ad1148a5b33018a8c049b18b944baf5e4800411c | diff --git a/lib/get-api.js b/lib/get-api.js
index <HASH>..<HASH> 100644
--- a/lib/get-api.js
+++ b/lib/get-api.js
@@ -56,7 +56,6 @@ function getApi (state) {
// helpers
request: require('./request').bind(this, state),
log: log,
- plugin: require('./plugin'),
// events
on: require('./event... | feat(plugin): pass options
We now pass the options of the `Hoodie` constructor as second argument
to the `hoodie.plugin(plugin)` function
```js
hoodie.plugin(function (hoodie, options) {
hoodie.myMethod = function () {
// do something with options here
}
})
``` | hoodiehq_hoodie-client | train |
cadea88cc2007cedb825b5d86a0fb184dcd76ab4 | diff --git a/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php b/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php
+++ b/src/Illuminate/Database/E... | tweak how detach and updateExistingPivot work with custom models | laravel_framework | train |
79e0ded00379f75103b59aa864bd15d38862ec08 | diff --git a/src/Map.php b/src/Map.php
index <HASH>..<HASH> 100644
--- a/src/Map.php
+++ b/src/Map.php
@@ -265,9 +265,8 @@ final class Map implements MapInterface
$key = $discriminator($pair->key(), $pair->value());
if ($map === null) {
- $type = gettype($key);
... | always use short representation for int and bool types | Innmind_Immutable | train |
c5623b872ffb4eac42567c608259ef1b8be7134f | diff --git a/salt/modules/win_lgpo.py b/salt/modules/win_lgpo.py
index <HASH>..<HASH> 100644
--- a/salt/modules/win_lgpo.py
+++ b/salt/modules/win_lgpo.py
@@ -4589,11 +4589,35 @@ def _lookup_admin_template(policy_name,
if adml_search_results:
multiple_adml_entries = False
suggested_po... | add additional checks for ADM policies that have the same ADMX policy ID
(#<I>) | saltstack_salt | train |
9e4866824a07b3716aa195f17b11901cab3f3ae1 | diff --git a/osmdroid-android/src/main/java/org/osmdroid/tileprovider/tilesource/TileSourceFactory.java b/osmdroid-android/src/main/java/org/osmdroid/tileprovider/tilesource/TileSourceFactory.java
index <HASH>..<HASH> 100644
--- a/osmdroid-android/src/main/java/org/osmdroid/tileprovider/tilesource/TileSourceFactory.jav... | Added MAPQUESTAERIAL_US TileSource which covers up to zoom level <I> for US maps. | osmdroid_osmdroid | train |
3f901e1049b40b11181c02121462aab9142f862a | diff --git a/lib/calabash/android.rb b/lib/calabash/android.rb
index <HASH>..<HASH> 100644
--- a/lib/calabash/android.rb
+++ b/lib/calabash/android.rb
@@ -34,5 +34,22 @@ module Calabash
include Calabash::Android::Interactions
include Calabash::Android::PhysicalButtons
include Calabash::Android::Text
+
+ ... | Android: Add ability to push binaries to devices | calabash_calabash | train |
b16b2035e7d00d62889c2a84dfc598b5e95279af | diff --git a/i3situation/plugins/battery.py b/i3situation/plugins/battery.py
index <HASH>..<HASH> 100644
--- a/i3situation/plugins/battery.py
+++ b/i3situation/plugins/battery.py
@@ -13,7 +13,6 @@ class BatteryPlugin(Plugin):
def __init__(self, config):
self.options = {'format': '<charge>%',
- ... | Removed the unnecessary battery_name variable. | HarveyHunt_i3situation | train |
77d864b76de20350a4bc883f2339d5d2c88ca683 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -3,15 +3,15 @@ from setuptools import setup, find_packages
setup(
name='graypy',
- version='0.1',
+ version='0.2.1',
description="Python logging handler that sends messages in GELF (Graylog Extended Log Form... | Bumbed version and changed the url. | severb_graypy | train |
f277b4ee7be5ff8a4bddca66ce07493152c2ee98 | diff --git a/keyring/tests/test_core.py b/keyring/tests/test_core.py
index <HASH>..<HASH> 100644
--- a/keyring/tests/test_core.py
+++ b/keyring/tests/test_core.py
@@ -11,14 +11,22 @@ import tempfile
import shutil
import mock
+import pytest
import keyring.backend
import keyring.core
+import keyring.util.platform... | Update test to patch config_root to load custom config. | jaraco_keyring | train |
18bb7ad19ff9afa69ce32ecbdfeb1b7202c43766 | diff --git a/server/src/main/java/org/openqa/selenium/server/DefaultSeleneseCommand.java b/server/src/main/java/org/openqa/selenium/server/DefaultSeleneseCommand.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/org/openqa/selenium/server/DefaultSeleneseCommand.java
+++ b/server/src/main/java/org/openqa/selen... | Fixing SRC-<I>; now we don't use the wiki row format to transmit commands to SeleneseRunner, we just send the URI-encoded command which we decode on the client side
r<I> | SeleniumHQ_selenium | train |
d468a79339e1e4905786f0169ad7c2504e921eaf | diff --git a/qlog/event.go b/qlog/event.go
index <HASH>..<HASH> 100644
--- a/qlog/event.go
+++ b/qlog/event.go
@@ -96,7 +96,6 @@ func (e eventConnectionClosed) Name() string { return "connection_closed"
func (e eventConnectionClosed) IsNil() bool { return false }
func (e eventConnectionClosed) Marshal... | fix qlogging of version mismatches on the connection_closed event | lucas-clemente_quic-go | train |
10212132ba4fb5c3f6a6e1630a73f01143f7765f | diff --git a/lib/punch.js b/lib/punch.js
index <HASH>..<HASH> 100644
--- a/lib/punch.js
+++ b/lib/punch.js
@@ -342,7 +342,10 @@ module.exports = {
}
files.forEach(function(file){
- if(file.indexOf(".mustache") > -1){
+ // render file extention should always be at the end of the fil... | Added a check to ignore swp and other non-template fiels. Fixes #6 | laktek_punch | train |
5a6069d0db22a175713058cbec0ebab2b6919cae | diff --git a/spec/unit/util/windows/api_types_spec.rb b/spec/unit/util/windows/api_types_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/util/windows/api_types_spec.rb
+++ b/spec/unit/util/windows/api_types_spec.rb
@@ -11,55 +11,41 @@ describe "FFI::MemoryPointer", :if => Puppet.features.microsoft_windows? do
... | (PUP-<I>) Expect result inside of block
The `MemoryPointer.new` and `.from_string_to_wide_string` methods always yield if given a
block, so eliminate the extra variable initialization and move the expect within
the block.
Also we don't need to create a Puppet::Test::LogCollector, just use the `@logs`
instance variabl... | puppetlabs_puppet | train |
d838c55620544c2d703de27ba26675ca41f5b5f9 | diff --git a/generators/generator-constants.js b/generators/generator-constants.js
index <HASH>..<HASH> 100644
--- a/generators/generator-constants.js
+++ b/generators/generator-constants.js
@@ -23,7 +23,7 @@ const JAVA_VERSION = '1.8'; // Java version is forced to be 1.8. We keep the var
// Version of Node, Yarn, NPM... | Update npm version to <I> | jhipster_generator-jhipster | train |
1c19e174f24c19d06be5da8a1c607938254c465e | diff --git a/src/main/java/org/asteriskjava/manager/action/OriginateAction.java b/src/main/java/org/asteriskjava/manager/action/OriginateAction.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/asteriskjava/manager/action/OriginateAction.java
+++ b/src/main/java/org/asteriskjava/manager/action/OriginateAction.ja... | Added CallerId properties to OriginateEvent | asterisk-java_asterisk-java | train |
a1b7b2c5472338822880521015f25bf0015f132c | diff --git a/cpufreq/_common.py b/cpufreq/_common.py
index <HASH>..<HASH> 100644
--- a/cpufreq/_common.py
+++ b/cpufreq/_common.py
@@ -21,5 +21,11 @@ FREQCURINFO = "cpuinfo_cur_freq"
FREQSET = "scaling_setspeed"
GOVERNORSET = "scaling_governor"
-DRIVERFREQ = path.isfile(path.join(BASEDIR,"cpu0",GOVERNORINFOFILE)) \... | Adjusts to test if a acpi driver was installed | VitorRamos_cpufreq | train |
3ced55275c595b1727e04107a57fa75ddfc293be | diff --git a/lib/helpers/index.js b/lib/helpers/index.js
index <HASH>..<HASH> 100644
--- a/lib/helpers/index.js
+++ b/lib/helpers/index.js
@@ -1,6 +1,5 @@
export * from './assign';
export * from './checkTypes';
-export * from './class';
export * from './crossClassMethods';
export * from './defineProperty';
export ... | helpers: don't export class module. | dwaynejs_dwayne | train |
971b5a512a50216e0b80a3d1762318db8b53a5f2 | diff --git a/pyof/v0x01/symmetric/echo_reply.py b/pyof/v0x01/symmetric/echo_reply.py
index <HASH>..<HASH> 100644
--- a/pyof/v0x01/symmetric/echo_reply.py
+++ b/pyof/v0x01/symmetric/echo_reply.py
@@ -5,6 +5,7 @@
# Third-party imports
from pyof.foundation.base import GenericMessage
+from pyof.foundation.basic_types i... | Adds binary data field to echo_reply and echo_request messages - Issue #<I> | kytos_python-openflow | train |
31992838947b0e30668cb1bc5618a84d618e5444 | diff --git a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialModal.java b/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialModal.java
index <HASH>..<HASH> 100644
--- a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialModal.java
+++ b/gwt-material/src/main/java/gwt/materi... | Merge pull request #<I> from wkok/release_<I>
Fixed: Unable to add a CloseHandler to a MaterialModal | GwtMaterialDesign_gwt-material | train |
149e307bc9421de5780febf9ab4a734e72cbee9d | diff --git a/moto/events/models.py b/moto/events/models.py
index <HASH>..<HASH> 100644
--- a/moto/events/models.py
+++ b/moto/events/models.py
@@ -81,6 +81,15 @@ class Rule(BaseModel):
return event_backend.put_rule(name=event_name, **properties)
@classmethod
+ def update_from_cloudformation_json(
+ ... | Rule's cloudformation support for updates (#<I>)
* add support to update stack using cloudformation
* blacked test file | spulec_moto | train |
33e12bb74d8bac36bcdeb8db338043d17ed11614 | diff --git a/tinyik/core.py b/tinyik/core.py
index <HASH>..<HASH> 100644
--- a/tinyik/core.py
+++ b/tinyik/core.py
@@ -28,8 +28,8 @@ class Actuator(object):
'link length or joint axis: {}'.format(t)
)
- self._fk = FKSolver(components)
- self._ik = IKSolver(self._fk,... | Make fk and ik public so that can switch solvers after instantiation | lanius_tinyik | train |
133a4fba98841e1c700d16fb5e42d5fbdf759f0e | diff --git a/bcbio/install.py b/bcbio/install.py
index <HASH>..<HASH> 100644
--- a/bcbio/install.py
+++ b/bcbio/install.py
@@ -696,8 +696,7 @@ def add_subparser(subparsers):
action="append", default=[], type=_check_toolplus)
parser.add_argument("--datatarget", help="Data to install. Allows... | added missing comma to datatarget option list | bcbio_bcbio-nextgen | train |
dcadfe9b7c0e1ae29eaa9f2ba915a42383932ce5 | diff --git a/src/com/google/javascript/rhino/jstype/JSTypeNative.java b/src/com/google/javascript/rhino/jstype/JSTypeNative.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/rhino/jstype/JSTypeNative.java
+++ b/src/com/google/javascript/rhino/jstype/JSTypeNative.java
@@ -101,6 +101,7 @@ public enum JSTyp... | Ensure IIterableResult is registered.
-------------
Created by MOE: <URL> | google_closure-compiler | train |
93ab930387774893653f633864bcaf2aa8bd1423 | diff --git a/report/src/main/java/com/buschmais/jqassistant/core/report/api/LanguageHelper.java b/report/src/main/java/com/buschmais/jqassistant/core/report/api/LanguageHelper.java
index <HASH>..<HASH> 100644
--- a/report/src/main/java/com/buschmais/jqassistant/core/report/api/LanguageHelper.java
+++ b/report/src/main/... | upgraded to XO <I>-SNAPSHOT | buschmais_jqa-core-framework | train |
666801965953e321c36e9d7aab09b8e915081787 | diff --git a/hylar/core/Logics/Logics.js b/hylar/core/Logics/Logics.js
index <HASH>..<HASH> 100644
--- a/hylar/core/Logics/Logics.js
+++ b/hylar/core/Logics/Logics.js
@@ -347,14 +347,6 @@ module.exports = {
return newSet;
},
- addUriIfNotExists: function(uri, array) {
- if(!this.isVariable(uri... | Removed unused Solver functions, improved evaluation. | ucbl_HyLAR-Reasoner | train |
4c7675939aa2b4cb3c3fcc08f9e62a7c8a6d4366 | diff --git a/sanic/server.py b/sanic/server.py
index <HASH>..<HASH> 100644
--- a/sanic/server.py
+++ b/sanic/server.py
@@ -201,7 +201,7 @@ class HttpProtocol(asyncio.Protocol):
netlog.info('', extra={
'status': response.status,
'byte': len(response.body),
- ... | Fix "TypeError: not all arguments converted during string formatting"
socket.getpeername() returns AF_INET6 address family four-tuple, with
flowid and scopeid.
In server's write_response, an exception is raised when an IPv6 client
connects due to four-tuple elements having two unused elements (flowid
and scopeid).
T... | huge-success_sanic | train |
a339ef593942f0b9e6a7c830e4c2cecc4ade33c2 | diff --git a/packages/kickstart/config/createConfig.js b/packages/kickstart/config/createConfig.js
index <HASH>..<HASH> 100644
--- a/packages/kickstart/config/createConfig.js
+++ b/packages/kickstart/config/createConfig.js
@@ -6,7 +6,7 @@ const ExtractTextPlugin = require('extract-text-webpack-plugin')
const CaseSensi... | refactor(dependencies): use kickstart-dev-utils now instead react-dev-utils | NehrDani_noctis | train |
4a0b4adc292981958c899ae731ee60014fd94775 | diff --git a/web3/utils/filters.py b/web3/utils/filters.py
index <HASH>..<HASH> 100644
--- a/web3/utils/filters.py
+++ b/web3/utils/filters.py
@@ -162,6 +162,9 @@ class LogFilter(BaseFilter):
else:
log_entries = self.web3.eth.getFilterLogs(self.filter_id)
+ if not log_entries:
+ ... | Fix `Filter.get()` to work if no log entries are returned | ethereum_web3.py | train |
fb97b4694f0742c75a4a5b339d72a4e177b0d488 | diff --git a/salt/modules/inspectlib/fsdb.py b/salt/modules/inspectlib/fsdb.py
index <HASH>..<HASH> 100644
--- a/salt/modules/inspectlib/fsdb.py
+++ b/salt/modules/inspectlib/fsdb.py
@@ -185,6 +185,27 @@ class CsvDB(object):
with gzip.open(os.path.join(self.db_path, obj._TABLE), 'a') as table:
csv... | Implement object delete. This re-flushes the whole database via in-memory. | saltstack_salt | train |
f8b5c8f01270b1e44f5110d23bbd441f13662dac | diff --git a/great_expectations/profile/basic_dataset_profiler.py b/great_expectations/profile/basic_dataset_profiler.py
index <HASH>..<HASH> 100644
--- a/great_expectations/profile/basic_dataset_profiler.py
+++ b/great_expectations/profile/basic_dataset_profiler.py
@@ -69,7 +69,7 @@ class BasicDatasetProfiler(DatasetP... | Since expect_column_distinct_values_to_be_in_set interprets value_set=None as universal set now, we removed the temp hack that prevented from this expectation from being dropped due to validation failure | great-expectations_great_expectations | train |
4ab3c6badcf5d19977e19e7b215ef678c722c537 | diff --git a/pyotgw/protocol.py b/pyotgw/protocol.py
index <HASH>..<HASH> 100644
--- a/pyotgw/protocol.py
+++ b/pyotgw/protocol.py
@@ -44,9 +44,10 @@ class protocol(asyncio.Protocol):
self._cmdq = asyncio.Queue(loop=self.loop)
self._updateq = asyncio.Queue(loop=self.loop)
self._readbuf = b''
... | Fix callback listeners after reconnect. Move reporting system from protocol to pyotgw. | mvn23_pyotgw | train |
0280f8a2b30586bf428a4215abf7c516ede07ce3 | diff --git a/lib/api_auth.js b/lib/api_auth.js
index <HASH>..<HASH> 100644
--- a/lib/api_auth.js
+++ b/lib/api_auth.js
@@ -143,7 +143,7 @@ api.verifySignature = function(sig, account)
sig.hash = NaN;
}
if (sig.signature != sig.hash) {
- logger.info('verifySignature:', 'failed', sig, account);
... | do not expose secrets in the logs | vseryakov_backendjs | train |
535647d541faa37df58e2fdcc4ededc34483902e | diff --git a/Metadata/Configuration/Configuration.php b/Metadata/Configuration/Configuration.php
index <HASH>..<HASH> 100644
--- a/Metadata/Configuration/Configuration.php
+++ b/Metadata/Configuration/Configuration.php
@@ -297,7 +297,7 @@ class Configuration implements ConfigurationInterface
*/
private funct... | Enable strict types in section configuration class. | DarvinStudio_DarvinAdminBundle | train |
a05c907aa24cb2dfce49422a4770239f43cbf4f3 | diff --git a/umi_tools/count.py b/umi_tools/count.py
index <HASH>..<HASH> 100644
--- a/umi_tools/count.py
+++ b/umi_tools/count.py
@@ -372,7 +372,7 @@ def main(argv=None):
nInput += sum(counts.values())
- # set up ReadCluster functor with methods specific to
+ # set up UMIClusterer functor wi... | Makes group and count use UMIClusterer; simplifies ReadClusterer (renamed) ReadDeduplicator | CGATOxford_UMI-tools | train |
63eff6dea7d4640f2a66339dddf278817a522646 | diff --git a/src/main/java/org/audit4j/core/util/EnvUtil.java b/src/main/java/org/audit4j/core/util/EnvUtil.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/audit4j/core/util/EnvUtil.java
+++ b/src/main/java/org/audit4j/core/util/EnvUtil.java
@@ -25,22 +25,22 @@ import java.io.File;
/**
* The Class EnvUtil... | deprecate rather than rename the getJavaersion method | audit4j_audit4j-core | train |
0d2f967c025f97166c12c421a0a8efd9a7abf8b0 | diff --git a/src/infi/execute/utils.py b/src/infi/execute/utils.py
index <HASH>..<HASH> 100644
--- a/src/infi/execute/utils.py
+++ b/src/infi/execute/utils.py
@@ -57,7 +57,7 @@ def quote(s):
def retry_loop_on_eagain(func, *args, **kwargs):
while True:
try:
- return wrapped(*args, **kwargs)
+ ... | fixing NameError in previous commit | Infinidat_infi.execute | train |
ff86f3bf90da1bcd93e83769f60ffe9a2900eff3 | diff --git a/src/Calotype/SEO/Providers/SEOServiceProvider.php b/src/Calotype/SEO/Providers/SEOServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Calotype/SEO/Providers/SEOServiceProvider.php
+++ b/src/Calotype/SEO/Providers/SEOServiceProvider.php
@@ -3,7 +3,6 @@
use Illuminate\Http\Response;
use Illuminate\Su... | Remove old references to the routes command. | Calotype_SEO | train |
c0300f57d555c5e1e21f6abb65de91a44432d8a9 | diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Translation/TranslatorTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Translation/TranslatorTest.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/FrameworkBundle/Tests/Translation/TranslatorTest.php
+++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Translat... | Remaining tweaks for translator tests on <I>
This are the remaining changes on the <I> branch after #<I> merged most of the improvements into <I>. | symfony_symfony | train |
08ac6fff56660e16e664bcb30e1489026f97b5c8 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -164,16 +164,19 @@ function matchDottedObject(doc, query) {
exports.matchDottedObject = matchDottedObject;
/**
- * Same as matchDottedObject, but allows for non-dotted objects and queries.
+ * Same as match... | deprecate matchObject and delegate to lodash | zipscene_objtools | train |
b051ad652cd81bd0055f5c971e3cf7b16a984cc9 | diff --git a/lib/context.js b/lib/context.js
index <HASH>..<HASH> 100644
--- a/lib/context.js
+++ b/lib/context.js
@@ -83,8 +83,8 @@ Context.prototype = {
return this.env.get(path.slice(1));
}
var r = utils.getProp(this.data, path);
- if (r === undefined)
- return '';
+ // if (r === undefined)
+ // retu... | Context.get : try returning undefined in place of empty string | nomocas_yamvish | train |
f7c94e9ab0a704034d0f093efcd31992a04d3f9a | diff --git a/lib/discordrb/data.rb b/lib/discordrb/data.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/data.rb
+++ b/lib/discordrb/data.rb
@@ -1766,9 +1766,10 @@ module Discordrb
# Edits this message to have the specified content instead.
# You can only edit your own messages.
# @param new_content [S... | Add rich embed support to Message#edit | meew0_discordrb | train |
3a91fe32e141c739f4462dee1478373de5375712 | diff --git a/spec/lock_jar/bundler_spec.rb b/spec/lock_jar/bundler_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lock_jar/bundler_spec.rb
+++ b/spec/lock_jar/bundler_spec.rb
@@ -27,7 +27,7 @@ describe Bundler do
end
G
- ENV['BUNDLE_GEMFILE'] = bundled_app("Gemfile")
+ ENV['BUNDLE_GEMF... | need to track down the Iconv call | mguymon_lock_jar | train |
3a1bae4a0a210340f80d13beb997216553031c04 | diff --git a/lib/matchers/objectWithOnly.js b/lib/matchers/objectWithOnly.js
index <HASH>..<HASH> 100644
--- a/lib/matchers/objectWithOnly.js
+++ b/lib/matchers/objectWithOnly.js
@@ -8,7 +8,7 @@ module.exports = function(spec) {
}
return function (path, val) {
- var objError = s(spec)(path, val);
+ var ob... | Avoid additional matcher resolving | Tabcorp_strummer | train |
50cf222e939c93d6828b02abb80e036e27e52f28 | diff --git a/src/main/java/org/couchbase/mock/http/capi/ViewHandler.java b/src/main/java/org/couchbase/mock/http/capi/ViewHandler.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/couchbase/mock/http/capi/ViewHandler.java
+++ b/src/main/java/org/couchbase/mock/http/capi/ViewHandler.java
@@ -34,40 +34,32 @@ publi... | ViewHandler: Merge GET and POST params
The real server merges the two, and doesn't ignore the params in the
URI, if present
Change-Id: Idfacb<I>ca<I>a0f<I>f3f<I>b<I>b<I>a
Reviewed-on: <URL> | couchbase_CouchbaseMock | train |
00c452e3c1dc3456b2c7a3f71f38e56eb29a7d89 | diff --git a/lib/jira/resource/board.rb b/lib/jira/resource/board.rb
index <HASH>..<HASH> 100644
--- a/lib/jira/resource/board.rb
+++ b/lib/jira/resource/board.rb
@@ -39,7 +39,12 @@ module JIRA
sprint['rapidview_id'] = id
client.Sprint.build(sprint)
end
+ end
+ def project
+ ... | bug fix, added project lookup to board | sumoheavy_jira-ruby | train |
40bf9df8b15e959c99f85cf5a8e3016a0b821f86 | diff --git a/pebble/pool/channel.py b/pebble/pool/channel.py
index <HASH>..<HASH> 100644
--- a/pebble/pool/channel.py
+++ b/pebble/pool/channel.py
@@ -46,7 +46,8 @@ class Channel(object):
poll.register(self.reader, READ_ONLY_EVENTMASK)
# Convert from Seconds to Milliseconds
- ... | Replace None antipattern in Unix Poll | noxdafox_pebble | train |
0fbbe262fa8ac21d9243fc007feaa4efec7e2af7 | diff --git a/src/Datagrid/ProxyQueryInterface.php b/src/Datagrid/ProxyQueryInterface.php
index <HASH>..<HASH> 100644
--- a/src/Datagrid/ProxyQueryInterface.php
+++ b/src/Datagrid/ProxyQueryInterface.php
@@ -29,7 +29,7 @@ interface ProxyQueryInterface
public function __call($name, $args);
/**
- * @return... | Remove Countable from execute return type | sonata-project_SonataAdminBundle | train |
608924c22c2d7ad94e648c8a36d3d77f76f80c1d | diff --git a/Dispatcher/GearmanCallbacksDispatcher.php b/Dispatcher/GearmanCallbacksDispatcher.php
index <HASH>..<HASH> 100644
--- a/Dispatcher/GearmanCallbacksDispatcher.php
+++ b/Dispatcher/GearmanCallbacksDispatcher.php
@@ -152,9 +152,9 @@ class GearmanCallbacksDispatcher extends AbstractGearmanDispatcher
*
... | Added GearmanTask to GearmanClientCallbackExceptionEvent.
The ::setExceptionCallback provides the GearmanTask to the function.
This was tested with PECL Gearman <I>
Successfully tested with the event:
gearman.client.callback.exception | mmoreram_GearmanBundle | train |
8e51fed819c00851ed28df4e95799cb5cf9760e5 | diff --git a/src/config/vue-i18n-generator.php b/src/config/vue-i18n-generator.php
index <HASH>..<HASH> 100644
--- a/src/config/vue-i18n-generator.php
+++ b/src/config/vue-i18n-generator.php
@@ -55,8 +55,8 @@ return [
| Note: the path will be prepended to point to the App directory.
|
*/
- 'jsPath' =>... | Remove assets from path folder in config file (#<I>)
For new Laravel <I> applications, the assets directory that contains the scripts and styles has been flattened into the resources directory.
@see <URL> | martinlindhe_laravel-vue-i18n-generator | train |
7e0a8bb38a21c076cd9724e4647923b02951fbfe | diff --git a/src/frontend/org/voltdb/messaging/ForeignHost.java b/src/frontend/org/voltdb/messaging/ForeignHost.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/messaging/ForeignHost.java
+++ b/src/frontend/org/voltdb/messaging/ForeignHost.java
@@ -358,7 +358,8 @@ public class ForeignHost {
// ge... | Tweak the error message for deliver of a message to a non-existent mailbox so it also includs the type of message | VoltDB_voltdb | train |
f455ccc02198e687aa895ec0be66271dd66f30ac | diff --git a/spec/generator_spec.rb b/spec/generator_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/generator_spec.rb
+++ b/spec/generator_spec.rb
@@ -520,19 +520,17 @@ gemspec
end
end
- context "bundler_tasks" do
+ context "bundler without rubygems-tasks" do
before(:all) do
- @name = 'bundler_tas... | Added a spec for when using bundler without any gem tasks. | ruby-ore_ore | train |
5405f2fa3a2c5a7730fd2fe7ad4ae74541c01e09 | diff --git a/xtraceback/xtracebackframe.py b/xtraceback/xtracebackframe.py
index <HASH>..<HASH> 100644
--- a/xtraceback/xtracebackframe.py
+++ b/xtraceback/xtracebackframe.py
@@ -11,7 +11,8 @@ from .shim import ModuleShim
class XTracebackFrame(object):
FILTER = ("__builtins__", "__all__", "__doc__", "__file__",... | Filter another module attribute added in Python 3 | 0compute_xtraceback | train |
f440ebe91fc96b77b6a8956af4a34dd2fd405d8e | diff --git a/salt/returners/carbon_return.py b/salt/returners/carbon_return.py
index <HASH>..<HASH> 100644
--- a/salt/returners/carbon_return.py
+++ b/salt/returners/carbon_return.py
@@ -200,7 +200,7 @@ def _walk(path, value, metrics, timestamp, skip):
to a float. Defaults to `False`.
'''
log.trace(
... | Update carbon_return.py
fix TypeError: not all arguments converted during string formatting
caused by extra comma accidentally being added to log statement in unicode literals update | saltstack_salt | train |
a1e6277280b1882757f369cb57358c5cbc6aa170 | diff --git a/lib/oxidized/model/aosw.rb b/lib/oxidized/model/aosw.rb
index <HASH>..<HASH> 100644
--- a/lib/oxidized/model/aosw.rb
+++ b/lib/oxidized/model/aosw.rb
@@ -1,8 +1,14 @@
class AOSW < Oxidized::Model
- # AOSW Aruba Wireless
+ # AOSW Aruba Wireless, IAP, Instant Controller and Mobility Access Switches
#... | Better notes and fix a mistake in the secret lines | ytti_oxidized | train |
38d311c8a482ff98a11c5e1489f4d063a91d5031 | diff --git a/client/src/main/java/net/kuujo/copycat/raft/session/ClientSession.java b/client/src/main/java/net/kuujo/copycat/raft/session/ClientSession.java
index <HASH>..<HASH> 100644
--- a/client/src/main/java/net/kuujo/copycat/raft/session/ClientSession.java
+++ b/client/src/main/java/net/kuujo/copycat/raft/session/... | Ensure request/response references are properly released in client. | atomix_atomix | train |
937a84af8b72b1e9f6ac96b76046579e0982114c | diff --git a/test/helper.rb b/test/helper.rb
index <HASH>..<HASH> 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -27,5 +27,3 @@ module DidYouMean
end
end
end
-
-Test::Unit::TestCase.include(DidYouMean::TestHelper)
diff --git a/test/spell_checking/test_class_name_check.rb b/test/spell_checking/test_class_n... | Do not mutate the gobal Test::Unit constant | yuki24_did_you_mean | train |
ccdd270cc227ce7b6d386e6f643f0ba218d83314 | diff --git a/lib/roo_on_rails/checks/git/origin.rb b/lib/roo_on_rails/checks/git/origin.rb
index <HASH>..<HASH> 100644
--- a/lib/roo_on_rails/checks/git/origin.rb
+++ b/lib/roo_on_rails/checks/git/origin.rb
@@ -4,6 +4,9 @@ module RooOnRails
module Checks
module Git
class Origin < Base
+ # Output c... | IP-<I>: Missing comments | deliveroo_roo_on_rails | train |
3f5cee98d7155e09f7b6d2967836849d8b5b1bd5 | diff --git a/tests/Handler/CloudWatchTest.php b/tests/Handler/CloudWatchTest.php
index <HASH>..<HASH> 100644
--- a/tests/Handler/CloudWatchTest.php
+++ b/tests/Handler/CloudWatchTest.php
@@ -89,6 +89,104 @@ class CloudWatchLogsTest extends \PHPUnit_Framework_TestCase
$reflectionMethod->invoke($handler);
}... | Add tests which ensure empty tags are ignored | maxbanton_cwh | train |
7547ab640e21498118ee7aa0285f840b050acf02 | diff --git a/rope/base/pyobjectsdef.py b/rope/base/pyobjectsdef.py
index <HASH>..<HASH> 100644
--- a/rope/base/pyobjectsdef.py
+++ b/rope/base/pyobjectsdef.py
@@ -340,12 +340,13 @@ class _ScopeVisitor(object):
for decorator in pyfunction.decorators:
if isinstance(decorator, ast.Name) and decorator... | pyobjectsdef: handling definition location for property decorators | python-rope_rope | train |
1f27f642e00d780b819d0bf9fc974138256291a4 | diff --git a/pmml-model/src/main/java/org/dmg/pmml/neural_network/HasActivationFunction.java b/pmml-model/src/main/java/org/dmg/pmml/neural_network/HasActivationFunction.java
index <HASH>..<HASH> 100644
--- a/pmml-model/src/main/java/org/dmg/pmml/neural_network/HasActivationFunction.java
+++ b/pmml-model/src/main/java/... | Added method HasActivationFunction#getThreshold(Number) | jpmml_jpmml-model | train |
3be549ae044c5d68675c9ea715fecc7582b55ec5 | diff --git a/src/org/mozilla/javascript/regexp/NativeRegExp.java b/src/org/mozilla/javascript/regexp/NativeRegExp.java
index <HASH>..<HASH> 100644
--- a/src/org/mozilla/javascript/regexp/NativeRegExp.java
+++ b/src/org/mozilla/javascript/regexp/NativeRegExp.java
@@ -789,26 +789,28 @@ System.out.println();
... | Changed decimal escape handling to backward compatible rather than ECMA3
conforming. (Bug#<I>) | mozilla_rhino | train |
51d20ba33e5f29a4932b5fc74c83128c94e1c62d | diff --git a/src/java/org/apache/cassandra/service/GCInspector.java b/src/java/org/apache/cassandra/service/GCInspector.java
index <HASH>..<HASH> 100644
--- a/src/java/org/apache/cassandra/service/GCInspector.java
+++ b/src/java/org/apache/cassandra/service/GCInspector.java
@@ -103,6 +103,8 @@ public class GCInspector
... | Fix div by zero error
patch by tjake; reviewed by jbellis for CASSANDRA-<I>
git-svn-id: <URL> | Stratio_stratio-cassandra | train |
5e7cec6d2166fee2226f96fcc53de209b00f9dda | diff --git a/src/Authorization.php b/src/Authorization.php
index <HASH>..<HASH> 100644
--- a/src/Authorization.php
+++ b/src/Authorization.php
@@ -35,8 +35,8 @@ class Authorization extends \Slim\Middleware
$scope = empty($scope) ? null : implode(' ', $scope);
if (!$this->server->verifyResourceRequest(... | Ensure slim app stops on authorization error | chadicus_slim-oauth2-middleware | train |
543f43bbe390999a66a149fb172a96ec7d8ed85a | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -16,7 +16,7 @@ _.each(exports.constructors, function(obj) {
if (!obj.prototype) return;
exports.mixable(obj);
exports.mixable(obj.prototype);
- obj.mixin('plugins', 'extendable');
+ obj.plugin('plugins', '... | Rename the mixin() method to plugin(). | Wiredcraft_carcass | train |
7ebd451ddada4d7a817f1ca2bf48e5dff96b574a | diff --git a/gns3server/main.py b/gns3server/main.py
index <HASH>..<HASH> 100644
--- a/gns3server/main.py
+++ b/gns3server/main.py
@@ -20,10 +20,14 @@ import os
import datetime
import sys
import multiprocessing
+import locale
import tornado.options
from gns3server.server import Server
from gns3server.version impo... | Graceful shutdown for modules and locale check for the server. | GNS3_gns3-server | train |
afacb8aa28d80c97739a31b658e66f09f69713c5 | diff --git a/chrome/src/java/org/openqa/selenium/chrome/ChromeCommandExecutor.java b/chrome/src/java/org/openqa/selenium/chrome/ChromeCommandExecutor.java
index <HASH>..<HASH> 100644
--- a/chrome/src/java/org/openqa/selenium/chrome/ChromeCommandExecutor.java
+++ b/chrome/src/java/org/openqa/selenium/chrome/ChromeComman... | DanielWagnerHall: Actually throw the exception (missed save before last commit)
r<I> | SeleniumHQ_selenium | train |
27e696b7b17b0784c389f1063ca9ff45b9b6bedb | diff --git a/lib/request.js b/lib/request.js
index <HASH>..<HASH> 100644
--- a/lib/request.js
+++ b/lib/request.js
@@ -33,9 +33,11 @@ var req = exports = module.exports = {
* Examples:
*
* req.header('Content-Type');
+ * req.get('Content-Type');
* // => "text/plain"
*
* req.header('cont... | Added `req.get()` alias of `req.header()` | expressjs_express | train |
1787c3811ca7516d24f4fa79e874f8ffbd6d993e | diff --git a/py_nist_beacon/__init__.py b/py_nist_beacon/__init__.py
index <HASH>..<HASH> 100644
--- a/py_nist_beacon/__init__.py
+++ b/py_nist_beacon/__init__.py
@@ -1,3 +1,3 @@
from py_nist_beacon.nist_randomness_beacon import NistRandomnessBeacon
-__version__ = '0.4.0'
+__version__ = '0.5.0'
diff --git a/setup.py... | This time bumb version number first | urda_nistbeacon | train |
b317584651cce580ee8d50e8e3adf9c686a2b51f | diff --git a/src/main/java/org/sakaiproject/nakamura/lite/content/InternalContent.java b/src/main/java/org/sakaiproject/nakamura/lite/content/InternalContent.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/sakaiproject/nakamura/lite/content/InternalContent.java
+++ b/src/main/java/org/sakaiproject/nakamura/lit... | Fixed issue listing children where internal properties were also being listed. | ieb_sparsemapcontent | train |
49a41bdf63d4a41a70cc30b3d950d64d5071ca06 | diff --git a/h2o-core/src/test/java/water/fvec/ChunkSpeedTest.java b/h2o-core/src/test/java/water/fvec/ChunkSpeedTest.java
index <HASH>..<HASH> 100644
--- a/h2o-core/src/test/java/water/fvec/ChunkSpeedTest.java
+++ b/h2o-core/src/test/java/water/fvec/ChunkSpeedTest.java
@@ -13,8 +13,8 @@ public class ChunkSpeedTest ext... | PUBDEV-<I>: Update ChunkSpeedTest to do each test 5 times. | h2oai_h2o-3 | train |
8ccef30df79b3232cf1f54fb14326389d44c0bfc | diff --git a/src/ClassGeneration/Argument.php b/src/ClassGeneration/Argument.php
index <HASH>..<HASH> 100644
--- a/src/ClassGeneration/Argument.php
+++ b/src/ClassGeneration/Argument.php
@@ -55,7 +55,6 @@ class Argument extends ElementAbstract implements ArgumentInterface
* @var array
*/
protected $pri... | Removed "array" as a primitive type
With "array" set in the $primitiveTypes property you couldn't specify that an argument is type hinted as an array, for example:
public function foo(array $bar) { ... } | tonicospinelli_class-generation | train |
a95b3c93e734c87b20fcb942672d3d7f99473197 | diff --git a/emma2/msm/analysis/api.py b/emma2/msm/analysis/api.py
index <HASH>..<HASH> 100644
--- a/emma2/msm/analysis/api.py
+++ b/emma2/msm/analysis/api.py
@@ -1,6 +1,54 @@
+#"""
+# API functions for Markov state model analysis
+#"""
+##
"""
- API functions for Markov state model analysis
+===================... | changed the msm.analysis.api docstring to a new format | markovmodel_PyEMMA | train |
72d2a246cfafb0c016e16806ad6a61d3f3a253d7 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -16,7 +16,7 @@ const internals = {};
exports.register = function (server, options, next) {
- Joi.assert(options, Schema.plugin, 'Bad plugin options passed to hapiObjection.');
+ Joi.assert(options, S... | Actually rename to Schwifty | hapipal_schwifty | train |
166dc756ec64e899b56930cb337ab12be1e26b51 | diff --git a/src/frontend/org/voltdb/ClientInterface.java b/src/frontend/org/voltdb/ClientInterface.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/ClientInterface.java
+++ b/src/frontend/org/voltdb/ClientInterface.java
@@ -792,8 +792,16 @@ public class ClientInterface implements SnapshotDaemon.DaemonIni... | ENG-<I>: Fix client interface NPE when a node is going to kill itself. | VoltDB_voltdb | train |
6f8ef48a9b3c6bcdb9058adb6496abe9cc713665 | diff --git a/tests/BatchedProcessorTest.php b/tests/BatchedProcessorTest.php
index <HASH>..<HASH> 100644
--- a/tests/BatchedProcessorTest.php
+++ b/tests/BatchedProcessorTest.php
@@ -45,8 +45,10 @@ class BatchedProcessorTest extends SapphireTest
parent::setUpOnce();
}
- public function setUp()
+ p... | FIX Disabled the shutdown handler in QueuedJobs | silverstripe_silverstripe-fulltextsearch | train |
91e64cc72ea708e305930efbf6660994eee27abe | diff --git a/strategies/index.js b/strategies/index.js
index <HASH>..<HASH> 100644
--- a/strategies/index.js
+++ b/strategies/index.js
@@ -146,22 +146,6 @@ module.exports = {
},
/**
- * Generates an object that contains all required information about a node
- *
- * @param {Object} options
- * @p... | removed two unneeded functions from index.js | soajs_soajs.core.drivers | train |
29bb6cc0deafd80f6a346b95a612eca2bbbc695c | diff --git a/lib/rest-graph.rb b/lib/rest-graph.rb
index <HASH>..<HASH> 100644
--- a/lib/rest-graph.rb
+++ b/lib/rest-graph.rb
@@ -98,8 +98,24 @@ class RestGraph < RestGraphStruct
# request by eventmachine (em-http)
- def eget path, query={}, opts={}
- multi([:get, path, query, opts]){ |results| yield(result... | rest-graph.rb: complete em-http for edelete, epost, eput | godfat_rest-core | train |
65cd1c222d370169d3e9e16fc0738ee7abe2e459 | diff --git a/library/Theme/Enqueue.php b/library/Theme/Enqueue.php
index <HASH>..<HASH> 100644
--- a/library/Theme/Enqueue.php
+++ b/library/Theme/Enqueue.php
@@ -260,6 +260,10 @@ class Enqueue
return $url;
}
+ if (false !== strpos($url, 'hbg-prime')) {
+ return $url;
+ ... | Do not defer prime, since this contains jquery.
Some inline jquery may not work in defered mode. This is strictly a change to increase compability on the platform. | helsingborg-stad_Municipio | train |
d634c4c027cb2b912febec9597c191f6d1975b52 | diff --git a/billy/scrape/utils.py b/billy/scrape/utils.py
index <HASH>..<HASH> 100644
--- a/billy/scrape/utils.py
+++ b/billy/scrape/utils.py
@@ -143,7 +143,8 @@ class PlaintextColumns(object):
for boundary in self.boundaries:
cell = line.lstrip()[boundary].strip()
if cell:
- ... | forcibly split large chunks of whitespace apart | openstates_billy | train |
baeb69515fbd25b37b273c10feb3a003f6b53e7b | diff --git a/nbgitpuller/pull.py b/nbgitpuller/pull.py
index <HASH>..<HASH> 100644
--- a/nbgitpuller/pull.py
+++ b/nbgitpuller/pull.py
@@ -1,6 +1,7 @@
import os
import subprocess
import logging
+import time
import argparse
import datetime
from functools import partial
@@ -77,6 +78,7 @@ class GitPuller:
c... | Kill stale .git/lock files before trying to modify repositories
Fixes #<I> | jupyterhub_nbgitpuller | train |
aa0d11fb7386f1df7d0d69dad5a20de6799d2746 | diff --git a/guacamole/src/main/webapp/app/home/controllers/homeController.js b/guacamole/src/main/webapp/app/home/controllers/homeController.js
index <HASH>..<HASH> 100644
--- a/guacamole/src/main/webapp/app/home/controllers/homeController.js
+++ b/guacamole/src/main/webapp/app/home/controllers/homeController.js
@@ -7... | GUAC-<I>: Ignore root group when determining admin access. Take all permissions into account. Redirect to home screen if management UI cannot be used. | glyptodon_guacamole-client | train |
353d2c4324eec6a6076a311dae81f3ab9bf01b8c | diff --git a/modules/yuktamediaAnalyticsAdapter.js b/modules/yuktamediaAnalyticsAdapter.js
index <HASH>..<HASH> 100644
--- a/modules/yuktamediaAnalyticsAdapter.js
+++ b/modules/yuktamediaAnalyticsAdapter.js
@@ -4,18 +4,36 @@ import adapterManager from '../src/adapterManager.js';
import CONSTANTS from '../src/constants... | yuktamedia Analytics Adapter: added pageViewId, language & refererInfo (#<I>) | prebid_Prebid.js | train |
f52ee770f427313b6d8dbc20eb7284c8e6fa18d0 | diff --git a/lntest/node.go b/lntest/node.go
index <HASH>..<HASH> 100644
--- a/lntest/node.go
+++ b/lntest/node.go
@@ -737,14 +737,15 @@ func (hn *HarnessNode) ConnectRPCWithMacaroon(mac *macaroon.Macaroon) (
}
opts = append(opts, grpc.WithTransportCredentials(tlsCreds))
+ ctx, cancel := context.WithTimeout(conte... | lntest: use ctx when not using macaroons
This forces the Dial attempt to succeed or fail before proceeding with
node setup.
We also log on the node a failure to establish the graph subscription
before panicking so that we can more easily find issues. | lightningnetwork_lnd | train |
655fb79530f2e57c316b537850d39b64b785d7a6 | diff --git a/lib/parse.js b/lib/parse.js
index <HASH>..<HASH> 100644
--- a/lib/parse.js
+++ b/lib/parse.js
@@ -171,6 +171,17 @@ parse.ReturnStatement = function(contract, expression) {
parse[subExpression.argument.type](contract, expression.argument);
};*/
+parse.TryStatement = function(contract, expression) {
+ ... | Parse TryStatements and catchClauses (#<I>) | sc-forks_solidity-coverage | train |
5adbc7fae3c2d8f4b06cc3c900d4335fb6bda473 | diff --git a/lnwire/lnwire_test.go b/lnwire/lnwire_test.go
index <HASH>..<HASH> 100644
--- a/lnwire/lnwire_test.go
+++ b/lnwire/lnwire_test.go
@@ -51,7 +51,7 @@ func randPubKey() (*btcec.PublicKey, error) {
}
func randFeatureVector(r *rand.Rand) *FeatureVector {
- numFeatures := r.Int31n(131123)
+ numFeatures := r.... | lnwire: reduce range of randomly generated features in testing.Quick case
This commit reduces the range of the number of randomly generated
features in order to speed up the run time of the integration tests a
bit. | lightningnetwork_lnd | train |
131aa75e0950a8bc1ff44a0e064d90946c192fb7 | diff --git a/lib/pdk/cli/console.rb b/lib/pdk/cli/console.rb
index <HASH>..<HASH> 100644
--- a/lib/pdk/cli/console.rb
+++ b/lib/pdk/cli/console.rb
@@ -26,6 +26,9 @@ EOF
message: _('Console can only be run from inside a valid module directory'),
log_level: :fatal,
)
+
+ PDK::CLI::Util.modul... | (maint) Adds additional check for module in console command
* previously if the user was not inside the module and had
a lib folder present the console command would dump a stack
trace. This fixes that by also performing a deep inspection
of the module first. | puppetlabs_pdk | train |
026753bb5a7a39faacb28e180479db42c8887f32 | diff --git a/stage1/container.go b/stage1/container.go
index <HASH>..<HASH> 100644
--- a/stage1/container.go
+++ b/stage1/container.go
@@ -53,7 +53,7 @@ func LoadContainer() (*Container, error) {
}
for name, _ := range c.Manifest.Apps {
- ampath := AppManifestPath(name, false)
+ ampath := AppManifestPath(name.S... | stage1: fix to work with newer schema | rkt_rkt | train |
26931a51cd23ee52fe7abcb22939ff6747b6d3c4 | diff --git a/Dropbox/API.php b/Dropbox/API.php
index <HASH>..<HASH> 100644
--- a/Dropbox/API.php
+++ b/Dropbox/API.php
@@ -194,6 +194,21 @@ class API
}
/**
+ * Return "delta entries", intructing you how to update
+ * your application state to match the server's state
+ * Important: This method does not make c... | Updated API URL for copy_ref and delta calls | BenExile_Dropbox | train |
71e13053646e55c1aebb9ac7365e0ec760afcea9 | diff --git a/pkg/services/dashboardimport/service/service.go b/pkg/services/dashboardimport/service/service.go
index <HASH>..<HASH> 100644
--- a/pkg/services/dashboardimport/service/service.go
+++ b/pkg/services/dashboardimport/service/service.go
@@ -42,7 +42,7 @@ type ImportDashboardService struct {
}
func (s *Imp... | LibraryPanels: Fix library panels not connecting properly in imported dashboards (#<I>)
* Use saved dashboard model to create library panel connections when importing
* Rename variables in dashboard import for clarity | grafana_grafana | train |
1db0ddc8dd499ec626c65f539310c43e4d63ab75 | diff --git a/tests/test_heroku.py b/tests/test_heroku.py
index <HASH>..<HASH> 100644
--- a/tests/test_heroku.py
+++ b/tests/test_heroku.py
@@ -39,6 +39,8 @@ class TestClockScheduler(object):
def setup(self):
"""Set up the environment by moving to the demos directory."""
os.chdir('tests/experiment... | Clock scheduler tests assume config has not been loaded yet | Dallinger_Dallinger | train |
a4f6e7f192f0f21a2f9e063f467775c7b5e36190 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -72,6 +72,7 @@ setup(
scripts=['androaxml.py',
'androarsc.py',
'androsign.py',
+ 'androauto.py',
'androdis.py',
'androlyze.py',
'androdd.py... | androauto.py got mistakenly removed from setup.py, readd
<I>d<I>b<I>c5d<I>c<I>dda<I>e<I>b seems to want to undo some previous
changes, but it also removed androauto.py from setup.py. | androguard_androguard | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.