hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
05053b693e7fee526c4f2068a086ffa05aeff7cd | diff --git a/src/main/java/picocli/CommandLine.java b/src/main/java/picocli/CommandLine.java
index <HASH>..<HASH> 100644
--- a/src/main/java/picocli/CommandLine.java
+++ b/src/main/java/picocli/CommandLine.java
@@ -761,12 +761,14 @@ public class CommandLine {
/** Returns whether the command should be case-insens... | Improve javadoc for case-insensitivity getter and setter | remkop_picocli | train |
85cfcf9ee2780d63bcf419ff6076561cfde840b1 | diff --git a/source/php/ModuleManager.php b/source/php/ModuleManager.php
index <HASH>..<HASH> 100644
--- a/source/php/ModuleManager.php
+++ b/source/php/ModuleManager.php
@@ -192,7 +192,7 @@ class ModuleManager
'labels' => $labels,
'description' => __($class->description... | Fixes typo in publicly_queryable | helsingborg-stad_Modularity | train |
9d7cfd6c451d7eddd2709e794c64e10b4a31be86 | diff --git a/lib/govspeak.rb b/lib/govspeak.rb
index <HASH>..<HASH> 100644
--- a/lib/govspeak.rb
+++ b/lib/govspeak.rb
@@ -64,7 +64,7 @@ module Govspeak
def t(*args)
options = args.last.is_a?(Hash) ? args.last.dup : {}
key = args.shift
- I18n.t(key, options.merge(locale: locale))
+ I18n.t!(... | Throw exceptions if translations aren't found
This is to stop this gem being subtly broken. | alphagov_govspeak | train |
e1d046623cc44a7f60037b4c2a339d2346a0074b | diff --git a/pipenv/core.py b/pipenv/core.py
index <HASH>..<HASH> 100644
--- a/pipenv/core.py
+++ b/pipenv/core.py
@@ -1417,7 +1417,8 @@ def pip_install(
index = requirement.index
if index and not extra_indexes:
extra_indexes = list(project.sources)
- extra_indexes = list(filter(lambda d: ... | resolve failing tests due to requirement.index being None | pypa_pipenv | train |
44750d93c6461ff03e7ddd2d4052895e3e2bf41c | diff --git a/spec/kamerling/server/http_spec.rb b/spec/kamerling/server/http_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/kamerling/server/http_spec.rb
+++ b/spec/kamerling/server/http_spec.rb
@@ -5,14 +5,13 @@ require_relative '../../spec_helper'
module Kamerling describe Server::HTTP do
describe '#start, #stop'... | Server::HTTP spec: minor refactoring | chastell_kamerling | train |
5f2c12324c7df5b6aeef9cdad70d82852fd0355d | diff --git a/builder/hyperv/common/step_unmount_floppydrive.go b/builder/hyperv/common/step_unmount_floppydrive.go
index <HASH>..<HASH> 100644
--- a/builder/hyperv/common/step_unmount_floppydrive.go
+++ b/builder/hyperv/common/step_unmount_floppydrive.go
@@ -11,14 +11,18 @@ import (
"github.com/mitchellh/packer/power... | No need to remove floppy controller for 2nd generation vms
Don't want to be prompted for confirmation from powershell commandlets | hashicorp_packer | train |
bef7045045b36e79e1197671d54b066b3ab2f311 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+# Version 1.0.0-alpha11
+
+## Bugfixes
+
+* Fixed invalid PHPCS check in RoboFile.php
+* Remove unnecessary use statement in LinkSubject
+
+## Features
+
+* None
+
# Version 1.0.0-alpha10
## ... | Fixed invalid PHPCS check in RoboFile.php + Remove unnecessary use statement in LinkSubject | techdivision_import-product-link | train |
051aad681b9a5f3b696724b5b8556c2b45898107 | diff --git a/mod/data/field.php b/mod/data/field.php
index <HASH>..<HASH> 100755
--- a/mod/data/field.php
+++ b/mod/data/field.php
@@ -267,21 +267,18 @@
$table->data[] = array(
-
-
'<a href="field.php?mode=display&d='.$data->id.
'&fid='.$field->... | MDL-<I>, fixing xhtml strict bugs | moodle_moodle | train |
c967d06001497c20c1d0b6a7628f5b45fe9f5a1f | diff --git a/src/Auth/Entity/AuthSession.php b/src/Auth/Entity/AuthSession.php
index <HASH>..<HASH> 100644
--- a/src/Auth/Entity/AuthSession.php
+++ b/src/Auth/Entity/AuthSession.php
@@ -29,14 +29,15 @@ class AuthSession extends AbstractEntity
* Hash of the session
*
* @var array
- * @ODM\Hash*/
+... | replaces old annotations with ODM <I> compatible ones (gh-<I>) | yawik_auth | train |
bd736e58b10df9415f0569b2d89bb60e561f6304 | diff --git a/gridftp/src/main/java/org/globus/ftp/dc/TransferThreadManager.java b/gridftp/src/main/java/org/globus/ftp/dc/TransferThreadManager.java
index <HASH>..<HASH> 100755
--- a/gridftp/src/main/java/org/globus/ftp/dc/TransferThreadManager.java
+++ b/gridftp/src/main/java/org/globus/ftp/dc/TransferThreadManager.ja... | Unsynchronized method could lead to thread leak in case of concurent access. | jglobus_JGlobus | train |
b438f4c5f1d1c092d3010ee7c20a80e26cd6a84d | diff --git a/dplython/dplython.py b/dplython/dplython.py
index <HASH>..<HASH> 100644
--- a/dplython/dplython.py
+++ b/dplython/dplython.py
@@ -445,6 +445,9 @@ def mutate(*args, **kwargs):
@ApplyToDataframe
def group_by(*args, **kwargs):
def GroupDF(df):
+ if args and max([len(arg.todo) for arg in args]) > 1:
+ ... | raise ValueError on attempt to group_by expression passed as a positional arg. | dodger487_dplython | train |
fc5409d98b2927b6561542ebfd2ba4a88afe5757 | diff --git a/lib/gherkin/tools/line_filter_listener.rb b/lib/gherkin/tools/line_filter_listener.rb
index <HASH>..<HASH> 100644
--- a/lib/gherkin/tools/line_filter_listener.rb
+++ b/lib/gherkin/tools/line_filter_listener.rb
@@ -35,7 +35,7 @@ module Gherkin
@scenario_buffer = @meta_buffer
@meta_buff... | Made a pending spec pass, and canged its semantice - I think we *should* be able to filter on comment lines belonging to a scenario | cucumber-attic_gherkin2 | train |
4821153f31638b15288d816245b96e073e56941c | diff --git a/src/frontend/org/voltdb/rejoin/StreamSnapshotDataReceiver.java b/src/frontend/org/voltdb/rejoin/StreamSnapshotDataReceiver.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/rejoin/StreamSnapshotDataReceiver.java
+++ b/src/frontend/org/voltdb/rejoin/StreamSnapshotDataReceiver.java
@@ -93,6 +93,... | Terminate StreamSnapshotDataReceiver if the thread is interrupted. | VoltDB_voltdb | train |
d22b1f9e4816641c46e79a72eba1d4ccca7bb732 | diff --git a/devices.js b/devices.js
index <HASH>..<HASH> 100755
--- a/devices.js
+++ b/devices.js
@@ -87,6 +87,22 @@ const configureReportingPayload = (attribute, min, max, change, overrides) => {
return [payload];
};
+async function setupHaElectricalMeasurementPolling(type, data, device, options) {
+ const... | Fix for HEIMAN Smart socket HS2SK (NXP version) haElectricalMeasurement. (#<I>)
Device does not support reporting. Need to poll. | Koenkk_zigbee-shepherd-converters | train |
ba63ad9bdc6f3b82c2ffa3a2fdc09c0d5b5529dc | diff --git a/src/app/dragdropway/controllers/edaEditController.js b/src/app/dragdropway/controllers/edaEditController.js
index <HASH>..<HASH> 100644
--- a/src/app/dragdropway/controllers/edaEditController.js
+++ b/src/app/dragdropway/controllers/edaEditController.js
@@ -128,7 +128,76 @@ angular
* formFieldManage.in... | test drag and drop before creating a directive | MacKentoch_easyFormGenerator | train |
e100ce48ebb096fd46bb5f2b515f784ebe686d6b | diff --git a/pylint/test/extensions/test_check_docs.py b/pylint/test/extensions/test_check_docs.py
index <HASH>..<HASH> 100644
--- a/pylint/test/extensions/test_check_docs.py
+++ b/pylint/test/extensions/test_check_docs.py
@@ -24,6 +24,9 @@ from pylint.extensions.docparams import DocstringParameterChecker
class TestPa... | Fixed masking of docparam test failures | PyCQA_pylint | train |
98799b190d1ea8be5eb3b2192313cb50cb10b342 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -223,7 +223,8 @@ $pool = Pool::create()
// The maximum amount of processes which can run simultaneously.
->concurrency(20)
-// The maximum amount of time a process may take to finish in seconds.
+// The maximum amo... | Add support for up to microsecond timeouts. | spatie_async | train |
fd34eaf8131cac45a57913120a5ee5acb1c0f1bc | diff --git a/src/Endpoints/CustomHostnames.php b/src/Endpoints/CustomHostnames.php
index <HASH>..<HASH> 100644
--- a/src/Endpoints/CustomHostnames.php
+++ b/src/Endpoints/CustomHostnames.php
@@ -34,8 +34,7 @@ class CustomHostnames implements API
* @param string $customOriginServer
* @param bool $wildcard
... | Move The Custom SSL To An Array
This kinda kicks the can down the road, but allows me to appease PHPMD
(for now) | cloudflare_cloudflare-php | train |
c91dfe9020401b52bd7431db946e61f001766487 | diff --git a/flask_googleauth.py b/flask_googleauth.py
index <HASH>..<HASH> 100644
--- a/flask_googleauth.py
+++ b/flask_googleauth.py
@@ -267,7 +267,12 @@ class GoogleAuth(OpenIdMixin):
def decorated(*args, **kwargs):
if not self._check_auth():
blueprint = current_app.extensions[... | Don't force authentication for googleauth requests
otherwise we end up in a loop. | sashka_flask-googleauth | train |
f3841a1d27e4f3b4260eae7933dc7c54950d0179 | diff --git a/opts/ulimit_test.go b/opts/ulimit_test.go
index <HASH>..<HASH> 100644
--- a/opts/ulimit_test.go
+++ b/opts/ulimit_test.go
@@ -11,7 +11,7 @@ func TestUlimitOpt(t *testing.T) {
"nofile": {"nofile", 1024, 512},
}
- ulimitOpt := NewUlimitOpt(ulimitMap)
+ ulimitOpt := NewUlimitOpt(&ulimitMap)
expecte... | Add and modify tests for legacy and new daemon invokations | docker_cli | train |
97b02934a0c966856b1b02e316c9eca79261ffc1 | diff --git a/server/integration/testsuite/src/test/java/org/infinispan/server/test/configs/ExampleConfigsIT.java b/server/integration/testsuite/src/test/java/org/infinispan/server/test/configs/ExampleConfigsIT.java
index <HASH>..<HASH> 100644
--- a/server/integration/testsuite/src/test/java/org/infinispan/server/test/c... | ISPN-<I> Disable REST rolling upgrade from ExampleConfigsIT | infinispan_infinispan | train |
5f13ad4bcd18a923f6bf2d9f64cf1e6a7c86e8f4 | diff --git a/lib/fog/hp/requests/cdn/head_container.rb b/lib/fog/hp/requests/cdn/head_container.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/hp/requests/cdn/head_container.rb
+++ b/lib/fog/hp/requests/cdn/head_container.rb
@@ -11,12 +11,10 @@ module Fog
# ==== Returns
# * response<~Excon::Response>:
... | Update inline docs as per real responses. | fog_fog | train |
f32685ef4ad847bd237845da6b5b8c44dac0ea9b | diff --git a/tests/skipif_markers.py b/tests/skipif_markers.py
index <HASH>..<HASH> 100644
--- a/tests/skipif_markers.py
+++ b/tests/skipif_markers.py
@@ -13,14 +13,18 @@ import os
try:
- travis = os.environ[u'TRAVIS']
+ os.environ[u'TRAVIS']
except KeyError:
travis = False
+else:
+ travis = True
... | Fix travis, make sure skipif condition resolves to a bool | audreyr_cookiecutter | train |
c948180fdc3d62ab3fd7dbf03ffcc111b08d17e2 | diff --git a/lib/bower-rails/dsl.rb b/lib/bower-rails/dsl.rb
index <HASH>..<HASH> 100644
--- a/lib/bower-rails/dsl.rb
+++ b/lib/bower-rails/dsl.rb
@@ -26,6 +26,7 @@ module BowerRails
@resolutions = {}
@assets_path ||= "assets"
@main_files = {}
+ @current_group = nil
end
def asset(n... | initialize @current_group to address a warning | rharriso_bower-rails | train |
b68a43367cb720daca43f9077e5a8e0d3062d9d3 | diff --git a/tests/utils/cognito/index.js b/tests/utils/cognito/index.js
index <HASH>..<HASH> 100644
--- a/tests/utils/cognito/index.js
+++ b/tests/utils/cognito/index.js
@@ -2,6 +2,7 @@
const AWS = require('aws-sdk');
const awsLog = require('log').get('aws');
+const log = require('log').get('serverless:test');
co... | test: Fix cognito pools test reliability | serverless_serverless | train |
2379e0ee4981407097bf3d100e4ba6f369695334 | diff --git a/libraries/common/selectors/client.js b/libraries/common/selectors/client.js
index <HASH>..<HASH> 100644
--- a/libraries/common/selectors/client.js
+++ b/libraries/common/selectors/client.js
@@ -52,6 +52,31 @@ export const getDeviceInformation = createSelector(
);
/**
+ * Creates the `getSupportedIdenti... | PWA-<I> Added identity services selectors. | shopgate_pwa | train |
79f9c078c6a50e6da0f0ec13050eb86881c2fa8c | diff --git a/error.go b/error.go
index <HASH>..<HASH> 100644
--- a/error.go
+++ b/error.go
@@ -5,7 +5,7 @@ import (
"os"
)
-func ErrorAndExit(message string) {
- fmt.Printf("ERROR: %s\n", message)
+func ErrorAndExit(format string, args ...interface{}) {
+ fmt.Printf(fmt.Sprintf("ERROR: %s\n", format), args...)
o... | make ErrorAndExit take vargs | ForceCLI_force | train |
a03608f39cf865449b028c4bffdca87f954008ba | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -261,8 +261,5 @@ setup(
'enum34',
'decorator',
'six'
- ],
- tests_require=[
- 'tox'
]
) | Remove Tox from test_requires
This commit removes tox from the `test_requires` section in 'setup.py',
since it isn't actually necessary to run the tests. | pythongssapi_python-gssapi | train |
efe3c5ff99a129b1ffdaee842bd2f9843ec631ba | diff --git a/src/commands/deploy.js b/src/commands/deploy.js
index <HASH>..<HASH> 100644
--- a/src/commands/deploy.js
+++ b/src/commands/deploy.js
@@ -207,6 +207,7 @@ class DeployCommand extends Command {
draft: !deployToProduction && !alias,
message: flags.message,
deployTimeout: flags.timeo... | Deploy: Force async on large deployments (#<I>)
* Deploy: Force async deployment
* Change the threshold for async deployment | netlify_cli | train |
ad6eebee65de3a65726450d9484875cd8a46ddf8 | diff --git a/dev/com.ibm.ws.kernel.boot_fat/fat/src/com/ibm/ws/kernel/boot/commandline/CreateCommandTest.java b/dev/com.ibm.ws.kernel.boot_fat/fat/src/com/ibm/ws/kernel/boot/commandline/CreateCommandTest.java
index <HASH>..<HASH> 100644
--- a/dev/com.ibm.ws.kernel.boot_fat/fat/src/com/ibm/ws/kernel/boot/commandline/Cre... | Check LibertyServer for java level instead of assuming test JVM is the same as Liberty | OpenLiberty_open-liberty | train |
80640a858f46c0e9e5015d8a96f927f7d887bf41 | diff --git a/ecslogs/handler.go b/ecslogs/handler.go
index <HASH>..<HASH> 100644
--- a/ecslogs/handler.go
+++ b/ecslogs/handler.go
@@ -120,10 +120,10 @@ func (data *eventData) EncodeValue(e objconv.Encoder) error {
i := data.next(0)
return e.EncodeMap(-1, func(k objconv.Encoder, v objconv.Encoder) (err error) {
... | support latest version of objconv | segmentio_events | train |
775921ddb5c0572b5c0953295befcc71776cb128 | diff --git a/js/colorpicker.js b/js/colorpicker.js
index <HASH>..<HASH> 100644
--- a/js/colorpicker.js
+++ b/js/colorpicker.js
@@ -127,7 +127,7 @@ var igv = (function (igv) {
// column
column = $('<div class="col col-4-4">');
- userColorInput = $('<input class="user-input-color" t... | Colorpicker - user color input now uses placeholder text '#ff<I> or <I>,0,0' | igvteam_igv.js | train |
22c76db1581aa6914732a926db752a9421ea0796 | diff --git a/src/Themosis/Core/Application.php b/src/Themosis/Core/Application.php
index <HASH>..<HASH> 100644
--- a/src/Themosis/Core/Application.php
+++ b/src/Themosis/Core/Application.php
@@ -1028,4 +1028,26 @@ class Application extends Container implements ApplicationContract, HttpKernelIn
$this->call(... | Abstract application request handle for easy theme setup. | themosis_framework | train |
33119f99ad8f9e924b2cdebd59443e5efe52d686 | diff --git a/tests/integration/test_pairwise_significance.py b/tests/integration/test_pairwise_significance.py
index <HASH>..<HASH> 100644
--- a/tests/integration/test_pairwise_significance.py
+++ b/tests/integration/test_pairwise_significance.py
@@ -481,17 +481,11 @@ class TestStandardizedResiduals(TestCase):
def... | rfctr: meaningful assertion in tests with agumented fixtures part III | Crunch-io_crunch-cube | train |
a76609489ffc6880e11ec399832dc8edcb3e19a7 | diff --git a/src/bootstrap-table.js b/src/bootstrap-table.js
index <HASH>..<HASH> 100644
--- a/src/bootstrap-table.js
+++ b/src/bootstrap-table.js
@@ -44,7 +44,20 @@
return result;
};
- var getScrollbarWidth = function () {
+ var getFiledIndex = function (columns, field) {
+ var index = -1;... | Fix #<I>: Add 'showColumn' and 'hideColumn' methods. | wenzhixin_bootstrap-table | train |
62b083dd30486156a57df94590d454a668c303c2 | diff --git a/fireplace/cards/blackrock/collectible.py b/fireplace/cards/blackrock/collectible.py
index <HASH>..<HASH> 100644
--- a/fireplace/cards/blackrock/collectible.py
+++ b/fireplace/cards/blackrock/collectible.py
@@ -38,6 +38,11 @@ class BRM_010b:
play = Morph(SELF, "BRM_010t2")
+# Fireguard Destroyer
+clas... | Implement Fireguard Destroyer with a test | jleclanche_fireplace | train |
4309e7c62f687e6111358c29e6edd45f8e0933d7 | diff --git a/littlechef/chef.py b/littlechef/chef.py
index <HASH>..<HASH> 100644
--- a/littlechef/chef.py
+++ b/littlechef/chef.py
@@ -76,9 +76,9 @@ def sync_node(node):
It also injects the ipaddress to the node's config file if not already
existent.
"""
- if node.get('dummy'):
+ if node.get('dummy... | Add node skipping when node has the tag "dummy" | tobami_littlechef | train |
e6c80fad77a366cd35efe483fd22a4bf4b6e80f5 | diff --git a/lib/yao/faraday_middlewares.rb b/lib/yao/faraday_middlewares.rb
index <HASH>..<HASH> 100644
--- a/lib/yao/faraday_middlewares.rb
+++ b/lib/yao/faraday_middlewares.rb
@@ -20,9 +20,16 @@ Faraday::Request.register_middleware os_token: -> { Faraday::Request::OSToken }
class Faraday::Response::OSDumper < Farad... | check response type on debug mode
and remove workaround code | yaocloud_yao | train |
58f27186f86179f9c5670a6312665b0de6eb075f | diff --git a/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java b/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java
+++ b/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java
@@ -48,9 +48,9 @@ import com.j256.ormlite.table.TableInfo... | Exposed the StatementExecutor as protected. Thanks to Kevin Dahlhausen. | j256_ormlite-core | train |
408ea0bce58b257edacb415468af01e80f7278f5 | diff --git a/Form/Type/RepeaterGroupCollectionType.php b/Form/Type/RepeaterGroupCollectionType.php
index <HASH>..<HASH> 100644
--- a/Form/Type/RepeaterGroupCollectionType.php
+++ b/Form/Type/RepeaterGroupCollectionType.php
@@ -19,6 +19,7 @@ class RepeaterGroupCollectionType extends AbstractType
'label' => ... | Allow removal of a group inside a flexible/repeater FieldValue | sherlockode_advanced-content-bundle | train |
bfa05c02502d4d198e99aa6a9a64cfeb4b1b7bf4 | diff --git a/drivers/java/src/main/java/com/rethinkdb/net/Response.java b/drivers/java/src/main/java/com/rethinkdb/net/Response.java
index <HASH>..<HASH> 100644
--- a/drivers/java/src/main/java/com/rethinkdb/net/Response.java
+++ b/drivers/java/src/main/java/com/rethinkdb/net/Response.java
@@ -135,7 +135,7 @@ class Res... | Response is a feed if any note indicates a feed
Fixes #<I> | rethinkdb_rethinkdb | train |
2650a3ed3b367aee43c03e5cf01087daf3912323 | diff --git a/app/models/version.rb b/app/models/version.rb
index <HASH>..<HASH> 100644
--- a/app/models/version.rb
+++ b/app/models/version.rb
@@ -4,6 +4,7 @@ class Version < ActiveRecord::Base
has_many :requirements, :dependent => :destroy
has_many :dependencies, :through => :requirements, :dependent => :destroy... | Making really sure dup versions don't get created | rubygems_rubygems.org | train |
f397020323294d8d2edf07309520825a7c065252 | diff --git a/yotta/lib/target.py b/yotta/lib/target.py
index <HASH>..<HASH> 100644
--- a/yotta/lib/target.py
+++ b/yotta/lib/target.py
@@ -592,7 +592,9 @@ class DerivedTarget(Target):
logger.error('error starting test output filter "%s": %s', filter_command, e)
_tryTerminate(te... | even more debug logging around test subcommands | ARMmbed_yotta | train |
9b6ed295cd8c3dbba1b88ce0fdccb497fe45d0b7 | diff --git a/src/foremast/utils/lookups.py b/src/foremast/utils/lookups.py
index <HASH>..<HASH> 100644
--- a/src/foremast/utils/lookups.py
+++ b/src/foremast/utils/lookups.py
@@ -49,6 +49,7 @@ def ami_lookup(region='us-east-1', name='tomcat8'):
LOG.debug('Lookup AMI table: %s', ami_dict)
ami_id = ami_... | chore: Add TODO for cleaning out GitLab AMI lookup | foremast_foremast | train |
41fd7fbb3b6847d1c55584fb9fb5ba80c5dd0d18 | diff --git a/test/container.js b/test/container.js
index <HASH>..<HASH> 100644
--- a/test/container.js
+++ b/test/container.js
@@ -2,7 +2,7 @@
var should = require('should'),
sinon = require('sinon'),
- Promise = require('Q'),
+ Promise = require('q'),
container = require('../container');
describe... | change required module name from Q to q | redradix_kontainer | train |
33622bc32c5f0bad2029fe1a762a41d19e25e7a2 | diff --git a/src/Illuminate/Database/Eloquent/Relations/MorphTo.php b/src/Illuminate/Database/Eloquent/Relations/MorphTo.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Database/Eloquent/Relations/MorphTo.php
+++ b/src/Illuminate/Database/Eloquent/Relations/MorphTo.php
@@ -122,6 +122,20 @@ class MorphTo extends Be... | Fix dissociate for morph-to relations | laravel_framework | train |
2cd6af174d727a110cd4e874793ec9d93c91c3a2 | diff --git a/lib/googleauth/credentials.rb b/lib/googleauth/credentials.rb
index <HASH>..<HASH> 100644
--- a/lib/googleauth/credentials.rb
+++ b/lib/googleauth/credentials.rb
@@ -257,6 +257,9 @@ module Google
CredentialsLoader.warn_if_cloud_sdk_credentials @client.client_id
@project_id ||= Credentials... | fix: Set instance variables at initialization to avoid spamming rake warnings | googleapis_google-auth-library-ruby | train |
fdee417990717ae428d9603957ac5ac580930707 | diff --git a/scripts/run.py b/scripts/run.py
index <HASH>..<HASH> 100755
--- a/scripts/run.py
+++ b/scripts/run.py
@@ -911,6 +911,9 @@ class TestRunner:
cloud = H2OUseCloud(node_num, c[0], c[1])
self.clouds.append(cloud)
node_num += 1
+ elif (r_demo):
+ ... | run the h2o r package demos on one cloud with one node, specified by the Jenkins job | h2oai_h2o-3 | train |
28711894bd5a819ed01fecb8c803f42cc1216bd6 | diff --git a/src/org/parosproxy/paros/control/Control.java b/src/org/parosproxy/paros/control/Control.java
index <HASH>..<HASH> 100644
--- a/src/org/parosproxy/paros/control/Control.java
+++ b/src/org/parosproxy/paros/control/Control.java
@@ -46,6 +46,7 @@
// ZAP: 2014/01/16 Issue 979: Sites and Alerts trees can get c... | Issue <I> - core.newSession doesn't clear Sites
Changed the method Control#runCommandLineNewSession to reset the "Sites" tree and to create a new database (otherwise the old data would be used/shown in ZAP). | zaproxy_zaproxy | train |
36355692575c28061a92cc8b381b11898399fa41 | diff --git a/block.go b/block.go
index <HASH>..<HASH> 100644
--- a/block.go
+++ b/block.go
@@ -2,6 +2,7 @@ package tsdb
import (
"encoding/json"
+ "fmt"
"io/ioutil"
"os"
"path/filepath"
@@ -174,6 +175,10 @@ func (pb *persistedBlock) Close() error {
return merr.Err()
}
+func (pb *persistedBlock) String()... | Trigger reload correctly on interrupted compaction | prometheus_prometheus | train |
856634c14e6314a08f7ad193fecdd0bb5a4fae68 | diff --git a/riak/client/__init__.py b/riak/client/__init__.py
index <HASH>..<HASH> 100644
--- a/riak/client/__init__.py
+++ b/riak/client/__init__.py
@@ -63,9 +63,19 @@ class RiakClient(RiakMapReduceChain, RiakClientOperations):
the transport constuctor
:type transport_optio... | Don't silently drop the port option, instead use it for the default protocol port. Closes #<I>. | basho_riak-python-client | train |
01d98ed2fb19757699d5e311a955888d182f5c86 | diff --git a/test/functional/basic.js b/test/functional/basic.js
index <HASH>..<HASH> 100644
--- a/test/functional/basic.js
+++ b/test/functional/basic.js
@@ -6,22 +6,31 @@ const assert = chai.assert
// Ponos Tooling
const ponos = require('../../src')
+const RabbitMQ = require('../../src/rabbitmq')
const testWorke... | use new rabbitmq methods for publishing | Runnable_ponos | train |
8d5b827a4ecb2bf5e8df910a5e37bcfbbe092bd7 | diff --git a/tests/jams_test.py b/tests/jams_test.py
index <HASH>..<HASH> 100644
--- a/tests/jams_test.py
+++ b/tests/jams_test.py
@@ -728,7 +728,7 @@ def test_load_invalid():
yield __test_warn, fn, True, False
-def test_annotation_trim():
+def test_annotation_trim_bad_params():
@raises(jams.ParameterEr... | Refactor test_annotation_trim into several smaller tests | marl_jams | train |
ddce1363513bede810593f5fb54d083a3e5f6d28 | diff --git a/nydus/db/base.py b/nydus/db/base.py
index <HASH>..<HASH> 100644
--- a/nydus/db/base.py
+++ b/nydus/db/base.py
@@ -308,7 +308,6 @@ class DistributedConnection(object):
self._commands = []
return
- pool = None
command_map = {}
pipelined = all(self._cluster... | Launch the threadpool with at most one worker per connection | disqus_nydus | train |
513053d62ba86ca6ab1f4646fdac3ec6819b2db9 | diff --git a/src/ajax.js b/src/ajax.js
index <HASH>..<HASH> 100644
--- a/src/ajax.js
+++ b/src/ajax.js
@@ -457,6 +457,8 @@ jQuery.extend({
xhr.send( type === "POST" || type === "PUT" ? s.data : null );
} catch(e) {
jQuery.handleError(s, xhr, null, e);
+ // Fire the complete handlers
+ complete();
}
... | The complete event wasn't getting called on local file <I>s. Thanks to 'mrspeaker' for the patch. Fixes #<I>. | jquery_jquery | train |
8cee80a5991e259127cda1299ca47b939a4e8329 | diff --git a/script/_utils/runCommand.js b/script/_utils/runCommand.js
index <HASH>..<HASH> 100644
--- a/script/_utils/runCommand.js
+++ b/script/_utils/runCommand.js
@@ -13,9 +13,11 @@ module.exports = function(name) {
main(process.argv.slice(2), process.stdin, process.stdout, process.stderr)
);
})
- ... | refactor: use `process.exitCode`
This comes from the `no-process-exit` rule in eslint <I>. It makes sense, too, as it will probably help an issue I’ve seen where not all the ouput buffers have been flushed when the exit happens. | codemod-js_codemod | train |
0de65a10763f79c32e89df63046595782b81bae8 | diff --git a/test/helpers/kubectl.go b/test/helpers/kubectl.go
index <HASH>..<HASH> 100644
--- a/test/helpers/kubectl.go
+++ b/test/helpers/kubectl.go
@@ -2901,10 +2901,10 @@ func (kub *Kubectl) CiliumReport(namespace string, commands ...string) {
return
}
- // Log gathering for Cilium should take at most 5 minu... | test: increase timeout for Cilium log gathering
We are occasionally seeing log archives without most of the logs which
is caused by this timeout being hit. Let's increase it and see if this
helps. | cilium_cilium | train |
2ff798820470a6a84d18e2d82d217b6cfa7b5e69 | diff --git a/gromacs/tools.py b/gromacs/tools.py
index <HASH>..<HASH> 100644
--- a/gromacs/tools.py
+++ b/gromacs/tools.py
@@ -162,7 +162,8 @@ def tool_factory(clsname, name, driver, base=GromacsCommand):
""" Factory for GromacsCommand derived types. """
clsdict = {
'command_name': name,
- 'dr... | Merged develop into automatic-tool-loading | Becksteinlab_GromacsWrapper | train |
16ab1f6d43ccd1b39807566fc680702383fb7783 | diff --git a/syntax/filetests_test.go b/syntax/filetests_test.go
index <HASH>..<HASH> 100644
--- a/syntax/filetests_test.go
+++ b/syntax/filetests_test.go
@@ -3206,6 +3206,15 @@ var fileTests = []testCase{
common: litStmt("a]b"),
},
{
+ Strs: []string{"echo a[b c[de]f"},
+ posix: litStmt("echo", "a[b", "c[de]... | syntax: make [ be a token less often
So that we may or may not make it a token, depending on whether or not
we're parsing assignments. This lets us accept valid programs like ones
using globs such as "echo a[bc]".
Updates #<I>. | mvdan_sh | train |
01696d392c244acefcf66bee902938e738e35949 | diff --git a/peewee.py b/peewee.py
index <HASH>..<HASH> 100644
--- a/peewee.py
+++ b/peewee.py
@@ -339,6 +339,11 @@ class QueryResultWrapper(object):
raise StopIteration
+# create
+class DoesNotExist(Exception):
+ pass
+
+
# semantic wrappers for ordering the results of a `SelectQuery`
def asc(f):... | Adding a <model>.DoesNotExist exception class a-la django which will be
raised by the Model.get() classmethod | coleifer_peewee | train |
2c9ac6c64c26f6b0d23ca4165f6740c8980300ea | diff --git a/web/concrete/tools/files/bulk_properties.php b/web/concrete/tools/files/bulk_properties.php
index <HASH>..<HASH> 100644
--- a/web/concrete/tools/files/bulk_properties.php
+++ b/web/concrete/tools/files/bulk_properties.php
@@ -120,7 +120,6 @@ if ($_POST['task'] == 'update_extended_attribute' && $fp->canEdit... | remove populateAttributes
I think with the lazy loading of <I> we don't need to pre-populate
anything. If we do we'd have at least to rewrite the method,
FileVerion::populateAttributes doesn't exist anymore.
Former-commit-id: 6ada<I>c<I>facba9cb3c<I>b4f<I>f0d<I>fa<I>eedd | concrete5_concrete5 | train |
07b8f480e789f7cf384ecacf597168084fbae1a4 | diff --git a/lib/Epuber/server.rb b/lib/Epuber/server.rb
index <HASH>..<HASH> 100644
--- a/lib/Epuber/server.rb
+++ b/lib/Epuber/server.rb
@@ -211,6 +211,7 @@ module Epuber
#
def self.relative_path_to_book_file(path)
file = file_resolver.file_with_source_path(path)
+ return if file.nil?
abs... | [Server][AutoRefresh][Reloader] fix not including changes in files in changed bookspec file | epuber-io_epuber | train |
0e699950974d9ffdd5c03d8ae221fa24d029ad4e | diff --git a/plaso/cli/extraction_tool.py b/plaso/cli/extraction_tool.py
index <HASH>..<HASH> 100644
--- a/plaso/cli/extraction_tool.py
+++ b/plaso/cli/extraction_tool.py
@@ -249,7 +249,7 @@ class ExtractionTool(
be expanded or if an invalid parser or plugin name is specified.
"""
parser_filter_exp... | Changes to single process mode for storage media image (#<I>) | log2timeline_plaso | train |
d934b616cf823341f42412c856b6d059ecde1869 | diff --git a/bundles/org.eclipse.orion.client.editor/web/orion/textview/textView.js b/bundles/org.eclipse.orion.client.editor/web/orion/textview/textView.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.editor/web/orion/textview/textView.js
+++ b/bundles/org.eclipse.orion.client.editor/web/orion/te... | Bug <I> - Hangul(Korea Language) input then stopped frequently. | eclipse_orion.client | train |
b2be3e46ff4c3a134c685fc552fe1dc5d2138f8a | diff --git a/stagemonitor-core/src/main/java/org/stagemonitor/core/configuration/source/PropertyFileConfigurationSource.java b/stagemonitor-core/src/main/java/org/stagemonitor/core/configuration/source/PropertyFileConfigurationSource.java
index <HASH>..<HASH> 100644
--- a/stagemonitor-core/src/main/java/org/stagemonito... | Reuse File in PropertyFileConfigurationSource | stagemonitor_stagemonitor | train |
d519e959b36344e0c302ab46630950cd1480969b | diff --git a/lib/serializer.js b/lib/serializer.js
index <HASH>..<HASH> 100644
--- a/lib/serializer.js
+++ b/lib/serializer.js
@@ -1,4 +1,4 @@
-/*jshint laxcomma:true, smarttabs: true */
+/*jshint laxcomma:true, smarttabs: true, node: true */
'use strict';
/**
* Provides standard data serialization & deserializatio... | More lintings
serializer js | node-tastypie_tastypie | train |
843282c0d64f9458b448bc6cd1125fca8907b073 | diff --git a/pandas/util/testing.py b/pandas/util/testing.py
index <HASH>..<HASH> 100644
--- a/pandas/util/testing.py
+++ b/pandas/util/testing.py
@@ -36,8 +36,15 @@ def rands(n):
# Console debugging tools
def debug(f, *args, **kwargs):
- set_trace()
- return f(*args, **kwargs)
+ from pdb import Pdb as Old... | ENH: rkern patch to debug | pandas-dev_pandas | train |
99a4950197a742245c7ff276a22979ebbfa8d407 | diff --git a/src/controllers/PayController.php b/src/controllers/PayController.php
index <HASH>..<HASH> 100644
--- a/src/controllers/PayController.php
+++ b/src/controllers/PayController.php
@@ -10,8 +10,6 @@
namespace hiqdev\yii2\merchant\controllers;
-use hiqdev\yii2\merchant\models\Deposit;
-use hiqdev\yii2\mer... | Enhanced PayController::actionRequest() to check merchant presence | hiqdev_yii2-merchant | train |
018914dc230829f406d2c7430d8438e5ccd3178d | diff --git a/examples/changes/api/movies.php b/examples/changes/api/movies.php
index <HASH>..<HASH> 100644
--- a/examples/changes/api/movies.php
+++ b/examples/changes/api/movies.php
@@ -17,9 +17,9 @@ $token = new \Tmdb\ApiToken(TMDB_API_KEY);
$client = new \Tmdb\Client($token);
$movieChanges = $client->getChanges... | Fixing wrong parameter key for the from and to methods, also corrected these in the examples of the changes section. Fixes #<I> | php-tmdb_api | train |
9d9053e5eaa5bf1c67770ee2bd6c1514a8c2d113 | diff --git a/src/Select.js b/src/Select.js
index <HASH>..<HASH> 100644
--- a/src/Select.js
+++ b/src/Select.js
@@ -105,7 +105,8 @@ var Select = React.createClass({
},
componentDidUpdate () {
- if (this.refs.focused && this.refs.menu) {
+ if (this._scrollToFocusedOptionOnUpdate && this.refs.focused && this.refs.... | Fixing focus scrolling behaviour on option hover | HubSpot_react-select-plus | train |
c336ef2fb9233ada8d1924ae3ac771276a83a681 | diff --git a/package.json b/package.json
index <HASH>..<HASH> 100644
--- a/package.json
+++ b/package.json
@@ -25,13 +25,12 @@
},
"homepage": "https://github.com/11ty/eleventy-plugin-rss#readme",
"devDependencies": {
- "@11ty/eleventy": "^0.6.0",
+ "@11ty/eleventy": "^0.11.0",
"ava": "^1.0.1"
},
... | Remove Luxon from date formating for small speedup. | 11ty_eleventy-plugin-rss | train |
51854819ce6e27bef40e36d99aa68ed09c458e19 | diff --git a/formats/fql.py b/formats/fql.py
index <HASH>..<HASH> 100644
--- a/formats/fql.py
+++ b/formats/fql.py
@@ -1254,8 +1254,13 @@ class Correction(object): #AS CORRECTION/SUGGESTION expression...
for subassignments, suggestionassignments in self.suggestions:
suggestionchildren = []
- ... | attempted FQL fix in suggestion for deletion | proycon_pynlpl | train |
a4d829f39e6542fd22ca32cc23302d4e097ebbf1 | diff --git a/lib/jumpstart/base.rb b/lib/jumpstart/base.rb
index <HASH>..<HASH> 100644
--- a/lib/jumpstart/base.rb
+++ b/lib/jumpstart/base.rb
@@ -152,8 +152,10 @@ module JumpStart
def create_project
Dir.chdir(@install_path)
- puts "Executing command: #{@install_command} #{@project_name} #{@i... | added unless statement to install_command launcher | i0n_jumpstart | train |
c6c291010a3dbb3259e5f96573a7084392deb764 | diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js
index <HASH>..<HASH> 100644
--- a/lib/determine-basal/determine-basal.js
+++ b/lib/determine-basal/determine-basal.js
@@ -491,7 +491,10 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_
... | don't print 'setting 0m zero temp' | openaps_oref0 | train |
3c31479d6b78016c8cad324d566a34f25992635f | diff --git a/tests/Zepto/ZeptoTest.php b/tests/Zepto/ZeptoTest.php
index <HASH>..<HASH> 100644
--- a/tests/Zepto/ZeptoTest.php
+++ b/tests/Zepto/ZeptoTest.php
@@ -44,6 +44,62 @@ class ZeptoTest extends \PHPUnit_Framework_TestCase
}
/**
+ * CONSTRUCTOR TESTS
+ */
+
+ /**
+ * @covers Zepto\Zept... | Added tests for ``Zepto\Zepto`` | hassankhan_Sonic | train |
3f81f9aefb435db3e1c79ac257bd78c516f08c81 | diff --git a/src/adminApi.js b/src/adminApi.js
index <HASH>..<HASH> 100644
--- a/src/adminApi.js
+++ b/src/adminApi.js
@@ -10,15 +10,15 @@ export default ({host, https, ignoreConsumers, cache}) => {
return createApi({
router,
ignoreConsumers,
- getJson: cache ? getJsonCache : getJson,
+ ... | feat(pagination): changed getJson to getPaginatedJson
- Also added checks to ensure variable is an array before using "some" function | mybuilder_kongfig | train |
08ca82ea2cb2fb6d2bfa7f753943307a968892b3 | diff --git a/app/Http/Controllers/Dashboard/ApiController.php b/app/Http/Controllers/Dashboard/ApiController.php
index <HASH>..<HASH> 100644
--- a/app/Http/Controllers/Dashboard/ApiController.php
+++ b/app/Http/Controllers/Dashboard/ApiController.php
@@ -44,7 +44,8 @@ class ApiController extends AbstractApiController
... | Fixes #<I> - ordering of components works again | CachetHQ_Cachet | train |
f8b0e9cf83ebfa98b77356c5e8bb8b970936bead | diff --git a/wake.py b/wake.py
index <HASH>..<HASH> 100644
--- a/wake.py
+++ b/wake.py
@@ -86,7 +86,7 @@ class Vulture(ast.NodeVisitor):
subpaths = [os.path.join(path, filename)
for filename in sorted(os.listdir(path))]
modules.extend(self._get_modules(subp... | only warn if a path from the command line could not be found | jendrikseipp_vulture | train |
1438e0eb062ef92ec3544be6896e2853dd0df07b | diff --git a/actionpack/lib/action_view/helpers/tag_helper.rb b/actionpack/lib/action_view/helpers/tag_helper.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_view/helpers/tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/tag_helper.rb
@@ -17,6 +17,10 @@ module ActionView
auto... | Don't break Haml with textarea newline fix.
See issue #<I>, issue #<I>, issue #<I>, and issue #<I>. Adds a newline after the textarea opening tag based on @codykrieger's original patch so that we don't cause regressions in Haml-using apps. The regression caused textarea tags to add newlines to the field unintentionall... | rails_rails | train |
17c1b6919be9b9daf863dc9ab85c79c2f9e313ee | diff --git a/media/js/views/transcript.js b/media/js/views/transcript.js
index <HASH>..<HASH> 100644
--- a/media/js/views/transcript.js
+++ b/media/js/views/transcript.js
@@ -9,6 +9,9 @@
'keyup .lcb-search-entry': 'search'
},
initialize: function(options) {
+
+ var that = this;... | JS style cleanup + change debounce into throttle | sdelements_lets-chat | train |
4b0213069f90bd38ea8368a755bc7cab6b86e5a7 | diff --git a/aeron-mediadriver/src/test/java/uk/co/real_logic/aeron/mediadriver/ReceiverThreadTest.java b/aeron-mediadriver/src/test/java/uk/co/real_logic/aeron/mediadriver/ReceiverThreadTest.java
index <HASH>..<HASH> 100644
--- a/aeron-mediadriver/src/test/java/uk/co/real_logic/aeron/mediadriver/ReceiverThreadTest.jav... | removed CONN hdr type. | real-logic_aeron | train |
a3429004a35627f2ac359b404530cdacf2424302 | diff --git a/xhtml2pdf/parser.py b/xhtml2pdf/parser.py
index <HASH>..<HASH> 100644
--- a/xhtml2pdf/parser.py
+++ b/xhtml2pdf/parser.py
@@ -211,6 +211,17 @@ def getCSSAttr(self, cssCascade, attrName, default=NotImplemented):
#TODO: Monkeypatching standard lib should go away.
xml.dom.minidom.Element.getCSSAttr = getCSS... | Create a system to alias non-standard tags to standard ones. The only
currently defined tag aliases "bgcolor" to "background-color", but this
puts generalized system in place. | xhtml2pdf_xhtml2pdf | train |
591052a446a9696918bb513a257cec4e4e72ce1e | diff --git a/lib/weblib.php b/lib/weblib.php
index <HASH>..<HASH> 100644
--- a/lib/weblib.php
+++ b/lib/weblib.php
@@ -2489,7 +2489,7 @@ function print_table($table) {
if (!isset($align[$key])) {
$align[$key] = '';
}
- echo '<th valign="top" '. $align[$key].$size[$k... | Doing away with generaltableheader | moodle_moodle | train |
339c441f0f217fc7a930560c71acc0de8c5050e4 | diff --git a/js/src/controls/Control.js b/js/src/controls/Control.js
index <HASH>..<HASH> 100644
--- a/js/src/controls/Control.js
+++ b/js/src/controls/Control.js
@@ -18,6 +18,18 @@ var LeafletControlView = utils.LeafletWidgetView.extend({
LeafletControlView.__super__.initialize.apply(this, arguments);
... | Removing render function for all controls | jupyter-widgets_ipyleaflet | train |
8a7a1a18f44087f27148cc575337f303437edcc6 | diff --git a/package.json b/package.json
index <HASH>..<HASH> 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "vue-easytable",
- "version": "2.1.2",
+ "version": "2.1.3",
"main": "libs/main.js",
"description": "Vue table component",
"keywords": [
diff --git a/packages/index.js b/pa... | V<I>:
Fix the left and right distance adaptive bug of filter layer | huangshuwei_vue-easytable | train |
7e7d03f3d7a64df1a3a7111188a896955daaffa2 | diff --git a/src/GitHub_Updater/Install.php b/src/GitHub_Updater/Install.php
index <HASH>..<HASH> 100644
--- a/src/GitHub_Updater/Install.php
+++ b/src/GitHub_Updater/Install.php
@@ -71,12 +71,21 @@ class Install {
self::$installed_apis = $this->get_class_vars('Base', 'installed_apis');
self::$git_servers = $t... | better loading of JS on admin only | afragen_github-updater | train |
716bccacfa0baf3f0817cd24dc7e9843d3b5b9d2 | diff --git a/src/python/pants/backend/jvm/tasks/nailgun_task.py b/src/python/pants/backend/jvm/tasks/nailgun_task.py
index <HASH>..<HASH> 100644
--- a/src/python/pants/backend/jvm/tasks/nailgun_task.py
+++ b/src/python/pants/backend/jvm/tasks/nailgun_task.py
@@ -19,8 +19,6 @@ from pants.java.nailgun_executor import Nai... | Temporarily move nailgun flag registration to be global.
It was causing problems during option migration. This temporarily
widens an existing abstraction leak, but once we're fully over to
the new options system this naturally goes away.
Also - ensure task options are registered in proper scope order.
Testing Done:
... | pantsbuild_pants | train |
5b919050bf22cbc8f51fffc517071119c4d7c407 | diff --git a/test/extra/test_autoindent.rb b/test/extra/test_autoindent.rb
index <HASH>..<HASH> 100644
--- a/test/extra/test_autoindent.rb
+++ b/test/extra/test_autoindent.rb
@@ -5,6 +5,7 @@ require 'rib/extra/autoindent'
describe Rib::Autoindent do
behaves_like :rib
+ Rib::Multiline.enable
Rib::Autoindent.en... | should enable all plugins we're using | godfat_rib | train |
566c9254b474c37d4b29bb7210ed615343cb2e49 | diff --git a/lib/modules/apostrophe-attachments/lib/api.js b/lib/modules/apostrophe-attachments/lib/api.js
index <HASH>..<HASH> 100644
--- a/lib/modules/apostrophe-attachments/lib/api.js
+++ b/lib/modules/apostrophe-attachments/lib/api.js
@@ -29,7 +29,7 @@ module.exports = function(self, options) {
var group = sel... | Make it so "stop" in dispatched routes can take an error
Get rid of a misleading space in an error message. | apostrophecms_apostrophe | train |
fd4d61264a4a56ddc3320f7f9bd95f26816addc9 | diff --git a/code/libraries/koowa/components/com_files/model/entity/node.php b/code/libraries/koowa/components/com_files/model/entity/node.php
index <HASH>..<HASH> 100644
--- a/code/libraries/koowa/components/com_files/model/entity/node.php
+++ b/code/libraries/koowa/components/com_files/model/entity/node.php
@@ -140,1... | test #<I>: Remove unnecessary computed property | joomlatools_joomlatools-framework | train |
9449c6a7f2e80a95de2801be2d4f2c39ba7d5f11 | diff --git a/lib/desk/configuration.rb b/lib/desk/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/desk/configuration.rb
+++ b/lib/desk/configuration.rb
@@ -24,6 +24,7 @@ module Desk
:support_email,
:use_max_requests,
:user_agent,
+ :timeout,
:version].freeze
# An array of ... | Add timeout to Desk::Configuration | chriswarren_desk | train |
5590d6b47453b1505b002e20473fdd3bc81fa001 | diff --git a/src/Util/TaskFactory/Backup.php b/src/Util/TaskFactory/Backup.php
index <HASH>..<HASH> 100644
--- a/src/Util/TaskFactory/Backup.php
+++ b/src/Util/TaskFactory/Backup.php
@@ -284,7 +284,7 @@ class Backup implements BuilderAwareInterface, RemoteHelperAwareInterface, Custo
* @return \Robo\Contract\TaskI... | Fix uploadBackupTask should be public | digipolisgent_robo-digipolis-helpers | train |
62a17a7f44e82bad315bf3faa09d50848efeefab | diff --git a/lib/build/ExtendedString.rb b/lib/build/ExtendedString.rb
index <HASH>..<HASH> 100644
--- a/lib/build/ExtendedString.rb
+++ b/lib/build/ExtendedString.rb
@@ -6,15 +6,15 @@ class String
def underscore
self.gsub(/::/, '/').
- gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
- gsub(/([a-z\d])([A-Z])/... | String: do not colorize output on windows platforms | rhomobile_rhodes | train |
770e48fcc66f3b4ca32e0b0b7dec631437cc2682 | diff --git a/app/services/redux.js b/app/services/redux.js
index <HASH>..<HASH> 100644
--- a/app/services/redux.js
+++ b/app/services/redux.js
@@ -19,7 +19,8 @@ const extractMiddlewareConfig = (mc) => {
const { middleware, setup = () => {} } = extractMiddlewareConfig(middlewareConfig);
var { createStore, applyMiddl... | Support redux-devtools in browser | ember-redux_ember-redux | train |
920fa6d6eae0bafb8ffa290e24f29827b4f50293 | diff --git a/GVRf/Framework/src/org/gearvrf/GVRActivity.java b/GVRf/Framework/src/org/gearvrf/GVRActivity.java
index <HASH>..<HASH> 100644
--- a/GVRf/Framework/src/org/gearvrf/GVRActivity.java
+++ b/GVRf/Framework/src/org/gearvrf/GVRActivity.java
@@ -27,6 +27,7 @@ import org.gearvrf.utility.VrAppSettings;
import and... | Add more events to IActivityEvents | Samsung_GearVRf | train |
350a4a35c494c466bdc0ca40eca892495fa0de70 | diff --git a/lib/calabash/android/device.rb b/lib/calabash/android/device.rb
index <HASH>..<HASH> 100644
--- a/lib/calabash/android/device.rb
+++ b/lib/calabash/android/device.rb
@@ -531,9 +531,6 @@ module Calabash
ensure_screen_on
- # Clear any old error reports
- clear_calabash_server_repor... | A: Device: #_start_app: Kill previous test-server earlier | calabash_calabash | train |
44bb92c40e5122df418c694e4c29f03d6fabcd45 | diff --git a/example/src/main/java/de/mrapp/android/dialog/example/PreferenceFragment.java b/example/src/main/java/de/mrapp/android/dialog/example/PreferenceFragment.java
index <HASH>..<HASH> 100644
--- a/example/src/main/java/de/mrapp/android/dialog/example/PreferenceFragment.java
+++ b/example/src/main/java/de/mrapp/... | The button bar divider of a WizardDialog is now properly shown. | michael-rapp_AndroidMaterialDialog | train |
eee064e3b8bdb639362e182db6e167e8017b9e17 | diff --git a/cloud/google/compute/resources/instancegroup_test.go b/cloud/google/compute/resources/instancegroup_test.go
index <HASH>..<HASH> 100644
--- a/cloud/google/compute/resources/instancegroup_test.go
+++ b/cloud/google/compute/resources/instancegroup_test.go
@@ -57,8 +57,6 @@ func TestExpectedHappy(t *testing.T... | Removed tests that where no longer needed. | kubicorn_kubicorn | train |
a5f77e643af5c1b124d5730800b2961f13497064 | diff --git a/satpy/resample.py b/satpy/resample.py
index <HASH>..<HASH> 100644
--- a/satpy/resample.py
+++ b/satpy/resample.py
@@ -796,7 +796,7 @@ class BilinearResampler(BaseResampler):
fid = zarr.open(filename, 'r')
except ValueError:
raise IOError
- ... | Finish zarr cache handling for bilinear interpolation | pytroll_satpy | train |
1de7c509631c987b84a4a37ab5d38d51a98f1024 | diff --git a/readline/src/main/java/org/aesh/readline/terminal/TerminalBuilder.java b/readline/src/main/java/org/aesh/readline/terminal/TerminalBuilder.java
index <HASH>..<HASH> 100644
--- a/readline/src/main/java/org/aesh/readline/terminal/TerminalBuilder.java
+++ b/readline/src/main/java/org/aesh/readline/terminal/Te... | initial hpux improvements, still needs some cleanup | aeshell_aesh-readline | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.