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 |
|---|---|---|---|---|---|
82e984a36ba90333d32219ef723e23a378adbc69 | diff --git a/src/helpers.js b/src/helpers.js
index <HASH>..<HASH> 100644
--- a/src/helpers.js
+++ b/src/helpers.js
@@ -87,6 +87,10 @@ export async function normalizeConfig(givenConfig: ConfigGiven): Promise<Config>
}
}
+ if (!Object.prototype.hasOwnProperty.call(config, 'tryKeyboard')) {
+ config.tryKeybo... | :art: Set tryKeyboard default to false | steelbrain_node-ssh | train | js |
8c931a511b8927b0f9dd5bf813396a1db82172f8 | diff --git a/meleeuploader/forms.py b/meleeuploader/forms.py
index <HASH>..<HASH> 100755
--- a/meleeuploader/forms.py
+++ b/meleeuploader/forms.py
@@ -94,7 +94,7 @@ class MeleeUploader(BaseWidget):
else:
resp = self.question(f"Current Version: {consts.__version__}\nVersion {latest_... | make sure the latest version is grabbed when calling pip | NikhilNarayana_Melee-YouTube-Uploader | train | py |
201fb1910a2f22264816f53fad7617e44d384dfa | diff --git a/py/h2o_import.py b/py/h2o_import.py
index <HASH>..<HASH> 100644
--- a/py/h2o_import.py
+++ b/py/h2o_import.py
@@ -447,9 +447,12 @@ def delete_keys_at_all_nodes(node=None, pattern=None, timeoutSecs=120):
# this will be interesting if the others don't have a complete set
# theoretically, the delete... | only do storeview to nodes[0] when looking to delete keys | h2oai_h2o-2 | train | py |
6a05e94c55d7e06252bd78a49d60645e4f50a599 | diff --git a/src/core/index.js b/src/core/index.js
index <HASH>..<HASH> 100644
--- a/src/core/index.js
+++ b/src/core/index.js
@@ -294,9 +294,7 @@ export function runHook(m, str, ...args) {
}
export function emitEvent(m, str, ...args) {
- try {
- get(m, "emitEventFn")(str, ...args);
- } catch (e) { }
+ setTim... | Delay event emission
Event listener invocations were surrounded in a try/catch block to
prevent errors in them to interfere with Lock behavior. As a consequence
of this, errors didn't show up in the console log. | auth0_lock | train | js |
22a69abf6679391bde3a0d01e43ef57f1d1c0d3e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@ test_requires = [
]
doc_requires = [
- "sphinx-tabs >= 1.1.13",
+ "sphinx-tabs < 2",
"ipython >= 7.6.1"
] | docs: downgrade sphinx-tabs requirement for rtd | UCL-INGI_INGInious | train | py |
38e97284402c07a6b98b15ef9cdc174d29139673 | diff --git a/tests/mocktest.py b/tests/mocktest.py
index <HASH>..<HASH> 100644
--- a/tests/mocktest.py
+++ b/tests/mocktest.py
@@ -19,7 +19,7 @@ if 'mocktest' in sys.modules:
from testcase import TestCase
from testutils import RunTests
-from mock import Mock, sentinel, MakeMock
+from mock import Mock, sentinel,... | Changing the way side_effect is called | testing-cabal_mock | train | py |
2919d35765e3f030d6c3531f4ab0bd726c44498e | diff --git a/aioxmpp/stream.py b/aioxmpp/stream.py
index <HASH>..<HASH> 100644
--- a/aioxmpp/stream.py
+++ b/aioxmpp/stream.py
@@ -2361,7 +2361,7 @@ class StanzaStream:
if response.counter is not None:
self.sm_ack(response.counter)
- self._clear_unacked(StanzaS... | stream: do not set (unused) exception into DISCONNECTED token
The exception is not used by update_futures() and the one which was
set in this specific case is inconsistent with the exception types
used normally for DISCONNECTED state. | horazont_aioxmpp | train | py |
d71e4ccb5c5259f919afe02bbbfd84030dd69f1e | diff --git a/go/libkb/login_session_test.go b/go/libkb/login_session_test.go
index <HASH>..<HASH> 100644
--- a/go/libkb/login_session_test.go
+++ b/go/libkb/login_session_test.go
@@ -7,11 +7,13 @@ import (
"bytes"
"encoding/json"
"fmt"
- "github.com/jonboulle/clockwork"
- jsonw "github.com/keybase/go-jsonw"
+ "io... | Add PostRaw to FakeAPI | keybase_client | train | go |
99c75be0be4d2000739e0709ebf89cc0d08cd16e | diff --git a/javascript/atoms/keyboard.js b/javascript/atoms/keyboard.js
index <HASH>..<HASH> 100644
--- a/javascript/atoms/keyboard.js
+++ b/javascript/atoms/keyboard.js
@@ -39,9 +39,10 @@ goog.require('goog.userAgent');
* A keyboard that provides atomic typing actions.
*
* @constructor
+ * @param {Array.<!bot.K... | SimonStewart: Allow the state of the keyboard to be persisted and reused if necessary in the atoms
r<I> | SeleniumHQ_selenium | train | js |
1dfa12d3f74adc5f00b524bb62f7f0f09b8d65cc | diff --git a/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/ClassFileLocator.java b/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/ClassFileLocator.java
index <HASH>..<HASH> 100644
--- a/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/ClassFileLocator.java
+++ b/byte-buddy-dep/src/main/java/net/bytebuddy/dyn... | Removed another module-based class file lookup. | raphw_byte-buddy | train | java |
bc1a5828cbcfdffb634323281efe7770f5827906 | diff --git a/datastore-mongodb/src/main/java/org/opencb/datastore/mongodb/MongoDataStoreManager.java b/datastore-mongodb/src/main/java/org/opencb/datastore/mongodb/MongoDataStoreManager.java
index <HASH>..<HASH> 100644
--- a/datastore-mongodb/src/main/java/org/opencb/datastore/mongodb/MongoDataStoreManager.java
+++ b/d... | mongodb: now auth credentials are read | opencb_datastore | train | java |
b8b1daf35e6686615632a602dc0d8c30adff776c | diff --git a/doc/source/conf.py b/doc/source/conf.py
index <HASH>..<HASH> 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -58,7 +58,7 @@ sys.meta_path.insert(0, foo())
sys.path.insert(0, os.path.abspath('../..'))
# Check Sphinx version
-needs_sphinx = '1.3.5+'
+#needs_sphinx = '1.3.5'
# If extensions... | removed sphinx req | markovmodel_msmtools | train | py |
46cec28f41612fe6cfce714a42e264f90bcead3c | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ def check_setuptools():
check_setuptools()
setup(name='instana',
- version='1.6.0',
+ version='1.7.0',
download_url='https://github.com/instana/python-sensor',
url='https://www.instan... | Bump package version to <I> | instana_python-sensor | train | py |
708c38b0895eaab7fc19c9cde495d884094df5bd | diff --git a/frontend/app/map/lines/lines.js b/frontend/app/map/lines/lines.js
index <HASH>..<HASH> 100644
--- a/frontend/app/map/lines/lines.js
+++ b/frontend/app/map/lines/lines.js
@@ -24,7 +24,7 @@
var linesUi = {
_addLine: function(line) {
var trackPoints = [ ];
- var p = (editingLineId == line.i... | "Add line" was broken after last commits | FacilMap_facilmap2 | train | js |
5f5c3307e3624a9490b662b8a69573385842e4a1 | diff --git a/scripts/pkg/upload/china.js b/scripts/pkg/upload/china.js
index <HASH>..<HASH> 100755
--- a/scripts/pkg/upload/china.js
+++ b/scripts/pkg/upload/china.js
@@ -51,7 +51,7 @@ module.exports = async versionTag => {
...bucketConf,
})
.then(() => {
- process.stdout.write(chalk.green... | refactor(Standalone): Improve upload confirmation logs | serverless_serverless | train | js |
b02a451977c719bdaf26b0ef5d6594bb12c14ca3 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -442,7 +442,7 @@ devel = [
'black',
'blinker',
'bowler',
- 'click==6.7',
+ 'click~=7.1',
'contextdecorator;python_version<"3.4"',
'coverage',
'docutils', | Update "click" to 7.x (#<I>)
The only breaking change in click between 6 and 7 is automatic naming of
commands from functions with underscores in their name, but this doesn't
apply to us
<URL> | apache_airflow | train | py |
bb896ed1723ca01ed18d1110eb51ca1661135db6 | diff --git a/rapport/plugins/launchpad.py b/rapport/plugins/launchpad.py
index <HASH>..<HASH> 100644
--- a/rapport/plugins/launchpad.py
+++ b/rapport/plugins/launchpad.py
@@ -18,6 +18,9 @@
Launchpad plugin.
"""
+import warnings
+
+warnings.filterwarnings('ignore', 'Module argparse was already imported') # Filter ... | Add filter for "argparse" warning | saschpe_rapport | train | py |
ac857f4edbb3144594f464d3d1f4696227097457 | diff --git a/pymatgen/io/vasp/sets.py b/pymatgen/io/vasp/sets.py
index <HASH>..<HASH> 100644
--- a/pymatgen/io/vasp/sets.py
+++ b/pymatgen/io/vasp/sets.py
@@ -1247,7 +1247,7 @@ class MPHSEBSSet(MPHSERelaxSet):
self.added_kpoints = added_kpoints if added_kpoints is not None else []
self.mode = mode
-... | Bug fix, typo in user_kpoints_setting | materialsproject_pymatgen | train | py |
39d6a3464c6380bb830e455496006b95a871632e | diff --git a/opal/clearwater/virtual_dom.rb b/opal/clearwater/virtual_dom.rb
index <HASH>..<HASH> 100644
--- a/opal/clearwater/virtual_dom.rb
+++ b/opal/clearwater/virtual_dom.rb
@@ -54,7 +54,11 @@ module VirtualDOM
module StringUtils
def self.camelize string
- string.gsub(/_(\w)/) { |match| match.gsub(/... | Inline StringUtils.camlize to JS
The String#gsub method gets wrapped in a try/catch block by Opal, which
the VM can't optimize. Using the direct JS version also removes a lot of
the flexibility of the gsub method that we don't need, which is good
since it comes with a performance penalty, as well. | clearwater-rb_clearwater | train | rb |
1697e86f5f6c3ad58b1ddb3db7138d225d6a22c4 | diff --git a/test/unit/util_task-queue.js b/test/unit/util_task-queue.js
index <HASH>..<HASH> 100644
--- a/test/unit/util_task-queue.js
+++ b/test/unit/util_task-queue.js
@@ -1,4 +1,4 @@
-const test = require('tap').test;
+const test = require('tap').skip;
const Timer = require('../../src/util/timer');
const TaskQu... | Skip task queue tests
They are flaky. Pending resolution of #<I>, skip them. | LLK_scratch-vm | train | js |
de87f93c1b050db59ffbeff3aed4ac3b3eb57da3 | diff --git a/lib/LibManifestPlugin.js b/lib/LibManifestPlugin.js
index <HASH>..<HASH> 100644
--- a/lib/LibManifestPlugin.js
+++ b/lib/LibManifestPlugin.js
@@ -46,7 +46,7 @@ class LibManifestPlugin {
return obj;
}, {})
};
- const content = new Buffer(JSON.stringify(manifest, null, 2), "utf8"); //esl... | Disable manifest.json pretty print | webpack_webpack | train | js |
b591cbb84db51b90530ce8b4ca1f74dec95fb16a | diff --git a/pythonforandroid/recipes/hostpython2/__init__.py b/pythonforandroid/recipes/hostpython2/__init__.py
index <HASH>..<HASH> 100644
--- a/pythonforandroid/recipes/hostpython2/__init__.py
+++ b/pythonforandroid/recipes/hostpython2/__init__.py
@@ -2,6 +2,7 @@
from pythonforandroid.toolchain import Recipe, shpri... | - remove LIBS from environment to prevent user setting breaking linking | kivy_python-for-android | train | py |
fc2a5d1106bb860307d608c9d13b9fd8cdfae788 | diff --git a/mergo_test.go b/mergo_test.go
index <HASH>..<HASH> 100644
--- a/mergo_test.go
+++ b/mergo_test.go
@@ -746,11 +746,11 @@ func TestMergeMapWithInnerSliceOfDifferentType(t *testing.T) {
}
}
-func TestMergeSliceDifferentType(t *testing.T) {
+func TestMergeSlicesIsNotSupported(t *testing.T) {
src := []st... | Fix and rename un-appropriate test, as merging directly 2 slices is not supported.
Now this "feature" is explicit demonstrated in this test. | imdario_mergo | train | go |
c30a941e36b8996c9679529c99391430b585da50 | diff --git a/generators/client-2/templates/gulp/_copy.js b/generators/client-2/templates/gulp/_copy.js
index <HASH>..<HASH> 100644
--- a/generators/client-2/templates/gulp/_copy.js
+++ b/generators/client-2/templates/gulp/_copy.js
@@ -107,6 +107,7 @@ function deps(){
'node_modules/reflect-metadata/Reflect.js',... | feat(ng2): added gulp to move ng-bootstrap files | jhipster_generator-jhipster | train | js |
cebfb9ec9fe068dc8ce03d7dcee90b61169ff9ad | diff --git a/backup/moodle2/restore_final_task.class.php b/backup/moodle2/restore_final_task.class.php
index <HASH>..<HASH> 100644
--- a/backup/moodle2/restore_final_task.class.php
+++ b/backup/moodle2/restore_final_task.class.php
@@ -162,7 +162,12 @@ class restore_final_task extends restore_task {
// rules fr... | MDL-<I> calendar: Add support for restoring calendar log rules | moodle_moodle | train | php |
7d93b5bdc57a415daf91184f8103c581e9e73833 | diff --git a/test/extended/operators/tolerations.go b/test/extended/operators/tolerations.go
index <HASH>..<HASH> 100644
--- a/test/extended/operators/tolerations.go
+++ b/test/extended/operators/tolerations.go
@@ -31,7 +31,7 @@ var _ = Describe("[Feature:Platform][Smoke] Managed cluster should", func() {
namespaceP... | tests: exclude ovnkube-master from toleration test
ovnkube-master should tolerate NotReady forever. | openshift_origin | train | go |
631cfbd1ef2374f5a01f5d17ed8c8f08779ad6fe | diff --git a/context.go b/context.go
index <HASH>..<HASH> 100644
--- a/context.go
+++ b/context.go
@@ -159,16 +159,15 @@ func (c *Context) Error(err error) *Error {
if err == nil {
panic("err is nil")
}
- var parsedError *Error
- switch err.(type) {
- case *Error:
- parsedError = err.(*Error)
- default:
+
+ par... | Simplify context error (#<I>)
Hello!
Looking through context package and found a little bit complicated switch block. And tried to make it easier.
Thanks! | gin-gonic_gin | train | go,go |
0b5d767753cb86bb69b155b58789e3f08c6ce736 | diff --git a/lib/collection/url.js b/lib/collection/url.js
index <HASH>..<HASH> 100644
--- a/lib/collection/url.js
+++ b/lib/collection/url.js
@@ -167,7 +167,7 @@ _.extend(Url.prototype, /** @lends Url.prototype */ {
rawUrl = rawUrl + this.getPath();
}
- if (this.query.count()) {
+ ... | ensure that we do not throw on url stringification | postmanlabs_postman-collection | train | js |
6a030eac7a056c44dcb7372e84358c1eb215f93b | diff --git a/spec/models/version_spec.rb b/spec/models/version_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/models/version_spec.rb
+++ b/spec/models/version_spec.rb
@@ -24,12 +24,14 @@ module PaperTrail
it "creates a version with custom changes" do
adapter = instance_spy("CustomObjectChangesAdapte... | Tests: Fix overly-specific YAML test
We don't care exactly how the YAML is serialized, as long as it parses
into the same thing.
On my machine, for example, ruby <I> writes a nil in YAML with trailing
whitespace, and ruby <I> does not. But, trailing whitespace doesn't matter
in this case. It still deserializes into a... | paper-trail-gem_paper_trail | train | rb |
4ebe99396590efe0d250da0247825ab8308e9077 | diff --git a/fasthttputil/pipeconns.go b/fasthttputil/pipeconns.go
index <HASH>..<HASH> 100644
--- a/fasthttputil/pipeconns.go
+++ b/fasthttputil/pipeconns.go
@@ -9,6 +9,8 @@ import (
)
// NewPipeConns returns new bi-directional connection pipe.
+//
+// PipeConns is NOT safe for concurrent use by multiple goroutine... | Document PipeConns not being safe for concurrent use | valyala_fasthttp | train | go |
632403cd5a0eb815e2035910d011aedf569016f2 | diff --git a/src/Exscriptd/Order.py b/src/Exscriptd/Order.py
index <HASH>..<HASH> 100644
--- a/src/Exscriptd/Order.py
+++ b/src/Exscriptd/Order.py
@@ -52,7 +52,7 @@ class Order(Base):
file = NamedTemporaryFile(dir = dirname, prefix = '.') #delete = False)
file.write(self.toxml())
file.flu... | exscriptd client: fix: broken order permissions. | knipknap_exscript | train | py |
2c53a5d1d19e03f8088bca15036586f30d91b041 | diff --git a/src/cli/templates/init/botfile.js b/src/cli/templates/init/botfile.js
index <HASH>..<HASH> 100644
--- a/src/cli/templates/init/botfile.js
+++ b/src/cli/templates/init/botfile.js
@@ -39,6 +39,7 @@ module.exports = {
port: process.env.PG_PORT || 5432,
user: process.env.PG_USER || '',
password:... | Added support for Postgres SSL connections. | botpress_botpress | train | js,js |
e81df2d19ddc4066648b4b2dfc72431c6824f96f | diff --git a/pymc3/distributions/continuous.py b/pymc3/distributions/continuous.py
index <HASH>..<HASH> 100644
--- a/pymc3/distributions/continuous.py
+++ b/pymc3/distributions/continuous.py
@@ -2856,8 +2856,7 @@ class Weibull(PositiveContinuous):
self.beta = beta = tt.as_tensor_variable(floatX(beta))
... | Fixed Weibull variance (#<I>) | pymc-devs_pymc | train | py |
cf8c527d9348eef2ae6080d0fa28587ffecdb677 | diff --git a/src/Illuminate/Foundation/Http/Kernel.php b/src/Illuminate/Foundation/Http/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Foundation/Http/Kernel.php
+++ b/src/Illuminate/Foundation/Http/Kernel.php
@@ -135,9 +135,15 @@ class Kernel implements KernelContract
*/
public function termina... | Fix execution of terminable middleware in combination with WithoutMiddleware
If a test uses the WithoutMiddleware trait, all middleware (including terminable
middleware) should be skipped over. | laravel_framework | train | php |
4094b5bc61c8eb4773f45f1b4d106e0bfb665ff7 | diff --git a/xmlimplsrc/org/mozilla/javascript/xmlimpl/XMLList.java b/xmlimplsrc/org/mozilla/javascript/xmlimpl/XMLList.java
index <HASH>..<HASH> 100644
--- a/xmlimplsrc/org/mozilla/javascript/xmlimpl/XMLList.java
+++ b/xmlimplsrc/org/mozilla/javascript/xmlimpl/XMLList.java
@@ -250,6 +250,9 @@ class XMLList extends XML... | Fix Bug <I> - Setting the value of an uninitialized child of an E4X object by using square bracket syntax causes Null Pointer Exception | mozilla_rhino | train | java |
c2173a362ab9e5ee0cf52c20f6def6e8449c5e5a | diff --git a/pgcontents/schema.py b/pgcontents/schema.py
index <HASH>..<HASH> 100644
--- a/pgcontents/schema.py
+++ b/pgcontents/schema.py
@@ -476,26 +476,6 @@ def _dir_exists(db, user_id, db_dirname):
).scalar() != 0
-def _directory_contents(db, table, fields, user_id, db_dirname):
- """
- Return names ... | MAINT: Remove unused function. | quantopian_pgcontents | train | py |
109a3d6e6d5a1352aefec515ea35ca83982af370 | diff --git a/category_encoders/tests/test_basen.py b/category_encoders/tests/test_basen.py
index <HASH>..<HASH> 100644
--- a/category_encoders/tests/test_basen.py
+++ b/category_encoders/tests/test_basen.py
@@ -115,9 +115,9 @@ class TestBaseNEncoder(TestCase):
with warnings.catch_warnings(record=True) as w:
... | Make test reflect what's in master | scikit-learn-contrib_categorical-encoding | train | py |
55e6b8b5ba8630054d81efedb2e728d4a8ea9e6b | diff --git a/timber.php b/timber.php
index <HASH>..<HASH> 100644
--- a/timber.php
+++ b/timber.php
@@ -378,8 +378,7 @@ class Timber {
});
add_action('wp_loaded', function ($template) use ( $template, $query ) {
if ($query) {
- global $wp_query;
- $wp_query = ... | Use query_posts instead of manually modifying the global (result is exactly the same) | timber_timber | train | php |
aa6140283c99bd3441227c9a3bfd21edf25c7b8b | diff --git a/pyeda/expr.py b/pyeda/expr.py
index <HASH>..<HASH> 100644
--- a/pyeda/expr.py
+++ b/pyeda/expr.py
@@ -960,10 +960,9 @@ class ExprOrAnd(Expression, sat.DPLLInterface):
if self.depth == 1:
return self
- temps, terms = set(self.args), list()
+ terms = list()
indi... | Simplify Expression.reduce method | cjdrake_pyeda | train | py |
2a00d7015f6ddfa62e46f334502d631971faf31a | diff --git a/sprd/manager/ProductManager.js b/sprd/manager/ProductManager.js
index <HASH>..<HASH> 100644
--- a/sprd/manager/ProductManager.js
+++ b/sprd/manager/ProductManager.js
@@ -143,17 +143,6 @@ define(["sprd/manager/IProductManager", "underscore", "flow", "sprd/util/Product
return initialPrintTyp... | DEV-<I> - Designs become very small after productType change | spreadshirt_rAppid.js-sprd | train | js |
a145378848ceb6477b5e9b033800a44446259edd | diff --git a/select2.js b/select2.js
index <HASH>..<HASH> 100644
--- a/select2.js
+++ b/select2.js
@@ -2023,7 +2023,7 @@
// multi
onSelect: function (data) {
this.addSelectedChoice(data);
- if (this.select) { this.postprocessResults(); }
+ if (this.select || !this.op... | postprocess results always if closeOnSelect is false. fixes #<I> | select2_select2 | train | js |
636b76f6a727f98c70bf1383b847553430c3e4f7 | diff --git a/bigfloat/examples/contfrac.py b/bigfloat/examples/contfrac.py
index <HASH>..<HASH> 100755
--- a/bigfloat/examples/contfrac.py
+++ b/bigfloat/examples/contfrac.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.6
+from __future__ import with_statement
"""
The documentation for mpfr_get_str, for converting a pre... | Make sure to import with_statement in examples. | mdickinson_bigfloat | train | py |
d5519fc53a03e371467586fc95e0fb0559fbcb7d | diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/Call/FunctionCallAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Expression/Call/FunctionCallAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/Call/FunctionCallAnalyzer.php
+++ b/src/Psalm/Internal/Analyz... | Use $stmt->args directly instead of creating new VariadicPlaceholder | vimeo_psalm | train | php |
854c6d9e844f572f33745ebce071a4224d4e3f54 | diff --git a/paegan/transport/parallel_manager.py b/paegan/transport/parallel_manager.py
index <HASH>..<HASH> 100644
--- a/paegan/transport/parallel_manager.py
+++ b/paegan/transport/parallel_manager.py
@@ -575,16 +575,18 @@ class ForceParticle(object):
timer.sleep(4)
... | Avoid another data cache lookup if we don't need it | asascience-open_paegan-transport | train | py |
6d9d6beaddba991204a99eaae4c1b68027aba55d | diff --git a/src/update.js b/src/update.js
index <HASH>..<HASH> 100644
--- a/src/update.js
+++ b/src/update.js
@@ -1,5 +1,15 @@
// @flow
+function createInputEvent(): Event {
+ if (typeof Event !== "undefined") {
+ return new Event("input", { bubbles: true, cancelable: true });
+ } else {
+ const event = doc... | Dispatch input event on Firefox and IE | yuku_undate | train | js |
8f4e8127a5c0e6dda705fdaa8fbefbcf2c604c76 | diff --git a/src/Picqer/Financials/Exact/Model.php b/src/Picqer/Financials/Exact/Model.php
index <HASH>..<HASH> 100644
--- a/src/Picqer/Financials/Exact/Model.php
+++ b/src/Picqer/Financials/Exact/Model.php
@@ -124,6 +124,10 @@ abstract class Model implements \JsonSerializable
}
}
+ public function _... | Added the __call method
Twig wouldn't use the correct functions, it tried to call the $Name() function. | picqer_exact-php-client | train | php |
aa98ed6bb8900e9d84ae4650a11da682498692ec | diff --git a/packages/react/src/components/NumberInput/NumberInput.js b/packages/react/src/components/NumberInput/NumberInput.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/NumberInput/NumberInput.js
+++ b/packages/react/src/components/NumberInput/NumberInput.js
@@ -301,17 +301,17 @@ class NumberInp... | fix(number-input): update how errorId is applied for aria-labelledby (#<I>) | carbon-design-system_carbon-components | train | js |
22d43956e8e3d0ae981af0c0326c929ed8852a8d | diff --git a/src/poppy_inverse_kinematics/robot_utils.py b/src/poppy_inverse_kinematics/robot_utils.py
index <HASH>..<HASH> 100644
--- a/src/poppy_inverse_kinematics/robot_utils.py
+++ b/src/poppy_inverse_kinematics/robot_utils.py
@@ -176,7 +176,7 @@ def convert_angle_from_pypot(angle, joint, **kwargs):
if joint["... | Angle conversion from pypot fix | Phylliade_ikpy | train | py |
faf3385b7e9cab5a76553e2165226c90a8250525 | diff --git a/lib/time-window.js b/lib/time-window.js
index <HASH>..<HASH> 100644
--- a/lib/time-window.js
+++ b/lib/time-window.js
@@ -40,20 +40,16 @@ util.inherits(TimeWindow, Window);
// Writes the specified `data` to this window.
//
TimeWindow.prototype.write = function (data) {
- var now = data.time ? new Date(... | [fix] Properly remove events in a fixed TimeWindow. | indexzero_window-stream | train | js |
141a8e9464ee4ce5fa73837d579489a98ca3da13 | diff --git a/modules/_task.js b/modules/_task.js
index <HASH>..<HASH> 100644
--- a/modules/_task.js
+++ b/modules/_task.js
@@ -7,6 +7,7 @@ var ctx = require('./_ctx')
, setTask = global.setImmediate
, clearTask = global.clearImmediate
, MessageChannel = global.MessageChan... | Add support for the Sphere Dispatch API
Sphere is a JavaScript game engine without any of the async harnesses
normally supported by browsers such as setTimeout(), etc. It instead
has a unified Dispatch API serving this purpose. This patch allows the
core-js Promise polyfill to work with this API. | zloirock_core-js | train | js |
c6c26650e6ad70408fd9819a5a8c7ebc0597cabc | diff --git a/lib/event/index.js b/lib/event/index.js
index <HASH>..<HASH> 100644
--- a/lib/event/index.js
+++ b/lib/event/index.js
@@ -17,5 +17,3 @@ define( Event.prototype, '$postpone', {
}
})
-//this is added for logging wil later be moved to dev/event as an injectable
-require('./toString.js') | removed toString from event by default (only for logging) #4 | vigour-io_vjs | train | js |
db973a47e7e46cc42a430ceac4d4db1a629bd38f | diff --git a/lib/Server/ReadStream.js b/lib/Server/ReadStream.js
index <HASH>..<HASH> 100644
--- a/lib/Server/ReadStream.js
+++ b/lib/Server/ReadStream.js
@@ -87,7 +87,7 @@ ReadStream.prototype._transform = function (chunk, encoding, next) {
pkg.from = data.readUInt16BE(0);
pkg.to = data.readUInt16BE(2)... | fixes WRITE_MULTIPLE_REGISTERS (related to d7c<I>e) | dresende_node-modbus-tcp | train | js |
93acab8d16ad08f12bdb5bf8653f6da61273ed18 | diff --git a/lib/reading_view.js b/lib/reading_view.js
index <HASH>..<HASH> 100644
--- a/lib/reading_view.js
+++ b/lib/reading_view.js
@@ -10,6 +10,14 @@ var jsdom = require('jsdom'),
exports.convert = function (url, params, cb) {
const self = this;
+ if(is.not.assigned(params) || is.emptyObject(params... | Added non customizable generator if reading view is empty | Artie18_reading_view | train | js |
1bccf528c38b91d302d3ce98c44110efb9f6e973 | diff --git a/spec/metrics/backends/librato_spec.rb b/spec/metrics/backends/librato_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/metrics/backends/librato_spec.rb
+++ b/spec/metrics/backends/librato_spec.rb
@@ -26,4 +26,27 @@ describe Pliny::Metrics::Backends::Librato do
backend.report_counts('pliny.foo' => 1, '... | Add tests for reporting measures to librato | interagent_pliny | train | rb |
8967976443f6eb13f037e031b015b1764006033c | diff --git a/src/_pytest/junitxml.py b/src/_pytest/junitxml.py
index <HASH>..<HASH> 100644
--- a/src/_pytest/junitxml.py
+++ b/src/_pytest/junitxml.py
@@ -311,7 +311,7 @@ def record_xml_attribute(request):
attr_func = add_attr_noop
xml = getattr(request.config, "_xml", None)
- if xml.family != "xunit1":
... | Ensure xml object is viable before testing family type | pytest-dev_pytest | train | py |
7d8cb015b9d087a54681684165663a8bf6b7cd53 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -26,11 +26,12 @@ packages = find_packages('src')
namespace_packages = []
for package in packages:
init = os.path.join('src', package.replace('.', '/'), '__init__.py')
- for line in open(init).readlines():
- if... | Ensure file handles in setup.py are closed | jim-easterbrook_pyctools | train | py |
6289b682478068d7a627b6c28b3d8e836822803c | diff --git a/tlsutil/config.go b/tlsutil/config.go
index <HASH>..<HASH> 100644
--- a/tlsutil/config.go
+++ b/tlsutil/config.go
@@ -168,16 +168,20 @@ type manual struct {
cert *tls.Certificate
}
-// Configurator holds a Config and is responsible for generating all the
-// *tls.Config necessary for Consul. Except ... | tlsutil: document Configurator and some of its fields | hashicorp_consul | train | go |
710dfda67775a233e6ddd5e0f092afb9bdd47935 | diff --git a/token.go b/token.go
index <HASH>..<HASH> 100644
--- a/token.go
+++ b/token.go
@@ -18,6 +18,26 @@ type bucketToken struct {
VbUuid string `json:"vbuuid"`
}
+// BucketName returns the name of the bucket that this token belongs to.
+func (mt MutationToken) BucketName() string {
+ return mt.bucketName
+}
... | GOCBC-<I>: Expose functions on MutationToken
Motivation
----------
For consistency with other SDKs the MutationToken should expose
its fields via functions.
Changes
-------
Add functions to MutationToken.
Change-Id: I3d7d<I>ee<I>f9d<I>ff<I>a1c<I>efe9
Reviewed-on: <URL> | couchbase_gocb | train | go |
03c502cfa7c1d82dd8cfc314a3c70f2840593a58 | diff --git a/src/Signature/EncodesUrl.php b/src/Signature/EncodesUrl.php
index <HASH>..<HASH> 100644
--- a/src/Signature/EncodesUrl.php
+++ b/src/Signature/EncodesUrl.php
@@ -4,6 +4,7 @@ namespace League\OAuth1\Client\Signature;
use GuzzleHttp\Psr7;
use GuzzleHttp\Psr7\Uri;
+use function GuzzleHttp\Psr7\uri_for;
u... | Remove deprecated Guzzle function call.
The `GuzzleHttp\Psr7\uri_for` function is deprecated and removed in Guzzle <I>. Where available `GuzzleHttp\Psr7\Utils::uriFor` is used instead.
Given we support Guzzle 6 and 7, both the method and function call are required to be supported.
Fixes #<I>. | thephpleague_oauth1-client | train | php |
72890f0d83e15a67e81be104b0ec4f10a6dab4f3 | diff --git a/.eslintrc.js b/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -227,7 +227,6 @@ module.exports = {
"prefer-const": "error",
"prefer-destructuring": "off",
"prefer-numeric-literals": "error",
- "prefer-object-spread": "error",
"pre... | Remove prefer-object-spread | brightcove_hot-shots | train | js,js |
24d86e9fb0c37651831840dfeb822ac53ee0eab6 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ requires = [
setup(
name='crabpy',
- version='0.3.0',
+ version='0.3.1',
description='Interact with AGIV webservices.',
long_description=open('README.rst').read() + '\n\n' +
... | Bump master to <I>. | OnroerendErfgoed_crabpy | train | py |
782a10afb49dcf5465be6952101f5eb483127246 | diff --git a/Controller/ContentTypeController.php b/Controller/ContentTypeController.php
index <HASH>..<HASH> 100644
--- a/Controller/ContentTypeController.php
+++ b/Controller/ContentTypeController.php
@@ -104,7 +104,7 @@ class ContentTypeController extends Controller
return $response;
}
... | EZP-<I>: Fixed route name for redirection | ezsystems_PlatformUIBundle | train | php |
0c6bfba88fc04fc2611f16e08cd0db29b837da50 | diff --git a/tests/unit/admin/orderoverviewTest.php b/tests/unit/admin/orderoverviewTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/admin/orderoverviewTest.php
+++ b/tests/unit/admin/orderoverviewTest.php
@@ -104,6 +104,7 @@ class Unit_Admin_OrderOverviewTest extends OxidTestCase
$this->assertEquals( "te... | ESDEV-<I> Remove support for: DTAUS | OXID-eSales_oxideshop_ce | train | php |
64a929341d2cd903a0ad724a4227fcebc62842f0 | diff --git a/src/main/java/net/jodah/expiringmap/ExpiringMap.java b/src/main/java/net/jodah/expiringmap/ExpiringMap.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/jodah/expiringmap/ExpiringMap.java
+++ b/src/main/java/net/jodah/expiringmap/ExpiringMap.java
@@ -677,6 +677,28 @@ public class ExpiringMap<K, V> i... | Add method to know actual expiration time.
Closes #8. | jhalterman_expiringmap | train | java |
535136bde7b3d087a1e25d18561f516f37a63d57 | diff --git a/mod/forum/index.php b/mod/forum/index.php
index <HASH>..<HASH> 100644
--- a/mod/forum/index.php
+++ b/mod/forum/index.php
@@ -16,7 +16,7 @@
}
}
- require_course_login($course->id);
+ require_course_login($course);
$currentgroup = get_current_group($course->id);
diff --git a/m... | Correct calls to require_course_login | moodle_moodle | train | php,php |
e3277e948c0b8518cdf8709bac8d3a8747928fbb | diff --git a/src/Helper.php b/src/Helper.php
index <HASH>..<HASH> 100644
--- a/src/Helper.php
+++ b/src/Helper.php
@@ -144,11 +144,17 @@ class Helper
*/
public static function calculateTaxClass($amountInclTax, $taxAmount)
{
+
$taxClasses = array(
0 => 'N',
6 => 'L',
... | Fixed divide by zero error
Fixed divide by zero error in the calculateTaxClass helper.
When adding a product with a price of 0 an error occurred | paynl_sdk | train | php |
6346e44c9d83d83ac26a88178b9dba0d2157411a | diff --git a/moto/route53/models.py b/moto/route53/models.py
index <HASH>..<HASH> 100644
--- a/moto/route53/models.py
+++ b/moto/route53/models.py
@@ -277,7 +277,7 @@ class Route53Backend(BaseBackend):
return self.zones.values()
def get_hosted_zone(self, id_):
- return self.zones.get(id_)
+ ... | Be flexible with Route<I> Hosted Zone IDs with /hostedzone/ prefix
We will continue to store just the unique ID, but since the AWS API
returns /hostedzone/<id>, we should accept attempts to pass that back.
For example, both just the ID as well as /hostedzone/<id> work for
specifying the HostedZoneId of a ResourceRecor... | spulec_moto | train | py |
c04b9de165384a17b35322aa28d342d59c22f554 | diff --git a/__test__/hertzy.js b/__test__/hertzy.js
index <HASH>..<HASH> 100644
--- a/__test__/hertzy.js
+++ b/__test__/hertzy.js
@@ -57,4 +57,24 @@ describe('When access to WARNING property', function () {
Hertzy.WARNING = false
})
+})
+
+describe('When call tune method with no name (valid string)... | Added unit tests for tune method
See: <URL> | NickNaso_hertzy | train | js |
08756d07755ad60c6fa6e4fdd3bc8e7a6aefa382 | diff --git a/lib/stoplight/light/runnable.rb b/lib/stoplight/light/runnable.rb
index <HASH>..<HASH> 100644
--- a/lib/stoplight/light/runnable.rb
+++ b/lib/stoplight/light/runnable.rb
@@ -57,7 +57,7 @@ module Stoplight
end
def not_blacklisted_error?(error)
- blacklisted_errors.length > 0 &&
+ ... | Use length predicate instead of comparing length | orgsync_stoplight | train | rb |
01496819e34c9848e370b5f3f61d28790eb82381 | diff --git a/src/gcal/gcal.js b/src/gcal/gcal.js
index <HASH>..<HASH> 100644
--- a/src/gcal/gcal.js
+++ b/src/gcal/gcal.js
@@ -29,7 +29,7 @@ fc.sourceNormalizers.push(function(sourceOptions) {
// detect if the ID was specified as a single string.
// will match calendars like "asdf1234@calendar.google.com" in ad... | fix regex test in gcal plugin | fullcalendar_fullcalendar | train | js |
20f77864537338d7ffba21855fea9fdade8eb354 | diff --git a/tests/test_tokenization_fast.py b/tests/test_tokenization_fast.py
index <HASH>..<HASH> 100644
--- a/tests/test_tokenization_fast.py
+++ b/tests/test_tokenization_fast.py
@@ -14,7 +14,7 @@ from transformers import (
RobertaTokenizer,
is_torch_available,
)
-from transformers.testing_utils import g... | Fix style (#<I>) | huggingface_pytorch-pretrained-BERT | train | py |
81eee059950d6a154327e3b15912a84d4b93e178 | diff --git a/dvc/commands/experiments/push.py b/dvc/commands/experiments/push.py
index <HASH>..<HASH> 100644
--- a/dvc/commands/experiments/push.py
+++ b/dvc/commands/experiments/push.py
@@ -43,7 +43,7 @@ class CmdExperimentsPush(CmdBase):
f"to Git remote '{self.args.git_remote}'."
)
... | UI problem in `dvc exp push` | iterative_dvc | train | py |
7b101e945f43f95efee26eaab4ff30230cf83faa | diff --git a/MerchiumClient.php b/MerchiumClient.php
index <HASH>..<HASH> 100644
--- a/MerchiumClient.php
+++ b/MerchiumClient.php
@@ -2,7 +2,7 @@
class MerchiumClient
{
- const LIB_VERSION = '0.9.6';
+ const LIB_VERSION = '0.9.7';
public $shop_domain;
@@ -88,7 +88,7 @@ class MerchiumClient
... | [!] MerchiumClient: GET params were generated incorrectly. Fixed. | merchium_merchium-php-sdk | train | php |
8b85b0b7f328c514d357466dea93dbb344b539ca | diff --git a/web/concrete/tools/get_remote_help.php b/web/concrete/tools/get_remote_help.php
index <HASH>..<HASH> 100644
--- a/web/concrete/tools/get_remote_help.php
+++ b/web/concrete/tools/get_remote_help.php
@@ -1,5 +1,7 @@
<?
defined('C5_EXECUTE') or die("Access Denied.");
+session_write_close();
+
if ($_REQUEST... | improving performance of intelligent search
Former-commit-id: 2f8b<I>d<I>c<I>cff9c<I>db7b<I>cbf | concrete5_concrete5 | train | php,php |
1a4ab63f55b0af7305361396a520058e3779203d | diff --git a/lib/mocha.js b/lib/mocha.js
index <HASH>..<HASH> 100644
--- a/lib/mocha.js
+++ b/lib/mocha.js
@@ -114,6 +114,10 @@ Mocha.prototype.reporter = function(reporter){
var _reporter;
try { _reporter = require('./reporters/' + reporter); } catch (err) {};
if (!_reporter) try { _repoter = require(re... | console.warn the name and url of the teamcity reporter (#<I>) | mochajs_mocha | train | js |
d7168d5a6aa0835d79a5b39a6244e03f4d34ebf9 | diff --git a/src/Lob/Resource.php b/src/Lob/Resource.php
index <HASH>..<HASH> 100644
--- a/src/Lob/Resource.php
+++ b/src/Lob/Resource.php
@@ -114,6 +114,9 @@ abstract class Resource implements ResourceInterface
if ($statusCode === 500)
throw new InternalErrorException($errorMessage, 500);... | Added handler for address verify returning <I> on bad address | lob_lob-php | train | php |
795d4ee63249425baf29f504bff9c0cc642911c5 | diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index <HASH>..<HASH> 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -73,7 +73,7 @@ gulp.task('watch', ['build'], () => {
});
gulp.task('publish', done => {
- shellExec('npm publish', done);
+ shellExec('npm publish', false, done);
});
gulp.task... | Allow npm publish to log to stdout | jiahaog_nativefier | train | js |
8a7fd251454026baf3cf7a0a1aa0300a0f3772bc | diff --git a/pycanvas/assignment.py b/pycanvas/assignment.py
index <HASH>..<HASH> 100644
--- a/pycanvas/assignment.py
+++ b/pycanvas/assignment.py
@@ -4,7 +4,7 @@ from util import combine_kwargs
class Assignment(CanvasObject):
- def __str__(self): # pragma: no cover
+ def __str__(self):
return "{} ... | Remove no-cover from __str__ method | ucfopen_canvasapi | train | py |
528625adb2581d2fcaf2d943b29a5b5c78b4a0a3 | diff --git a/upload/admin/model/report/product.php b/upload/admin/model/report/product.php
index <HASH>..<HASH> 100644
--- a/upload/admin/model/report/product.php
+++ b/upload/admin/model/report/product.php
@@ -37,7 +37,7 @@ class ModelReportProduct extends Model {
}
public function getPurchased($data = array()) ... | Calculation error
Right now, the total purchased is calculated by multiplying the
(total + tax) * the quantity
it should be
(price of the product + tax) * the quantity | opencart_opencart | train | php |
d31de9f7c5f9d3d212d887dd6bfd1b3d9cc04a7f | diff --git a/packages/origin.js/src/contract-service.js b/packages/origin.js/src/contract-service.js
index <HASH>..<HASH> 100644
--- a/packages/origin.js/src/contract-service.js
+++ b/packages/origin.js/src/contract-service.js
@@ -45,7 +45,7 @@ class ContractService {
}
// Returns the first account listed
- as... | Remove now unneeded lines.
These are now handled by helpers. | OriginProtocol_origin-js | train | js |
ae631dfe1aa4b422aed46fbbbdb795e06f77895c | diff --git a/glue/segments.py b/glue/segments.py
index <HASH>..<HASH> 100644
--- a/glue/segments.py
+++ b/glue/segments.py
@@ -57,15 +57,11 @@ class infinity:
return self
def __sub__(self, other):
- if type(self) != type(other):
- return self
- if self.__sign != other.__sign:
+ if (type(self) != type(other... | Small simplification to the infinity class. | gwastro_pycbc-glue | train | py |
f94484fe9f10f6cd394bc8f8061dd440bfdfad27 | diff --git a/src/components/dialog/dialog.js b/src/components/dialog/dialog.js
index <HASH>..<HASH> 100644
--- a/src/components/dialog/dialog.js
+++ b/src/components/dialog/dialog.js
@@ -535,8 +535,6 @@ function MdDialogDirective($$rAF, $mdTheming, $mdDialog) {
* `three` into the controller, with the value 3. If ... | doc(dialog): remove 'resolve' option from show() method (#<I>) | angular_material | train | js |
fc0e6e8e86952371c535bc9ec3d1b5ebf1fa963b | diff --git a/saltapi/netapi/rest_cherrypy/__init__.py b/saltapi/netapi/rest_cherrypy/__init__.py
index <HASH>..<HASH> 100644
--- a/saltapi/netapi/rest_cherrypy/__init__.py
+++ b/saltapi/netapi/rest_cherrypy/__init__.py
@@ -69,8 +69,10 @@ import saltapi
logger = salt.log.logging.getLogger(__name__)
+TEMPLATES_DIR =... | Added better default for staticdir
The 'tmpl' directory is somewhat arbitrary, but it's a place on the
filesystem that we know will exist. If we ever put salt-ui static file
builds in this repo that will also be a good place for them.
Thanks to dthom<I> for the bug report! | saltstack_salt | train | py |
76633672fa7d3834a411bb9cfe375dcb418e97d6 | diff --git a/jquery.peity.js b/jquery.peity.js
index <HASH>..<HASH> 100644
--- a/jquery.peity.js
+++ b/jquery.peity.js
@@ -129,7 +129,7 @@
if (opts.delimiter == "/") {
var v1 = values[0]
var v2 = values[1]
- values = [v1, v2 - v1]
+ values = [v1, Math.max(0, v2 - v1)]
}
... | Don't allow slices that are bigger than the pie. | benpickles_peity | train | js |
417edf42560e37e2137674d2c5ac7da4c4542d8e | diff --git a/src/services/ImgixService.php b/src/services/ImgixService.php
index <HASH>..<HASH> 100644
--- a/src/services/ImgixService.php
+++ b/src/services/ImgixService.php
@@ -19,6 +19,7 @@ use Imgix\UrlBuilder;
use GuzzleHttp\RequestOptions;
use Craft;
+use craft\base\Component;
use craft\base\LocalVolumeInter... | Adds missing extension for ImgixService | aelvan_Imager-Craft | train | php |
6a463265bf34b2f7093b0315b3390927f4403434 | diff --git a/test/deep_pluck_test.rb b/test/deep_pluck_test.rb
index <HASH>..<HASH> 100644
--- a/test/deep_pluck_test.rb
+++ b/test/deep_pluck_test.rb
@@ -210,7 +210,12 @@ class DeepPluckTest < Minitest::Test
assert_equal post_expected, Post.where(id: 1).deep_pluck(:notes => [:content])
end
- def test_at_mod... | test #deep_pluck at model without plucking associations | khiav223577_deep_pluck | train | rb |
bda54930b0c5152c5111e6a60474108d371288b2 | diff --git a/src/includes/lib/field.php b/src/includes/lib/field.php
index <HASH>..<HASH> 100644
--- a/src/includes/lib/field.php
+++ b/src/includes/lib/field.php
@@ -254,9 +254,6 @@ function papi_update_field( $post_id = null, $slug = null, $value = null, $type
return false;
}
- $cache_key = papi_get_cache_key... | Removed unnecessary code. Updated comment. | wp-papi_papi | train | php |
4bae105fe99ef39440dd4f64fbe344959564015f | diff --git a/lib/parser/index.js b/lib/parser/index.js
index <HASH>..<HASH> 100644
--- a/lib/parser/index.js
+++ b/lib/parser/index.js
@@ -795,13 +795,37 @@ function getComment() {
return [getInfo(pos++), NodeType.CommentType, value.substring(2, len)];
}
+// special reader for units to avoid adjoined IE hacks (... | avoid adjoined IE hacks for dimensions on parsing | css_csso | train | js |
a06ddec2ada00b0b01c98879a466dd09f4ee72d5 | diff --git a/lib/vendor/heroku/okjson.rb b/lib/vendor/heroku/okjson.rb
index <HASH>..<HASH> 100644
--- a/lib/vendor/heroku/okjson.rb
+++ b/lib/vendor/heroku/okjson.rb
@@ -264,13 +264,13 @@ module Heroku
# Unquote will raise an error if q contains control characters.
def unquote(q)
q = q[1...-1]
- ... | encoding fix for okjson | heroku_legacy-cli | train | rb |
dde6ccf55df220832de2e81351283530e1153083 | diff --git a/remote/server/src/java/org/openqa/selenium/server/browserlaunchers/GoogleChromeLauncher.java b/remote/server/src/java/org/openqa/selenium/server/browserlaunchers/GoogleChromeLauncher.java
index <HASH>..<HASH> 100644
--- a/remote/server/src/java/org/openqa/selenium/server/browserlaunchers/GoogleChromeLaunch... | DanielWagnerHall: Add support for -trustAllSSLCertificates for Chrome
r<I> | SeleniumHQ_selenium | train | java |
a96f70393f10d490c8afc2b72abfc7d6a602c320 | diff --git a/clients/web/src/views/body/UserSettingsView.js b/clients/web/src/views/body/UserSettingsView.js
index <HASH>..<HASH> 100644
--- a/clients/web/src/views/body/UserSettingsView.js
+++ b/clients/web/src/views/body/UserSettingsView.js
@@ -83,9 +83,6 @@ girder.views.UserAccountView = girder.View.extend({
... | Redirect to front page on logout from usersettings | girder_girder | train | js |
4086bb3893a58031eadaaf55eae2a8fb97aaadb2 | diff --git a/lib/all.js b/lib/all.js
index <HASH>..<HASH> 100644
--- a/lib/all.js
+++ b/lib/all.js
@@ -1,5 +1,7 @@
-// SockJS client, version <!-- version -->, MIT License
-// https://github.com/sockjs/sockjs-client
+/* SockJS client, version <!-- version -->, http://sockjs.org, MIT License
+
+<!-- include LICENSE-... | Fix #<I> - include license inline | sockjs_sockjs-client | train | js |
a9854633b5b17994896d0b143a2a71b48d644c32 | diff --git a/examples/05-payments-history.php b/examples/05-payments-history.php
index <HASH>..<HASH> 100644
--- a/examples/05-payments-history.php
+++ b/examples/05-payments-history.php
@@ -32,9 +32,19 @@ try {
echo htmlspecialchars($payment->description) . "<br />";
echo htmlspecialchars($payment->a... | Add some simple examples in the list example | mollie_mollie-api-php | train | php |
5bbbff231b59e55e21561d4a3ddc0a56c6672860 | diff --git a/arviz/plots/rankplot.py b/arviz/plots/rankplot.py
index <HASH>..<HASH> 100644
--- a/arviz/plots/rankplot.py
+++ b/arviz/plots/rankplot.py
@@ -68,7 +68,7 @@ def plot_rank(
Coordinates of var_names to be plotted. Passed to `Dataset.sel`
bins: None or passed to np.histogram
Binning stra... | Added Numpy in intersphinx-mapping (#<I>)
* Added numpy in intersphinx mapping
* wip | arviz-devs_arviz | train | py,py |
2e19fa63d7065e0d66281e5f72e0b8d0421c7a34 | diff --git a/lib/xmpp/c2s.js b/lib/xmpp/c2s.js
index <HASH>..<HASH> 100644
--- a/lib/xmpp/c2s.js
+++ b/lib/xmpp/c2s.js
@@ -26,7 +26,7 @@ function C2SServer(options) {
// And now start listening to connections on the port provided as an option.
net.createServer(function (inStream) {
self.acceptConnect... | using bindAddress as it makes more sense than domain and is consistent with the S2S API | xmppjs_xmpp.js | train | js |
8b7e1ad59dff225c2bd13dfba85a4bd1812a056e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ def _check_python_version():
if version_info[:2] < (3, 5):
msg = 'The used Python version is not ' \
'supported, please use Python >= 3.5'
- raise RuntimeError(msg)
+ r... | release/<I>: Change kind of error from `RuntimeError` to `EnvironmentError` | nok_sklearn-porter | train | py |
2c3e38171fa10ad7ffaba5284026c2518cf14325 | diff --git a/lib/canis/core/widgets/textpad.rb b/lib/canis/core/widgets/textpad.rb
index <HASH>..<HASH> 100755
--- a/lib/canis/core/widgets/textpad.rb
+++ b/lib/canis/core/widgets/textpad.rb
@@ -8,7 +8,7 @@
# Author: jkepler http://github.com/mare-imbrium/mancurses/
# Date: 2011-11-09 - 16:59
# Li... | added row_count for compat with TV | mare-imbrium_canis | train | rb |
6ce0b443676d95d6e739cff95e6321e6c485aba0 | diff --git a/core/src/main/java/lucee/runtime/tag/Mail.java b/core/src/main/java/lucee/runtime/tag/Mail.java
index <HASH>..<HASH> 100755
--- a/core/src/main/java/lucee/runtime/tag/Mail.java
+++ b/core/src/main/java/lucee/runtime/tag/Mail.java
@@ -546,7 +546,7 @@ public final class Mail extends BodyTagImpl {
@Overr... | Added a fix for miss-spelled word | lucee_Lucee | train | java |
d0cea73e3c637ae61a614d826221677499a8ccb0 | diff --git a/src/main/java/reactor/core/publisher/Operators.java b/src/main/java/reactor/core/publisher/Operators.java
index <HASH>..<HASH> 100644
--- a/src/main/java/reactor/core/publisher/Operators.java
+++ b/src/main/java/reactor/core/publisher/Operators.java
@@ -534,7 +534,7 @@ public abstract class Operators {
... | fix Operators#setOnce cancelling the wrong subscription | reactor_reactor-core | train | java |
a77afbe669794346770b859984c7957c19d06a97 | diff --git a/lib/ruote-mongodb/mongodb_storage.rb b/lib/ruote-mongodb/mongodb_storage.rb
index <HASH>..<HASH> 100644
--- a/lib/ruote-mongodb/mongodb_storage.rb
+++ b/lib/ruote-mongodb/mongodb_storage.rb
@@ -148,7 +148,7 @@ module Ruote
end
def purge!
- TYPES.each { |t| get_collection(MongoDbStorage::CO... | Modified to attach prefix in collection names. | PlasticLizard_ruote-mongodb | 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.