hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
524a752614ff0a59d8dbfb47da40047de097e547 | diff --git a/tests/test_bar.py b/tests/test_bar.py
index <HASH>..<HASH> 100644
--- a/tests/test_bar.py
+++ b/tests/test_bar.py
@@ -6,6 +6,13 @@ from prettyplotlib import plt
import numpy as np
import os
import string
+import six
+
+if six.PY3:
+ UPPERCASE_CHARS = string.ascii_uppercase
+else:
+ UPPERCASE_CHARS... | Python 3 compatibility for uppercase/lowercase characters.
This introduces a dependency on the six library, but this is already a
dependency in the chain of matplotlib. I have not added this dependency
to the install_requires list of setup.py because presently it is only
needed for the test code, not for the prettyplo... | olgabot_prettyplotlib | train |
93f6388b6ba0dbd74d814de12155ce8746737159 | diff --git a/src/configure.js b/src/configure.js
index <HASH>..<HASH> 100644
--- a/src/configure.js
+++ b/src/configure.js
@@ -5,17 +5,17 @@ import deepExtend from 'deep-extend';
@inject(Loader)
export class Configure {
-
+
constructor(loader) {
// Injected dependencies
this.loader = load... | Fixes issue Vheissu/Aurelia-Configuration/#<I> (#<I>) | Vheissu_aurelia-configuration | train |
0a5d75da5d28b71e05359fe6fdba4b3c85a29d8b | diff --git a/command/agent/agent.go b/command/agent/agent.go
index <HASH>..<HASH> 100644
--- a/command/agent/agent.go
+++ b/command/agent/agent.go
@@ -213,7 +213,7 @@ func (a *Agent) RPC(method string, args interface{}, reply interface{}) error {
return a.client.RPC(method, args, reply)
}
-// Leave prepares the ag... | documentation: minor comment consistency in agent.go | hashicorp_consul | train |
a5de166f5ed98df537e6f2a8746ee13964c6e474 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -7,12 +7,12 @@ var pkg = require('./package.json');
var jshint = require('gulp-jshint');
var uglify = require('gulp-uglify');
var webserver = require('gulp-webserver');
-var karma = require('gulp-karma... | Use karma directly for tests. Fixes #<I> | i18next_ng-i18next | train |
24a363469c8540824271d6f739b2fdd2864957eb | diff --git a/archaius-core/src/test/java/com/netflix/config/ClasspathPropertiesConfigurationTest.java b/archaius-core/src/test/java/com/netflix/config/ClasspathPropertiesConfigurationTest.java
index <HASH>..<HASH> 100644
--- a/archaius-core/src/test/java/com/netflix/config/ClasspathPropertiesConfigurationTest.java
+++ ... | #<I>. Restore IOException if a config file is non-existent. Adding a unit test to verify the logic.
We'll re-visit the logic in the future since non-existent config file is not necessarily an exception. | Netflix_archaius | train |
93f714092bb3da316bc024b14b3aa624f57b0935 | diff --git a/lib/rest-ftp-daemon/constants.rb b/lib/rest-ftp-daemon/constants.rb
index <HASH>..<HASH> 100644
--- a/lib/rest-ftp-daemon/constants.rb
+++ b/lib/rest-ftp-daemon/constants.rb
@@ -34,10 +34,10 @@ LOGGER_FORMAT = {
# context: "%#{-LOG_PREFIX_WID.to_i}s %#{-LOG_PREFIX_JID.to_i}s %#{-LOG_PREFIX_ID.to_i}s ",... | logging: move caller part near to message part | bmedici_rest-ftp-daemon | train |
9c72c44896c9932898346a36c1c436be78bc8711 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,7 @@ dev
* ons-input: Fixed [#1974](https://github.com/OnsenUI/OnsenUI/issues/1974).
* ons-tabbar: Minor fix for situations where the '.page__content' is provided.
+ * ons-splitter: Fixed timing... | fix(ons-splitter): Timing for initial animations in bindings. | OnsenUI_OnsenUI | train |
78cd7d36ca33ff09176807709804472fabd623de | diff --git a/test/dummy/test/models/author_test.rb b/test/dummy/test/models/author_test.rb
index <HASH>..<HASH> 100644
--- a/test/dummy/test/models/author_test.rb
+++ b/test/dummy/test/models/author_test.rb
@@ -2,23 +2,25 @@ require 'test_helper'
class AuthorTest < ActiveSupport::TestCase
- test "author can creat... | Applied tests from Anton's branch | kenaniah_activerecord-querify | train |
f0e130fa07c409d75f657dd9732ea25c31bedb0c | diff --git a/jooby/src/main/java/io/jooby/CorsHandler.java b/jooby/src/main/java/io/jooby/CorsHandler.java
index <HASH>..<HASH> 100644
--- a/jooby/src/main/java/io/jooby/CorsHandler.java
+++ b/jooby/src/main/java/io/jooby/CorsHandler.java
@@ -68,7 +68,11 @@ public class CorsHandler implements Route.Decorator {
@Nonn... | Cors: fix some tests and remove the isSimple check, just write back headers when Origin is present | jooby-project_jooby | train |
ce1154589148e69f47024ac4d963beb01f6ad8da | diff --git a/cmd/shfmt/main.go b/cmd/shfmt/main.go
index <HASH>..<HASH> 100644
--- a/cmd/shfmt/main.go
+++ b/cmd/shfmt/main.go
@@ -26,9 +26,6 @@ import (
"mvdan.cc/sh/v3/syntax"
)
-// When unset, we auto-detect what language to use.
-const langAuto = syntax.LangVariant(-1)
-
var (
showVersion = flag.Bool("versi... | cmd/shfmt: support an explicit -ln=auto flag
It was the implicit default, but did not support the explicit form.
We add the language variant straight into the syntax package,
even though it's not used there yet,
as this is simpler and more flexible long-term.
Updates #<I>. | mvdan_sh | train |
dbfaa02d000d388904245d6c697829c9165f932e | diff --git a/__tests__/base.js b/__tests__/base.js
index <HASH>..<HASH> 100644
--- a/__tests__/base.js
+++ b/__tests__/base.js
@@ -1281,6 +1281,99 @@ function runBaseTest(name, useProxies, freeze, useListener) {
expect(produce(() => nothing)(3)).toBe(undefined)
})
+ // TODO: use fuzz test... | add tests for all possible base state types | immerjs_immer | train |
be37fa6bc87421a94cb0c34c8cf9fb9696dd630d | diff --git a/chatterbot/chatterbot.py b/chatterbot/chatterbot.py
index <HASH>..<HASH> 100644
--- a/chatterbot/chatterbot.py
+++ b/chatterbot/chatterbot.py
@@ -114,7 +114,7 @@ class ChatBot(object):
# Preprocess the input statement
for preprocessor in self.preprocessors:
- input_statement ... | Remove chatbot parameter from preprocessors.
This change is because the chatbot parameter is unused and removing
it allows these methods to be passed in as parameters to a multiprocessing
map function. | gunthercox_ChatterBot | train |
980d7a51523bb1d006371836afb0a5677d1c37a6 | diff --git a/xchange-core/src/main/java/org/knowm/xchange/currency/Currency.java b/xchange-core/src/main/java/org/knowm/xchange/currency/Currency.java
index <HASH>..<HASH> 100644
--- a/xchange-core/src/main/java/org/knowm/xchange/currency/Currency.java
+++ b/xchange-core/src/main/java/org/knowm/xchange/currency/Currenc... | added IOTA currency and some common currency pairs | knowm_XChange | train |
5c30217921f41a2effefdbbdf61b65ca829bb4d7 | diff --git a/pylogit/bootstrap_controller.py b/pylogit/bootstrap_controller.py
index <HASH>..<HASH> 100644
--- a/pylogit/bootstrap_controller.py
+++ b/pylogit/bootstrap_controller.py
@@ -16,6 +16,7 @@ from . import bootstrap_calcs as bc
from . import bootstrap_abc as abc
from .bootstrap_mle import retrieve_point_est
... | Second attempt at implementing calc_gradient_norm_for_replicates and calc_log_likelihoods_for_replicates. | timothyb0912_pylogit | train |
82a1c052299e50bc0f2b35b5c5be51547fadc776 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -19,8 +19,8 @@ module.exports = function toFile(filepath, pattern, options) {
options = options || {};
var file = options.file || { contents: null };
- file.cwd = path.resolve(options.cwd || '');
- file.base = option... | delete `options.stat` after adding stat to file | jonschlinkert_to-file | train |
0093a7992fe6d833055b4b63a5ac6652aa245604 | diff --git a/moto/dynamodb2/comparisons.py b/moto/dynamodb2/comparisons.py
index <HASH>..<HASH> 100644
--- a/moto/dynamodb2/comparisons.py
+++ b/moto/dynamodb2/comparisons.py
@@ -1004,8 +1004,7 @@ class OpOr(Op):
def expr(self, item):
lhs = self.lhs.expr(item)
- rhs = self.rhs.expr(item)
- ... | dynamodb2: Defer evaluation of the OR RHS in condition expr | spulec_moto | train |
0ca1379fe408d2eb048271eafa79f7617d13fa9f | diff --git a/Installer.php b/Installer.php
index <HASH>..<HASH> 100644
--- a/Installer.php
+++ b/Installer.php
@@ -22,6 +22,7 @@ class Installer extends LibraryInstaller
const EXTRA_BOOTSTRAP = 'bootstrap';
const EXTRA_WRITABLE = 'writable';
const EXTRA_EXECUTABLE = 'executable';
+ const EXTRA_CONFIG ... | `yii\web\Request::cookieValidationKey` is now automatically generated by the installation script for the basic and advanced application templates | yiisoft_yii2-composer | train |
37b6df4c347fb6d532d76f135f9376a2cb27c6a6 | diff --git a/openquake/hazardlib/gsim/boore_atkinson_2008.py b/openquake/hazardlib/gsim/boore_atkinson_2008.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/gsim/boore_atkinson_2008.py
+++ b/openquake/hazardlib/gsim/boore_atkinson_2008.py
@@ -349,3 +349,60 @@ class BooreAtkinson2008(GMPE):
7.500 -0.692 -... | Subclass of BA<I> modified for Hawaii | gem_oq-engine | train |
b5e22bea9b144d525471d0ce5903160586e9d761 | diff --git a/etcd/v3/kv_etcd.go b/etcd/v3/kv_etcd.go
index <HASH>..<HASH> 100644
--- a/etcd/v3/kv_etcd.go
+++ b/etcd/v3/kv_etcd.go
@@ -734,7 +734,7 @@ func (et *etcdKV) watchStart(
opts = append(opts, e.WithPrefix())
}
if waitIndex != 0 {
- opts = append(opts, e.WithRev(int64(waitIndex)))
+ opts = append(opts,... | Watch must return waitIndex<I> revision updates
etcd documentation for v3 is not clear, but it appears that WithRevision
returns the specified revision as well. | portworx_kvdb | train |
caf99c675b9dfe8084319e71544add35d7384e05 | diff --git a/src/main/java/org/openqa/selenium/htmlunit/HtmlUnitMouse.java b/src/main/java/org/openqa/selenium/htmlunit/HtmlUnitMouse.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/openqa/selenium/htmlunit/HtmlUnitMouse.java
+++ b/src/main/java/org/openqa/selenium/htmlunit/HtmlUnitMouse.java
@@ -75,7 +75,7 @@... | the blur event is triggered by HtmlUnit | SeleniumHQ_htmlunit-driver | train |
1b586ff8c07701906660a7f48f9bcb1dfc7cf03e | diff --git a/Controller/Controller.php b/Controller/Controller.php
index <HASH>..<HASH> 100644
--- a/Controller/Controller.php
+++ b/Controller/Controller.php
@@ -47,6 +47,20 @@ class Controller extends BaseController
return $this->get('mailer');
}
+ protected function createMessageFor($name, array $... | Add shorthand method for creating mailer message | KnpLabs_KnpRadBundle | train |
3c17f80579ff4de6b0bf208bbff616e669316ea3 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -167,7 +167,7 @@ function createPanZoom(domElement, options) {
}
function getClientRect() {
- var bbox = domController.getLeftTop()
+ var bbox = domController.getBBox()
var leftTop = client(bbox.x, bbox.y)
... | Properly handle bounding box for dom | anvaka_panzoom | train |
716b0e0d1211286467df47137700769537dcb226 | diff --git a/src/main/java/io/muserver/openapi/SchemaObjectBuilder.java b/src/main/java/io/muserver/openapi/SchemaObjectBuilder.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/muserver/openapi/SchemaObjectBuilder.java
+++ b/src/main/java/io/muserver/openapi/SchemaObjectBuilder.java
@@ -3,6 +3,7 @@ package io.mu... | Made input streams and byte arrays be considered binary objects in openapi docs | 3redronin_mu-server | train |
6644c63f323663d91c172d58390ae26042a51962 | diff --git a/scripts/deploy-one.js b/scripts/deploy-one.js
index <HASH>..<HASH> 100644
--- a/scripts/deploy-one.js
+++ b/scripts/deploy-one.js
@@ -53,7 +53,7 @@ async function send(web3, transaction, privateKey) {
try {
const options = {
data : transaction.encodeABI(),
- ... | Fix deploy-one.js. | bancorprotocol_contracts | train |
2311ad664eca3e68bde29460343265569e94b9c1 | diff --git a/lang/en/auth.php b/lang/en/auth.php
index <HASH>..<HASH> 100644
--- a/lang/en/auth.php
+++ b/lang/en/auth.php
@@ -55,7 +55,7 @@ $string['auth_ldap_create_context'] = 'If you enable user creation with email co
$string['auth_ldap_creators'] = 'List of groups whose members are allowed to create new courses. ... | Fixed typo in ldap stuff | moodle_moodle | train |
6c38ed5a5dc5db9ffb99df11f9fce0d0b1783967 | diff --git a/samalg/__init__.py b/samalg/__init__.py
index <HASH>..<HASH> 100644
--- a/samalg/__init__.py
+++ b/samalg/__init__.py
@@ -1042,7 +1042,7 @@ class SAM(object):
hvg=False
W = self.calculate_nnm(
n_genes=n_genes, preprocessing=preprocessing, npcs=npcs, num_norm_a... | changed first iteration to use HVG selection | atarashansky_self-assembling-manifold | train |
d7b030cae6ac4cb907b717eb71a63330f641f1c5 | diff --git a/src/Entity/Embeddable/Interfaces/Objects/AbstractEmbeddableObjectInterface.php b/src/Entity/Embeddable/Interfaces/Objects/AbstractEmbeddableObjectInterface.php
index <HASH>..<HASH> 100644
--- a/src/Entity/Embeddable/Interfaces/Objects/AbstractEmbeddableObjectInterface.php
+++ b/src/Entity/Embeddable/Interf... | implement toString in embeddables | edmondscommerce_doctrine-static-meta | train |
7ce25d40dbb6c88cfdf0866bddec3c4f1fb179be | diff --git a/go/vendor/github.com/keybase/go-framed-msgpack-rpc/rpc/resinit/resinit.go b/go/vendor/github.com/keybase/go-framed-msgpack-rpc/rpc/resinit/resinit.go
index <HASH>..<HASH> 100644
--- a/go/vendor/github.com/keybase/go-framed-msgpack-rpc/rpc/resinit/resinit.go
+++ b/go/vendor/github.com/keybase/go-framed-msgp... | govendor update github.com/keybase/go-framed-msgpack-rpc/rpc/resinit | keybase_client | train |
8b5eb1f4bdfa2651a6f1d59f066fa185b812eaab | diff --git a/transition/transition_test.go b/transition/transition_test.go
index <HASH>..<HASH> 100644
--- a/transition/transition_test.go
+++ b/transition/transition_test.go
@@ -85,7 +85,7 @@ func TestStateTransition(t *testing.T) {
}
}
-func TestStateEnterCallbacks(t *testing.T) {
+func TestStateEnterCallback(t ... | Add event Before and After callback test. | qor_qor | train |
7c916cf5903e13441770312edc4e7578c0bae550 | diff --git a/mapping/tests/test_util.py b/mapping/tests/test_util.py
index <HASH>..<HASH> 100644
--- a/mapping/tests/test_util.py
+++ b/mapping/tests/test_util.py
@@ -220,23 +220,18 @@ class TestUtil(unittest.TestCase):
columns=['CL1'])
assert_frame_equal(wrets, wrets_exp)
-... | Missing data raises KeyError vs. NaN for calc_rets
pandas <I> currently throws a deprecation warning where indexing a
MultiIndex with missing keys will at some point throw a KeyError instead
of returning NaNs. This is desirable behaviour for calc_rets so this is
preemptively implementing this strict indexing.
Closes:... | matthewgilbert_mapping | train |
df00e7b9ceae978bab1b6d38661a002dd70b0db0 | diff --git a/src/Spryker/Zed/CompanyUnitAddressLabelDataImport/Communication/Plugin/CompanyUnitAddressLabelDataImportPlugin.php b/src/Spryker/Zed/CompanyUnitAddressLabelDataImport/Communication/Plugin/CompanyUnitAddressLabelDataImportPlugin.php
index <HASH>..<HASH> 100644
--- a/src/Spryker/Zed/CompanyUnitAddressLabelDa... | TE-<I> Fix api docblocks. | spryker_company-unit-address-label-data-import | train |
aeb5410aaf15ec0ef3169b98d01741b52e0b2bd3 | diff --git a/src/OAuth2.php b/src/OAuth2.php
index <HASH>..<HASH> 100644
--- a/src/OAuth2.php
+++ b/src/OAuth2.php
@@ -32,7 +32,7 @@ class OAuth2
$response = $this->gopay->call(
'oauth2/token',
Gopay::FORM,
- [$this->gopay->getConfig('clientID'), $this->gopay->getConfig('cl... | Gopay - fix clientId in OAuth2 | gopaycommunity_gopay-php-api | train |
8a359a4a134fe5c0edaf89228b6e3517c5f60f72 | diff --git a/hypermap/aggregator/tasks.py b/hypermap/aggregator/tasks.py
index <HASH>..<HASH> 100644
--- a/hypermap/aggregator/tasks.py
+++ b/hypermap/aggregator/tasks.py
@@ -5,8 +5,17 @@ from models import Service
@task(name="check_all_services")
def check_all_services_task():
- for service in Service.objects.f... | Added a task to check a single service | cga-harvard_Hypermap-Registry | train |
8f61c9bceac3778fc74eb7773c159aaaf527e588 | diff --git a/lxd/devices.go b/lxd/devices.go
index <HASH>..<HASH> 100644
--- a/lxd/devices.go
+++ b/lxd/devices.go
@@ -735,70 +735,6 @@ func deviceTotalMemory() (int64, error) {
return -1, fmt.Errorf("Couldn't find MemTotal")
}
-func deviceGetParentBlock(path string) ([]string, error) {
- // Expand the mount path
... | Remove copy of deviceGetParentBlocks
Not sure how I got away sending this through review in the first place :) | lxc_lxd | train |
710e47432879883fa4686f88aa69985d191abd8e | diff --git a/kernel/classes/ezcontentclass.php b/kernel/classes/ezcontentclass.php
index <HASH>..<HASH> 100644
--- a/kernel/classes/ezcontentclass.php
+++ b/kernel/classes/ezcontentclass.php
@@ -1168,7 +1168,10 @@ You will need to change the class of the node by using the swap functionality.'
{
... | - Fixed merge problem, where the wrong variable was returned.
git-svn-id: file:///home/patrick.allaert/svn-git/ezp-repo/ezpublish/unstable/<I>-<I>-<I>-php5@<I> a<I>eee8c-daba-<I>-acae-fa<I>f<I> | ezsystems_ezpublish-legacy | train |
4b9e654dc0d068f9f8aabc7735a59a16922b02a4 | diff --git a/vstutils/__init__.py b/vstutils/__init__.py
index <HASH>..<HASH> 100644
--- a/vstutils/__init__.py
+++ b/vstutils/__init__.py
@@ -1,2 +1,2 @@
# pylint: disable=django-not-available
-__version__: str = '4.2.0b5'
+__version__: str = '4.2.0b6'
diff --git a/vstutils/management/commands/web.py b/vstutils/manag... | Fix: RUN_WORKER is not needed in settings with default installation. | vstconsulting_vstutils | train |
126a80da563d73ae3ba3fc40982b085cea87ec85 | diff --git a/app/router.js b/app/router.js
index <HASH>..<HASH> 100644
--- a/app/router.js
+++ b/app/router.js
@@ -70,7 +70,13 @@ function(req, app, Initialize, FauxtonAPI, Fauxton, Layout, Databases, Documents
_.each(settings.views, function(view, selector) {
masterLayout.setView(selector, view);
... | Add initial error handling for view establish functions | apache_couchdb-fauxton | train |
8a17ab71b2a925169cb8058361ddf5bef88d217d | diff --git a/src/pytest_cov/engine.py b/src/pytest_cov/engine.py
index <HASH>..<HASH> 100644
--- a/src/pytest_cov/engine.py
+++ b/src/pytest_cov/engine.py
@@ -147,7 +147,7 @@ class DistMaster(CovController):
node.slaveinput['cov_master_rsync_roots'] = [str(root) for root in node.nodemanager.roots]
def t... | Didn't properly handle collocation: it should still combine in the slave if the slave is not collocated. | pytest-dev_pytest-cov | train |
fc30349f4e1b1197406ad0c47bac247138ca2491 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -242,6 +242,13 @@ Here is an example for adding a preprocessor macro `SNAPSHOT` and a custom buil
custom_build_args "GCC_PREPROCESSOR_DEFINITIONS='$(inherited) SNAPSHOT=1' SNAPSHOT_ENABLE = YES"
```
+### Custom Args f... | Add ability to pass custom arguments to the instruments run command | fastlane_fastlane | train |
37b965fbdc24cc939b6d6538afa972a870d63480 | diff --git a/indexDragDrop.html b/indexDragDrop.html
index <HASH>..<HASH> 100644
--- a/indexDragDrop.html
+++ b/indexDragDrop.html
@@ -159,7 +159,7 @@
dd-line-verbose-mode="{{easyFormDragDropProperties.containerConfig.verboseMode}}"
... | ddDecorLine : delete sequence seems like fixed now (need to test further) | MacKentoch_easyFormGenerator | train |
1e891b4e0b05cf757424cde68e8f0b1a0f7bb158 | diff --git a/difficulty.go b/difficulty.go
index <HASH>..<HASH> 100644
--- a/difficulty.go
+++ b/difficulty.go
@@ -189,6 +189,7 @@ func (b *BlockChain) calcEasiestDifficulty(bits uint32, duration time.Duration)
// Choose the correct proof of work limit for the active network.
powLimit := b.chainParams().PowLimit... | Optimize proof of work limit bits handling.
Rather than converting the proof of work limit to its compact
representation multiple times during operation, do it once at package
initialization time and export it via the chain parameters. | btcsuite_btcd | train |
0ec66127786c117526463a7aed84de21259f05db | diff --git a/test/fixed_width_file_validator_test.rb b/test/fixed_width_file_validator_test.rb
index <HASH>..<HASH> 100644
--- a/test/fixed_width_file_validator_test.rb
+++ b/test/fixed_width_file_validator_test.rb
@@ -3,6 +3,7 @@ require_relative 'string_helper_test'
require_relative 'field_validator_test'
require_r... | added sample_data_file_test to test suite | sloppycoder_fixed_width_file_validator | train |
d2793330df45cbba9948266d27ef51a928e47837 | diff --git a/Auth/OpenID/Consumer.php b/Auth/OpenID/Consumer.php
index <HASH>..<HASH> 100644
--- a/Auth/OpenID/Consumer.php
+++ b/Auth/OpenID/Consumer.php
@@ -1528,6 +1528,17 @@ class Auth_OpenID_AuthRequest {
}
/**
+ * Add an extension to this checkid request.
+ *
+ * $extension_request: An obj... | [project @ Add Auth_OpenID_AuthRequest::addExtension] | openid_php-openid | train |
f9b9bf58b6490e16087f4cd7265426f474bc4aee | diff --git a/lib/compass-rails/version.rb b/lib/compass-rails/version.rb
index <HASH>..<HASH> 100644
--- a/lib/compass-rails/version.rb
+++ b/lib/compass-rails/version.rb
@@ -1,5 +1,3 @@
module CompassRails
- unless defined?(::CompassRails::VERSION)
- VERSION = "2.0.5"
- end
+ VERSION = '3.0.0' unless defined?(:... | Version bump
Based on #<I>, I’m bumping the version to <I> | Compass_compass-rails | train |
6ff94c2b3f93cc8fd0af0ae0ba79a7f3572de22d | diff --git a/lib/sass/plugin.rb b/lib/sass/plugin.rb
index <HASH>..<HASH> 100644
--- a/lib/sass/plugin.rb
+++ b/lib/sass/plugin.rb
@@ -245,7 +245,7 @@ module Sass
path.delete do |base, relative|
run_template_deleted File.join(base, relative)
- css_file = File.join(css_location... | [Sass] Fix a bug in watcher deletion. | sass_ruby-sass | train |
2bdb043d4eb83b309784c0535862b78c677e8f91 | diff --git a/Tests/Functional/AmqpConsumptionUseCasesTest.php b/Tests/Functional/AmqpConsumptionUseCasesTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Functional/AmqpConsumptionUseCasesTest.php
+++ b/Tests/Functional/AmqpConsumptionUseCasesTest.php
@@ -2,15 +2,15 @@
namespace Enqueue\AmqpExt\Tests\Functional;
use... | [psr] Introduce MessageProcessor interface (moved from consumption).
It would allow to decouple consumption code from consumption component.
It must depends on psr queue only. | php-enqueue_amqp-ext | train |
de35b5ccfddca5a85ec14f5efcc759300fa5ab66 | diff --git a/Classes/Eel/ElasticSearchQueryBuilder.php b/Classes/Eel/ElasticSearchQueryBuilder.php
index <HASH>..<HASH> 100644
--- a/Classes/Eel/ElasticSearchQueryBuilder.php
+++ b/Classes/Eel/ElasticSearchQueryBuilder.php
@@ -549,20 +549,25 @@ class ElasticSearchQueryBuilder implements QueryBuilderInterface, Protected... | TASK: Catch query errors and return empty result
Instead of simply ignoring an exception during query execution the
`ElasticSearchQueryBuilder` will now log an exception during `fetch()`
and return an empty result. | Flowpack_Flowpack.ElasticSearch.ContentRepositoryAdaptor | train |
2c8eae359aad66cae0615cfc4ebe072ad338c193 | diff --git a/java/server/src/org/openqa/selenium/events/Event.java b/java/server/src/org/openqa/selenium/events/Event.java
index <HASH>..<HASH> 100644
--- a/java/server/src/org/openqa/selenium/events/Event.java
+++ b/java/server/src/org/openqa/selenium/events/Event.java
@@ -25,7 +25,7 @@ import java.util.UUID;
publi... | Reduce the visibility of the Event json parser | SeleniumHQ_selenium | train |
a3ad3ba240b736be665352c84ae5bbc4ed0affce | diff --git a/mtp_common/user_admin/urls.py b/mtp_common/user_admin/urls.py
index <HASH>..<HASH> 100644
--- a/mtp_common/user_admin/urls.py
+++ b/mtp_common/user_admin/urls.py
@@ -5,6 +5,6 @@ from . import views
urlpatterns = [
url(r'^users/$', views.list_users, name='list-users'),
url(r'^users/new/$', views.... | Allow for editing/deletion of all valid usernames | ministryofjustice_money-to-prisoners-common | train |
46dc895967b8b0db9c774691ad78ab59ac50c3a2 | diff --git a/gosu-editor/src/main/java/editor/GosuPanel.java b/gosu-editor/src/main/java/editor/GosuPanel.java
index <HASH>..<HASH> 100644
--- a/gosu-editor/src/main/java/editor/GosuPanel.java
+++ b/gosu-editor/src/main/java/editor/GosuPanel.java
@@ -133,7 +133,7 @@ public class GosuPanel extends JPanel
_project... | - wait for parser tasks to finish before running program
- minor UI changes | gosu-lang_gosu-lang | train |
986b9dfe5b578402b3ecdb7ccde5abc5fe06f7da | diff --git a/plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/UnitTestDecoratorTest.java b/plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/UnitTestDecoratorTest.java
index <HASH>..<HASH> 100644
--- a/plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/Unit... | Increase coverage for a new code in UnitTestDecorator | SonarSource_sonarqube | train |
9911d9634138a64fc3e1e5be899a06cb34bd303c | diff --git a/pycbc/scheme.py b/pycbc/scheme.py
index <HASH>..<HASH> 100644
--- a/pycbc/scheme.py
+++ b/pycbc/scheme.py
@@ -27,6 +27,7 @@ This modules provides python contexts that set the default behavior for PyCBC
objects.
"""
import pycbc
+from decorator import decorator
class _SchemeManager(object):
@@ -145... | example of new schemed function with zeros | gwastro_pycbc | train |
874747fac43ae411804541ba12a348335b8ee153 | diff --git a/allantools/allantools.py b/allantools/allantools.py
index <HASH>..<HASH> 100644
--- a/allantools/allantools.py
+++ b/allantools/allantools.py
@@ -616,7 +616,7 @@ def mtotdev(phase=None, frequency=None, rate=1.0, taus=[]):
phase = frequency2phase(frequency, rate)
rate = float(rate)
- (pha... | introduce maximum_m parameter for tau_generator()
this is required for mtotdev and htotdev where m < N/3 is required. | aewallin_allantools | train |
fc8e04fe65adab0a3b87d656e9f29303bfc0d1d1 | diff --git a/bindings/python/pydeck/requirejs_dependencies.json b/bindings/python/pydeck/requirejs_dependencies.json
index <HASH>..<HASH> 100644
--- a/bindings/python/pydeck/requirejs_dependencies.json
+++ b/bindings/python/pydeck/requirejs_dependencies.json
@@ -8,7 +8,7 @@
"deck.gl": "https://unpkg.com/deck.gl/di... | Update S2 library within pydeck (#<I>) | uber_deck.gl | train |
6addf11b934705fff4fc413449f464953e87f52a | diff --git a/contract-tests/v3_api/conftest.py b/contract-tests/v3_api/conftest.py
index <HASH>..<HASH> 100644
--- a/contract-tests/v3_api/conftest.py
+++ b/contract-tests/v3_api/conftest.py
@@ -1,20 +1,15 @@
import pytest
import subprocess
-from faker import Faker
-
@pytest.fixture(scope="session")
def headers... | Removed generating a fake user and fake username for the authentication header some tests need | mozilla_normandy | train |
5505e192985d43d68ce375621ed0ef97469a1dc0 | diff --git a/tasks/jenkins.js b/tasks/jenkins.js
index <HASH>..<HASH> 100644
--- a/tasks/jenkins.js
+++ b/tasks/jenkins.js
@@ -1,7 +1,7 @@
-var request = require('request');
-var fs = require('fs');
-var _ = require('underscore');
-var q = require('q');
+var request = require('request'),
+ fs = require('fs'),
+ _... | cleaned up vars, removed obsolete test | sghill_grunt-jenkins | train |
7895a184cf8e26125adc6e69316dad162931d1a8 | diff --git a/classes/Gems/Tracker/Engine/StepEngineAbstract.php b/classes/Gems/Tracker/Engine/StepEngineAbstract.php
index <HASH>..<HASH> 100644
--- a/classes/Gems/Tracker/Engine/StepEngineAbstract.php
+++ b/classes/Gems/Tracker/Engine/StepEngineAbstract.php
@@ -311,7 +311,12 @@ abstract class Gems_Tracker_Engine_StepE... | Fix for 'empty' track (no tokens present) | GemsTracker_gemstracker-library | train |
fc46e25f2314e9c4524e8e65698a479978711feb | diff --git a/test/scale.time.tests.js b/test/scale.time.tests.js
index <HASH>..<HASH> 100644
--- a/test/scale.time.tests.js
+++ b/test/scale.time.tests.js
@@ -42,6 +42,7 @@ describe('Time scale tests', function() {
autoSkipPadding: 20
},
time: {
+ parser: false,
format: false,
unit: false,
... | fixed test and added a test for a custom date parser | chartjs_Chart.js | train |
969c57c89a81c932fb547134f3d44b98c1b32ed3 | diff --git a/src/stdlib/Extendable.js b/src/stdlib/Extendable.js
index <HASH>..<HASH> 100644
--- a/src/stdlib/Extendable.js
+++ b/src/stdlib/Extendable.js
@@ -20,14 +20,14 @@
* Extends the passed in constructor with `Extendable`.
* @examples
* // Scenario 1: function called with a constructor, a proto... | Updated documentation for Extendable. | elycruz_sjljs | train |
2b542f4654bcb8fe5bf51178e21c7b4b36237d5c | diff --git a/lib/awspec/helper/credentials_loader.rb b/lib/awspec/helper/credentials_loader.rb
index <HASH>..<HASH> 100644
--- a/lib/awspec/helper/credentials_loader.rb
+++ b/lib/awspec/helper/credentials_loader.rb
@@ -16,11 +16,13 @@ module Awspec::Helper
creds = YAML.load_file('spec/secrets.yml') if File.exi... | Support "IAM Roles for EC2" with secrets.yml | k1LoW_awspec | train |
ebd5ffc493552893461d845120894b0ce1377387 | diff --git a/src/python/pants/util/process_handler.py b/src/python/pants/util/process_handler.py
index <HASH>..<HASH> 100644
--- a/src/python/pants/util/process_handler.py
+++ b/src/python/pants/util/process_handler.py
@@ -5,7 +5,10 @@
from __future__ import (absolute_import, division, generators, nested_scopes, print... | Utility to tee subprocess output to sys.std{out,err} and a buffer (#<I>)
This is useful for debugging tests which invoke pants, where they
fail/flake because pants timed out or hanged. It allows us to fetch the
std{out,err} of the pants process, while also storing it so we can
assert against it in the test. | pantsbuild_pants | train |
230b89f11b839f7ea3e34e2f2017c9ce5ebe4e7c | diff --git a/src/lib/widget.js b/src/lib/widget.js
index <HASH>..<HASH> 100644
--- a/src/lib/widget.js
+++ b/src/lib/widget.js
@@ -98,7 +98,7 @@ define([
function buildScopeRequest() {
var scopes = remoteStorage.claimedModules;
return Object.keys(remoteStorage.claimedModules).map(function(module) {
- ... | don't rename root module unless storageType === '<I>' | remotestorage_remotestorage.js | train |
5f9c927f98c2ab90f1d70f81b4a99148e18e2fb3 | diff --git a/lib/fog/vsphere/models/compute/networks.rb b/lib/fog/vsphere/models/compute/networks.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/vsphere/models/compute/networks.rb
+++ b/lib/fog/vsphere/models/compute/networks.rb
@@ -11,14 +11,14 @@ module Fog
attr_accessor :datacenter
def all(filters ... | [vsphere|compute] fix incorrect filters.merge in networks model | fog_fog | train |
656a86f1d2843504bce5c72589ebaf48b7d2d607 | diff --git a/src/main/java/com/beust/jcommander/internal/DefaultConsole.java b/src/main/java/com/beust/jcommander/internal/DefaultConsole.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/beust/jcommander/internal/DefaultConsole.java
+++ b/src/main/java/com/beust/jcommander/internal/DefaultConsole.java
@@ -5,15 ... | allow System.out to be replaced by something else (f.e. System.err) | cbeust_jcommander | train |
2e3de6e33ffe1c0e3f3c4f09f952e3c9fbf7d7e0 | diff --git a/library/Admin/Unpublish.php b/library/Admin/Unpublish.php
index <HASH>..<HASH> 100644
--- a/library/Admin/Unpublish.php
+++ b/library/Admin/Unpublish.php
@@ -35,8 +35,16 @@ class Unpublish
return;
}
+ $offset = get_option('gmt_offset');
+
+ if ($offset > -1) {
+ ... | Local time to gmt timestamp for the unpublish cron | helsingborg-stad_Municipio | train |
94375b39911f7f62f649a72e983d26c7ffeef13c | diff --git a/habu/lib/web_tech.py b/habu/lib/web_tech.py
index <HASH>..<HASH> 100644
--- a/habu/lib/web_tech.py
+++ b/habu/lib/web_tech.py
@@ -150,7 +150,10 @@ def web_tech(url, no_cache=False, verbose=False):
for t in list(tech.keys()):
for exclude in tech[t].get('excludes', []):
logging.inf... | minor fix to evade KeyError | portantier_habu | train |
55aa58307b94a8e35195ec94c58698838ceb3b27 | diff --git a/packages/ringcentral-widgets/components/CallsListPanel/index.js b/packages/ringcentral-widgets/components/CallsListPanel/index.js
index <HASH>..<HASH> 100644
--- a/packages/ringcentral-widgets/components/CallsListPanel/index.js
+++ b/packages/ringcentral-widgets/components/CallsListPanel/index.js
@@ -246,6... | Be able to hide/show log button in `LogNotification` according to props (#<I>)
* mod readme
* add auto create ticket in settingspanel
* render array of outer components
* handle single or list of components
* use additional props to handle single or a list of components
* use ramda to handle
* add a ... | ringcentral_ringcentral-js-widgets | train |
40b6e598ab951c043e59cc689e78940041035eb9 | diff --git a/lib/builderator/interface/packer.rb b/lib/builderator/interface/packer.rb
index <HASH>..<HASH> 100644
--- a/lib/builderator/interface/packer.rb
+++ b/lib/builderator/interface/packer.rb
@@ -21,7 +21,8 @@ module Builderator
@packerfile ||= {
:builders => [],
- :provisioners =>... | Add handling for post-processor template section. | rapid7_builderator | train |
1d3d3b780350c9265b6f5a8f5bbce35713855112 | diff --git a/builtin/logical/database/dbs/plugin.go b/builtin/logical/database/dbs/plugin.go
index <HASH>..<HASH> 100644
--- a/builtin/logical/database/dbs/plugin.go
+++ b/builtin/logical/database/dbs/plugin.go
@@ -84,7 +84,7 @@ func newPluginClient(sys pluginutil.Wrapper, command, checksum string) (Database
commandA... | fix for plugin commands that have more than one paramater | hashicorp_vault | train |
b6770e4ee8a8689b52f8ad9b0b75d485099fef62 | diff --git a/connection.go b/connection.go
index <HASH>..<HASH> 100644
--- a/connection.go
+++ b/connection.go
@@ -94,7 +94,12 @@ func (c *Connection) Open() error {
return errors.New("invalid connection instance")
}
details := c.Dialect.Details()
- db, err := sqlx.Open(details.Dialect, c.Dialect.URL())
+ driver... | Add optional attribute 'driver' to config (#<I>)
This will help to use custom mock drivers or replacements.
Full credits to @0nedark whose PR branch was deleted before the review. | gobuffalo_pop | train |
8178c5d6fc07dab8b34c6cff4e08a69d340b819e | diff --git a/src/test/java/org/mapdb/QueuesTest.java b/src/test/java/org/mapdb/QueuesTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/org/mapdb/QueuesTest.java
+++ b/src/test/java/org/mapdb/QueuesTest.java
@@ -98,7 +98,7 @@ public class QueuesTest {
database.close();
}
- @Test(timeout=1000)
... | QueuesTest: increase timeout to prevent build errors | jankotek_mapdb | train |
e56013779bffd95e8575cb79113da78ec0446b9c | diff --git a/executor/builder.go b/executor/builder.go
index <HASH>..<HASH> 100644
--- a/executor/builder.go
+++ b/executor/builder.go
@@ -3917,6 +3917,8 @@ func (builder *dataReaderBuilder) buildTableReaderForIndexJoin(ctx context.Conte
if len(lookUpContents) > 0 && keyColumnsIncludeAllPartitionColumns(lookUpConten... | executor: fix KVRange bug for index join with dynamic partition pruning (#<I>)
close pingcap/tidb#<I> | pingcap_tidb | train |
4c3698af18772ac839b6c7c4c2ecdeeae5a2fff2 | diff --git a/bookstore/clone.py b/bookstore/clone.py
index <HASH>..<HASH> 100644
--- a/bookstore/clone.py
+++ b/bookstore/clone.py
@@ -38,9 +38,14 @@ class BookstoreCloneHandler(APIHandler):
content = await obj['Body'].read()
self.log.info("Done with published write of %s", path)
- se... | Use jupyter contents API model for text files; handle more s3 file types | nteract_bookstore | train |
2e9726a5338c6f7d9c514d23fb60a9454dd32e16 | diff --git a/lib/fabrication/schematic/manager.rb b/lib/fabrication/schematic/manager.rb
index <HASH>..<HASH> 100644
--- a/lib/fabrication/schematic/manager.rb
+++ b/lib/fabrication/schematic/manager.rb
@@ -8,16 +8,13 @@ class Fabrication::Schematic::Manager
def initializing?; @initializing end
- def freeze
- ... | Delegate clear and empty? to schematics | paulelliott_fabrication | train |
0403f2b3bbe00591291dc0e0fcac74c012128ccd | diff --git a/test/config_test.rb b/test/config_test.rb
index <HASH>..<HASH> 100644
--- a/test/config_test.rb
+++ b/test/config_test.rb
@@ -2,11 +2,43 @@ require File.expand_path "../test_helper", __FILE__
context "Rugged::Config tests" do
setup do
- @path = File.dirname(__FILE__) + '/fixtures/testrepo.git/'
- ... | test improvements - config and refs | libgit2_rugged | train |
dbafaca4b3296df789eeb8190443bc29f898a847 | diff --git a/src/store/reducers/globals.js b/src/store/reducers/globals.js
index <HASH>..<HASH> 100644
--- a/src/store/reducers/globals.js
+++ b/src/store/reducers/globals.js
@@ -1,3 +1,5 @@
+const objectAssign = require('object-assign')
+
const initialState = {
jwt: null,
authenticated: false,
@@ -10,22 +12,22 ... | Use object-assign polyfill to create new objects for state | onfido_onfido-sdk-core | train |
10356bc6e656cee4ec9caf71fce35e2ed4cae320 | diff --git a/profile/profile_default/static/custom/gp-theme.js b/profile/profile_default/static/custom/gp-theme.js
index <HASH>..<HASH> 100644
--- a/profile/profile_default/static/custom/gp-theme.js
+++ b/profile/profile_default/static/custom/gp-theme.js
@@ -10,4 +10,31 @@ require(["jquery"], function() {
// Cha... | Only auto-add GenePattern Auth widget if GenePattern Notebook theme is turned on | genepattern_genepattern-notebook | train |
169b70ae6258be49de47904addd0efa2bf1f9a90 | diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/deprecation.rb
+++ b/activesupport/lib/active_support/deprecation.rb
@@ -1,7 +1,6 @@
# frozen_string_literal: true
require "singleton"
-re... | Relocate require in AS::Deprecation
Without this, it's possible to encounter:
NoMethodError: undefined method `on_jruby?' for Concurrent:Module
See also <URL> | rails_rails | train |
ff330e5605f15cab28c8e4f9e3bee12b0e17a002 | diff --git a/ospec/ospec.js b/ospec/ospec.js
index <HASH>..<HASH> 100644
--- a/ospec/ospec.js
+++ b/ospec/ospec.js
@@ -4,7 +4,7 @@
if (typeof module !== "undefined") module["exports"] = m()
else window.o = m()
})(function init(name) {
- var spec = {}, subjects = [], results, only = null, ctx = spec, start, stack = 0... | Expose the reporter as o.report(results), have it return the number of errors | MithrilJS_mithril.js | train |
8a76ec65e55bb65d940bc1e1db9016f036117ccc | diff --git a/pattern/launch/src/main/java/org/openbase/jul/pattern/launch/AbstractLauncher.java b/pattern/launch/src/main/java/org/openbase/jul/pattern/launch/AbstractLauncher.java
index <HASH>..<HASH> 100644
--- a/pattern/launch/src/main/java/org/openbase/jul/pattern/launch/AbstractLauncher.java
+++ b/pattern/launch/s... | Implement submodule declaration support for launcher framework. | openbase_jul | train |
fd7db514b64ace8b36773095d920b1381d24ca30 | diff --git a/app/models/graph_starter/asset.rb b/app/models/graph_starter/asset.rb
index <HASH>..<HASH> 100644
--- a/app/models/graph_starter/asset.rb
+++ b/app/models/graph_starter/asset.rb
@@ -151,7 +151,7 @@ module GraphStarter
def safe_title
sanitizer = Rails::Html::WhiteListSanitizer.new
- sanit... | This should return an `html_safe` string | neo4j-examples_graph_starter | train |
17dfded0614e47adcf95252f9394b6c23394ebd5 | diff --git a/grails-web/src/main/groovy/org/codehaus/groovy/grails/web/mapping/CachingLinkGenerator.java b/grails-web/src/main/groovy/org/codehaus/groovy/grails/web/mapping/CachingLinkGenerator.java
index <HASH>..<HASH> 100644
--- a/grails-web/src/main/groovy/org/codehaus/groovy/grails/web/mapping/CachingLinkGenerator.... | Fixes remaining failing functional tests. CachingLinkGenerator was erroneously caching links with only actions, resulting in incorrect links being generated on certain pages. In addition the previous cache key generation was using DGM.toMapString(map), but this uses StringBuffer to build the map, which is synchronized ... | grails_grails-core | train |
756906e62830194bb3f3e2a22b133e4d0689d297 | diff --git a/packages/ember-application/lib/system/application.js b/packages/ember-application/lib/system/application.js
index <HASH>..<HASH> 100644
--- a/packages/ember-application/lib/system/application.js
+++ b/packages/ember-application/lib/system/application.js
@@ -769,8 +769,8 @@ Ember.Application.reopenClass({
... | [BUGFIX] Fix missing ES6 import for Ember.DebugAdapter. | emberjs_ember.js | train |
61985acbb3dcc09d77e4bc05bd3f8eae637fa375 | diff --git a/flask_oauthlib/client.py b/flask_oauthlib/client.py
index <HASH>..<HASH> 100644
--- a/flask_oauthlib/client.py
+++ b/flask_oauthlib/client.py
@@ -290,12 +290,12 @@ class OAuthRemoteApp(object):
def _get_property(self, key, default=False):
attr = getattr(self, '_%s' % key)
- if attr:
... | Get property right. #<I> | lepture_flask-oauthlib | train |
e8a46f3a88e1095ea5ee2593087a0ab2db845bb2 | diff --git a/test/hasOne.test.js b/test/hasOne.test.js
index <HASH>..<HASH> 100644
--- a/test/hasOne.test.js
+++ b/test/hasOne.test.js
@@ -144,5 +144,119 @@ describe('loopback json api hasOne relationships', function () {
});
});
});
+
+ describe.skip('embedded relationship information in coll... | Add hasOne tests for embedded relationship info
In theory all someone needs to do is make these tests
pass and we are good. | digitalsadhu_loopback-component-jsonapi | train |
b6f5dbfd70ac80e119cc7a49f6bd519269bb2160 | diff --git a/src/Commands/Builder.php b/src/Commands/Builder.php
index <HASH>..<HASH> 100644
--- a/src/Commands/Builder.php
+++ b/src/Commands/Builder.php
@@ -96,7 +96,8 @@ class Builder extends AbstractCommand
{
$this->comment("Building: $name");
$this->compile($name)
- ->cleanUp($nam... | Sets executable permissions on the standalone build | laravel-zero_framework | train |
6fd645b9a0e4f525cae7a485083edb66deea460b | diff --git a/src/eth/SmartContractService.js b/src/eth/SmartContractService.js
index <HASH>..<HASH> 100644
--- a/src/eth/SmartContractService.js
+++ b/src/eth/SmartContractService.js
@@ -28,10 +28,16 @@ export default class SmartContractService extends PublicService {
if (!address) throw Error('Contract address is... | check if there is an account before creating contract. If not, use provider instead of signer | makerdao_dai.js | train |
487c77f37649799db0d7f1f7534713659ff0ff79 | diff --git a/lib/autoinc/incrementor.rb b/lib/autoinc/incrementor.rb
index <HASH>..<HASH> 100644
--- a/lib/autoinc/incrementor.rb
+++ b/lib/autoinc/incrementor.rb
@@ -3,14 +3,24 @@ module Mongoid
# Object which wraps the mongodb operations needed to allow for
# autoincrementing fields in +Mongoid::Document+ m... | Change attr_accessor into attr_reader && explain | suweller_mongoid-autoinc | train |
0285d9f540f49c96f09ba84590b2f87312d0bf93 | diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,5 +1,3 @@
-require 'rubygems'
-
begin
require 'test/unit'
rescue LoadError | No need to require rubygems anymore | plataformatec_mail_form | train |
0fc481c98fb4fc69b8cf1a8d871aa41dc5463993 | diff --git a/tests/test_bgp_af.rb b/tests/test_bgp_af.rb
index <HASH>..<HASH> 100644
--- a/tests/test_bgp_af.rb
+++ b/tests/test_bgp_af.rb
@@ -94,8 +94,6 @@ class TestRouterBgpAF < CiscoTestCase
[:additional_paths_receive, [:toggle]],
[:additional_paths_install, [:toggle]],
[:advertise_l2vpn_... | Remove route_target from bgp tests | cisco_cisco-network-node-utils | train |
2ed30f18291a2368519ecca88cc0919f78d467db | diff --git a/src/Event/ImageProcessingListener.php b/src/Event/ImageProcessingListener.php
index <HASH>..<HASH> 100644
--- a/src/Event/ImageProcessingListener.php
+++ b/src/Event/ImageProcessingListener.php
@@ -111,7 +111,7 @@ class ImageProcessingListener extends AbstractStorageEventListener {
* @param array $operat... | Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on <URL> | burzum_cakephp-file-storage | train |
d87317ef0747aef8ba5e81fa86f8d4c9fe04655e | diff --git a/core/src/test/java/org/infinispan/distribution/AsyncAPISyncDistTest.java b/core/src/test/java/org/infinispan/distribution/AsyncAPISyncDistTest.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/org/infinispan/distribution/AsyncAPISyncDistTest.java
+++ b/core/src/test/java/org/infinispan/distribution... | Wait for init join sequence to complete | infinispan_infinispan | train |
96624c49c56b6c52c7cc8a5c692f71275a6e7080 | diff --git a/.eslintrc.js b/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -15,7 +15,8 @@ module.exports = {
node: true,
es6: true,
},
- extends: ['eslint:recommended'],
+ plugins: ['react'],
+ extends: ['eslint:recommended', 'plugin:react/recommended'],
rules: {
... | Update eslint file | Xcraft-Inc_shellcraft.js | train |
e99c1951ae99f71eab44615748f9b9d2971a70b6 | diff --git a/src/Psalm/Internal/Analyzer/ScopeAnalyzer.php b/src/Psalm/Internal/Analyzer/ScopeAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/ScopeAnalyzer.php
+++ b/src/Psalm/Internal/Analyzer/ScopeAnalyzer.php
@@ -345,6 +345,22 @@ class ScopeAnalyzer
return $action ... | Make Psalm understand infinite while loop in control actions | vimeo_psalm | train |
a1a1b8756db6c06644f121a0b92d50030496ba38 | diff --git a/lxd/main_test.go b/lxd/main_test.go
index <HASH>..<HASH> 100644
--- a/lxd/main_test.go
+++ b/lxd/main_test.go
@@ -68,10 +68,9 @@ func (suite *lxdTestSuite) SetupTest() {
// the next function.
poolConfig := map[string]string{}
- mockStorage, _ := storageTypeToString(storageTypeMock)
// Create the da... | lxd/main/test: Removes legacy mock storage references | lxc_lxd | train |
4f5ae442730de2945f6215b659cf8232e9e62787 | diff --git a/aeron-cluster/src/test/java/io/aeron/cluster/ClusterNodeRestartTest.java b/aeron-cluster/src/test/java/io/aeron/cluster/ClusterNodeRestartTest.java
index <HASH>..<HASH> 100644
--- a/aeron-cluster/src/test/java/io/aeron/cluster/ClusterNodeRestartTest.java
+++ b/aeron-cluster/src/test/java/io/aeron/cluster/C... | [Java]: add restart and continue test. | real-logic_aeron | train |
2dc30ac9306bbe78ba355aef0cdf23047f46d011 | diff --git a/src/renderers/webgl/index.js b/src/renderers/webgl/index.js
index <HASH>..<HASH> 100644
--- a/src/renderers/webgl/index.js
+++ b/src/renderers/webgl/index.js
@@ -34,8 +34,8 @@ import {
/**
* Constants.
*/
-const WEBGL_OVERSAMPLING_RATIO = 2;
const PIXEL_RATIO = getPixelRatio();
+const WEBGL_OVERSAMPL... | Oversampling ratio takes the screen into account | jacomyal_sigma.js | train |
7a3c7582906dcfe563c9700297e89dc2d09545c3 | diff --git a/test/jats/caption.test.js b/test/jats/caption.test.js
index <HASH>..<HASH> 100644
--- a/test/jats/caption.test.js
+++ b/test/jats/caption.test.js
@@ -55,7 +55,7 @@ test.withFixture(empty, 'Im-/Exporting empty caption', function(t) {
});
-// sinple p
+// single p
var singleParagraph = '<caption><p>tes... | Added test for footnote converter. | substance_texture | train |
b65c22de20d2e73d8fbd7e52266316737c37151a | diff --git a/lib/tests/mustache_template_source_loader_test.php b/lib/tests/mustache_template_source_loader_test.php
index <HASH>..<HASH> 100644
--- a/lib/tests/mustache_template_source_loader_test.php
+++ b/lib/tests/mustache_template_source_loader_test.php
@@ -357,12 +357,43 @@ TBC;
$bar = '{{! a comment }}{... | MDL-<I> output: Unit tests for loading multiline string defines | moodle_moodle | train |
48fbe6a3b9e74925b3f268822e3ce3aa8addb479 | diff --git a/command/translatableerror/convert_to_translatable_error.go b/command/translatableerror/convert_to_translatable_error.go
index <HASH>..<HASH> 100644
--- a/command/translatableerror/convert_to_translatable_error.go
+++ b/command/translatableerror/convert_to_translatable_error.go
@@ -171,7 +171,7 @@ func Conv... | Add support for arbitrary command name in invalid_ssl_cert_error.
[#<I>] | cloudfoundry_cli | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.