hash stringlengths 40 40 | diff stringlengths 131 26.7k | message stringlengths 7 694 | project stringlengths 5 67 | split stringclasses 1
value | diff_languages stringlengths 2 24 |
|---|---|---|---|---|---|
77db56abac5be05f9244f10e77a92e02c4abae35 | diff --git a/flat/style/flat.editor.js b/flat/style/flat.editor.js
index <HASH>..<HASH> 100644
--- a/flat/style/flat.editor.js
+++ b/flat/style/flat.editor.js
@@ -1335,10 +1335,8 @@ function editor_submit(addtoqueue) {
parentselector += " FOR";
v... | fixed issue #<I> (prevent duplicate comments...bit patchy, may be something wrong in FQL library) | proycon_flat | train | js |
e19bc56e731dc147269e99a16c78e57987d6a073 | diff --git a/test/config/config.go b/test/config/config.go
index <HASH>..<HASH> 100644
--- a/test/config/config.go
+++ b/test/config/config.go
@@ -70,5 +70,5 @@ func (c *CiliumTestConfigType) ParseFlags() {
"Specifies timeout for test run")
flag.StringVar(&c.Kubeconfig, "cilium.kubeconfig", "",
"Kubeconfig to b... | CI: Fix typo setting kubeconfig variable from registry
This caused some off errors, particularly around how we determine
whether we are in the CI or running with a custom kubeconfig. | cilium_cilium | train | go |
88a94f028b25b696be699106037d39d3654114ed | diff --git a/client-side/src/core/js/modules/loadEvents.js b/client-side/src/core/js/modules/loadEvents.js
index <HASH>..<HASH> 100644
--- a/client-side/src/core/js/modules/loadEvents.js
+++ b/client-side/src/core/js/modules/loadEvents.js
@@ -18,7 +18,7 @@ define(["modules/module", "modules/utils"], function(module, ut... | loadEvents ie8 fix | sourcejs_Source | train | js |
5c10ac6579543d79642c65b70210264c1b488e51 | diff --git a/packages/posts/photos/instagram/photoSource.js b/packages/posts/photos/instagram/photoSource.js
index <HASH>..<HASH> 100644
--- a/packages/posts/photos/instagram/photoSource.js
+++ b/packages/posts/photos/instagram/photoSource.js
@@ -46,7 +46,7 @@ class InstagramSource extends CachedDataSource {
... | fix(posts): Instagram `allPostsGetter` passes an id into `beforeId`.
We're only grabbing <I> posts anyways so it's not like we actually have to have this implementation... | randytarampi_me | train | js |
a73e9ec40c6cb28d0a5cd9dc1566d8dc0a31e9e5 | diff --git a/src/com/google/caliper/LinearTranslation.java b/src/com/google/caliper/LinearTranslation.java
index <HASH>..<HASH> 100644
--- a/src/com/google/caliper/LinearTranslation.java
+++ b/src/com/google/caliper/LinearTranslation.java
@@ -16,8 +16,6 @@
package com.google.caliper;
-import com.google.common.base... | Remove guava dependency of LinearTranslation so it can be used by GWT
git-svn-id: <URL> | trajano_caliper | train | java |
6b26687fe011290355679c9dc0522b5074d02930 | diff --git a/aiogram/utils/exceptions.py b/aiogram/utils/exceptions.py
index <HASH>..<HASH> 100644
--- a/aiogram/utils/exceptions.py
+++ b/aiogram/utils/exceptions.py
@@ -1,9 +1,11 @@
+_PREFIXES = ['Error: ', '[Error]: ', 'Bad Request: ']
+
+
def _clean_message(text):
- return text. \
- lstrip('Error: '). \
... | Oops. Fix error message cleaner. (In past it can strip first symbol in message) | aiogram_aiogram | train | py |
f49851ee6bb62dbec9f3820a85bcce342f42ccc8 | diff --git a/bindings.js b/bindings.js
index <HASH>..<HASH> 100644
--- a/bindings.js
+++ b/bindings.js
@@ -115,7 +115,9 @@ function bindings(opts) {
}
return b;
} catch (e) {
- if (e.code !== 'MODULE_NOT_FOUND' && e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED') {
+ if (e.code !== 'MODULE_NOT... | Add back the old module not found check
So that we don't have to do a major version bump by dropping support for
older Node.js versions. | TooTallNate_node-bindings | train | js |
4197b9d443f99b2beb4fabb9f001da0aa2e3f355 | diff --git a/go/service/main.go b/go/service/main.go
index <HASH>..<HASH> 100644
--- a/go/service/main.go
+++ b/go/service/main.go
@@ -549,7 +549,7 @@ func (d *Service) runHomePoller(ctx context.Context) {
}
func (d *Service) runMerkleAudit(ctx context.Context) {
- if !libkb.IsMobilePlatform() {
+ if libkb.IsMobile... | Fixed a bug where the audits would run only on mobile | keybase_client | train | go |
835d7e067f4e7168fc59f28ccd05eae89d650fd1 | diff --git a/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java b/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java
+++ b/findbugs/src/gui/edu/umd/cs/findbugs/gui2/MainFrameTree.java
@@ -618,6 +618,11 @@ ... | bug#<I>: sync bug view when clicking on the already selected tree node
(useful when you scrolled away from bug position) | spotbugs_spotbugs | train | java |
f8f5c43c33f16baa02c5bb0cde145355ba55d9ba | diff --git a/activerecord/lib/active_record/coders/yaml_column.rb b/activerecord/lib/active_record/coders/yaml_column.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/coders/yaml_column.rb
+++ b/activerecord/lib/active_record/coders/yaml_column.rb
@@ -45,14 +45,20 @@ module ActiveRecord
ra... | Improve performance by removing respond_to? from runtime code
respond_to? is inherently slow, and the YAML class won't change whether
it does or does not respond to unsafe_load, so just check it once
during file load, and define methods accordingly. | rails_rails | train | rb |
e85c0e628ef564dd2a9fab1822023c8a538c0ff8 | diff --git a/lib/maruku/input/parse_block.rb b/lib/maruku/input/parse_block.rb
index <HASH>..<HASH> 100644
--- a/lib/maruku/input/parse_block.rb
+++ b/lib/maruku/input/parse_block.rb
@@ -603,7 +603,7 @@ module MaRuKu; module In; module Markdown; module BlockLevelParser
# empty cells increase the colspan of t... | Corrected a possible crash during processing a table with a blank first column. | bhollis_maruku | train | rb |
9521044e26d15c8a820952dbbb4a7e8b214d88f2 | diff --git a/spec/controllers/theme_controller_spec.rb b/spec/controllers/theme_controller_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/controllers/theme_controller_spec.rb
+++ b/spec/controllers/theme_controller_spec.rb
@@ -30,7 +30,8 @@ describe ThemeController do
assert @response.body =~ /Static View Test fro... | Make disabled spec show up in test output. | publify_publify | train | rb |
c9770f5781a8584c5fabf1fc1a2d5ab9607c5d5e | diff --git a/src/View/View.php b/src/View/View.php
index <HASH>..<HASH> 100644
--- a/src/View/View.php
+++ b/src/View/View.php
@@ -175,13 +175,6 @@ class View implements EventDispatcherInterface
protected $theme;
/**
- * True when the view has been rendered.
- *
- * @var bool
- */
- prote... | Remove unneeded View::$hasRendered flag.
Calling View::render() multiple times should simply render again
with given arguments and existing context. | cakephp_cakephp | train | php |
5366f8af6f18e20c55b2ceef0d4a5dc6b0a9e8ed | diff --git a/router/galeb/router.go b/router/galeb/router.go
index <HASH>..<HASH> 100644
--- a/router/galeb/router.go
+++ b/router/galeb/router.go
@@ -289,6 +289,9 @@ func (r *galebRouter) SetHealthcheck(name string, data router.HealthcheckData) e
if err != nil {
return err
}
+ if data.Path == "" {
+ data.Path ... | router/galeb: default to healthcheck on / | tsuru_tsuru | train | go |
6153c328d69eed32712a722382cd3242ee54fa8f | diff --git a/lib/passport-userapp/strategy.js b/lib/passport-userapp/strategy.js
index <HASH>..<HASH> 100644
--- a/lib/passport-userapp/strategy.js
+++ b/lib/passport-userapp/strategy.js
@@ -92,18 +92,6 @@ Strategy.prototype.authenticate = function (req, options) {
}
function parseProfile(userappUser) {
- ... | Modified the user profile fields (see docs). | userapp-io_passport-userapp | train | js |
7934cc74f3e22fe93fa9dc4b8cb0395ba301b7f4 | diff --git a/src/main/java/com/buschmais/jqassistant/scm/cli/task/AbstractTask.java b/src/main/java/com/buschmais/jqassistant/scm/cli/task/AbstractTask.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/buschmais/jqassistant/scm/cli/task/AbstractTask.java
+++ b/src/main/java/com/buschmais/jqassistant/scm/cli/task... | #<I> split up scanning of model and artifacts | buschmais_jqa-commandline-tool | train | java |
83ed8a054cdb593ad46703cd068c298cf780c797 | diff --git a/lib/utils.js b/lib/utils.js
index <HASH>..<HASH> 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -9,19 +9,20 @@ var child_process = require('child_process')
exports.execSync = (function (command) {
'use strict';
+ var execCommand = '';
switch(os.platform()) {
case 'win32':
case 'win64':... | ahh, what the hell is wrong with me today. | dustywusty_interfaces | train | js |
17624e82d486be8bd71ff9b618ae1ea93dc72340 | diff --git a/src/Controller/Controller.php b/src/Controller/Controller.php
index <HASH>..<HASH> 100644
--- a/src/Controller/Controller.php
+++ b/src/Controller/Controller.php
@@ -442,10 +442,6 @@ class Controller extends Object implements EventListener {
* @return void
*/
protected function _mergeControllerVars()... | Removed 4 lines of useless code. | cakephp_cakephp | train | php |
da4e883f24a4c6eaa9b4e22bbc231904b632d4b8 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -21,7 +21,7 @@ module.exports = function (fileName, globalOptions) {
// new copy of globalOptions for each file
options = extend({}, globalOptions || {});
- options.includ... | Let globalOptions be undefined
If globalOptions is undefined, referencing something on it throws
an error. This lets the globalOptions be undefined, as it will only
reference the includePaths if it is defined. | davidguttman_sassify | train | js |
8883e9270a347822970a60893d26a10e5f8d3928 | diff --git a/src/engine/currencyEngine.js b/src/engine/currencyEngine.js
index <HASH>..<HASH> 100644
--- a/src/engine/currencyEngine.js
+++ b/src/engine/currencyEngine.js
@@ -465,12 +465,20 @@ export class CurrencyEngine {
}
addGapLimitAddresses (addresses: Array<string>, options: any): void {
- const script... | try and get the "scriptHash" from the engineState cache but in case it's not there, manually calculate it. | EdgeApp_edge-currency-bitcoin | train | js |
7055fe4356db0f84d3ed6e71bc939fd8ac71756e | diff --git a/database/certificate.go b/database/certificate.go
index <HASH>..<HASH> 100644
--- a/database/certificate.go
+++ b/database/certificate.go
@@ -217,7 +217,7 @@ func (db *DB) UpdateCACertTruststore(id int64, tsName string) error {
// In that case it returns -1 with no error.
func (db *DB) GetCertIDBySHA1Fin... | Limit GetCert queries to the first result sorted by ID | mozilla_tls-observatory | train | go |
a93b3a2eeeb39b3aa003a05c57420e49cb9078b4 | diff --git a/src/config/newsletter.php b/src/config/newsletter.php
index <HASH>..<HASH> 100644
--- a/src/config/newsletter.php
+++ b/src/config/newsletter.php
@@ -56,8 +56,8 @@ return [
* */
'link' => [
- 'arret' => url('jurisprudence'),
- 'analyse' => url('jurisprudence')
+ 'arr... | fix url problem with artisan in config file | DesignPond_newsletter | train | php |
810968561c09d46cc2b22b342387d506a7861603 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python
+"""setup.py."""
+
import setuptools
if __name__ == '__main__': | Add docstring to satisfy linter | cherrypy_cheroot | train | py |
b1be3f77b412af4c1bb36f8e9aeb643dba7e6fa5 | diff --git a/apiserver/facades/client/modelmanager/modelmanager.go b/apiserver/facades/client/modelmanager/modelmanager.go
index <HASH>..<HASH> 100644
--- a/apiserver/facades/client/modelmanager/modelmanager.go
+++ b/apiserver/facades/client/modelmanager/modelmanager.go
@@ -781,9 +781,12 @@ func (m *ModelManagerAPI) Li... | Owner is just a user string, not a tag. | juju_juju | train | go |
8a2f84b67841786a4a5f0d3d165bd0a49753b2d1 | diff --git a/src/store/indexeddb.js b/src/store/indexeddb.js
index <HASH>..<HASH> 100644
--- a/src/store/indexeddb.js
+++ b/src/store/indexeddb.js
@@ -20,6 +20,7 @@ limitations under the License.
import Promise from 'bluebird';
import {MemoryStore} from "./memory";
import utils from "../utils";
+import {EventEmitter... | Emit event when `IndexedDBStore` degrades
This allows for optional tracking of when the store degrades to see how often it
happens in the field. | matrix-org_matrix-js-sdk | train | js |
27e8bbaee4de7858a9b1a2d3ca08c6412006c710 | diff --git a/datetime_tz/__init__.py b/datetime_tz/__init__.py
index <HASH>..<HASH> 100644
--- a/datetime_tz/__init__.py
+++ b/datetime_tz/__init__.py
@@ -226,6 +226,8 @@ def _detect_timezone_windows():
olson_name = win32tz_map.win32timezones.get(win32tz_key_name, None)
if not olson_name:
return None
+ if n... | Hopefully fix a weird error which only happens with pytz <I>b without breaking Python 3 support | mithro_python-datetime-tz | train | py |
2f78a477df6195490f167cd75ec4e86e7e9045cc | diff --git a/autoflake.py b/autoflake.py
index <HASH>..<HASH> 100644
--- a/autoflake.py
+++ b/autoflake.py
@@ -38,7 +38,7 @@ import pyflakes.messages
import pyflakes.reporter
-__version__ = '0.6'
+__version__ = '0.6.1'
ATOMS = frozenset([tokenize.NAME, tokenize.NUMBER, tokenize.STRING]) | Increment patch version to <I> | myint_autoflake | train | py |
63df56af7e612f0a31a411e7db27df5b3f61ea24 | diff --git a/lib/gastropod/active_record/validations.rb b/lib/gastropod/active_record/validations.rb
index <HASH>..<HASH> 100644
--- a/lib/gastropod/active_record/validations.rb
+++ b/lib/gastropod/active_record/validations.rb
@@ -3,7 +3,7 @@ module Gastropod
module Validations
def self.included(base)
... | Updates regex to fix Rails 4 security whine. | vigetlabs_gastropod | train | rb |
ca19744b2f10733801861e04194a9e2dcf1e91d6 | diff --git a/Sniffs/Arrays/ArrayDeclarationSniff.php b/Sniffs/Arrays/ArrayDeclarationSniff.php
index <HASH>..<HASH> 100644
--- a/Sniffs/Arrays/ArrayDeclarationSniff.php
+++ b/Sniffs/Arrays/ArrayDeclarationSniff.php
@@ -411,7 +411,7 @@ class WordPress_Sniffs_Arrays_ArrayDeclarationSniff implements PHP_CodeSniffer_S
... | Fix trailing comma issue in array definition where it choked on closures and multiline functions | WordPress-Coding-Standards_WordPress-Coding-Standards | train | php |
eb374c4ea1d953fbabb304bf9151f18691617903 | diff --git a/library/CM/Process.php b/library/CM/Process.php
index <HASH>..<HASH> 100644
--- a/library/CM/Process.php
+++ b/library/CM/Process.php
@@ -69,7 +69,7 @@ class CM_Process {
* @param int $signal
*/
public function killChildren($signal) {
- foreach ($this->_forkHandlerList as $processId... | Rename $workload to $forkHandler in loop | cargomedia_cm | train | php |
81f4181d8950cc86958986820a2fba62fdce3424 | diff --git a/tests/TestCase/Database/Driver/SqlserverTest.php b/tests/TestCase/Database/Driver/SqlserverTest.php
index <HASH>..<HASH> 100644
--- a/tests/TestCase/Database/Driver/SqlserverTest.php
+++ b/tests/TestCase/Database/Driver/SqlserverTest.php
@@ -126,7 +126,7 @@ class SqlserverTest extends TestCase
... | add setConnection to mocked Method list | cakephp_cakephp | train | php |
7ab3278dc1b875080cb3d8c77668ae1e2c87cc6d | diff --git a/lib/fog/openstack/models/storage/directory.rb b/lib/fog/openstack/models/storage/directory.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/openstack/models/storage/directory.rb
+++ b/lib/fog/openstack/models/storage/directory.rb
@@ -10,7 +10,7 @@ module Fog
attribute :bytes, :aliases => 'X-Container-... | fix mistyping in openstack storage directory model | fog_fog | train | rb |
bf2727d281009bdf6ae59bc3924c8bb2f1f353f2 | diff --git a/lib/preview.js b/lib/preview.js
index <HASH>..<HASH> 100644
--- a/lib/preview.js
+++ b/lib/preview.js
@@ -15,7 +15,7 @@ const {
module.exports = run;
-function run(input, size, vivliostyleTimeout) {
+function run(input, sandbox = true) {
const stat = fs.statSync(input);
const root = stat.isDirec... | make previewer enable to launch without sandbox | violapub_viola-savepdf | train | js |
6fb9eb8e470c31f2a6a3d5fb5f91606479d5ef26 | diff --git a/searx/static/default/js/searx.js b/searx/static/default/js/searx.js
index <HASH>..<HASH> 100644
--- a/searx/static/default/js/searx.js
+++ b/searx/static/default/js/searx.js
@@ -9,7 +9,7 @@ if(searx.autocompleter) {
timeout: 5 // Correct option?
},
'minLength': 4,
- // 'sele... | [mod] select autocomplete results with mouse click | asciimoo_searx | train | js |
a7390425891c5dd292d391e4176acf94824a9b71 | diff --git a/spinoff/actor/actor.py b/spinoff/actor/actor.py
index <HASH>..<HASH> 100644
--- a/spinoff/actor/actor.py
+++ b/spinoff/actor/actor.py
@@ -261,8 +261,6 @@ class Actor(BaseActor):
self.exit(('error', self, (result.value, result.tb or result.getTraceback()), False))
super(Actor, ... | Removed the unused returning of a Deferred in Actor.start | eallik_spinoff | train | py |
5db3d0820bf1a47dd531d152ac8386f43d022344 | diff --git a/dist/Button.js b/dist/Button.js
index <HASH>..<HASH> 100644
--- a/dist/Button.js
+++ b/dist/Button.js
@@ -41,7 +41,8 @@ var AriaMenuButtonButton = function (_React$Component) {
case 'ArrowDown':
event.preventDefault();
if (!ambManager.isOpen) {
- ambManager.openMen... | adds remaining changes to let menu focus first item | davidtheclark_react-aria-menubutton | train | js,js |
1ccee7f031486f6a0145c8449f21fd9094f3e38f | diff --git a/glue/ligolw/ligolw.py b/glue/ligolw/ligolw.py
index <HASH>..<HASH> 100644
--- a/glue/ligolw/ligolw.py
+++ b/glue/ligolw/ligolw.py
@@ -106,7 +106,7 @@ class Element(object):
Remove a child from this element. The child element is
returned, and it's parentNode element is reset.
"""
- del self.child... | This might be a bit faster... | gwastro_pycbc-glue | train | py |
4da4d5b9ab9ad16484e8af58a1c565a3af31ff2b | diff --git a/spec/lib/roots/engine_route_collection_spec.rb b/spec/lib/roots/engine_route_collection_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lib/roots/engine_route_collection_spec.rb
+++ b/spec/lib/roots/engine_route_collection_spec.rb
@@ -18,6 +18,25 @@ module Roots
it 'adds the engine name to each route... | More specs about how engine route collection works | yez_passages | train | rb |
9c6e1a2fa80909bb2f5bca66c76f384ea5a2aa09 | diff --git a/server/src/main/java/io/atomix/copycat/server/state/ServerSession.java b/server/src/main/java/io/atomix/copycat/server/state/ServerSession.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/io/atomix/copycat/server/state/ServerSession.java
+++ b/server/src/main/java/io/atomix/copycat/server/state/... | Ensure last applied index for each session is used as the last event index if no events are queued. | atomix_copycat | train | java |
8b8bda63d4198799a933a20af639279a0c00544a | diff --git a/lib/stream/leo-stream.js b/lib/stream/leo-stream.js
index <HASH>..<HASH> 100644
--- a/lib/stream/leo-stream.js
+++ b/lib/stream/leo-stream.js
@@ -430,7 +430,7 @@ module.exports = function(configure) {
eid: rOpts.eid || obj.eid,
correlation_id: {
source: obj.event,
- star... | EN-<I> - allows for setting partial_start attribute
If we pass in partial === true, then we set the partial_start attribute instead of start. This enables us to do one to many events in the enrich that we need for new lambda load listeners. | LeoPlatform_Nodejs | train | js |
be70b83e7c7f06a75af9014becec711201007454 | diff --git a/src/facebook.py b/src/facebook.py
index <HASH>..<HASH> 100644
--- a/src/facebook.py
+++ b/src/facebook.py
@@ -87,6 +87,15 @@ class GraphAPI(object):
"""Fetchs the given object from the graph."""
return self.request(id, args)
+ def get_objects(self, ids, **args):
+ """Fetchs al... | Add multi-get support to Python SDK | mobolic_facebook-sdk | train | py |
401899e436a770af77a3b81606d7d36faded3b5e | diff --git a/testsuite/integration/clustering/src/test/java/org/jboss/as/test/clustering/cluster/jpa2lc/DummyEntity.java b/testsuite/integration/clustering/src/test/java/org/jboss/as/test/clustering/cluster/jpa2lc/DummyEntity.java
index <HASH>..<HASH> 100644
--- a/testsuite/integration/clustering/src/test/java/org/jbos... | WFLY-<I> ClusteredJPA2LCTestCase fails intermittently | wildfly_wildfly | train | java |
e7d48b0b935af6fc95b6aedf328fa2f0654ae754 | diff --git a/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb b/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb
index <HASH>..<HASH> 100644
--- a/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb
+++ b/test/unit/vagrant/action/builtin/handle_for... | Remove test double
We don't actually need a test double here because `#ipv4_loopback?`
will return true for any address in the `<I>/8` space. | hashicorp_vagrant | train | rb |
8e14cc8bd9e722c476dbc893796dc0e16a5a3dc9 | diff --git a/src/com/google/javascript/jscomp/DefaultPassConfig.java b/src/com/google/javascript/jscomp/DefaultPassConfig.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/DefaultPassConfig.java
+++ b/src/com/google/javascript/jscomp/DefaultPassConfig.java
@@ -2717,6 +2717,11 @@ public final class... | Run flowSensitiveInlineVariables pass when language_out is ES6+.
-------------
Created by MOE: <URL> | google_closure-compiler | train | java |
ea837d9ac10e68faa4873be167ab3464edb42fdb | diff --git a/test/nested-model.js b/test/nested-model.js
index <HASH>..<HASH> 100644
--- a/test/nested-model.js
+++ b/test/nested-model.js
@@ -493,6 +493,23 @@ $(document).ready(function() {
ok(callbackFired, "callback wasn't fired");
});
+ test("#add() on nested array should trigger 'add' event after model ... | Added failing test for #<I> | afeld_backbone-nested | train | js |
deeb67d01251c43aebc04a86ec203e615bd60338 | diff --git a/src/replace.js b/src/replace.js
index <HASH>..<HASH> 100644
--- a/src/replace.js
+++ b/src/replace.js
@@ -79,13 +79,13 @@ export class Slice {
return new Slice(Fragment.fromJSON(schema, json.content), json.openStart || 0, json.openEnd || 0)
}
- // :: (Fragment) → Slice
+ // :: (Fragment, ?bool)... | Add an `openIsolating` argument to Slice.maxOpen
FEATURE: [`Slice.maxOpen`](##model.Slice^maxOpen) now has a second
argument that can be used to prevent it from opening isolating nodes. | ProseMirror_prosemirror-model | train | js |
aa55bcd3f5698e3fffbf2fe8dc162216e9545548 | diff --git a/modules/cmsadmin/apis/NavController.php b/modules/cmsadmin/apis/NavController.php
index <HASH>..<HASH> 100644
--- a/modules/cmsadmin/apis/NavController.php
+++ b/modules/cmsadmin/apis/NavController.php
@@ -51,7 +51,7 @@ class NavController extends \admin\base\RestController
$model = \cmsadmin\... | fixed bug where admin properties with 0 values have been deleted. | luyadev_luya | train | php |
218d8404082186ef0f9fe971576f0b71a97c8958 | diff --git a/src/TextField/TextField.js b/src/TextField/TextField.js
index <HASH>..<HASH> 100644
--- a/src/TextField/TextField.js
+++ b/src/TextField/TextField.js
@@ -11,7 +11,7 @@ import TextFieldLabel from './TextFieldLabel';
import TextFieldUnderline from './TextFieldUnderline';
import warning from 'warning';
-c... | [TextField] Fix incorrect state in getStyles()
getStyles() was reading state, from context, so dynamic styling was not being applied correctly. | mui-org_material-ui | train | js |
1c54d999f66ab0dd2b69361ffda3a32979671c2b | diff --git a/config/hoe.rb b/config/hoe.rb
index <HASH>..<HASH> 100644
--- a/config/hoe.rb
+++ b/config/hoe.rb
@@ -52,6 +52,7 @@ $hoe = Hoe.spec(GEM_NAME) do |p|
p.summary = SUMMARY
p.url = HOMEPATH
p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
+ p.readme_file = "README.markdown"
p.test_globs =... | let hoe know about the renamed readme | jarib_celerity | train | rb |
9bbce4a223fd0496e65abee46471b6dfbbf19ada | diff --git a/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java b/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java
+++ b/src/main/java/org/jboss/netty/buffer/DynamicChannelBuffer.java
@@ -275,7 +27... | Fixed a bug where a dynamic buffer's readerIndex goes out of sync on expansion | netty_netty | train | java |
991f3d6c16e60a0cf3cb5982e939eb153aa8fca5 | diff --git a/src/Chord.js b/src/Chord.js
index <HASH>..<HASH> 100644
--- a/src/Chord.js
+++ b/src/Chord.js
@@ -73,9 +73,14 @@ class ConductorChord {
this.conductor = Conductor.create(this.config.conductorConfig);
u.log(this, "Channel and conductor created? "+this.conductor!=null);
- //Set onconnection event.
+... | Testing new ondatachannel event of conductor. | FelixMcFelix_conductor-chord | train | js |
934711a10aaa95d0ffb90ccf204d1b9863eb4252 | diff --git a/system/core/models/Language.php b/system/core/models/Language.php
index <HASH>..<HASH> 100644
--- a/system/core/models/Language.php
+++ b/system/core/models/Language.php
@@ -335,7 +335,7 @@ class Language extends Model
public function text($string, array $arguments = array(), $class = '')
{
... | Bug fix \core\models\Language::text() | gplcart_gplcart | train | php |
b918602157598e32db3205b98d1e4b7d8863c116 | diff --git a/war/resources/scripts/hudson-behavior.js b/war/resources/scripts/hudson-behavior.js
index <HASH>..<HASH> 100644
--- a/war/resources/scripts/hudson-behavior.js
+++ b/war/resources/scripts/hudson-behavior.js
@@ -284,7 +284,7 @@ function expandTextArea(button,id) {
function refreshPart(id,url) {
window.... | don't know if this causes a problem, but in other places GET->POST change seemed to make things work, so I'm just changing it here as a precaution.
git-svn-id: <URL> | jenkinsci_jenkins | train | js |
b4709dc5004d962f9914ea300b800e01b4b27eef | diff --git a/src/java/org/apache/cassandra/service/StorageService.java b/src/java/org/apache/cassandra/service/StorageService.java
index <HASH>..<HASH> 100644
--- a/src/java/org/apache/cassandra/service/StorageService.java
+++ b/src/java/org/apache/cassandra/service/StorageService.java
@@ -169,15 +169,6 @@ public class... | r/m unused consistencyManager executor (obsoleted by #<I>)
git-svn-id: <URL> | Stratio_stratio-cassandra | train | java |
bcfc24d64a2a745f91f0415c733f2baab8dbf948 | diff --git a/lib/tjbot.js b/lib/tjbot.js
index <HASH>..<HASH> 100644
--- a/lib/tjbot.js
+++ b/lib/tjbot.js
@@ -156,8 +156,8 @@ TJBot.prototype.defaultConfiguration = {
},
speak: {
language: 'en-US', // see TJBot.prototype.languages.speak
- voice: undefined // use a specific voice; if undefined... | add support specifying speaker device id | ibmtjbot_tjbotlib | train | js |
82e819da6547ead523e6286e08d7222eb6024c67 | diff --git a/peewee.py b/peewee.py
index <HASH>..<HASH> 100644
--- a/peewee.py
+++ b/peewee.py
@@ -560,11 +560,16 @@ class ReverseForeignRelatedObject(object):
class ForeignKeyField(IntegerField):
- field_template = '%(db_field)s NOT NULL REFERENCES "%(to_table)s" ("id")'
+ field_template = '%(db_field)s %(n... | Adding nullable fks | coleifer_peewee | train | py |
16d34911f7fadbf233922fd3fbf786bce2b14dec | diff --git a/js/gateio.js b/js/gateio.js
index <HASH>..<HASH> 100755
--- a/js/gateio.js
+++ b/js/gateio.js
@@ -692,8 +692,7 @@ module.exports = class gateio extends Exchange {
for (let i = 0; i < response.length; i++) {
const market = response[i];
const id = this.safeString2 (market, ... | one split for gateio loadMarkets | ccxt_ccxt | train | js |
4e0fa975e8de36d8342c03f2ab018a9c5c5fa7b6 | diff --git a/src/rinoh/font/google.py b/src/rinoh/font/google.py
index <HASH>..<HASH> 100644
--- a/src/rinoh/font/google.py
+++ b/src/rinoh/font/google.py
@@ -106,7 +106,7 @@ def download_file(name, url):
break
f.write(buffer)
except HTTPError as e:
- if e.code ... | Google Fonts: handle <I> error
Sometimes the server returns error <I> (forbidden) instead of <I> for
an unknown reason. This happens when looking for 'Comic Sans MS', for
example. | brechtm_rinohtype | train | py |
8d3049af04f7427502a0d09e4f368027d4da3ca7 | diff --git a/bin/get-webpack-config.js b/bin/get-webpack-config.js
index <HASH>..<HASH> 100644
--- a/bin/get-webpack-config.js
+++ b/bin/get-webpack-config.js
@@ -1,8 +1,5 @@
const webpack = require('webpack');
const path = require('path');
-const requireFromString = require('require-from-string');
-const MemoryFS = ... | Fix lints on electron based IDEs, closes #<I> | unimonkiez_react-cordova-boilerplate | train | js |
cf50ffcd3324a7eb9d3c5b4cab56a911ffc0ba37 | diff --git a/signer/api/ecdsa_hardware_crypto_service.go b/signer/api/ecdsa_hardware_crypto_service.go
index <HASH>..<HASH> 100644
--- a/signer/api/ecdsa_hardware_crypto_service.go
+++ b/signer/api/ecdsa_hardware_crypto_service.go
@@ -243,6 +243,7 @@ func sign(ctx *pkcs11.Ctx, session pkcs11.SessionHandle, pkcs11KeyID ... | add message when user is required to touch yubikey to sign. N.B. touch is required during Sign, not SignInit | theupdateframework_notary | train | go |
5c3199ceed55926f4fd016646fbc27ac3875330b | diff --git a/Controller/StepController.php b/Controller/StepController.php
index <HASH>..<HASH> 100644
--- a/Controller/StepController.php
+++ b/Controller/StepController.php
@@ -110,7 +110,11 @@ class StepController extends Controller
/**
*
- * @Route("/plop/", name="innova_user_resources", options =... | [PathBundle] change route used to load claro resources | claroline_Distribution | train | php |
a271b18a09b49cfc9cc1d04da421b5a680340e20 | diff --git a/core/ClientController.js b/core/ClientController.js
index <HASH>..<HASH> 100644
--- a/core/ClientController.js
+++ b/core/ClientController.js
@@ -156,6 +156,8 @@ class ClientController extends EventEmitter {
this._previouslyRendered = true;
debug('React Rendered');
this.emit('render');
+ }).ca... | Triton API Refactor: Added some tests for promises of ReactElement | redfin_react-server | train | js,js |
b634951affed9eec7ac3ce5d94b1490e15a609e1 | diff --git a/OpenPNM/__init__.py b/OpenPNM/__init__.py
index <HASH>..<HASH> 100644
--- a/OpenPNM/__init__.py
+++ b/OpenPNM/__init__.py
@@ -54,7 +54,7 @@ import scipy as _sp
if _sys.version_info < (3, 4):
raise Exception('OpenPNM requires Python 3.4 or greater to run')
-__version__ = '1.6.2'
+__version__ = '1.7.... | Bumping version number to <I> | PMEAL_OpenPNM | train | py |
442dde814285b73bf4c0be107d37d12005fbccaa | diff --git a/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java b/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java
index <HASH>..<HASH> 100755
--- a/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java
+++ b/src/com/mebigfatguy/fbcontrib/detect/Pos... | Github #<I> drop unread field | mebigfatguy_fb-contrib | train | java |
12c06a644b2c6f44adbe7d0422a66991ed70ec1a | diff --git a/treetime/clock_tree.py b/treetime/clock_tree.py
index <HASH>..<HASH> 100644
--- a/treetime/clock_tree.py
+++ b/treetime/clock_tree.py
@@ -476,7 +476,7 @@ class ClockTree(TreeAnc):
LH -= node.branch_length_interpolator(node.branch_length)
# add the root sequence LH and return
- ... | only add sequence LH to total if reconstruction has been performed | neherlab_treetime | train | py |
6c9257c5eb085507838730268c3929bc34374e15 | diff --git a/library/Phrozn/Site/View/Base.php b/library/Phrozn/Site/View/Base.php
index <HASH>..<HASH> 100644
--- a/library/Phrozn/Site/View/Base.php
+++ b/library/Phrozn/Site/View/Base.php
@@ -90,6 +90,12 @@ abstract class Base
private $siteConfig;
/**
+ * Loaded content of configs/phrozn.yml
+ * ... | Added phr section to exposed global vars | Pawka_phrozn | train | php |
be1b281c5e0abf89738bba7b0299f3ce36817753 | diff --git a/lib/infograph.js b/lib/infograph.js
index <HASH>..<HASH> 100644
--- a/lib/infograph.js
+++ b/lib/infograph.js
@@ -95,6 +95,9 @@ class InfoGraph {
addEdge(fromId, toId) {
+ if (!fromId || !toId)
+ throw new Error(`Cannot add edge from ${fromId} to ${toId}`)
+
const edges = this.adjacency... | InfoGraph#addEdge: throws errors when information is missing | shippjs_shipp-server | train | js |
26452445ad3bee47a9014eaa7a018bc81be39708 | diff --git a/bundles/org.eclipse.orion.client.javascript/web/javascript/plugins/javascriptPlugin.js b/bundles/org.eclipse.orion.client.javascript/web/javascript/plugins/javascriptPlugin.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.javascript/web/javascript/plugins/javascriptPlugin.js
+++ b/bund... | [nobug] remove accidental addition to hook JS hover to HTML files | eclipse_orion.client | train | js |
e84cef691325110d9df87cb2a8e1964901841733 | diff --git a/src/Valkyrja/View/Templates/Template.php b/src/Valkyrja/View/Templates/Template.php
index <HASH>..<HASH> 100644
--- a/src/Valkyrja/View/Templates/Template.php
+++ b/src/Valkyrja/View/Templates/Template.php
@@ -18,7 +18,6 @@ use Valkyrja\View\Template as Contract;
use Valkyrja\View\View;
use function ar... | View: Fix bug with blocks' endBlock functionality. | valkyrjaio_valkyrja | train | php |
e58bae57dfd242fb770b68cd82ab7f438b1c24fe | diff --git a/cfpiva.js b/cfpiva.js
index <HASH>..<HASH> 100644
--- a/cfpiva.js
+++ b/cfpiva.js
@@ -44,7 +44,8 @@ cfpiva.controllaPIVA = function (piva, callback) {
if (piva == '') return '';
if (piva.length != 11)
return formatReturn(false, 'La lunghezza della partita IVA non è corretta: la partita I... | declaring undeclared vars
fix #3 | dennybiasiolli_node-cfpiva | train | js |
506623645d71432a6620d03bb0c67ced04b8482e | diff --git a/lib/sass/engine.rb b/lib/sass/engine.rb
index <HASH>..<HASH> 100755
--- a/lib/sass/engine.rb
+++ b/lib/sass/engine.rb
@@ -205,6 +205,8 @@ END
return node, index
end
+ node.line = @line
+
if node.is_a? Tree::CommentNode
while has_children
line, index = raw_n... | Fix a line-numbering error error in Sass.
Reported by Mike Judge. Thanks, Mike! | sass_ruby-sass | train | rb |
a149fc4195f55f778cdb6bc34564e4cfc29ff900 | diff --git a/tests/virgil-cards.js b/tests/virgil-cards.js
index <HASH>..<HASH> 100644
--- a/tests/virgil-cards.js
+++ b/tests/virgil-cards.js
@@ -130,7 +130,7 @@ test('create private virgil card', function (t) {
var token = VirgilSDK.utils.generateValidationToken(
username,
identityType,
- process.env.VIR... | Update test, add workaround for travis env variables new lines | VirgilSecurity_virgil-sdk-javascript | train | js |
f09337e50ed0d3499679e9dff9fa56886f61e078 | diff --git a/tests/big-ass-files.test.js b/tests/big-ass-files.test.js
index <HASH>..<HASH> 100644
--- a/tests/big-ass-files.test.js
+++ b/tests/big-ass-files.test.js
@@ -4,7 +4,9 @@ describe.only('when some big files start coming in, this adapter', function() {
// Set up a route which listens to uploads
app.... | Adjust maxBytes for the big ass file test. | balderdashy_skipper-adapter-tests | train | js |
2e5dd8a21326ecaf2cf131081c707a022d41a146 | diff --git a/plenum/test/client/test_client_retry.py b/plenum/test/client/test_client_retry.py
index <HASH>..<HASH> 100644
--- a/plenum/test/client/test_client_retry.py
+++ b/plenum/test/client/test_client_retry.py
@@ -100,7 +100,7 @@ def testClientNotRetryRequestWhenReqnackReceived(looper, nodeSet, client1,
origT... | Fix testClientNotRetryRequestWhenReqnackReceived | hyperledger_indy-plenum | train | py |
7f713ace56a57c9ca15b5084e498e13719795a69 | diff --git a/src/StreamEncryption.php b/src/StreamEncryption.php
index <HASH>..<HASH> 100644
--- a/src/StreamEncryption.php
+++ b/src/StreamEncryption.php
@@ -31,6 +31,10 @@ class StreamEncryption
// On versions affected by this bug we need to fread the stream until we
// get an empty string back bec... | Explicitly set supported TLS version for PHP<I>+ | reactphp_socket | train | php |
a4d50c2b6d9fc0625cd1e53c8598d442949b7262 | diff --git a/Model/ExtendedFieldModel.php b/Model/ExtendedFieldModel.php
index <HASH>..<HASH> 100644
--- a/Model/ExtendedFieldModel.php
+++ b/Model/ExtendedFieldModel.php
@@ -240,7 +240,7 @@ class ExtendedFieldModel extends FieldModel
$entity->deletedId = $id;
$this->dispatchEvent('post_delete', $enti... | Actually run php-cs-fixer (for real) | TheDMSGroup_mautic-extended-field | train | php |
c077c2432ef63a11db6a091c36bc394e03af1f5e | diff --git a/rinoh/flowable.py b/rinoh/flowable.py
index <HASH>..<HASH> 100644
--- a/rinoh/flowable.py
+++ b/rinoh/flowable.py
@@ -26,7 +26,7 @@ from .dimension import DimensionBase, PT
from .draw import ShapeStyle, Rectangle, Line, LineStyle, Stroke
from .layout import (InlineDownExpandingContainer, VirtualContainer... | Fix infinite loop.
Non-content containers should not influence a page's "emptyness". | brechtm_rinohtype | train | py |
8a74e27e725708546f0e5c72d68c3359c3a5cb22 | diff --git a/fragments/config.py b/fragments/config.py
index <HASH>..<HASH> 100644
--- a/fragments/config.py
+++ b/fragments/config.py
@@ -55,6 +55,7 @@ class FragmentsConfig(dict):
except Exception, exc:
raise ConfigurationFileCorrupt(exc.message)
self.update(parsed_json)
+ ... | config['version'] should always be a tuple | glyphobet_fragments | train | py |
dae2de5ddd6b31ce3861eac3ee229a08641f5771 | diff --git a/api/src/opentrons/api/session.py b/api/src/opentrons/api/session.py
index <HASH>..<HASH> 100755
--- a/api/src/opentrons/api/session.py
+++ b/api/src/opentrons/api/session.py
@@ -135,6 +135,7 @@ class Session(object):
self.modules = None
self.metadata = {}
self.api_level = None
+ ... | fix(api): reflect protocol text over rpc (#<I>)
The session needs a protocol text member exposed via rpc to let apps that aren't
the one that uploaded the protocol see what the protocol was. The app also
relies on it (perhaps incorrectly) in a couple ways, for instance the creation
method, and without this exposed ... | Opentrons_opentrons | train | py,py |
3d7532ca921df0dfd857c3b4e71debb263f5a664 | diff --git a/lib/twostroke/runtime/lib/string.rb b/lib/twostroke/runtime/lib/string.rb
index <HASH>..<HASH> 100644
--- a/lib/twostroke/runtime/lib/string.rb
+++ b/lib/twostroke/runtime/lib/string.rb
@@ -44,7 +44,7 @@ module Twostroke::Runtime
md = re.match s, offset
break unless md && (offset.zero... | avoid passing nil into Types::String.new | charliesome_twostroke | train | rb |
0b3ed9fb588c3ee98de0413e664916885803293e | diff --git a/lib/itamae/recipe.rb b/lib/itamae/recipe.rb
index <HASH>..<HASH> 100644
--- a/lib/itamae/recipe.rb
+++ b/lib/itamae/recipe.rb
@@ -2,6 +2,8 @@ require 'itamae'
module Itamae
class Recipe
+ NotFoundError = Class.new(StandardError)
+
attr_reader :path
attr_reader :runner
attr_reader :d... | If a file to be included doesn't exist, raise an error. | itamae-kitchen_itamae | train | rb |
f96fdd3be1cae3e3774c9e83d90b7b779089d16f | diff --git a/shardingsphere-db-protocol/shardingsphere-db-protocol-postgresql/src/main/java/org/apache/shardingsphere/db/protocol/postgresql/packet/generic/PostgreSQLCommandCompletePacket.java b/shardingsphere-db-protocol/shardingsphere-db-protocol-postgresql/src/main/java/org/apache/shardingsphere/db/protocol/postgres... | Simplify String concat in PostgreSQLCommandCompletePacket (#<I>) | apache_incubator-shardingsphere | train | java |
836bfe569605c4efba1a27856ddeb799c67054a9 | diff --git a/tests/test_popobject_create.py b/tests/test_popobject_create.py
index <HASH>..<HASH> 100644
--- a/tests/test_popobject_create.py
+++ b/tests/test_popobject_create.py
@@ -97,7 +97,8 @@ class testMlocusPopCreate(unittest.TestCase):
def testConstruction(self):
pop = fwdpy11.MlocusPop(self.dipl... | test that MlocusPop.nloci is assigned | molpopgen_fwdpy11 | train | py |
f2467b147f54392ad88ee9d1c74c9880c6e364be | diff --git a/js/language/c.js b/js/language/c.js
index <HASH>..<HASH> 100644
--- a/js/language/c.js
+++ b/js/language/c.js
@@ -50,13 +50,13 @@ Rainbow.extend('c', [
3: 'storage.type',
4: 'entity.name.function'
},
- 'pattern': /\b((un)?signed|const)?\s?(void|char|short|int|long|... | Add support for functions with spaces before the parenthesis | ccampbell_rainbow | train | js |
a3de38200301f510eeb1d6628539e9110213f8ea | diff --git a/spec/functional/resource/deploy_revision_spec.rb b/spec/functional/resource/deploy_revision_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/functional/resource/deploy_revision_spec.rb
+++ b/spec/functional/resource/deploy_revision_spec.rb
@@ -42,14 +42,16 @@ describe Chef::Resource::DeployRevision, :unix_on... | [OC-<I>] move ohai into before(:all) in deploy_rev test | chef_chef | train | rb |
07eff12b72a3467275781ecb6687145262280be5 | diff --git a/complexity.go b/complexity.go
index <HASH>..<HASH> 100644
--- a/complexity.go
+++ b/complexity.go
@@ -14,7 +14,9 @@ import (
// Complexity calculates the cyclomatic complexity of a function.
// The 'fn' node is either a *ast.FuncDecl or a *ast.FuncLit.
func Complexity(fn ast.Node) int {
- v := complexit... | Fix cyclomatic complexity for function literals | fzipp_gocyclo | train | go |
1365a8584e3349fb4539143d3f10316946a54fbb | diff --git a/lib/gclitest/index.js b/lib/gclitest/index.js
index <HASH>..<HASH> 100644
--- a/lib/gclitest/index.js
+++ b/lib/gclitest/index.js
@@ -114,6 +114,8 @@ exports.createDisplay = function(options) {
var options = {
window: window,
display: window.display,
+ isNode: false,
+ isFirefo... | refactor-<I>: Clearer flags for tests
Be clearer about what environment we are running in by explicitly
setting isNode, isFirefox, etc. | joewalker_gcli | train | js,js |
a0aa3d602337de804f2dc85fc9d86767fac7e294 | diff --git a/src/Repo/Data/Entity/Retro/Downline/Compressed/Phase1.php b/src/Repo/Data/Entity/Retro/Downline/Compressed/Phase1.php
index <HASH>..<HASH> 100644
--- a/src/Repo/Data/Entity/Retro/Downline/Compressed/Phase1.php
+++ b/src/Repo/Data/Entity/Retro/Downline/Compressed/Phase1.php
@@ -9,6 +9,7 @@ namespace Praxige... | MOBI-<I> - Repositories and queries | praxigento_mobi_mod_bonus_hybrid | train | php |
0f47d74fded7950b2f2a9a8ef04acf7936555e6f | diff --git a/agreement.rb b/agreement.rb
index <HASH>..<HASH> 100644
--- a/agreement.rb
+++ b/agreement.rb
@@ -7,7 +7,8 @@ module TicketSharing
attr_accessor :direction, :remote_url
def initialize(attrs = {})
- self.direction = attrs['direction'] if attrs['direction']
+ self.direction = attrs['di... | Connecting the Sharing::Agreement dots.
An api request is successfully sent after a Sharing::Agreement is
created!
* Connecting the front end to the back end
* Cleaning up errors
* Adding some more test coverage
* Making the UI reflect the mockups a bit more
* Adding some missing pieces | zendesk_ticket_sharing | train | rb |
95fbd025451138f414e916f0f90dfe5503c4be8a | diff --git a/Resources/public/Admin.js b/Resources/public/Admin.js
index <HASH>..<HASH> 100644
--- a/Resources/public/Admin.js
+++ b/Resources/public/Admin.js
@@ -114,7 +114,7 @@ var Admin = {
jQuery("input[type='checkbox']:not('label.btn>input'), input[type='radio']:not('label.btn>input')", subject).iCh... | typo fix in css class name | sonata-project_SonataAdminBundle | train | js |
4b4f7df01c8fdcc7adf6d4f63581ed15a36c0141 | diff --git a/spec/functional/callbacks_spec.rb b/spec/functional/callbacks_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/functional/callbacks_spec.rb
+++ b/spec/functional/callbacks_spec.rb
@@ -156,6 +156,20 @@ describe "Callbacks" do
end
end
+ context "By default" do
+ it "should not run callbacks when ... | Add specs for embedded callback deferral | mongomapper_mongomapper | train | rb |
0af8be35bb9d29e29f2a3af3acf9a65fd41ef7df | diff --git a/api/handler/api/util.go b/api/handler/api/util.go
index <HASH>..<HASH> 100644
--- a/api/handler/api/util.go
+++ b/api/handler/api/util.go
@@ -29,16 +29,20 @@ func requestToProto(r *http.Request) (*api.Request, error) {
ct, _, err := mime.ParseMediaType(r.Header.Get("Content-Type"))
if err != nil {
- ... | -bugfix #<I> set body corretly in case of missing content-type (#<I>) | micro_go-micro | train | go |
5f65e3c4d96435d505e38134d8a580dc990f1fa8 | diff --git a/django_plotly_dash/__init__.py b/django_plotly_dash/__init__.py
index <HASH>..<HASH> 100644
--- a/django_plotly_dash/__init__.py
+++ b/django_plotly_dash/__init__.py
@@ -26,6 +26,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
'''
-__version__ = "0.7.0"
+__v... | Update version to prerelease <I> (#<I>) | GibbsConsulting_django-plotly-dash | train | py |
9af90ea698698b3b4a89b30a4bec8161b6558690 | diff --git a/src/ValuSo/Annotation/AnnotationBuilder.php b/src/ValuSo/Annotation/AnnotationBuilder.php
index <HASH>..<HASH> 100644
--- a/src/ValuSo/Annotation/AnnotationBuilder.php
+++ b/src/ValuSo/Annotation/AnnotationBuilder.php
@@ -237,8 +237,9 @@ class AnnotationBuilder implements EventManagerAwareInterface
pr... | Fixes issue, where operation wasn't parsed if it wasn't annotated | valu-digital_valuso | train | php |
583b2438d9531ef85f882ddf9f90ba71ea2e06da | diff --git a/pipes/iam/__main__.py b/pipes/iam/__main__.py
index <HASH>..<HASH> 100644
--- a/pipes/iam/__main__.py
+++ b/pipes/iam/__main__.py
@@ -20,7 +20,7 @@ def main():
help='Set DEBUG output')
parser.add_argument('-e',
'--env',
- choices... | fix: Add environments for IAM
See also: PSOBAT-<I> | foremast_foremast | train | py |
fa7aebba7742ecb0b0e05855e320c1c31cfbce2d | diff --git a/src/plugins/Entity/Entity.Controller.js b/src/plugins/Entity/Entity.Controller.js
index <HASH>..<HASH> 100644
--- a/src/plugins/Entity/Entity.Controller.js
+++ b/src/plugins/Entity/Entity.Controller.js
@@ -159,7 +159,6 @@ Entity.Controller = meta.Controller.extend
// Force update hover if is needed.
... | Re: Update hover when new entity is added. | tenjou_meta2d | train | js |
5ca283c72c037126ab7136941cc84b1e24cb8c72 | diff --git a/test/libwebsocket/test_url.rb b/test/libwebsocket/test_url.rb
index <HASH>..<HASH> 100644
--- a/test/libwebsocket/test_url.rb
+++ b/test/libwebsocket/test_url.rb
@@ -4,6 +4,12 @@ class TestURL < Test::Unit::TestCase
def test_parse
url = LibWebSocket::URL.new
+ assert url.parse('ws://example.co... | Test also URL without trailing slash | imanel_libwebsocket | train | rb |
6f409b3237058e7c71f2e558764dc5b9d928b1e2 | diff --git a/spec/pro_motion/data_table_screen_spec.rb b/spec/pro_motion/data_table_screen_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/pro_motion/data_table_screen_spec.rb
+++ b/spec/pro_motion/data_table_screen_spec.rb
@@ -1,6 +1,5 @@
-include ContributorsModule
-
describe 'DataTableScreen' do
+ extend Contributo... | Specs require an extend, not an include | infinitered_redpotion | train | rb |
790fba9a5f421a5ff532283382b5603763b330cc | diff --git a/packages/react-scripts/scripts/start.js b/packages/react-scripts/scripts/start.js
index <HASH>..<HASH> 100644
--- a/packages/react-scripts/scripts/start.js
+++ b/packages/react-scripts/scripts/start.js
@@ -171,7 +171,6 @@ checkBrowsers(paths.appPath, isInteractive)
devServer.close();
proc... | Skip stdin resuming to support lerna parallel (#<I>) | facebook_create-react-app | train | js |
ef4a59b46ab8636a2e5fef8b1404fbda01a465e4 | diff --git a/spec/phone_spec/app/spec_runner.rb b/spec/phone_spec/app/spec_runner.rb
index <HASH>..<HASH> 100644
--- a/spec/phone_spec/app/spec_runner.rb
+++ b/spec/phone_spec/app/spec_runner.rb
@@ -64,7 +64,9 @@ if !defined?(RHO_WP7) && !(System.get_property('platform') == 'Blackberry' && (S
config[:files] << "sp... | bb: fix phone_spec | rhomobile_rhodes | train | rb |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.