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 |
|---|---|---|---|---|---|
402502dbc9b459dc8a5ff52a977e3021a2edbeda | diff --git a/geomdl/Abstract.py b/geomdl/Abstract.py
index <HASH>..<HASH> 100644
--- a/geomdl/Abstract.py
+++ b/geomdl/Abstract.py
@@ -747,7 +747,7 @@ class Surface(object):
if self._bounding_box is None or len(self._bounding_box) == 0:
self._eval_bbox()
- return self._bounding_box
+ ... | Fix bounding box return type for the Surface class | orbingol_NURBS-Python | train | py |
074907e79f9128f68261795bf9dd12d854e9ca5d | diff --git a/MAVProxy/modules/lib/mp_util.py b/MAVProxy/modules/lib/mp_util.py
index <HASH>..<HASH> 100644
--- a/MAVProxy/modules/lib/mp_util.py
+++ b/MAVProxy/modules/lib/mp_util.py
@@ -5,6 +5,7 @@
import gzip
import math
import os
+import io
import sys
import platform
import warnings
@@ -272,7 +273,8 @@ def dow... | mp_util: fixed param download in py2
py2 gzip doesn't have decompress() | ArduPilot_MAVProxy | train | py |
11f1ea64cb6c3a0337b38d4cd42a82ab6075670c | diff --git a/lib/bmc-daemon-lib/conf.rb b/lib/bmc-daemon-lib/conf.rb
index <HASH>..<HASH> 100644
--- a/lib/bmc-daemon-lib/conf.rb
+++ b/lib/bmc-daemon-lib/conf.rb
@@ -236,7 +236,7 @@ module BmcDaemonLib
end
# Notify startup
- Rollbar.info("#{@app_name} #{@app_ver} [#{@host}]")
+ Rollbar.info("... | conf: rollbar: slight change on announcement message | bmedici_bmc-daemon-lib | train | rb |
982e552763168bc9ac1d0706d70ae2648a225d8b | diff --git a/implicit/recommender_base.py b/implicit/recommender_base.py
index <HASH>..<HASH> 100644
--- a/implicit/recommender_base.py
+++ b/implicit/recommender_base.py
@@ -43,6 +43,9 @@ class RecommenderBase(object):
calculate the best items for this user.
N : int, optional
The num... | Doc update - filter_already_liked_items
Adding filter_already_liked_items to docstring. | benfred_implicit | train | py |
4bb44b38493bdbb56f57ac36e60fd02277139cea | diff --git a/Command/TrustedformCommand.php b/Command/TrustedformCommand.php
index <HASH>..<HASH> 100644
--- a/Command/TrustedformCommand.php
+++ b/Command/TrustedformCommand.php
@@ -75,12 +75,14 @@ class TrustedformCommand extends ModeratedCommand
if (!$this->checkRunStatus($input, $output, $this->getName().$... | [ENG-<I>] Add run completion to moderated command. | TheDMSGroup_mautic-enhancer | train | php |
daacea89167c66790932dbfd0afb012936e883a1 | diff --git a/slick.grid.js b/slick.grid.js
index <HASH>..<HASH> 100644
--- a/slick.grid.js
+++ b/slick.grid.js
@@ -514,8 +514,11 @@ if (typeof Slick === "undefined") {
lastResizable = i;
}
});
+ if (firstResizable === undefined) {
+ return;
+ ... | Fixed columns appearing as resizable when "resizable" is false for all of them.
Fixed arguments defaults in event triggering in the grid. | coatue-oss_slickgrid2 | train | js |
4652446efee458d8b6287935cd7fdb28ccc480ed | diff --git a/vendor/Krystal/Application/Component/CsrfProtector.php b/vendor/Krystal/Application/Component/CsrfProtector.php
index <HASH>..<HASH> 100644
--- a/vendor/Krystal/Application/Component/CsrfProtector.php
+++ b/vendor/Krystal/Application/Component/CsrfProtector.php
@@ -23,10 +23,14 @@ final class CsrfProtector... | Forced to append $csrfToken automatically | krystal-framework_krystal.framework | train | php |
f303739444d63d421fd9f68f74840167edbf8d61 | diff --git a/ipcalc.py b/ipcalc.py
index <HASH>..<HASH> 100644
--- a/ipcalc.py
+++ b/ipcalc.py
@@ -363,6 +363,18 @@ class IP(object):
def __eq__(self, other):
return int(self) == int(IP(other))
+ def __add__(self, offset):
+ """Add numeric offset to the IP."""
+ if not isinstance(offset... | Implemented __add__ and __sub__ as suggested by @bensonrodney
Close #<I> | tehmaze_ipcalc | train | py |
3cc630798b630f66eafe940a9eee7521f1bd9a6e | diff --git a/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php b/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
+++ b/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
@@ -181,6 +181,10 @@ class JoinedSubclass... | Fix DDC-<I>.
Credit goes to Jack van Galen for fixing this issue.
Fix for JoinedSubclassPersister, multiple inserts with versioning throws
an optimistic locking exception. | doctrine_orm | train | php |
eeba07cda24c0e85198dd52a071991377f695b61 | diff --git a/guava/src/com/google/common/io/BaseEncoding.java b/guava/src/com/google/common/io/BaseEncoding.java
index <HASH>..<HASH> 100644
--- a/guava/src/com/google/common/io/BaseEncoding.java
+++ b/guava/src/com/google/common/io/BaseEncoding.java
@@ -181,7 +181,7 @@ public abstract class BaseEncoding {
*/
@G... | Guava issue <I>: fix generics for BaseEncoding streaming encoding/decoding
-------------
Created by MOE: <URL> | google_guava | train | java |
96f3c241ca7ea60c637812db69e92b54bd7c8deb | diff --git a/safe/utilities/file_downloader.py b/safe/utilities/file_downloader.py
index <HASH>..<HASH> 100644
--- a/safe/utilities/file_downloader.py
+++ b/safe/utilities/file_downloader.py
@@ -130,8 +130,12 @@ class FileDownloader(object):
QCoreApplication.processEvents()
result = self.reply.e... | fix if the request is cancelled, the http response is none | inasafe_inasafe | train | py |
6c95e0d58ff5683ee5be30491a3fa5f99b2b5d08 | diff --git a/src/definitions.js b/src/definitions.js
index <HASH>..<HASH> 100644
--- a/src/definitions.js
+++ b/src/definitions.js
@@ -4,14 +4,15 @@
import {Map} from 'immutable';
export type NormalizeState = {
- entities: Object|Map<any,any>,
- result: Object|Map<any,any>,
+ entities: Object|Map<any, any>... | Collect the EntitySchemas used when normalizing.
They are merged into state.
This lets the entity selectors select a child item out of state that wasn't
defined in the root schema.
Some state keys were renamed:
_schema is now _baseSchema
_schemas is added
Some flow type fixes were also required for this:
* Add Denor... | blueflag_enty | train | js |
77244a4baeedc399c36a4e2475a8cf7f1392baa6 | diff --git a/berserker_resolver/__init__.py b/berserker_resolver/__init__.py
index <HASH>..<HASH> 100644
--- a/berserker_resolver/__init__.py
+++ b/berserker_resolver/__init__.py
@@ -1,4 +1,4 @@
from berserker_resolver.resolver import ThreadResolver as Resolver
-from berserker_resolver.extra import tries_detect
+from ... | func rename (cosmetics) | DmitryFillo_berserker_resolver | train | py,py |
50cfbd6e1b9fc9da14ae76dcd63e77e70c3e23ec | diff --git a/src/com/vmware/vim25/mo/samples/QueryEvent.java b/src/com/vmware/vim25/mo/samples/QueryEvent.java
index <HASH>..<HASH> 100644
--- a/src/com/vmware/vim25/mo/samples/QueryEvent.java
+++ b/src/com/vmware/vim25/mo/samples/QueryEvent.java
@@ -81,7 +81,7 @@ public class QueryEvent
EventHistoryCollector hi... | refactored with a fixed method name | yavijava_yavijava | train | java |
a46cad45e576a67c5ceb0adb27490f2af4dbae12 | diff --git a/progressbar.js b/progressbar.js
index <HASH>..<HASH> 100644
--- a/progressbar.js
+++ b/progressbar.js
@@ -10,10 +10,15 @@
}
}(this, function() {
+ var oldTweenable = this.Tweenable;
+
// The next line will be replaced with minified version of shifty library
- // in a build step
+ // i... | Prevent exposing Tweenable to global scope | kimmobrunfeldt_progressbar.js | train | js |
ae89bc2d88cf0ae6ddb5e3b388b10d2646c13245 | diff --git a/src/components/grid/Column.js b/src/components/grid/Column.js
index <HASH>..<HASH> 100644
--- a/src/components/grid/Column.js
+++ b/src/components/grid/Column.js
@@ -47,7 +47,7 @@ const Column = React.createClass({
},
_getScreenWidth () {
- const width = document.documentElement.clientWidth || d... | change to window.innerWidth for column | mxenabled_mx-react-components | train | js |
616d48f3c7e1491cb237c929ee0d6a57a56330d5 | diff --git a/src/components/selects/mixins/generators.js b/src/components/selects/mixins/generators.js
index <HASH>..<HASH> 100644
--- a/src/components/selects/mixins/generators.js
+++ b/src/components/selects/mixins/generators.js
@@ -91,7 +91,7 @@ export default {
})
if (!children.length) {
- ch... | Added disabled items option (#<I>)
* Added disabled items option
The function genTile now has an optional boolean variable for disabled items. I changed the noDataText item to be disabled. This prevents someone from clicking "No Data Available" and it returning that as the selected item. Now it merely returns an em... | vuetifyjs_vuetify | train | js |
9429a9d93ab46ce9f890f2eb39a4133072944c56 | diff --git a/standalone/src/main/java/org/jboss/as/console/client/domain/groups/deployment/DeploymentStep1.java b/standalone/src/main/java/org/jboss/as/console/client/domain/groups/deployment/DeploymentStep1.java
index <HASH>..<HASH> 100644
--- a/standalone/src/main/java/org/jboss/as/console/client/domain/groups/deploy... | increase logging verbosity for deployment errors | hal_core | train | java |
9319cefb151a6c113c36a893c78da67b8e362ba4 | diff --git a/h2o-py/tests/testdir_generic_model/pyunit_generic_model_mojo_glm.py b/h2o-py/tests/testdir_generic_model/pyunit_generic_model_mojo_glm.py
index <HASH>..<HASH> 100644
--- a/h2o-py/tests/testdir_generic_model/pyunit_generic_model_mojo_glm.py
+++ b/h2o-py/tests/testdir_generic_model/pyunit_generic_model_mojo_... | Removed local test filepath in GLM test and replaced with a temp file | h2oai_h2o-3 | train | py |
9a14830750dbb2afd17f9881f6d950b9e78259fe | diff --git a/src/core/Application.php b/src/core/Application.php
index <HASH>..<HASH> 100644
--- a/src/core/Application.php
+++ b/src/core/Application.php
@@ -128,18 +128,10 @@ class Application extends ServiceLocator
$this->registerRoutes();
$this->bootstrapped = true;
} ... | Do not throw exceptions on test environment | bixuehujin_blink | train | php |
b6ab25cf5d2934bd8f5d53ae3aabfe154b6e26d9 | diff --git a/spring-hateoas-ext/src/main/java/de/escalon/hypermedia/action/Input.java b/spring-hateoas-ext/src/main/java/de/escalon/hypermedia/action/Input.java
index <HASH>..<HASH> 100644
--- a/spring-hateoas-ext/src/main/java/de/escalon/hypermedia/action/Input.java
+++ b/spring-hateoas-ext/src/main/java/de/escalon/hy... | Adjusted javadoc of @Input | dschulten_hydra-java | train | java |
ab94646da6e984d50da22d2f63488515941192ca | diff --git a/lib/neo4j/transaction.rb b/lib/neo4j/transaction.rb
index <HASH>..<HASH> 100644
--- a/lib/neo4j/transaction.rb
+++ b/lib/neo4j/transaction.rb
@@ -29,15 +29,17 @@ module Neo4j
end
def root
- stack.first
+ initialized_stack.first
+ end
+
+ def initialized_stack
+ ... | bug with uninitialized transaction stack | neo4jrb_neo4j | train | rb,rb |
9f99ef6c24f4e939eedfe24a6457f6352eb1bf36 | diff --git a/lib/p5.serialport.js b/lib/p5.serialport.js
index <HASH>..<HASH> 100644
--- a/lib/p5.serialport.js
+++ b/lib/p5.serialport.js
@@ -386,7 +386,6 @@
data: toWrite
});
};
- };
/**
* Returns a number between 0 and 255 for the next byte that's waiting in the buffer. | Removed stray }; | vanevery_p5.serialport | train | js |
5b544d81aa01d1c2f72c7c9df60ccc0ea8eb07b4 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -63,8 +63,14 @@ setup(
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
- "License :: OSI Approved :: Apache License 2.0",
+ "License :: OSI Approved :: A... | Fix PyPI classifiers (#<I>)
* Add PyPI classifiers for supported python versions
* Fix PyPI classifiers for Apache License | vertica_vertica-python | train | py |
54b0629bdacd5a1cb4385a0dd5910cee81fd8746 | diff --git a/test/component-library/src/utils/f7-components-router.js b/test/component-library/src/utils/f7-components-router.js
index <HASH>..<HASH> 100644
--- a/test/component-library/src/utils/f7-components-router.js
+++ b/test/component-library/src/utils/f7-components-router.js
@@ -40,11 +40,11 @@ export default {
... | Test lib, rename componentInstance | phenomejs_phenome | train | js |
f954253b1affa2ab313afa3b7e5b364b43af6201 | diff --git a/cihai/datasets/unihan.py b/cihai/datasets/unihan.py
index <HASH>..<HASH> 100644
--- a/cihai/datasets/unihan.py
+++ b/cihai/datasets/unihan.py
@@ -174,7 +174,7 @@ class Unihan(CihaiDatabase):
for table in tables:
table = Table(table, self.metadata)
- response[table.fullnam... | wip for unihan. more coming soon. | cihai_cihai | train | py,py |
f30c7cf34a0f9abd02ec8898136d1ad51debd21d | diff --git a/drivers/storage/gcepd/storage/gce_storage.go b/drivers/storage/gcepd/storage/gce_storage.go
index <HASH>..<HASH> 100644
--- a/drivers/storage/gcepd/storage/gce_storage.go
+++ b/drivers/storage/gcepd/storage/gce_storage.go
@@ -300,7 +300,7 @@ func (d *driver) Volumes(
return vols, nil
}
-// VolumeInspe... | Add gcepd support for VolumeInspectByName | thecodeteam_libstorage | train | go |
edc6721b4bafbdab3bdb25d96838919ecd88fa31 | diff --git a/montblanc/impl/rime/tensorflow/RimeSolver.py b/montblanc/impl/rime/tensorflow/RimeSolver.py
index <HASH>..<HASH> 100644
--- a/montblanc/impl/rime/tensorflow/RimeSolver.py
+++ b/montblanc/impl/rime/tensorflow/RimeSolver.py
@@ -402,6 +402,8 @@ class RimeSolver(MontblancTensorflowSolver):
yield... | Re-add missing chunks_fed increment | ska-sa_montblanc | train | py |
f14ec6c68ee00670d258073c7e7b5b7b93a77849 | diff --git a/pysnmp/smi/mibs/SNMPv2-TC.py b/pysnmp/smi/mibs/SNMPv2-TC.py
index <HASH>..<HASH> 100644
--- a/pysnmp/smi/mibs/SNMPv2-TC.py
+++ b/pysnmp/smi/mibs/SNMPv2-TC.py
@@ -267,7 +267,7 @@ class TextualConvention:
else:
return base.prettyIn(self, value)
- outputValue = octet... | fix to TextualConvention initializer | etingof_pysnmp | train | py |
2f11947eeef87b21c46bd9eb97e377effcd36983 | diff --git a/lib/mediawiki/butt.rb b/lib/mediawiki/butt.rb
index <HASH>..<HASH> 100644
--- a/lib/mediawiki/butt.rb
+++ b/lib/mediawiki/butt.rb
@@ -134,23 +134,19 @@ module MediaWiki
# @since 0.3.0 as is_user_bot?
# @since 0.4.1 as user_bot?
def user_bot?
- begin
- post({ action: 'query', asse... | :shirt: Clean up a couple of redundant begin blocks | FTB-Gamepedia_MediaWiki-Butt-Ruby | train | rb |
a4f5fb1b63d6b0f06ea4cb4287f91a78a88ccf15 | diff --git a/lib/magic_lamp/defaults_manager.rb b/lib/magic_lamp/defaults_manager.rb
index <HASH>..<HASH> 100644
--- a/lib/magic_lamp/defaults_manager.rb
+++ b/lib/magic_lamp/defaults_manager.rb
@@ -26,5 +26,10 @@ module MagicLamp
merged_defaults_hash.merge!(defaults)
end
end
+
+ def define(new_... | added DefaultsManager#define | crismali_magic_lamp | train | rb,rb |
ffed9e0b10ca163fb9e55dce06625ba87fc5b3c4 | diff --git a/sktensor/pyutils.py b/sktensor/pyutils.py
index <HASH>..<HASH> 100644
--- a/sktensor/pyutils.py
+++ b/sktensor/pyutils.py
@@ -44,3 +44,19 @@ def func_attr(f, attr):
return getattr(f, '__%s__' % attr)
else:
raise ValueError('Object %s has no attr' % (str(f), attr))
+
+
+def from_to_wi... | add helper function to create from-to-without ranges | mnick_scikit-tensor | train | py |
9a6be9ba2fe6f349fe51b527b1d3bf995a83f5ff | diff --git a/docs/source/generate_configs.py b/docs/source/generate_configs.py
index <HASH>..<HASH> 100755
--- a/docs/source/generate_configs.py
+++ b/docs/source/generate_configs.py
@@ -30,7 +30,7 @@ def rewrite_entries(config, path, sec=None, sort=False):
comments = [sec.inline_comments[entry]] + sec.comment... | docs: verbatim indenting in generate_configs script
this fixes an issue with indenting not being correctly
copied from comments of specfiles | pazz_alot | train | py |
0cb570b2e01fdcbf4b62c2ab3a3ae46b948d951f | diff --git a/wdb/breakpoint.py b/wdb/breakpoint.py
index <HASH>..<HASH> 100644
--- a/wdb/breakpoint.py
+++ b/wdb/breakpoint.py
@@ -76,6 +76,9 @@ class LineBreakpoint(Breakpoint):
return super(LineBreakpoint, self).__eq__(
other) and self.line == other.line
+ def __hash__(self):
+ retur... | Fix breakpoints in python 3 | Kozea_wdb | train | py |
5f384b692747935e7e08729839ca237531d74cad | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@
# should have been distributed with this file.
from setuptools import setup, find_packages
-import os
+import os, re
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README =... | Fixed code to get VERSION in setup.py | tethysplatform_condorpy | train | py |
75809a70bac2290286b9fb3ccd3343f3068ce5ba | diff --git a/spyder/plugins/tests/test_variableexplorer.py b/spyder/plugins/tests/test_variableexplorer.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/tests/test_variableexplorer.py
+++ b/spyder/plugins/tests/test_variableexplorer.py
@@ -19,7 +19,7 @@ def test_get_settings(monkeypatch):
if option == 'data... | Fix broken reference to variable explorer plugin. | spyder-ide_spyder | train | py |
c0e5936dd5290c70f4cc8d033cb6c0be13124e1b | diff --git a/Listener/UserPreferencesListener.php b/Listener/UserPreferencesListener.php
index <HASH>..<HASH> 100644
--- a/Listener/UserPreferencesListener.php
+++ b/Listener/UserPreferencesListener.php
@@ -11,6 +11,7 @@
namespace Orkestra\Bundle\ApplicationBundle\Listener;
+use Orkestra\Bundle\ApplicationBundle\M... | UserPreferencesListener now expects a UserInterface instead of an implementation | orkestra_OrkestraApplicationBundle | train | php |
cff8eaab3b224ff1a74fbe5bf36ea59d172a6c7a | diff --git a/src/animation/Animator.js b/src/animation/Animator.js
index <HASH>..<HASH> 100644
--- a/src/animation/Animator.js
+++ b/src/animation/Animator.js
@@ -217,6 +217,11 @@ define(function (require) {
return 'rgba(' + rgba.join(',') + ')';
}
+ function getArrayDim(keyframes) {
+ var las... | Fix bug when animating to empty array. | ecomfe_zrender | train | js |
c566ffa43daaef67e682a6f6a230ad5e51437985 | diff --git a/spec/resource_spec.rb b/spec/resource_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/resource_spec.rb
+++ b/spec/resource_spec.rb
@@ -10,6 +10,18 @@ describe GoCardless::Resource do
props.each { |k,v| expect(resource.send(k)).to eq(v) }
end
+ describe "#inspect" do
+ let(:test_resource) do
+ ... | Adds spec for #inspect
Does a simple regex against string given from inspect | gocardless_gocardless-legacy-ruby | train | rb |
48126822da6a80891f15e33db93d649c02ce2f95 | diff --git a/src/main/java/org/dasein/cloud/azure/platform/AzureSqlDatabaseSupport.java b/src/main/java/org/dasein/cloud/azure/platform/AzureSqlDatabaseSupport.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/dasein/cloud/azure/platform/AzureSqlDatabaseSupport.java
+++ b/src/main/java/org/dasein/cloud/azure/pla... | Changed the rule name to use current timestamp instead of start IP address | dasein-cloud_dasein-cloud-azure | train | java |
4481eac3fcb503ef9bc70d9efbb87081f774b872 | diff --git a/lib/shelly/version.rb b/lib/shelly/version.rb
index <HASH>..<HASH> 100644
--- a/lib/shelly/version.rb
+++ b/lib/shelly/version.rb
@@ -1,3 +1,3 @@
module Shelly
- VERSION = "0.1.33"
+ VERSION = "0.1.34.pre"
end | Bumped version number to <I>.pre | Ragnarson_shelly | train | rb |
d73419bfa56c3ff8a8070fe94bb970288a55a454 | diff --git a/code/test_png.py b/code/test_png.py
index <HASH>..<HASH> 100644
--- a/code/test_png.py
+++ b/code/test_png.py
@@ -22,6 +22,7 @@ except ImportError:
from StringIO import StringIO as BytesIO
import itertools
import struct
+import sys
# http://www.python.org/doc/2.4.4/lib/module-unittest.html
import ... | import sys so that the warnings about skipping the numpy tests
are seen. | drj11_pypng | train | py |
df91d77b1d17022cb555df81329703656ff78135 | diff --git a/models/css_file.php b/models/css_file.php
index <HASH>..<HASH> 100644
--- a/models/css_file.php
+++ b/models/css_file.php
@@ -47,7 +47,7 @@ class CssFile extends AssetCompressor {
if ($filename == $file) {
return $path . $file;
}
- if (strpos($filename, DS) !== false && file_exists($path... | [FIX] fix for issue #<I> - finding files in subfolders on Windows | markstory_asset_compress | train | php,php |
eda49e08ee19645c467fa2cb16c09200e9dfcb55 | diff --git a/tasks/image.js b/tasks/image.js
index <HASH>..<HASH> 100644
--- a/tasks/image.js
+++ b/tasks/image.js
@@ -16,6 +16,13 @@ module.exports = function (grunt) {
});
async.forEach(this.files, function (file, next) {
+ var basename = path.basename(file.dest);
+ var dir = file.dest.replace(b... | mkdir if dest does not exist | 1000ch_grunt-image | train | js |
cb038cb1d4da2c9dc1c734b8b9add24b32ed9709 | diff --git a/src/main/java/com/thinkaurelius/faunus/formats/titan/FaunusTitanGraph.java b/src/main/java/com/thinkaurelius/faunus/formats/titan/FaunusTitanGraph.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/thinkaurelius/faunus/formats/titan/FaunusTitanGraph.java
+++ b/src/main/java/com/thinkaurelius/faunus/f... | updated Faunus with change in Titans EdgeSerializers API. | thinkaurelius_faunus | train | java |
0ddada8ce69bb0718bccebf3aa49a09c8e1e3f80 | diff --git a/lib/webworker/WebWorkerMainTemplatePlugin.js b/lib/webworker/WebWorkerMainTemplatePlugin.js
index <HASH>..<HASH> 100644
--- a/lib/webworker/WebWorkerMainTemplatePlugin.js
+++ b/lib/webworker/WebWorkerMainTemplatePlugin.js
@@ -45,6 +45,9 @@ class WebWorkerMainTemplatePlugin {
"if(!installedChunks[chu... | fix: add missing public path in importScripts | webpack_webpack | train | js |
07073f551ba44ece0d35598ca6890a24d0f93b94 | diff --git a/war/src/main/js/widgets/config/tabbar.js b/war/src/main/js/widgets/config/tabbar.js
index <HASH>..<HASH> 100644
--- a/war/src/main/js/widgets/config/tabbar.js
+++ b/war/src/main/js/widgets/config/tabbar.js
@@ -10,8 +10,8 @@ exports.addPageTabs = function(configSelector, onEachConfigTable, options) {
v... | Applying @kzantow fix for the draggable sections regression
Thanks @kzantow and sorry for missing this!! | jenkinsci_jenkins | train | js |
ae72f9846bc907c91acb40466a200cc061da0ec2 | diff --git a/ui/src/components/drawer/QDrawer.js b/ui/src/components/drawer/QDrawer.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/drawer/QDrawer.js
+++ b/ui/src/components/drawer/QDrawer.js
@@ -672,7 +672,9 @@ export default Vue.extend({
class: this.classes,
style: this.style,
on: th... | fix(QDrawer): put content directives under flag | quasarframework_quasar | train | js |
0a65df5412d006fbe7cc097a5693084c1bcc02f2 | diff --git a/lib/less/parser.js b/lib/less/parser.js
index <HASH>..<HASH> 100644
--- a/lib/less/parser.js
+++ b/lib/less/parser.js
@@ -691,7 +691,7 @@ less.Parser = function Parser(env) {
var value, c = input.charCodeAt(i);
if ((c > 57 || c < 45) || c === 47) return;
- ... | Derp, set vmin before vm | less_less.js | train | js |
381947cf7f4068127e8b4805aed247b6998e2c6d | diff --git a/lib/vaulted_billing/gateways/ipcommerce.rb b/lib/vaulted_billing/gateways/ipcommerce.rb
index <HASH>..<HASH> 100644
--- a/lib/vaulted_billing/gateways/ipcommerce.rb
+++ b/lib/vaulted_billing/gateways/ipcommerce.rb
@@ -59,8 +59,10 @@ module VaultedBilling
end
def renew!
+ respon... | Updated error catching for session tokens. | envylabs_vaulted_billing | train | rb,rb |
b966716bb410a0aa739325f3ee2dd0a38ce20650 | diff --git a/src/db/src/Entity/Mysql/Schema.php b/src/db/src/Entity/Mysql/Schema.php
index <HASH>..<HASH> 100644
--- a/src/db/src/Entity/Mysql/Schema.php
+++ b/src/db/src/Entity/Mysql/Schema.php
@@ -32,7 +32,7 @@ class Schema extends \Swoft\Db\Entity\Schema
'datetime' => 'Types::DATETIME',
'float' ... | change decimal type to FLOAT | swoft-cloud_swoft-http-message | train | php |
c48f4d7eaa08688abae92655b19d15edeb86b79b | diff --git a/gromacs/analysis/plugins/__init__.py b/gromacs/analysis/plugins/__init__.py
index <HASH>..<HASH> 100644
--- a/gromacs/analysis/plugins/__init__.py
+++ b/gromacs/analysis/plugins/__init__.py
@@ -144,7 +144,6 @@ __plugin_classes__ = {p: M.__dict__[p] for p,M in _modules.items()}
# 3. add to the name space (... | fixed a NameError in plugins/__init__
After a QC code fix, the variables p and M were not leaking any more so
they do not need to be delete. | Becksteinlab_GromacsWrapper | train | py |
7f58fcde84f8e2511b0942f40249c901dce325f9 | diff --git a/closure/goog/ui/container.js b/closure/goog/ui/container.js
index <HASH>..<HASH> 100644
--- a/closure/goog/ui/container.js
+++ b/closure/goog/ui/container.js
@@ -364,7 +364,6 @@ goog.ui.Container.prototype.enterDocument = function() {
}
}, this);
- // Detect right-to-left direction.
var elem ... | Removed old comment that is no longer valid.
R=eae
DELTA=1 (0 added, 1 deleted, 0 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> | google_closure-library | train | js |
1a2824e5ef7547efdeb4f1ca24192c275809917b | diff --git a/lib/robot.js b/lib/robot.js
index <HASH>..<HASH> 100644
--- a/lib/robot.js
+++ b/lib/robot.js
@@ -26,6 +26,7 @@ function Robot(name, serial, secret, token) {
this.spotWidth = null;
this.spotHeight = null;
this.spotRepeat = null;
+ this.cleaningBoundaryId = null;
}
Robot.prototype.getS... | fix typo and add boundary id in status | Pmant_node-botvac | train | js |
86acc672862bfd5999314a62bc2a9aac620fa3c5 | diff --git a/profiles/killbill/src/test/java/org/killbill/billing/jaxrs/TestCatalog.java b/profiles/killbill/src/test/java/org/killbill/billing/jaxrs/TestCatalog.java
index <HASH>..<HASH> 100644
--- a/profiles/killbill/src/test/java/org/killbill/billing/jaxrs/TestCatalog.java
+++ b/profiles/killbill/src/test/java/org/k... | server: fix test failure after catalog change | killbill_killbill | train | java |
20902d664c3916c4305887cb99666d31dffb7bf4 | diff --git a/ui/src/store/configureStore.js b/ui/src/store/configureStore.js
index <HASH>..<HASH> 100644
--- a/ui/src/store/configureStore.js
+++ b/ui/src/store/configureStore.js
@@ -12,12 +12,12 @@ import dashboardUI from 'src/dashboards/reducers/ui'
import persistStateEnhancer from './persistStateEnhancer'
const ... | Move routing reducer last in redux store | influxdata_influxdb | train | js |
aeae35ec5ef59bea3121273b580454e2fa7365da | diff --git a/lib/wsoc/specs.rb b/lib/wsoc/specs.rb
index <HASH>..<HASH> 100644
--- a/lib/wsoc/specs.rb
+++ b/lib/wsoc/specs.rb
@@ -31,20 +31,19 @@ module WSOC
end
def Specs.map(host,port=nil)
+ url = URI::HTTP.build(:host => host, :port => port)
+
Specs.all.map do |spec|
- link = URI::HTT... | Changed Specs to store the source -> dest path pairs.
* Specs.map will now map the source, dest paths to their absolute URI
forms. | postmodern_wsoc | train | rb |
423cd03ccabbf2d400d0e0c7ec5dcad86c0e8872 | diff --git a/api/functions/ticker.js b/api/functions/ticker.js
index <HASH>..<HASH> 100644
--- a/api/functions/ticker.js
+++ b/api/functions/ticker.js
@@ -35,7 +35,7 @@ function tickerGenerator() {
.then(() => phase4(ticker))
.then(() => {
return {
- 'v1/ticker.json': JSON.stringify(ticker, null... | Use unindented JSON for ticker | stellarterm_stellarterm | train | js |
3b916445cefaebab0de1e2df56e46adad5429fc7 | diff --git a/src/Charcoal/Property/ObjectProperty.php b/src/Charcoal/Property/ObjectProperty.php
index <HASH>..<HASH> 100644
--- a/src/Charcoal/Property/ObjectProperty.php
+++ b/src/Charcoal/Property/ObjectProperty.php
@@ -179,11 +179,6 @@ class ObjectProperty extends AbstractProperty implements SelectablePropertyInter... | Do not force active on object property's collection loader. | locomotivemtl_charcoal-property | train | php |
b2ffdbeb0607f6b47e53d0373fe4b1acf09e92d9 | diff --git a/commands/info.js b/commands/info.js
index <HASH>..<HASH> 100644
--- a/commands/info.js
+++ b/commands/info.js
@@ -45,8 +45,8 @@ function formatInfo (cluster) {
})
}
- // we hide __consumer_offsets; don't count it
- const topicCount = Math.max(cluster.cluster.topics.length - 1, 0)
+ // we hide ... | Explicitly ignore __consumer_offsets, don't just adjust total count
The previous approach could lead to under-counting if
__consumer_offsets is not returned from the API for whatever reason. | heroku_heroku-kafka-jsplugin | train | js |
4ff377852c0219ade2366afd6e5c6a89a5e4f4b2 | diff --git a/src/SectionField/Api/Controller/RestInfoController.php b/src/SectionField/Api/Controller/RestInfoController.php
index <HASH>..<HASH> 100644
--- a/src/SectionField/Api/Controller/RestInfoController.php
+++ b/src/SectionField/Api/Controller/RestInfoController.php
@@ -162,7 +162,12 @@ class RestInfoController... | Make sure the rest info controller field mapping is handling datetime objects properly | dionsnoeijen_sexy-field-api | train | php |
cc337ff318fb23093b91cb4873316023bc4ced57 | diff --git a/Query/Builder.php b/Query/Builder.php
index <HASH>..<HASH> 100755
--- a/Query/Builder.php
+++ b/Query/Builder.php
@@ -1410,6 +1410,16 @@ class Builder
*/
public function forPageAfterId($perPage = 15, $lastId = 0, $column = 'id')
{
+
+ // avoid duplicate orders
+ ... | Avoid chunkById to duplicate orders clause with the same column | illuminate_database | train | php |
d234b8ddba41a17928520f5a70a017bc1d7d8372 | diff --git a/contrib/multiple_databases_repository_sample_app/payments/lib/payments/application_record.rb b/contrib/multiple_databases_repository_sample_app/payments/lib/payments/application_record.rb
index <HASH>..<HASH> 100644
--- a/contrib/multiple_databases_repository_sample_app/payments/lib/payments/application_re... | Missing require
Needed to run test in scope of the single BC | RailsEventStore_rails_event_store | train | rb |
7e1c8b1593294303ecce5c078aaf62f89b444bf4 | diff --git a/test/test_helper.py b/test/test_helper.py
index <HASH>..<HASH> 100644
--- a/test/test_helper.py
+++ b/test/test_helper.py
@@ -12,6 +12,7 @@ import time
import traceback
import unittest
from six import with_metaclass
+import psutil
ENV_VAR_LONG_RUNNING_TESTS_ENABLE = "ENABLE_LONG_RUNNING_TESTS"
XVFB_... | killing integration test with psutil | lbusoni_plico | train | py |
313f93c8c4ec073158317473dfbfb2aff29b1d65 | diff --git a/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java b/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java
index <HASH>..<HASH> 100644
--- a/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java
+++ b/guava-tests/benchmark/com/google/common/base/StopwatchBenc... | Fix calls to deprecated Stopwatch.elapsedTime(TimeUnit) by inlining that method's implementation ("elapsed(TimeUnit)").
-------------
Created by MOE: <URL> | google_guava | train | java |
08ed201a26490f9fdca4b35f4039188519ca4ee1 | diff --git a/header.js b/header.js
index <HASH>..<HASH> 100644
--- a/header.js
+++ b/header.js
@@ -84,7 +84,7 @@ BlockHeader.prototype.canonicalDifficulty = function (parentBlock) {
}
}
- var exp = new BN(this.number).divn(100000).sub(new BN(2))
+ var exp = new BN(this.number).divn(100000).subn(2)
if (!e... | Use BN.subn for speed | ethereumjs_ethereumjs-block | train | js |
6407c508ef9a7926edc4110fae24b87d7b382367 | diff --git a/src/Elasticsearch/Framework/Indexing/EntityMapper.php b/src/Elasticsearch/Framework/Indexing/EntityMapper.php
index <HASH>..<HASH> 100644
--- a/src/Elasticsearch/Framework/Indexing/EntityMapper.php
+++ b/src/Elasticsearch/Framework/Indexing/EntityMapper.php
@@ -130,7 +130,7 @@ class EntityMapper
... | NTR - extract fields for better custom analyzer support | shopware_platform | train | php |
70f88f766af3826d3d793401316716f9c61f8d62 | diff --git a/src/kit/app/SurfaceManager.js b/src/kit/app/SurfaceManager.js
index <HASH>..<HASH> 100644
--- a/src/kit/app/SurfaceManager.js
+++ b/src/kit/app/SurfaceManager.js
@@ -7,7 +7,7 @@ export default class SurfaceManager {
this.editorState = editorState
this.surfaces = new Map()
- editorState.addOb... | Recover selection in the pre-position stage.
Note: the DOM selection is needed for positioning overlays. | substance_texture | train | js |
4fb31b0fc8ac55b828a6a780c60443a1b3bdf90c | diff --git a/src/Enhavo/Bundle/AppBundle/Form/Type/ListType.php b/src/Enhavo/Bundle/AppBundle/Form/Type/ListType.php
index <HASH>..<HASH> 100644
--- a/src/Enhavo/Bundle/AppBundle/Form/Type/ListType.php
+++ b/src/Enhavo/Bundle/AppBundle/Form/Type/ListType.php
@@ -120,7 +120,7 @@ class ListType extends AbstractType
... | Fixed form errors with nested lists | enhavo_enhavo | train | php |
cb607ee4b78f58799cf5dacd34e0bcbafe999feb | diff --git a/genson/schema/generators/scalar.py b/genson/schema/generators/scalar.py
index <HASH>..<HASH> 100644
--- a/genson/schema/generators/scalar.py
+++ b/genson/schema/generators/scalar.py
@@ -50,7 +50,7 @@ class Number(SchemaGenerator):
"""
if sys.version_info < (3,):
JS_TYPES = ('integer', 'n... | fix lint issues with 'long' | wolverdude_GenSON | train | py,py |
55c31594f029abb0443558d83f365daba36986cb | diff --git a/biodata-models/src/main/java/org/opencb/biodata/models/variant/annotation/Score.java b/biodata-models/src/main/java/org/opencb/biodata/models/variant/annotation/Score.java
index <HASH>..<HASH> 100644
--- a/biodata-models/src/main/java/org/opencb/biodata/models/variant/annotation/Score.java
+++ b/biodata-mo... | feature/<I>.x: empty constructor created at Score.java | opencb_biodata | train | java |
c7da98a0d84ea31a3c4b960d53e64fec9fd5d10a | diff --git a/scout/server/blueprints/cases/controllers.py b/scout/server/blueprints/cases/controllers.py
index <HASH>..<HASH> 100644
--- a/scout/server/blueprints/cases/controllers.py
+++ b/scout/server/blueprints/cases/controllers.py
@@ -242,6 +242,7 @@ def get_sanger_unevaluated(store, institute_id):
# for each ... | printing a loine for debugging | Clinical-Genomics_scout | train | py |
1fc01fcd1f276c13d7714224914afdc8b2a17e27 | diff --git a/src/Symfony/Component/Translation/Loader/ResourceBundleLoader.php b/src/Symfony/Component/Translation/Loader/ResourceBundleLoader.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Translation/Loader/ResourceBundleLoader.php
+++ b/src/Symfony/Component/Translation/Loader/ResourceBundleLoader.php
@... | [Translation] typo in ResourceBundleLoader | symfony_symfony | train | php |
49d9a13522aef8ca7c21ba0a9a247bdb07af06de | diff --git a/lib/Stage.js b/lib/Stage.js
index <HASH>..<HASH> 100644
--- a/lib/Stage.js
+++ b/lib/Stage.js
@@ -104,7 +104,7 @@ module.exports = function(S) {
}
static validateStage(stageName) {
- return /^[a-zA-Z\d]+$/.test(stageName);
+ return /^[a-zA-Z0-9]+$/.test(stageName);
}
}
diff ... | StageCreate: allow for numbers in stage name | serverless_serverless | train | js,js |
cec5bf36c6e45603cbf06d378d71507a65d76d5f | diff --git a/ella/ellaexports/views.py b/ella/ellaexports/views.py
index <HASH>..<HASH> 100644
--- a/ella/ellaexports/views.py
+++ b/ella/ellaexports/views.py
@@ -3,6 +3,7 @@ from datetime import datetime
from django.http import Http404
from django.conf import settings
from django.template.defaultfilters import slug... | Content-type header changed to application/xml in ellaexports.views | ella_ella | train | py |
98811e421ad50f7b38c87662dffd01810058d7b4 | diff --git a/imdct_test.go b/imdct_test.go
index <HASH>..<HASH> 100644
--- a/imdct_test.go
+++ b/imdct_test.go
@@ -23,6 +23,7 @@ func imdctSlow(in []float32) []float32 {
}
func TestIMDCT(t *testing.T) {
+ //rand.Seed(0)
const blocksize = 256
data := make([]float32, blocksize/2)
for i := range data {
@@ -37,7 ... | Fix imdct test
This test was apparently only passing because of the specific random values generated.
I've decided to look at the absolute error instead of relative, because the relative error seems to vary a lot more.
The threshold happens to be the same.
fixes #8 | jfreymuth_vorbis | train | go |
4549233f4cbee80ee5327a31f2e45bb3dd06c9c0 | diff --git a/server.go b/server.go
index <HASH>..<HASH> 100644
--- a/server.go
+++ b/server.go
@@ -254,6 +254,8 @@ func (s *server) serve() {
if msg.to != All { // if it's not suppose to send to all connections (including itself)
if msg.to == NotMe && msg.from == connID { // if broadcast to other connectio... | issue fix. when msg.to or room is not exist, it would broadcast the native message | kataras_go-websocket | train | go |
a7b560d95094234b3e4a2a23ccadad266566c54e | diff --git a/testing/listener.go b/testing/listener.go
index <HASH>..<HASH> 100644
--- a/testing/listener.go
+++ b/testing/listener.go
@@ -161,8 +161,11 @@ func (tl *TestListener) forward() {
if c, ok := tl.historyInterest[workflow]; ok {
tl.testAdapter.Logf("TestListener: yes historyInterest for workflow %s",... | only send events after prevStarted | sclasen_swfsm | train | go |
307b36fc913c7340aff460b8ceb7425e3c7304d0 | diff --git a/flask_jwt_extended/utils.py b/flask_jwt_extended/utils.py
index <HASH>..<HASH> 100644
--- a/flask_jwt_extended/utils.py
+++ b/flask_jwt_extended/utils.py
@@ -455,4 +455,19 @@ def unset_jwt_cookies(response):
secure=get_cookie_secure(),
httponly=True,
... | unset_jwt_cookies now removes csrf tokesn too
Practically, there isn't any security concerns by leaving them set. We
don't do any verification on these cookies when they are sent to a
protected endpoint, and if we generated new tokens the values in those
cookies would be updated. This is just to make sure we are clean... | vimalloc_flask-jwt-extended | train | py |
5399218f05bfd488952166a26c61be064f99f874 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -23,5 +23,13 @@ setup(
# packages=['simpycity','test'],
include_package_data=True,
zip_safe=False,
+ classifiers=[
+ "Development Status :: 4 - Beta",
+ "Intended Audience :: Developers",
+ ... | Adding the classifiers information to the setup.py. | commandprompt_Simpycity | train | py |
89fa96e268a43723fa3ba9063f2f0e3ca77f53a2 | diff --git a/gandi/cli/commands/vm.py b/gandi/cli/commands/vm.py
index <HASH>..<HASH> 100644
--- a/gandi/cli/commands/vm.py
+++ b/gandi/cli/commands/vm.py
@@ -141,11 +141,12 @@ def delete(gandi, background, force, resource):
output_keys = ['id', 'type', 'step']
- iaas_list = [ vm['hostname'] for vm in gandi... | vm: remove info on each item since we alreay have the info in list | Gandi_gandi.cli | train | py |
fae56b8a63fd4af18a8ef39af860692e33039f60 | diff --git a/src/main/java/com/coreoz/wisp/Scheduler.java b/src/main/java/com/coreoz/wisp/Scheduler.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/coreoz/wisp/Scheduler.java
+++ b/src/main/java/com/coreoz/wisp/Scheduler.java
@@ -109,8 +109,8 @@ public final class Scheduler {
this.cancelHandles = new Concur... | Min threads should take account of the scheduler thread | Coreoz_Wisp | train | java |
6ec64704e2e4ce97d3e8177d96061fe577c96565 | diff --git a/upup/pkg/fi/cloudup/awstasks/launchconfiguration.go b/upup/pkg/fi/cloudup/awstasks/launchconfiguration.go
index <HASH>..<HASH> 100644
--- a/upup/pkg/fi/cloudup/awstasks/launchconfiguration.go
+++ b/upup/pkg/fi/cloudup/awstasks/launchconfiguration.go
@@ -50,7 +50,7 @@ type LaunchConfiguration struct {
// ... | Remove unnecessary json tag on field | kubernetes_kops | train | go |
417bce32329bdd93cfcd4ac282d14e43a2314fab | diff --git a/example/examplesite/settings/base.py b/example/examplesite/settings/base.py
index <HASH>..<HASH> 100644
--- a/example/examplesite/settings/base.py
+++ b/example/examplesite/settings/base.py
@@ -158,3 +158,4 @@ WAGTAIL_SITE_NAME = "examplesite"
BASE_URL = 'http://example.com'
GOOGLE_MAPS_V3_APIKEY = get... | Add zoom level to example to test setting | Frojd_wagtail-geo-widget | train | py |
562e025e48be8c4d51af2682bae7d9fcbe63df2b | diff --git a/generators/app/index.js b/generators/app/index.js
index <HASH>..<HASH> 100644
--- a/generators/app/index.js
+++ b/generators/app/index.js
@@ -40,7 +40,7 @@ module.exports = fountain.Base.extend({
if (this.options.js === 'typescript') {
Object.assign(pkg.devDependencies, {
- 'ts-l... | Upgrade ts-loader to <I>
Fix : on files changes, the webpack watcher serve the version n-1.
Now : when we change a file, webpack outputs the current version of the code | FountainJS_generator-fountain-webpack | train | js,js |
8b486dc38f208c7bd1864366aa50b4d50cdd1e2f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -134,6 +134,13 @@ module.exports = function (token) {
self.callApi(path, params, 'POST', callback);
};
+ /** datapoints: Array of Objects containing the same keys as for `createDatapoint`
+ */
+ this.createDatap... | Add "Create multiple datapoints" endpoint | malcolmocean_beeminderjs | train | js |
abf9861b8141f8a7d8d8996382ede09ca9a0cc3d | diff --git a/furious/tests/test_processors.py b/furious/tests/test_processors.py
index <HASH>..<HASH> 100644
--- a/furious/tests/test_processors.py
+++ b/furious/tests/test_processors.py
@@ -233,8 +233,11 @@ class TestRunJob(unittest.TestCase):
self.assertFalse(mock_success.called)
self.assertFalse(mo... | In test_Abort, add checks on logging and start
In the test_Abort test, I added a check to ensure that Async.start() is
not called. Also, I added checks on logging.info() and logging.error()
to ensure that info is called and error is not. | Workiva_furious | train | py |
b33910cd3b116c0746f8e1290f7ee9188d9a7b19 | diff --git a/keyring/backends/_OS_X_API.py b/keyring/backends/_OS_X_API.py
index <HASH>..<HASH> 100644
--- a/keyring/backends/_OS_X_API.py
+++ b/keyring/backends/_OS_X_API.py
@@ -20,12 +20,29 @@ SecKeychainOpen.argtypes = (
)
SecKeychainOpen.restype = OS_status
+class Error(Exception):
+ @classmethod
+ def ra... | Create Error and NotFound for capturing exceptions | jaraco_keyring | train | py |
eb4c51a9d9d7efdcf3802a409e24632bafcd8d74 | diff --git a/examples/shapes/js/entities/entities.js b/examples/shapes/js/entities/entities.js
index <HASH>..<HASH> 100644
--- a/examples/shapes/js/entities/entities.js
+++ b/examples/shapes/js/entities/entities.js
@@ -3,6 +3,8 @@ game.ShapeObject = me.Entity.extend({
* constructor
*/
init: function (x... | fixed the "shapes" example | melonjs_melonJS | train | js |
5751faa9ae33a789f0365d22ae7544d9e01f5f02 | diff --git a/src/Builder.php b/src/Builder.php
index <HASH>..<HASH> 100644
--- a/src/Builder.php
+++ b/src/Builder.php
@@ -43,11 +43,11 @@ class Builder
*/
public static function forge($app_dir, $var_dir, $debug = true, $data = [])
{
- $data = [
+ $data = array_merge([
sel... | fix code just to silence IDE's warning. | TuumPHP_Builder | train | php |
1b753386f464ed3a4388df396a979514e714de1a | diff --git a/src/Col.js b/src/Col.js
index <HASH>..<HASH> 100644
--- a/src/Col.js
+++ b/src/Col.js
@@ -67,7 +67,7 @@ class Col extends React.Component {
} = this.props;
const classes = {};
- const elementProps = _.cloneDeep(props);
+ const elementProps = _.clone(props);
function getPropValue(ke... | Bugfix: change cloneDeep to clone | rsuite_rsuite | train | js |
62dc9c55f626771b0eb115cd139f655527eabb85 | diff --git a/src/attributes/uniqueattribute.js b/src/attributes/uniqueattribute.js
index <HASH>..<HASH> 100644
--- a/src/attributes/uniqueattribute.js
+++ b/src/attributes/uniqueattribute.js
@@ -16,6 +16,7 @@
*
* @class gpf.attributes.UniqueAttribute
* @extends gpf.attributes.Attribute
+ * @gpf:attribute-restrict... | Document attribute restrictions (#<I>) | ArnaudBuchholz_gpf-js | train | js |
a00233648fbab731a3a701b97c87c7832c2c7d07 | diff --git a/command/server.go b/command/server.go
index <HASH>..<HASH> 100644
--- a/command/server.go
+++ b/command/server.go
@@ -609,6 +609,9 @@ func (c *ServerCommand) Run(args []string) int {
}
// Attempt to detect the redirect address, if possible
+ if coreConfig.RedirectAddr == "" {
+ c.logger.Warn("no `ap... | Warn when users don't configure api_addr (#<I>)
Fixes some sources of user strife | hashicorp_vault | train | go |
c51c551f3453de6cf0db2677deba2cbeb81f93fa | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ setuptools.setup(
url='https://github.com/kennknowles/python-jsonpath-rw',
license='Apache 2.0',
long_description=io.open('README.rst', encoding='utf-8').read(),
- packages = ['jsonpath_rw'],
+... | Fix setup.py so that it will include jsonpath_rw/bin subdirectory into the distribution. | kennknowles_python-jsonpath-rw | train | py |
b7532c3a3484dc03501e3d004c525f62996fc06b | diff --git a/src/controllers/DefaultController.php b/src/controllers/DefaultController.php
index <HASH>..<HASH> 100644
--- a/src/controllers/DefaultController.php
+++ b/src/controllers/DefaultController.php
@@ -162,6 +162,23 @@ class DefaultController extends Controller
}
}
+ /**
+ ... | Remove any entry types that were not generated by architect. Explanation in code comments. | Pennebaker_craft-architect | train | php |
bcf49996320f46ce7c12cbb5511eeb966a653dcd | diff --git a/src/combyne.js b/src/combyne.js
index <HASH>..<HASH> 100644
--- a/src/combyne.js
+++ b/src/combyne.js
@@ -393,7 +393,7 @@ var render = function() {
stack.reverse();
// Ensure these required properties cannot be overwritten
- context = { i: i, length: iLen, original: a... | made i 1-based instead of 0 for better usability | tbranyen_combyne | train | js |
a6123966375aa0d04fc769f6394336a233fa4dc4 | diff --git a/lib/prey/utils/managed_cache.js b/lib/prey/utils/managed_cache.js
index <HASH>..<HASH> 100644
--- a/lib/prey/utils/managed_cache.js
+++ b/lib/prey/utils/managed_cache.js
@@ -77,6 +77,10 @@ var ManagedCache = function() {
});
};
+ this.exists = function(id) {
+ return (self.store[id]) ? true :... | check for the existence of a cache key | prey_prey-node-client | train | js |
0ad2b2581c4b6d2e4350b0c5f32f4f49be5b20a9 | diff --git a/test/integration/start_stop_delete_test.go b/test/integration/start_stop_delete_test.go
index <HASH>..<HASH> 100644
--- a/test/integration/start_stop_delete_test.go
+++ b/test/integration/start_stop_delete_test.go
@@ -94,7 +94,7 @@ func TestStartStop(t *testing.T) {
waitFlag = "--wait=apiserver,syste... | Less verbosity for start_stop | kubernetes_minikube | train | go |
aaf643692c8ed30e09702c8118a27aed91debc4f | diff --git a/v1/brokers/amqp/amqp.go b/v1/brokers/amqp/amqp.go
index <HASH>..<HASH> 100644
--- a/v1/brokers/amqp/amqp.go
+++ b/v1/brokers/amqp/amqp.go
@@ -229,6 +229,7 @@ func (b *Broker) Publish(ctx context.Context, signature *tasks.Signature) error
Headers: amqp.Table(signature.Headers),
ContentType: "... | Add priority field to tasks.Signature | RichardKnop_machinery | train | go,go |
c276b98795aa869710146e78091f2d76e28c3022 | diff --git a/gridsome/lib/server/middlewares/graphql.js b/gridsome/lib/server/middlewares/graphql.js
index <HASH>..<HASH> 100644
--- a/gridsome/lib/server/middlewares/graphql.js
+++ b/gridsome/lib/server/middlewares/graphql.js
@@ -9,6 +9,11 @@ const {
module.exports = ({ store }) => {
return async function (req, re... | fix(graphql): don’t process non graphql requests (#<I>) | gridsome_gridsome | train | js |
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.