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 |
|---|---|---|---|---|---|
6a2a26ecc5427e5a97eb05f9b8844238a9a08084 | diff --git a/PyFunceble.py b/PyFunceble.py
index <HASH>..<HASH> 100755
--- a/PyFunceble.py
+++ b/PyFunceble.py
@@ -170,6 +170,9 @@ class PyFunceble(object):
else:
self.reset_counters()
AutoContinue().backup()
+ ExecutionTime('stop')
+ ... | Reintroduction of the percentage log at the end of file testing. | funilrys_PyFunceble | train | py |
4509c75b5db7d60745248fbaac727541a1d526f8 | diff --git a/Classes/TYPO3/Imagine/Aspect/PaletteInterfaceAspect.php b/Classes/TYPO3/Imagine/Aspect/PaletteInterfaceAspect.php
index <HASH>..<HASH> 100644
--- a/Classes/TYPO3/Imagine/Aspect/PaletteInterfaceAspect.php
+++ b/Classes/TYPO3/Imagine/Aspect/PaletteInterfaceAspect.php
@@ -31,7 +31,7 @@ class PaletteInterfaceA... | [TASK] Removed deprecated use of Inject for settings
This removes the use of the Inject annotation for settings and instead
uses the new InjectConfiguration annotation instead.
Change-Id: I<I>ec6c0a<I>e8f2a1ab1a<I>abf<I>fca
Related: FLOW-<I>
Releases: master | neos_imagine | train | php |
5b4b185ae1b8ce813170aa1e2e803589b370c669 | diff --git a/main.go b/main.go
index <HASH>..<HASH> 100644
--- a/main.go
+++ b/main.go
@@ -45,7 +45,7 @@ After creating a spec for your root filesystem, you can execute a container
in your shell by running:
# cd /mycontainer
- # runv start start [ -b bundle ] <container-id>
+ # runv run [ -b bundle ] <con... | main.go: Replace start with run
start subcommand does not have "-b" flag. And it reads `state.json`, not `config.json`. It seems to be a mistake. | hyperhq_runv | train | go |
3c459266d257518229da041b7c1e01cdadeb30bd | diff --git a/examples/full/bundle.config.js b/examples/full/bundle.config.js
index <HASH>..<HASH> 100644
--- a/examples/full/bundle.config.js
+++ b/examples/full/bundle.config.js
@@ -88,9 +88,9 @@ module.exports = {
'gulp-uglify': {mangle: false},
'gulp-concat': {stat: {mode: 0666}},
'g... | add some 'helpful' comments | dowjones_gulp-bundle-assets | train | js |
225a140055115350977f910dcd57e830f720bf8b | diff --git a/builder/virtualbox/common/driver_mock.go b/builder/virtualbox/common/driver_mock.go
index <HASH>..<HASH> 100644
--- a/builder/virtualbox/common/driver_mock.go
+++ b/builder/virtualbox/common/driver_mock.go
@@ -46,16 +46,16 @@ type DriverMock struct {
VersionResult string
VersionErr error
- LoadSna... | Applied correct source format (got fmt) to builder\virtualbox\common\driver_mock.go | hashicorp_packer | train | go |
df987f278ee5bb059af890f9ee58b52579f0d42d | diff --git a/proteusisc/drivers/digilentdriver.py b/proteusisc/drivers/digilentdriver.py
index <HASH>..<HASH> 100644
--- a/proteusisc/drivers/digilentdriver.py
+++ b/proteusisc/drivers/digilentdriver.py
@@ -176,8 +176,7 @@ class DigilentAdeptController(CableDriver):
"""
t = time()
- code, res... | Fixed oerflow of usb data in digilent driver on some boards. | diamondman_proteusisc | train | py |
45cf412bbafdf00c1cacd424a7a90aa1cf424c1b | diff --git a/install.py b/install.py
index <HASH>..<HASH> 100644
--- a/install.py
+++ b/install.py
@@ -1544,7 +1544,7 @@ class Python(object):
def _get_pip_list_json_obj(self):
cmd = '{0} list --format json'.format(self._get_pip_cmd())
- json_str = Cmd.sh_e_out(cmd)
+ json_str = Cmd.sh_e_o... | Discard extra lines when parsing pip JSON output
pip tends to append notices about new pip version being available
to the end of its standard output, e.g.:
{valid JSON string}
[notice] A new release of pip available: <I> -> <I>
[notice] To update, run: pip install --upgrade pip
Ignore those. | junaruga_rpm-py-installer | train | py |
b8f507775a451609d403559fdb5159e4519cb77b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,10 @@
from setuptools import setup, find_packages
+
+from os.path import join, dirname
+import sys
+sys.path.insert(0, join(dirname(__file__), 'src'))
from cache.version import __version__
+sys.path.pop(0)
setup(
... | add some hackery to fix the install file | jneen_python-cache | train | py |
d16a65c1120c3658fdadbb345aabfa6ea92c065f | diff --git a/aws/resource_aws_route_test.go b/aws/resource_aws_route_test.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_route_test.go
+++ b/aws/resource_aws_route_test.go
@@ -408,7 +408,6 @@ func TestAccAWSRoute_IPv4_To_Instance(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: fu... | r/aws_route: Refactor acceptance tests in preparation for future fixes/enhancements. | terraform-providers_terraform-provider-aws | train | go |
a81d9bb530687c26636809cb86ea6828c00b8519 | diff --git a/db/sql.php b/db/sql.php
index <HASH>..<HASH> 100644
--- a/db/sql.php
+++ b/db/sql.php
@@ -25,6 +25,11 @@ namespace DB;
//! PDO wrapper
class SQL {
+ //@{ Error messages
+ const
+ E_PKey='Table %s does not have a primary key';
+ //@}
+
protected
//! UUID
$uuid,
@@ -337,6 +342,7 @@ class SQL {
... | Emit error when table does not contain a primary key | bcosca_fatfree-core | train | php,php |
c227f048639fd2d111d1a986717e8e96703d94a5 | diff --git a/samples/TabBarSample.js b/samples/TabBarSample.js
index <HASH>..<HASH> 100644
--- a/samples/TabBarSample.js
+++ b/samples/TabBarSample.js
@@ -47,7 +47,7 @@ enyo.kind(
name: "DynamicTabBar",
fit: true,
components: [
- {name:"bar",kind: "onyx.TabBar"},
+ {name:"bar",kind: "onyx.TabBar", maxMenuH... | ENYO-<I>: limit the height of the menu on the samples | enyojs_onyx | train | js,js |
eca83000ac8502e05ce3ab5c8760fa6ca702c0b2 | diff --git a/bitshares/blockchainobject.py b/bitshares/blockchainobject.py
index <HASH>..<HASH> 100644
--- a/bitshares/blockchainobject.py
+++ b/bitshares/blockchainobject.py
@@ -31,6 +31,11 @@ class BlockchainObject(dict):
elif isinstance(data, dict):
self.identifier = data.get("id")
... | [blockchainobject] treat integer arguments differently (e.g. for block numbers in Block()) | bitshares_python-bitshares | train | py |
a2fb649190ddd5e8339b184e36913a494f44144b | diff --git a/plugins/settag.js b/plugins/settag.js
index <HASH>..<HASH> 100644
--- a/plugins/settag.js
+++ b/plugins/settag.js
@@ -106,8 +106,8 @@ description: Set execution
@param {Noodles.Context}
@param {function=}
*/
-Set.prototype.execute = function(Template,Context,Callback){
- this.key.set(Template,Context,th... | removed support for callbacks from set tag. It should never need it. | nathanjsweet_Noodles | train | js |
f45346e5b470b52e2f8dbceaaca474f6f604cbb3 | diff --git a/core/phantomas.js b/core/phantomas.js
index <HASH>..<HASH> 100644
--- a/core/phantomas.js
+++ b/core/phantomas.js
@@ -72,7 +72,7 @@ var phantomas = function(params) {
// --cookie='bar=foo;domain=url'
// for multiple cookies, please use config.json `cookies`.
- if (params.cookie) {
+ if (typeof params... | Add type check to params.cookie
Confirms that params.cookie is indeed a string so that invoking
.split() later doesn't cause errors. | macbre_phantomas | train | js |
92b0df4e79d75b3b3d0aa1d8677b1d9e1576be14 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -70,6 +70,7 @@ setup(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
... | Add Python <I> to classifiers in setup.py. | mbedmicro_pyOCD | train | py |
ad60d77d1142f35c48060442b62f312bbbb9e764 | diff --git a/ai/models.py b/ai/models.py
index <HASH>..<HASH> 100644
--- a/ai/models.py
+++ b/ai/models.py
@@ -105,6 +105,8 @@ class SearchNodeCostOrdered(SearchNode):
class SearchNodeValueOrdered(SearchNode):
def __lt__(self, other):
+ # value must work inverted, because heapq sorts 1-9
+ # and w... | Added explanation about - in value comparisson | simpleai-team_simpleai | train | py |
324c7155fd593a9645826e8f94101340f4e7cc77 | diff --git a/utils/config.js b/utils/config.js
index <HASH>..<HASH> 100644
--- a/utils/config.js
+++ b/utils/config.js
@@ -45,7 +45,8 @@ module.exports = {
domains: config.domains,
cookieDomain: (securityConfig.cookie ? securityConfig.cookie.domain : 'test.dev.gethuman... | Adding realtime config to mobile | gethuman_pancakes-recipe | train | js |
937b599aae0d7e7bf5f5fef93ed342f03dbb55a2 | diff --git a/lib/mongodb.js b/lib/mongodb.js
index <HASH>..<HASH> 100644
--- a/lib/mongodb.js
+++ b/lib/mongodb.js
@@ -13,11 +13,20 @@ module.exports = function(self) {
function indexSlug(callback) {
self.pages.ensureIndex({ slug: 1 }, { safe: true, unique: true }, callback);
}
+ function in... | * Index startDate and sortTitle so A2 doesn't fall over with large databases | apostrophecms_apostrophe | train | js |
68a4a3a485c4f2466466a92f3ccb80b4ada10744 | diff --git a/test/Models/CatalogMemberSpec.js b/test/Models/CatalogMemberSpec.js
index <HASH>..<HASH> 100644
--- a/test/Models/CatalogMemberSpec.js
+++ b/test/Models/CatalogMemberSpec.js
@@ -105,5 +105,5 @@ describe('CatalogMember', function () {
expect(member.info[1].content).toBe('Another value');
... | Fix eslint warning. | TerriaJS_terriajs | train | js |
eb8fcff9210b714280cff6981b0e0ba906ddf283 | diff --git a/src/data/Data.js b/src/data/Data.js
index <HASH>..<HASH> 100644
--- a/src/data/Data.js
+++ b/src/data/Data.js
@@ -44,7 +44,6 @@
* </dl>
*/
Data = function(name, definitions, options) {
- // TODO: Consider prefixing private variables and functions with '$$' instead (che... | Don't access private method from other class. | wigy_chronicles_of_angular | train | js,js |
1aaee5f3ea6e776b001cef0f54b2a9478e30b16d | diff --git a/lib/betfair/version.rb b/lib/betfair/version.rb
index <HASH>..<HASH> 100644
--- a/lib/betfair/version.rb
+++ b/lib/betfair/version.rb
@@ -1,3 +1,3 @@
module Betfair
- VERSION = "0.1.0"
+ VERSION = "0.2.0"
end | Bumped to version <I> | mikecmpbll_betfair | train | rb |
84d73793520f32fdd533ef0d0fe87f67edce056c | diff --git a/packages/lager/src/lib/lager.js b/packages/lager/src/lib/lager.js
index <HASH>..<HASH> 100644
--- a/packages/lager/src/lib/lager.js
+++ b/packages/lager/src/lib/lager.js
@@ -56,7 +56,7 @@ class Lager extends Pebo {
// Overide Pebo.fire() to log calls
this.fire = function() {
const nbListen... | Change event log level from debug to trace | myrmex-org_myrmex | train | js |
f21522c4092c9ccf5a8c83e56f2c5c4ae3ddc1c8 | diff --git a/android/src/main/java/com/dylanvann/fastimage/FastImageViewManager.java b/android/src/main/java/com/dylanvann/fastimage/FastImageViewManager.java
index <HASH>..<HASH> 100644
--- a/android/src/main/java/com/dylanvann/fastimage/FastImageViewManager.java
+++ b/android/src/main/java/com/dylanvann/fastimage/Fas... | Fix adding more views as listeners for a URL.
You cannot add items to a Collections.singleTonList... | DylanVann_react-native-fast-image | train | java |
223cb942f84e81516c989c84802cd72a4bde5e18 | diff --git a/tests/test_apps/exportbenchmark/src/exportbenchmark/SocketExporter.java b/tests/test_apps/exportbenchmark/src/exportbenchmark/SocketExporter.java
index <HASH>..<HASH> 100644
--- a/tests/test_apps/exportbenchmark/src/exportbenchmark/SocketExporter.java
+++ b/tests/test_apps/exportbenchmark/src/exportbenchma... | Changed how exporter retrieves localhost address to be more reliable | VoltDB_voltdb | train | java |
668c6c58a1066b75566e069fe66fc915e7b16780 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,7 +48,7 @@ copyright = u'2013, Aaron Gallagher'
# |version| and |release|, also used in various other places throughout the
# built documents.
#
-version = release = vcversioner.find_version().version
+v... | Also don't write out excess version.txt files. | habnabit_vcversioner | train | py |
8599e6eb35d197b5bffb2944a09c55480b829c0f | diff --git a/aws/config.go b/aws/config.go
index <HASH>..<HASH> 100644
--- a/aws/config.go
+++ b/aws/config.go
@@ -145,7 +145,7 @@ type Config struct {
// NewConfig returns a new Config pointer that can be chained with builder methods to
// set multiple configuration values inline without using pointers.
//
-// ... | Updated sample in config.go (#<I>) | aws_aws-sdk-go | train | go |
df11ec25a70ebf09fe45791b6da752bd338b366c | diff --git a/lib/twat/actions.rb b/lib/twat/actions.rb
index <HASH>..<HASH> 100644
--- a/lib/twat/actions.rb
+++ b/lib/twat/actions.rb
@@ -148,7 +148,7 @@ module Twat
end
def deentitize(text)
- {"<" => "<", ">" => ">", "&" => "&" }.each do |k,v|
+ {"<" => "<", ">" => ">", "&" =... | Add more entities to replace
I'm sure I tested these and they worked :/ | richo_twat | train | rb |
3ff7c793afb5e25e04e4d4b4129ccdb811b95c63 | diff --git a/packages/selenium-ide/src/neo/IO/filesystem.js b/packages/selenium-ide/src/neo/IO/filesystem.js
index <HASH>..<HASH> 100644
--- a/packages/selenium-ide/src/neo/IO/filesystem.js
+++ b/packages/selenium-ide/src/neo/IO/filesystem.js
@@ -140,17 +140,19 @@ export function loadProject(project, file) {
... | fixed an issue where testcases wouldnt migrate if baseUrl was empty | SeleniumHQ_selenium-ide | train | js |
f8b7a5ae01fedf09a423ef5f56a45eba8d10460a | diff --git a/sporco/admm/ccmod.py b/sporco/admm/ccmod.py
index <HASH>..<HASH> 100644
--- a/sporco/admm/ccmod.py
+++ b/sporco/admm/ccmod.py
@@ -5,7 +5,7 @@
# and user license can be found in the 'LICENSE.txt' file distributed
# with the package.
-"""ADMM algorithm for the CCMOD problem"""
+"""ADMM algorithms for the... | Bug fix: uninitialized Xf could be used as CG initial solution | bwohlberg_sporco | train | py |
6978493c8603140f5746e7e2ba675136c96125b6 | diff --git a/test-basic/suggest.js b/test-basic/suggest.js
index <HASH>..<HASH> 100644
--- a/test-basic/suggest.js
+++ b/test-basic/suggest.js
@@ -59,6 +59,7 @@ describe('suggest', function() {
.catch(done);
});
it('should handle default criteria', function(done) {
+ this.timeout(3000);
db.documents.... | Extend timeout for suggest test
Often fails due to timeout, extend from default <I> ms to <I> ms. | marklogic_node-client-api | train | js |
6a214ca3861cead82377a512c8464743acf79298 | diff --git a/lib/split/helper.rb b/lib/split/helper.rb
index <HASH>..<HASH> 100644
--- a/lib/split/helper.rb
+++ b/lib/split/helper.rb
@@ -1,6 +1,6 @@
module Split
module Helper
- def ab_test(experiment_name, *alternatives, &block)
+ def ab_test(experiment_name, *alternatives)
experiment = Split::Exper... | ab_test can now be passed a block in a rails view as well, closes #4 | splitrb_split | train | rb |
5e18e515c973b98ca58d20ae6b79c47bade25329 | diff --git a/src/basis/dom/event.js b/src/basis/dom/event.js
index <HASH>..<HASH> 100644
--- a/src/basis/dom/event.js
+++ b/src/basis/dom/event.js
@@ -98,7 +98,11 @@
init: function(event){
event = wrap(event);
- basis.object.extend(basis.object.complete(this, event), {
+ for (var name in event)... | copy to dom event wrapper own event properties only | basisjs_basisjs | train | js |
1f527b867b9e485dfb21fe996861f78527cabb63 | diff --git a/protocol.go b/protocol.go
index <HASH>..<HASH> 100644
--- a/protocol.go
+++ b/protocol.go
@@ -39,9 +39,9 @@ var (
// The evented system of golem needs several steps to process incoming data:
// 1. Unpack
// 2. Unmarshal
-// For emitting data the process is reversed:
-// 1. Marshal
-// 2. Pack
+// Fo... | Documentation for protocol interface update because of recent changes to methods. | trevex_golem | train | go |
3f8c91f1d1d2ab1252bf746077cdcf4de1a8b39b | diff --git a/salt/modules/win_useradd.py b/salt/modules/win_useradd.py
index <HASH>..<HASH> 100644
--- a/salt/modules/win_useradd.py
+++ b/salt/modules/win_useradd.py
@@ -316,7 +316,7 @@ def list_users():
for i in users:
add = 0
login = str(i['name'])
- info... | user proper spaces around '=' | saltstack_salt | train | py |
8dd14effba59e4816750d0009e644da1e44b073a | diff --git a/contrib/barcode/barcode.go b/contrib/barcode/barcode.go
index <HASH>..<HASH> 100644
--- a/contrib/barcode/barcode.go
+++ b/contrib/barcode/barcode.go
@@ -135,8 +135,8 @@ func RegisterDataMatrix(pdf barcodePdf, code string) string {
// RegisterPdf417 registers a barcode of type Pdf417 to the PDF, but not
... | Pass columns and security level to Encode method | jung-kurt_gofpdf | train | go |
e8b8daca486946870b73799d3333c12716945853 | diff --git a/doradus-server/src/main/java/com/dell/doradus/logservice/store/ChunkWriter.java b/doradus-server/src/main/java/com/dell/doradus/logservice/store/ChunkWriter.java
index <HASH>..<HASH> 100644
--- a/doradus-server/src/main/java/com/dell/doradus/logservice/store/ChunkWriter.java
+++ b/doradus-server/src/main/j... | don't allow illegal field names in logging service | QSFT_Doradus | train | java |
df92322d90ff4813fc5f655fe0e56e891835c61b | diff --git a/bin.js b/bin.js
index <HASH>..<HASH> 100755
--- a/bin.js
+++ b/bin.js
@@ -16,7 +16,7 @@
'use strict';
-const cli = require('./dist/cli');
+const cli = require('./lib/cli');
cli({
stdout: process.stdout, | fix(cli): Fix showstopper bug in bin.js
Forgot to change this from dist/cli to lib/cli after removing Babel. | markcornick_passwoid | train | js |
7a16c2b5ba084506fe3c3d5eb71b04cf7d118163 | diff --git a/lib/Spark/Core/Command/QueueWorker.php b/lib/Spark/Core/Command/QueueWorker.php
index <HASH>..<HASH> 100644
--- a/lib/Spark/Core/Command/QueueWorker.php
+++ b/lib/Spark/Core/Command/QueueWorker.php
@@ -17,7 +17,7 @@ use Monolog\Handler\StreamHandler;
use Kue\Worker;
use Kue\Queue;
-class QueueWorker ex... | Rename command queue:worker -> queue:work | sparkframework_spark | train | php |
b27a7d25bb0d411085e5f229e1207de6b9045e57 | diff --git a/fontbakery-check-ttf.py b/fontbakery-check-ttf.py
index <HASH>..<HASH> 100755
--- a/fontbakery-check-ttf.py
+++ b/fontbakery-check-ttf.py
@@ -2286,12 +2286,12 @@ def main():
# ----------------------------------------------------
fb.new_check("Glyph names are all valid?")
- known_good_names =... | remove .null from list of known good glyph names
fixes issue #<I> | googlefonts_fontbakery | train | py |
7c73b28e6d332a14d3fce4ada754e54d01ed539d | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -442,6 +442,7 @@ setup(
maintainer='Oleg Hoefling',
maintainer_email='oleg.hoefling@gmail.com',
url='https://github.com/mehcode/python-xmlsec',
+ project_urls={'Documentation': 'https://xmlsec.readthedocs.io'... | add source and documentation urls to package metadata | mehcode_python-xmlsec | train | py |
bc7ddbc75986b6c2633c977240e2cb19c4452033 | diff --git a/src/Types/PollAnswer.php b/src/Types/PollAnswer.php
index <HASH>..<HASH> 100644
--- a/src/Types/PollAnswer.php
+++ b/src/Types/PollAnswer.php
@@ -108,7 +108,7 @@ class PollAnswer extends BaseType
/**
* @param int[] $optionIds
*/
- public function setOptionIds( $optionIds)
+ public fu... | Added support of `poll_answer` and `poll` attributes in Update class - code styling | TelegramBot_Api | train | php |
b51b2e0d83ced75daf9be06b6656f343448df6ee | diff --git a/connection.go b/connection.go
index <HASH>..<HASH> 100644
--- a/connection.go
+++ b/connection.go
@@ -256,7 +256,7 @@ func (c *Connection) ConnectionState() tls.ConnectionState {
/*
NotifyClose registers a listener for close events either initiated by an error
-accompaning a connection.close method or ... | Fix typo in connection.go
accompaning > accompanying | streadway_amqp | train | go |
71ce629243470083f8ef911e173b6d07ba102e64 | diff --git a/src/UuidType.php b/src/UuidType.php
index <HASH>..<HASH> 100644
--- a/src/UuidType.php
+++ b/src/UuidType.php
@@ -80,6 +80,10 @@ class UuidType extends Type
if (empty($value)) {
return null;
}
+
+ if ($value instanceof UuidInterface) {
+ reutn $value... | Code against the interface declared in the phpdoc | ramsey_uuid-doctrine | train | php |
223d58527b053d606b8980766c0aedd749c58663 | diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnectionConfiguration.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnectionConfiguration.java
index <HASH>..<HASH> 100644
--- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnectionConfiguration.java
+++ b/smac... | Use correct class name in docs
XMPPConnectionConfiguration/XMPPTCPConnectionConfiguration | igniterealtime_Smack | train | java |
4386cd4145c15f03c61911d1c24c698d00db25b1 | diff --git a/airflow/contrib/example_dags/example_qubole_operator.py b/airflow/contrib/example_dags/example_qubole_operator.py
index <HASH>..<HASH> 100644
--- a/airflow/contrib/example_dags/example_qubole_operator.py
+++ b/airflow/contrib/example_dags/example_qubole_operator.py
@@ -12,6 +12,7 @@
# See the License for ... | [AIRFLOW-<I>] Fix typo in example_qubole_operator
Closes #<I> from rupesh<I>/AIRFLOW-<I> | apache_airflow | train | py |
6b8356372f4169e15ed023264b18dbe294154ae3 | diff --git a/src/dryads/middleware/scserver.js b/src/dryads/middleware/scserver.js
index <HASH>..<HASH> 100644
--- a/src/dryads/middleware/scserver.js
+++ b/src/dryads/middleware/scserver.js
@@ -93,8 +93,8 @@ export default function scserver(command, context) {
const schedFn = (time, packets) => context.scserv... | fix(scserver middleware): schedLoop is a function maker, not the loop function | crucialfelix_supercolliderjs | train | js |
b8e4c19a22f9fef1a5c5f467b1fb232c0bf3708a | diff --git a/nMemcached.js b/nMemcached.js
index <HASH>..<HASH> 100644
--- a/nMemcached.js
+++ b/nMemcached.js
@@ -300,7 +300,7 @@ Client.config = {
// Add to queue as multiple get key key key key key returns multiple values
if( !multi ){
- queue.push( response[ key ] = dataSet);
+ ... | Patched the value parsing, i killed it when i fixed the multi get. | 3rd-Eden_memcached | train | js |
b90f4635c069f9d66d943189aa4f5d60592364a6 | diff --git a/app/controllers/postgresql_lo_streamer/lo_controller.rb b/app/controllers/postgresql_lo_streamer/lo_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/postgresql_lo_streamer/lo_controller.rb
+++ b/app/controllers/postgresql_lo_streamer/lo_controller.rb
@@ -4,10 +4,17 @@ module PostgresqlLoStre... | Set status code to <I> if object does not exist | diogob_postgresql_lo_streamer | train | rb |
26053a32c2e86974ceee5ae79f11ea979921eb2f | diff --git a/kubespawner/spawner.py b/kubespawner/spawner.py
index <HASH>..<HASH> 100644
--- a/kubespawner/spawner.py
+++ b/kubespawner/spawner.py
@@ -1853,7 +1853,7 @@ class KubeSpawner(Spawner):
self.log.info('Killed pod %s, will try starting singleuser pod again', self.pod_name)
except ... | Log whose create_namespaced_pod timed out | jupyterhub_kubespawner | train | py |
fd1b3111bf98a41b19457d5ab86e1d2a7517e140 | diff --git a/lib/grom/helpers.rb b/lib/grom/helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/grom/helpers.rb
+++ b/lib/grom/helpers.rb
@@ -56,7 +56,7 @@ module Grom
end
def json_ld(data)
- [data] unless data.is_a?(Array)
+ data = [data] unless data.is_a?(Array)
json_ld = {}
json_ld["... | refactored json-ld to take a single object | ukparliament_grom | train | rb |
8dea0697aa3089de31f96c02d734d9ed05d3dac9 | diff --git a/pkg_resources/tests/test_resources.py b/pkg_resources/tests/test_resources.py
index <HASH>..<HASH> 100644
--- a/pkg_resources/tests/test_resources.py
+++ b/pkg_resources/tests/test_resources.py
@@ -3,6 +3,7 @@ from __future__ import unicode_literals
import os
import sys
import string
+import platform
... | Mark failing tests as xfail until they can be resolved. Ref #<I>. | pypa_setuptools | train | py |
f7bdbaadc6a4a3db155c20954256940ceb2cfa83 | diff --git a/src/Command/BaseMaker.php b/src/Command/BaseMaker.php
index <HASH>..<HASH> 100644
--- a/src/Command/BaseMaker.php
+++ b/src/Command/BaseMaker.php
@@ -322,8 +322,8 @@ class BaseMaker extends Base
}
// Look for the generator token
- $this->fServicesHandle = fopen(static::SERVICE_P... | chore: Resolving exception throw and removing redundant call to fclose() | nails_module-console | train | php |
d379310f1178bb954e122d7d57dcea21ea32055d | diff --git a/spec/neo4j-server/e2e/cypher_session_spec.rb b/spec/neo4j-server/e2e/cypher_session_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/neo4j-server/e2e/cypher_session_spec.rb
+++ b/spec/neo4j-server/e2e/cypher_session_spec.rb
@@ -34,7 +34,7 @@ module Neo4j
it 'adds host and port to the connection ob... | Fixing tests when setting a different NEO4J_URL | neo4jrb_neo4j-core | train | rb |
386e957ff1d52e782581754a6b3486ef658d9c1d | diff --git a/bundle/DependencyInjection/EzSystemsEzPlatformSolrSearchEngineExtension.php b/bundle/DependencyInjection/EzSystemsEzPlatformSolrSearchEngineExtension.php
index <HASH>..<HASH> 100644
--- a/bundle/DependencyInjection/EzSystemsEzPlatformSolrSearchEngineExtension.php
+++ b/bundle/DependencyInjection/EzSystemsE... | EZP-<I>: fixed: updated endpoint class constant | ezsystems_ezplatform-solr-search-engine | train | php |
9c353a7942a6c72776e769b9d30cc9a0ba1c4042 | diff --git a/iamine/core.py b/iamine/core.py
index <HASH>..<HASH> 100644
--- a/iamine/core.py
+++ b/iamine/core.py
@@ -36,12 +36,12 @@ class Miner(object):
self.hosts = hosts
self.config = config
self.debug = debug
- self.cookies = config.get('cookies')
+ self.cookies = config.g... | Fixed empty cookies/locale bugs. | jjjake_iamine | train | py |
ef59acb7a8fae6382c45311afa3ef5965834bbf1 | diff --git a/salt/output/nested.py b/salt/output/nested.py
index <HASH>..<HASH> 100644
--- a/salt/output/nested.py
+++ b/salt/output/nested.py
@@ -4,6 +4,7 @@ Recursively display nested data, this is the default outputter.
'''
# Import python libs
from numbers import Number
+import re
# Import salt libs
import s... | BUG: Outputter "nested" swallows lines ending with \r\n | saltstack_salt | train | py |
1730be699cb5526f013345a2fae8b511758d2db8 | diff --git a/src/components/datatable/ScrollableView.js b/src/components/datatable/ScrollableView.js
index <HASH>..<HASH> 100644
--- a/src/components/datatable/ScrollableView.js
+++ b/src/components/datatable/ScrollableView.js
@@ -192,7 +192,7 @@ export class ScrollableView extends Component {
if(this.props.co... | Fixed #<I> - The className property of Column is not set to <col> element | primefaces_primereact | train | js |
e4a0789374469868bcf402574d637f701f45fe02 | diff --git a/pbj-schema-stores.php b/pbj-schema-stores.php
index <HASH>..<HASH> 100644
--- a/pbj-schema-stores.php
+++ b/pbj-schema-stores.php
@@ -7,11 +7,11 @@
* Registers all directories from all required packages which are of
* of the type "pbj-schema-store".
*
- * This file has been auto-generated by the Pbj ... | Updated pbj-schema-stores.php | gdbots_schemas | train | php |
8ddc9f3b383e54af735ee58c20a854e7308b534a | diff --git a/lib/dynamic_registrar/registrar.rb b/lib/dynamic_registrar/registrar.rb
index <HASH>..<HASH> 100644
--- a/lib/dynamic_registrar/registrar.rb
+++ b/lib/dynamic_registrar/registrar.rb
@@ -14,7 +14,11 @@ module DynamicRegistrar
attr_reader :default_registration_namespace
# The collection of ca... | we need to ensure that we're not reading registered_callbacks structure while that structure is being modified | 3Crowd_dynamic_registrar | train | rb |
b0ac32ec398ea83f99f1a5c5c0c9d370f939c5d9 | diff --git a/ml-agents/mlagents/trainers/ppo/trainer.py b/ml-agents/mlagents/trainers/ppo/trainer.py
index <HASH>..<HASH> 100644
--- a/ml-agents/mlagents/trainers/ppo/trainer.py
+++ b/ml-agents/mlagents/trainers/ppo/trainer.py
@@ -254,7 +254,7 @@ class PPOTrainer(RLTrainer):
behavior_spec,
sel... | Cherry-pick separate critic only for PPO (#<I>) (#<I>) | Unity-Technologies_ml-agents | train | py |
7c571383dc906679faa9dc1570d1dff66f0cd02c | diff --git a/ipyrad/core/params.py b/ipyrad/core/params.py
index <HASH>..<HASH> 100644
--- a/ipyrad/core/params.py
+++ b/ipyrad/core/params.py
@@ -417,6 +417,15 @@ class Params(object):
# returns string values as a tuple ("", "") or ("",)
value = tuplecheck(value, str)
+ # Fix a weird... | Fix a nasty stupid bug setting the overhang sequence | dereneaton_ipyrad | train | py |
aea59ad5c11e6d38acd4378125670e572f789d82 | diff --git a/test/test.jml.js b/test/test.jml.js
index <HASH>..<HASH> 100644
--- a/test/test.jml.js
+++ b/test/test.jml.js
@@ -68,6 +68,24 @@ describe('Jamilih - jml', function () {
}),
'<label xmlns="http://www.w3.org/1999/xhtml"></label>'
);
+ xmlTesting.matchesXMLString(
+ jml('div', {
+ ... | - Testing (coverage): nullish className | brettz9_jamilih | train | js |
457092315d5a608d1ceaad140c6f48f33db6b7c6 | diff --git a/test/player.spec.js b/test/player.spec.js
index <HASH>..<HASH> 100644
--- a/test/player.spec.js
+++ b/test/player.spec.js
@@ -54,6 +54,7 @@ describe('YouTubePlayer', () => {
assert.equal(vm.videoId, 'videoId')
assert.equal(vm.playerWidth, '640')
assert.equal(vm.playerHeight, '360... | added karma tests for host key | kaorun343_vue-youtube-embed | train | js |
361e474876a36bd26b9c90f2d5121004e233a2b7 | diff --git a/knxip/core.py b/knxip/core.py
index <HASH>..<HASH> 100644
--- a/knxip/core.py
+++ b/knxip/core.py
@@ -24,6 +24,10 @@ def parse_group_address(addr):
This allows to convert x/x/x and x/x address syntax to a numeric
KNX group address
"""
+
+ if addr is None:
+ raise KNXException("No a... | Raise an exception if no address is given | open-homeautomation_pknx | train | py |
d7fafc6f08135ac07223a789c2bcf790b2abad2c | diff --git a/lib/generators/pbw/scaffold_generator.rb b/lib/generators/pbw/scaffold_generator.rb
index <HASH>..<HASH> 100644
--- a/lib/generators/pbw/scaffold_generator.rb
+++ b/lib/generators/pbw/scaffold_generator.rb
@@ -19,8 +19,8 @@ module Pbw
def create_resources
generate "model", "#{class_name} #{attri... | Avoid overwrite issue of index when generating | monkeyx_pbw | train | rb |
3ba4ccf7d1a9c26c9786963c4c29f1b5c6c61dc7 | diff --git a/tools/lint.js b/tools/lint.js
index <HASH>..<HASH> 100644
--- a/tools/lint.js
+++ b/tools/lint.js
@@ -45,7 +45,7 @@ var BUILTINS = {
'HTMLCollection': true, 'NodeList': true, 'alert': true, 'console': true,
'Node':true, 'Symbol':true, 'NamedNodeMap':true, '_$rapyd$_eslice': true,
'Number':tr... | Linter: Add clearTimeout as global | kovidgoyal_rapydscript-ng | train | js |
90edc05523aa408e75e5a23443aa2eeb4f2e7df1 | diff --git a/azure-toolkit-libs/azure-toolkit-redis-lib/src/main/java/com/microsoft/azure/toolkit/redis/PricingTier.java b/azure-toolkit-libs/azure-toolkit-redis-lib/src/main/java/com/microsoft/azure/toolkit/redis/PricingTier.java
index <HASH>..<HASH> 100644
--- a/azure-toolkit-libs/azure-toolkit-redis-lib/src/main/jav... | Fix a bug of Integer.getInteger doesn't parse the integer | Microsoft_azure-maven-plugins | train | java |
f5acc64060d2599ad6e984527c02b1ae28692822 | diff --git a/Behat/Context/Page/Page.php b/Behat/Context/Page/Page.php
index <HASH>..<HASH> 100644
--- a/Behat/Context/Page/Page.php
+++ b/Behat/Context/Page/Page.php
@@ -13,10 +13,4 @@ use SensioLabs\Behat\PageObjectExtension\PageObject\Page as BasePage;
class Page extends BasePage
{
- public function isOpen()
... | Removed isOpen() method implemented already in BehatPageObjectExtension | fsi-open_admin-bundle | train | php |
4412c5fa82793ae362041c04fc185fa2d66644fc | diff --git a/lib/whois/record/parser/whois.dns.hr.rb b/lib/whois/record/parser/whois.dns.hr.rb
index <HASH>..<HASH> 100644
--- a/lib/whois/record/parser/whois.dns.hr.rb
+++ b/lib/whois/record/parser/whois.dns.hr.rb
@@ -67,7 +67,7 @@ module Whois
property_supported :registrant_contacts do
node("des... | Fix warning: assigned but unused variable - fuffa | weppos_whois | train | rb |
23eb7b5fcba1cc5fba0efd56daeb200a6a352a51 | diff --git a/tasks/helpers/publish-helper.js b/tasks/helpers/publish-helper.js
index <HASH>..<HASH> 100644
--- a/tasks/helpers/publish-helper.js
+++ b/tasks/helpers/publish-helper.js
@@ -58,7 +58,7 @@ export function publishPackages() {
if (packageInfo && packageInfo.name) {
await npmPublish([pack... | chore(gulp): update npm owners in publish packages | pivotal-cf_pivotal-ui | train | js |
9b95f6e01fa678670e92d2cace3ac6b8a81865fd | diff --git a/etrago/cluster/disaggregation.py b/etrago/cluster/disaggregation.py
index <HASH>..<HASH> 100644
--- a/etrago/cluster/disaggregation.py
+++ b/etrago/cluster/disaggregation.py
@@ -237,8 +237,8 @@ class Disaggregation:
print('---')
fs = (mc("sum"), mc("sum"))
for bt, ts in (
- ... | Add 'q' values to disaggregation sanity checks | openego_eTraGo | train | py |
dcc99c20aae310f41b15bf164e52b3c06c688e1b | diff --git a/libraries/botbuilder-applicationinsights/setup.py b/libraries/botbuilder-applicationinsights/setup.py
index <HASH>..<HASH> 100644
--- a/libraries/botbuilder-applicationinsights/setup.py
+++ b/libraries/botbuilder-applicationinsights/setup.py
@@ -46,6 +46,7 @@ setup(
packages=[
"botbuilder.app... | Add missing flask package (#<I>) | Microsoft_botbuilder-python | train | py |
f652cbd0ed21b1157e2c56d0ddfd53ffd90cb98f | diff --git a/gossip/privdata/coordinator.go b/gossip/privdata/coordinator.go
index <HASH>..<HASH> 100644
--- a/gossip/privdata/coordinator.go
+++ b/gossip/privdata/coordinator.go
@@ -677,9 +677,14 @@ func (bi *transactionInspector) inspectTransaction(seqInBlock uint64, chdr *comm
}
policy := bi.accessPolicyForC... | [FAB-<I>] add logs for pvt data commit path
Add log messages to assist in troubleshouting and debuging of
private data commit and distribution.
Change-Id: I<I>d<I>a<I>a<I>fdb<I>e<I>f5e6ebd5 | hyperledger_fabric | train | go |
636b9aaa33e0a123a96879fec76c029db858b92f | diff --git a/biojava3-structure/src/main/java/org/biojava/bio/structure/quaternary/io/PDBBioUnitDataProvider.java b/biojava3-structure/src/main/java/org/biojava/bio/structure/quaternary/io/PDBBioUnitDataProvider.java
index <HASH>..<HASH> 100644
--- a/biojava3-structure/src/main/java/org/biojava/bio/structure/quaternary... | making sure cache can't be null | biojava_biojava | train | java |
fae03dc073aa83231847334b8d49aa7496b714bb | diff --git a/lib/scoped/index.js b/lib/scoped/index.js
index <HASH>..<HASH> 100644
--- a/lib/scoped/index.js
+++ b/lib/scoped/index.js
@@ -3,6 +3,10 @@ module.exports = scoped
var EventEmitter = require('events').EventEmitter
function scoped (state, api, type) {
+ if (typeof type === 'undefined') {
+ throw new ... | fix: throw TypeError for store() without passing type
Calling store().add(...) without a type throws a TypeError: type must be set for scoped stores. | hoodiehq_hoodie-store-client | train | js |
c47d43c4ad3a1a3ff16e179fc733a9397ac8ebd4 | diff --git a/src/Baum/Move.php b/src/Baum/Move.php
index <HASH>..<HASH> 100644
--- a/src/Baum/Move.php
+++ b/src/Baum/Move.php
@@ -133,7 +133,7 @@ class Move {
*
* @return int
*/
- protected function updateStructure() {
+ public function updateStructure() {
list($a, $b, $c, $d) = $this->boundaries();... | Make 'updateStructure' method public as we cannot call protected methods from closure scope. | etrepat_baum | train | php |
3440fa577f38b3010f702cf076f066fb84ce5a08 | diff --git a/concrete/src/Page/PageList.php b/concrete/src/Page/PageList.php
index <HASH>..<HASH> 100644
--- a/concrete/src/Page/PageList.php
+++ b/concrete/src/Page/PageList.php
@@ -593,8 +593,7 @@ class PageList extends DatabaseItemList implements PagerProviderInterface, Pagin
$this->query->innerJoin('av', '... | Don't reset the selected fields in filterByTopic | concrete5_concrete5 | train | php |
30cc430803f067f8ef77178017109f968def3079 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -190,7 +190,7 @@ module.exports = function (browserify, options) {
return callback();
}).catch(function (err) {
self.push('console.error("' + err + '");');
- browserify.emit('error', err);
+ self.e... | Fix bug where browserify didn't emit error | css-modules_css-modulesify | train | js |
45ca2a1f7962b55ecbe052c59b441f77e4895221 | diff --git a/audio/audio.go b/audio/audio.go
index <HASH>..<HASH> 100644
--- a/audio/audio.go
+++ b/audio/audio.go
@@ -402,7 +402,6 @@ func (p *Player) readToBuffer(length int) (int, error) {
if p.readingCh == nil {
p.readingCh = make(chan readingResult)
go func() {
- defer close(p.readingCh)
b := make([]... | audio: Bug fix: possible overflow and closing nil channel | hajimehoshi_ebiten | train | go |
eca87a247c9f91032bb9bbcb669092db97986240 | diff --git a/framework/src/play/src/main/java/play/mvc/Http.java b/framework/src/play/src/main/java/play/mvc/Http.java
index <HASH>..<HASH> 100644
--- a/framework/src/play/src/main/java/play/mvc/Http.java
+++ b/framework/src/play/src/main/java/play/mvc/Http.java
@@ -114,12 +114,16 @@ public class Http {
if... | When PLAY_LANG is set; treat it as first accepted lang.
Instead of blindly taking the PLAY_LANG value into lang(),
we treat it as the most prioritary language for the user.
This way a user cannot set a language that is undefined for
the application. | playframework_playframework | train | java |
cd050b624ada521201073b094dfc98415ca00560 | diff --git a/modules/prebidServerBidAdapter.js b/modules/prebidServerBidAdapter.js
index <HASH>..<HASH> 100644
--- a/modules/prebidServerBidAdapter.js
+++ b/modules/prebidServerBidAdapter.js
@@ -490,6 +490,7 @@ const OPEN_RTB_PROTOCOL = {
if (utils.deepAccess(bid, 'ext.prebid.type') === VIDEO) {
... | vastUrl is set based on nurl for video. (#<I>) | prebid_Prebid.js | train | js |
361fe949d4188e699cf9b524aaaa8477a932e396 | diff --git a/src/TooltipFactory.js b/src/TooltipFactory.js
index <HASH>..<HASH> 100644
--- a/src/TooltipFactory.js
+++ b/src/TooltipFactory.js
@@ -360,7 +360,9 @@ var addAssociation = function(tooltip) {
var addMutation = function(tooltip) {
var mutRow = tooltip.table.append('tr');
mutRow.append('td').text('... | Fix bug on deletion variants tooltip. | ebi-uniprot_ProtVista | train | js |
c5073c9b4e1d308c7f51511d86f40819275a7ba2 | diff --git a/components/ekb/persistence-persist-edb/src/test/java/org/openengsb/core/ekb/persistence/persist/edb/PersistInterfaceServiceTest.java b/components/ekb/persistence-persist-edb/src/test/java/org/openengsb/core/ekb/persistence/persist/edb/PersistInterfaceServiceTest.java
index <HASH>..<HASH> 100644
--- a/compo... | [OPENENGSB-<I>] fixed compilation error | openengsb_openengsb | train | java |
5aa4df86ef92e738113973a898938f24b6c5c612 | diff --git a/src/cookies-eu-banner.js b/src/cookies-eu-banner.js
index <HASH>..<HASH> 100644
--- a/src/cookies-eu-banner.js
+++ b/src/cookies-eu-banner.js
@@ -170,7 +170,7 @@
*/
removeBanner: function (wait) {
var banner = document.getElementById('cookies-eu-banner');
- banner.classList.add('befo... | feat: Update to BEM modifier-class
Updating new class before DOM-removal to `cookies-eu-banner--before-remove` | Alex-D_Cookies-EU-banner | train | js |
a798ae99973745d26237dc85e7384a0d4a010e57 | diff --git a/lib/friendly-errors/transformers/missing-loader.js b/lib/friendly-errors/transformers/missing-loader.js
index <HASH>..<HASH> 100644
--- a/lib/friendly-errors/transformers/missing-loader.js
+++ b/lib/friendly-errors/transformers/missing-loader.js
@@ -16,7 +16,7 @@ function isMissingLoaderError(e) {
... | Fix "Missing loader" detection in Webpack <I>+ | symfony_webpack-encore | train | js |
8047afc8a798be3640a6640862185777e5bcde7e | diff --git a/src/Resources/public/js/FpJsFormValidator.js b/src/Resources/public/js/FpJsFormValidator.js
index <HASH>..<HASH> 100755
--- a/src/Resources/public/js/FpJsFormValidator.js
+++ b/src/Resources/public/js/FpJsFormValidator.js
@@ -1051,5 +1051,4 @@ var FpJsFormValidator = new function () {
window.FpJsBaseCon... | set FpJsFormElement as global, removed auto jquery init | formapro_JsFormValidatorBundle | train | js |
abc052065765c6636aebf116389927b9ba9e5f3d | diff --git a/core-bundle/contao/drivers/DC_File.php b/core-bundle/contao/drivers/DC_File.php
index <HASH>..<HASH> 100644
--- a/core-bundle/contao/drivers/DC_File.php
+++ b/core-bundle/contao/drivers/DC_File.php
@@ -471,7 +471,7 @@ class DC_File extends \DataContainer implements \editable
}
// Save the value if ... | [Core] Do not strictly compare values when determining whether to save or not in `DC_File` (see #<I>) | contao_contao | train | php |
9dbdc392d50bda1ee7c222247cde25f27733b53c | diff --git a/lib/fog/digitalocean/requests/compute/get_server_details.rb b/lib/fog/digitalocean/requests/compute/get_server_details.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/digitalocean/requests/compute/get_server_details.rb
+++ b/lib/fog/digitalocean/requests/compute/get_server_details.rb
@@ -16,7 +16,17 @@ module... | [digitalocean|compute] added get_server_details mock code | fog_fog | train | rb |
8c7905f7694ccd799141d5e677a9e2ccb60b8f24 | diff --git a/pyjfuzz/core/pjf_mutators.py b/pyjfuzz/core/pjf_mutators.py
index <HASH>..<HASH> 100644
--- a/pyjfuzz/core/pjf_mutators.py
+++ b/pyjfuzz/core/pjf_mutators.py
@@ -142,7 +142,7 @@ class PJFMutators(object):
Perform the fuzzing
"""
buf = list(obj)
- FuzzFactor = (float(len(bu... | Fixed division by 0 with fuzzfactor | mseclab_PyJFuzz | train | py |
b622eaf97486ee66b2e8ed88c73244e598e502e1 | diff --git a/lib/did_you_mean/spell_checkers/method_name_checker.rb b/lib/did_you_mean/spell_checkers/method_name_checker.rb
index <HASH>..<HASH> 100644
--- a/lib/did_you_mean/spell_checkers/method_name_checker.rb
+++ b/lib/did_you_mean/spell_checkers/method_name_checker.rb
@@ -12,7 +12,7 @@ module DidYouMean
@r... | The MethodNameChecker class shouldn't depend on the VariableNameChecker class | yuki24_did_you_mean | train | rb |
1483601f2e787203a39fddc51067890ff9bd6430 | diff --git a/controller/src/main/java/org/jboss/as/controller/operations/validation/OperationValidator.java b/controller/src/main/java/org/jboss/as/controller/operations/validation/OperationValidator.java
index <HASH>..<HASH> 100644
--- a/controller/src/main/java/org/jboss/as/controller/operations/validation/OperationV... | Exclude EXPRESSION nodes from all range validation in subsystem test, not just 'min' | wildfly_wildfly | train | java |
006c40089f6298710c513b33155876a400ad000e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -299,6 +299,6 @@ setup(
'update': UpdateCommand},
ext_modules=[Extension(
name='yara',
- extra_compile_args = ['-std=c99'],
+ language='c++11',
include_dirs=['yara/libyara/include'... | Try compiling yara-python with C++ compiler. | VirusTotal_yara-python | train | py |
44ff2b205da7d189322ad6034f9a0386955bded5 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -253,15 +253,17 @@ var EventEmitter = function (options) {
_.extend(EventEmitter.prototype, {
parseRoute: function (route) {
if (_.isString(route)) {
- return route.split(this.delimiter);
- }
... | Pass specific subroute newListener tests. | plediii_HevEmitter | train | js |
c1936c656f3792bb6bd5e3083a54c5502cce73ec | diff --git a/greenhouse/compat.py b/greenhouse/compat.py
index <HASH>..<HASH> 100644
--- a/greenhouse/compat.py
+++ b/greenhouse/compat.py
@@ -21,11 +21,3 @@ def _find_main():
glet = glet.parent
return glet
main_greenlet = _find_main()
-
-# for whatever reason, os.mknod isn't working on FreeBSD 8 (at lea... | never did get rid of that stupid thing, just the uses of it | teepark_greenhouse | train | py |
ab8deae516f3bdf9e5cb646782f5b0529805d555 | diff --git a/lib/less/functions/types.js b/lib/less/functions/types.js
index <HASH>..<HASH> 100644
--- a/lib/less/functions/types.js
+++ b/lib/less/functions/types.js
@@ -11,6 +11,9 @@ var isa = function (n, Type) {
return (n instanceof Type) ? Keyword.True : Keyword.False;
},
isunit = function (n, unit)... | Handle the missing second argument to isunit() with an appropriate error message. | less_less.js | train | js |
34e963a757cb5b8c5f21d0c34f1ca055a0e0ad5f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ class optional_build_ext(build_ext):
setup_kwargs = dict(
name = 'wrapt',
- version = '1.1.3',
+ version = '1.1.4',
description = 'Module for decorators, wrappers and monkey patching.'... | Increment version to <I> in setup.py. | ionelmc_python-lazy-object-proxy | train | py |
f7a1b294e32a63a3bc457302004a3dbdf8404386 | diff --git a/tools/update-dependency-version.js b/tools/update-dependency-version.js
index <HASH>..<HASH> 100644
--- a/tools/update-dependency-version.js
+++ b/tools/update-dependency-version.js
@@ -39,14 +39,18 @@ glob(`${SERVER_FOLDER}/**/package.json`, null, (err, files) => {
}
});
});
- ... | make sure to add before checking git status | cdmbase_fullstack-pro | train | js |
b551b980a1de8ef3a3a4aa6d93de25ed1b4238d9 | diff --git a/email/controllers/View.php b/email/controllers/View.php
index <HASH>..<HASH> 100644
--- a/email/controllers/View.php
+++ b/email/controllers/View.php
@@ -73,7 +73,9 @@ class View extends Base
/** @var Asset $oAsset */
$oAsset = Factory::service('Asset');
- $oAsset->lo... | Clear Assets for ViewOnly email | nails_module-email | train | php |
b48b196910af22089c1f34ce5d0ad30147558293 | diff --git a/railties/lib/rails/application/configuration.rb b/railties/lib/rails/application/configuration.rb
index <HASH>..<HASH> 100644
--- a/railties/lib/rails/application/configuration.rb
+++ b/railties/lib/rails/application/configuration.rb
@@ -265,6 +265,7 @@ module Rails
if respond_to?(:active_record... | Consolidate active_record <I> default loading
There appears to be no reason for these configs to be separate, and it makes
sense to group by framework. | rails_rails | train | rb |
5c763053a903d83e9e69df1f7ec59e0c386a3188 | diff --git a/pgi/util.py b/pgi/util.py
index <HASH>..<HASH> 100644
--- a/pgi/util.py
+++ b/pgi/util.py
@@ -220,7 +220,7 @@ def encode(string):
return string
-KWD_RE = re.compile("^(%s)$" % "|".join(keyword.kwlist))
+KWD_RE = re.compile("^(%s)$" % "|".join(keyword.kwlist + ["print", "exec"]))
def escape_id... | Escape Python 2 only keywords with Python 3 as well, so we expose the same API | pygobject_pgi | train | py |
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.