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 |
|---|---|---|---|---|---|
5171604467c4d9e282f65a71da56fde4aa633fef | diff --git a/tests/WebPushTest.php b/tests/WebPushTest.php
index <HASH>..<HASH> 100644
--- a/tests/WebPushTest.php
+++ b/tests/WebPushTest.php
@@ -37,6 +37,7 @@ class WebPushTest extends PHPUnit_Framework_TestCase
);
$this->webPush = new WebPush($this->keys);
+ $this->webPush->setAutomaticPad... | disable automatic padding in tests to speed these up | web-push-libs_web-push-php | train | php |
5fa30156585e257cdb2803c9b022efab9bba5013 | diff --git a/tensorflow_datasets/core/download/downloader.py b/tensorflow_datasets/core/download/downloader.py
index <HASH>..<HASH> 100644
--- a/tensorflow_datasets/core/download/downloader.py
+++ b/tensorflow_datasets/core/download/downloader.py
@@ -204,7 +204,8 @@ class _Downloader(object):
self._pbar_dl... | Update downloader to use url_info.filename | tensorflow_datasets | train | py |
81329d277feb25270a4b128280c30fe28b43b0d7 | diff --git a/src/petlx/xlsx.py b/src/petlx/xlsx.py
index <HASH>..<HASH> 100644
--- a/src/petlx/xlsx.py
+++ b/src/petlx/xlsx.py
@@ -32,7 +32,7 @@ def fromxlsx(filename, sheetname, checksumfun=None):
class XLSXView(object):
- def __init__(self, filename, sheetname, checksumfun=None):
+ def __init__(self, f... | #<I> add Sheet1 as default sheet name | petl-developers_petlx | train | py |
8d3b3859f57c9e6336713cd83a1e0eb77d78c33b | diff --git a/library/src/main/java/com/getbase/floatingactionbutton/FloatingActionsMenu.java b/library/src/main/java/com/getbase/floatingactionbutton/FloatingActionsMenu.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/getbase/floatingactionbutton/FloatingActionsMenu.java
+++ b/library/src/main/java/com... | Only call AnimatorSet.play() once for each animation | futuresimple_android-floating-action-button | train | java |
8ad7389de7aeae95fd9862072fbe64e958a2e8c4 | diff --git a/src/MathParser/Interpreting/RationalEvaluator.php b/src/MathParser/Interpreting/RationalEvaluator.php
index <HASH>..<HASH> 100644
--- a/src/MathParser/Interpreting/RationalEvaluator.php
+++ b/src/MathParser/Interpreting/RationalEvaluator.php
@@ -277,7 +277,7 @@ class RationalEvaluator implements Visitor
... | RationalEvaluator returning RationalNode for \! and \!\! | mossadal_math-parser | train | php |
e805930d132adcd23ac1f2921b3ea1b00db70e9f | diff --git a/provider/scaleway/scaleway_discover_test.go b/provider/scaleway/scaleway_discover_test.go
index <HASH>..<HASH> 100644
--- a/provider/scaleway/scaleway_discover_test.go
+++ b/provider/scaleway/scaleway_discover_test.go
@@ -12,13 +12,6 @@ import (
var _ discover.Provider = (*scaleway.Provider)(nil)
func ... | Removed unnecessary code. Reduced servers checked to 2. | hashicorp_go-discover | train | go |
5d4db43538a08eda8436da88b7fe92d829ec124f | diff --git a/bytesconv_timing_test.go b/bytesconv_timing_test.go
index <HASH>..<HASH> 100644
--- a/bytesconv_timing_test.go
+++ b/bytesconv_timing_test.go
@@ -1,9 +1,28 @@
package fasthttp
import (
+ "bufio"
+ "bytes"
"testing"
)
+func BenchmarkWriteHexInt(b *testing.B) {
+ b.RunParallel(func(pb *testing.PB) {... | Added a benchmark for writeHexInt | valyala_fasthttp | train | go |
6588bf9a32d97165cd749b51e17cf72608114427 | diff --git a/mygeotab/api.py b/mygeotab/api.py
index <HASH>..<HASH> 100644
--- a/mygeotab/api.py
+++ b/mygeotab/api.py
@@ -243,7 +243,10 @@ class MyGeotabException(Exception):
self.stack_trace = main_error['stackTrace']
def __str__(self):
- return '{0}\n{1}\n\nStacktrace:\n{2}'.format(self.name, ... | Don't show stacktrace heading if there isn't a stacktrace | Geotab_mygeotab-python | train | py |
123dcc442737e3ef7981dd964d3faa006e7b6d0d | diff --git a/lib/Jazz.php b/lib/Jazz.php
index <HASH>..<HASH> 100644
--- a/lib/Jazz.php
+++ b/lib/Jazz.php
@@ -23,6 +23,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
+if (!extension_loaded("dom")) {
+ throw new \RuntimeException(
+ "Jazz requires the DOM ... | Throwin' an exception if the DOM extension is not loaded | CHH_jazz | train | php |
da59846cfd15d64ae97ffa68b78b4ef25edd9d3d | diff --git a/maildir-deduplicate.py b/maildir-deduplicate.py
index <HASH>..<HASH> 100755
--- a/maildir-deduplicate.py
+++ b/maildir-deduplicate.py
@@ -186,6 +186,9 @@ def parse_args():
if opts.remove_matching:
opts.remove_matching = re.compile(opts.remove_matching)
+ if opts.remove_not_matching:
+ ... | previously forgot to compile remove_not_matching into a regexp (fixes #1) | kdeldycke_maildir-deduplicate | train | py |
40485e23e20a8a234aecfa0a187c8b9b8bfee518 | diff --git a/kconfiglib.py b/kconfiglib.py
index <HASH>..<HASH> 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -1547,8 +1547,6 @@ error, and you should email ulfalizer a.t Google's email service."""
for caching/invalidation purposes. The calculated sets might be larger
than necessary as we don't do... | Create Symbol.dep in symbol.__init__().
All symbols get a 'dep', so it's pointless to do it afterwards. | ulfalizer_Kconfiglib | train | py |
6680e4d1cae89c5016f4d30f61cb8bf982fbdc01 | diff --git a/server/src/main/java/org/jboss/as/server/deployment/Phase.java b/server/src/main/java/org/jboss/as/server/deployment/Phase.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/org/jboss/as/server/deployment/Phase.java
+++ b/server/src/main/java/org/jboss/as/server/deployment/Phase.java
@@ -398,6 +39... | [WFLY-<I>] Implement workaround for WFLY-<I> without requiring a spec maintenance release
was: b<I>b<I>f<I>c<I>a6c<I>bc<I>ee6 | wildfly_wildfly-core | train | java |
312b46c8bfb377de0e545551f3d38d128ad6c6e3 | diff --git a/api/handlers.go b/api/handlers.go
index <HASH>..<HASH> 100644
--- a/api/handlers.go
+++ b/api/handlers.go
@@ -9,13 +9,27 @@ import (
"github.com/luizbafilho/fusis/api/types"
)
+type ServiceResponse struct {
+ types.Service
+ Destinations []types.Destination
+}
+
func (as ApiService) serviceList(c *gi... | Adding destinations back to json response | luizbafilho_fusis | train | go |
5517046fcdd2301bfa90a0f3c7559115eb41ef46 | diff --git a/modules/ve/ui/ve.ui.Inspector.js b/modules/ve/ui/ve.ui.Inspector.js
index <HASH>..<HASH> 100644
--- a/modules/ve/ui/ve.ui.Inspector.js
+++ b/modules/ve/ui/ve.ui.Inspector.js
@@ -30,10 +30,10 @@ ve.ui.Inspector = function VeUiInspector( context ) {
.addClass( 've-ui-icon-' + this.constructor.static.icon ... | Add tooltips to close and remove inspector controls.
Addresses (Bug <I>)
Change-Id: I6fa0bb8acafbc9e4e<I>f9f0e<I>b<I>bc1afaa | wikimedia_oojs-ui | train | js |
4256941179b6983850b0fd028dcfbd5c999b8fab | diff --git a/fastlane/lib/fastlane/version.rb b/fastlane/lib/fastlane/version.rb
index <HASH>..<HASH> 100644
--- a/fastlane/lib/fastlane/version.rb
+++ b/fastlane/lib/fastlane/version.rb
@@ -1,5 +1,5 @@
module Fastlane
- VERSION = '2.59.0'.freeze
+ VERSION = '2.60.0'.freeze
DESCRIPTION = "The easiest way to autom... | Version bump to <I> (#<I>) | fastlane_fastlane | train | rb |
b550326e219ad84d3ee9596709e9bf5aa8da10e0 | diff --git a/messagebird/client.py b/messagebird/client.py
index <HASH>..<HASH> 100644
--- a/messagebird/client.py
+++ b/messagebird/client.py
@@ -270,6 +270,11 @@ class Client(object):
self.request(CONVERSATION_WEB_HOOKS_PATH, 'POST', webhook_create_request, CONVERSATION_TYPE))
def conversation_upd... | Adding docstring for update webhook | messagebird_python-rest-api | train | py |
6d638a7be54511a5e3e4df74dfc72d5eb34f940a | diff --git a/Log.php b/Log.php
index <HASH>..<HASH> 100644
--- a/Log.php
+++ b/Log.php
@@ -1,4 +1,4 @@
-<?php
+ <?php
class Log {
private $testCount;
diff --git a/tests/authTest.php b/tests/authTest.php
index <HASH>..<HASH> 100644
--- a/tests/authTest.php
+++ b/tests/authTest.php
@@ -2,8 +2,12 @@
... | Sets hard path to Log from authTest.php | seagoj_devtools | train | php,php |
9a98bbc9c4a490354a39c3b0e8b7d272db8db137 | diff --git a/metrics/sinks/wavefront/wavefront.go b/metrics/sinks/wavefront/wavefront.go
index <HASH>..<HASH> 100644
--- a/metrics/sinks/wavefront/wavefront.go
+++ b/metrics/sinks/wavefront/wavefront.go
@@ -100,13 +100,11 @@ func (this *WavefrontSink) addLabelTags(ms *core.MetricSet, tags map[string]stri
for _, label... | removed unnecessary if statement in addLabelTags | kubernetes-retired_heapster | train | go |
476462765d0df55a479d3045a17709d0cd92b423 | diff --git a/yowsup/layers/axolotl/store/sqlite/liteidentitykeystore.py b/yowsup/layers/axolotl/store/sqlite/liteidentitykeystore.py
index <HASH>..<HASH> 100644
--- a/yowsup/layers/axolotl/store/sqlite/liteidentitykeystore.py
+++ b/yowsup/layers/axolotl/store/sqlite/liteidentitykeystore.py
@@ -61,7 +61,7 @@ class LiteI... | Fixed check if identity is trusted, closes #<I> | tgalal_yowsup | train | py |
4c2ae3b72676e59ccd4d1eca4c076e5a874c461c | diff --git a/splunklib/modularinput/script.py b/splunklib/modularinput/script.py
index <HASH>..<HASH> 100755
--- a/splunklib/modularinput/script.py
+++ b/splunklib/modularinput/script.py
@@ -98,7 +98,8 @@ class Script(object):
return 1
else:
- err_string = "ERROR Inval... | Fix modinput url split code to work with an IPv6 address
this uses the same code as custom search commands | splunk_splunk-sdk-python | train | py |
06b45b800b3ea83a8c773b49e6ef90ff9139801a | diff --git a/spinoff/tests/test_microprocess.py b/spinoff/tests/test_microprocess.py
index <HASH>..<HASH> 100644
--- a/spinoff/tests/test_microprocess.py
+++ b/spinoff/tests/test_microprocess.py
@@ -194,6 +194,16 @@ def test_pausing_and_resuming():
assert stopped[0]
+def test_coroutine_does_not_have_to_catch_c... | Made it optional for microprocesses to catch CoroutineStopped | eallik_spinoff | train | py,py |
b60fbff2c0e7857491bafcfcc182d3d7cf81ea6e | diff --git a/lib/sensu/api/http_handler.rb b/lib/sensu/api/http_handler.rb
index <HASH>..<HASH> 100644
--- a/lib/sensu/api/http_handler.rb
+++ b/lib/sensu/api/http_handler.rb
@@ -21,6 +21,7 @@ module Sensu
# @result [Hash]
def request_details
return @request_details if @request_details
+ @... | [api-times] log api response time | sensu_sensu | train | rb |
2c89d1dda4077b2a99ddcced59bdd7a9a21b39a0 | diff --git a/actionpack/lib/action_dispatch/journey/nodes/node.rb b/actionpack/lib/action_dispatch/journey/nodes/node.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/journey/nodes/node.rb
+++ b/actionpack/lib/action_dispatch/journey/nodes/node.rb
@@ -32,7 +32,7 @@ module ActionDispatch
end
... | Write the code in a more natural way. | rails_rails | train | rb |
763b341f7b62817228abc06be61dbd9559048dbd | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -30,5 +30,5 @@ setup(name='synergy_scheduler',
'Topic :: Utilities',
],
requires=['werkzeug', 'jinja2', 'amqp', 'pymongo', 'psutil', 'fabric', 'setproctitle', 'synergy_odm', 'mock',
- 'x... | - dropping non-synergy-specific requirements | mushkevych_scheduler | train | py |
e376a5071018f7c4518518514062a785b44dbf33 | diff --git a/lib/action_kit_api/page.rb b/lib/action_kit_api/page.rb
index <HASH>..<HASH> 100644
--- a/lib/action_kit_api/page.rb
+++ b/lib/action_kit_api/page.rb
@@ -1,13 +1,13 @@
require 'action_kit_api'
module ActionKitApi
- include Searchable
-
# Please note that this class should almost never be directly c... | Messed up where I made the page searchable | Democracy-for-America_ActionKitApi | train | rb |
21b122e06969a9d85c65ce8276519d34da7dc747 | diff --git a/setuptools/dist.py b/setuptools/dist.py
index <HASH>..<HASH> 100644
--- a/setuptools/dist.py
+++ b/setuptools/dist.py
@@ -583,6 +583,7 @@ class Distribution(_Distribution):
self.announce("Distribution.parse_config_files():")
parser = ConfigParser()
+ parser.optionxform = str
... | Preserve case-sensitive keys in setup.cfg | pypa_setuptools | train | py |
0c595d1b4ca7ae8896ad43aadf661ebbc7d452ba | diff --git a/lib/cheerio.js b/lib/cheerio.js
index <HASH>..<HASH> 100644
--- a/lib/cheerio.js
+++ b/lib/cheerio.js
@@ -111,7 +111,7 @@ Cheerio.prototype.cheerio = '[cheerio object]';
Cheerio.prototype.options = {
normalizeWhitespace: false,
xmlMode: false,
- lowerCaseTags: false
+ decodeEntities: false
};
... | remove lowerCaseTags from default options
caused failure of test cases (htmlparser2's behavior depends on the
existence of the property)
as a reminder for future optimizations, I've added the `decodeEntities`
option instead | oyyd_cheerio-without-node-native | train | js |
b2341899c56a64078de781b5599682bcdeae0afa | diff --git a/_pytest/terminal.py b/_pytest/terminal.py
index <HASH>..<HASH> 100644
--- a/_pytest/terminal.py
+++ b/_pytest/terminal.py
@@ -27,7 +27,7 @@ def pytest_addoption(parser):
group._addoption('--tb', metavar="style",
action="store", dest="tbstyle", default='auto',
choices=['... | Adding "auto" to help for "--tb" option | vmalloc_dessert | train | py |
be536debf418b67d46224ff17c6d76897d72a41c | diff --git a/ApiBundle/Transformer/NodeTransformer.php b/ApiBundle/Transformer/NodeTransformer.php
index <HASH>..<HASH> 100644
--- a/ApiBundle/Transformer/NodeTransformer.php
+++ b/ApiBundle/Transformer/NodeTransformer.php
@@ -131,7 +131,7 @@ class NodeTransformer extends AbstractTransformer
}
}
... | add correction to nodetransformer | open-orchestra_open-orchestra-media-admin-bundle | train | php |
40879d82954033732f0d79a25cd35806449abbab | diff --git a/src/core/content.js b/src/core/content.js
index <HASH>..<HASH> 100644
--- a/src/core/content.js
+++ b/src/core/content.js
@@ -36,7 +36,7 @@ PROTOTYPE._update = function(content, element, reposition) {
// Wait for content to be loaded, and reposition
return this._waitForContent(element).then(function(... | Remove images present requirement on content reposition. Fixes #<I> | qTip2_qTip2 | train | js |
668233fb955517d6d3496a4afd7566faa0150546 | diff --git a/h5p.classes.php b/h5p.classes.php
index <HASH>..<HASH> 100644
--- a/h5p.classes.php
+++ b/h5p.classes.php
@@ -2432,7 +2432,7 @@ class H5PCore {
// Using content dependencies
foreach ($dependencies as $dependency) {
if (isset($dependency['path']) === FALSE) {
- $dependency['path'] = ... | Allow the dependency path to be overridden by child classes
This allows an implementor to choose how the library is served. | h5p_h5p-php-library | train | php |
cd93e41d610965842e4b61f4691a0a0889737790 | diff --git a/src/Concerns/InteractsWithMouse.php b/src/Concerns/InteractsWithMouse.php
index <HASH>..<HASH> 100644
--- a/src/Concerns/InteractsWithMouse.php
+++ b/src/Concerns/InteractsWithMouse.php
@@ -2,6 +2,8 @@
namespace Laravel\Dusk\Concerns;
+use Facebook\WebDriver\Exception\ElementClickInterceptedException;... | [6.x] Try clicking all elements before throwing `ElementClickInterceptedException` (#<I>)
* attempt to click all elements before failing
* remove unused import
* Update InteractsWithMouse.php | laravel_dusk | train | php |
b7d53894896e822a4058e0263b9f128607aebc07 | diff --git a/pysat/instruments/sw_methods.py b/pysat/instruments/sw_methods.py
index <HASH>..<HASH> 100644
--- a/pysat/instruments/sw_methods.py
+++ b/pysat/instruments/sw_methods.py
@@ -278,8 +278,7 @@ def combine_f107(standard_inst, forecast_inst, start=None, stop=None):
if stop is None:
stimes = [inst.... | Update sw_methods.py
Fixed bug where time was added to NoneType | rstoneback_pysat | train | py |
f86dfc32126474f1b955f44024c64dba79b38446 | diff --git a/src/ol/source/source.js b/src/ol/source/source.js
index <HASH>..<HASH> 100644
--- a/src/ol/source/source.js
+++ b/src/ol/source/source.js
@@ -8,14 +8,6 @@ goog.require('ol.Extent');
goog.require('ol.projection');
-/**
- * @typedef {{attributions: (Array.<ol.Attribution>|undefined),
- * exte... | Remove ol.source.SourceOptions typedef
The ol.source.SourceOptions type is already declared in objectliteral.exports, so it should not be declared in the ol/source/source.js file. | openlayers_openlayers | train | js |
227f6d66b361e7ea1991bd96d39499663f5e6a6b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -31,13 +31,13 @@ except(IOError, ImportError):
dist = setup(
name = __package_name__,
- version = "1.68",
+ version = "1.69",
description = "Cython interface between the numpy arrays and the Matrix/Array cla... | Bumped version to <I>. | wouterboomsma_eigency | train | py |
3d40c96bc1614a77b9bb722a1a8418590952ae6f | diff --git a/Kwc/Basic/LinkTag/ComponentClass/Data.php b/Kwc/Basic/LinkTag/ComponentClass/Data.php
index <HASH>..<HASH> 100644
--- a/Kwc/Basic/LinkTag/ComponentClass/Data.php
+++ b/Kwc/Basic/LinkTag/ComponentClass/Data.php
@@ -3,9 +3,10 @@ class Kwc_Basic_LinkTag_ComponentClass_Data extends Kwc_Basic_LinkTag_Intern_Dat... | _getRow doesnt exist anymore, fetch column by primary id now | koala-framework_koala-framework | train | php |
f3a9183d8d4ab1ab388820d7c0b3ee9ac690fb9d | diff --git a/parser.go b/parser.go
index <HASH>..<HASH> 100644
--- a/parser.go
+++ b/parser.go
@@ -20,9 +20,10 @@ const (
coloptCollate
coloptNull
coloptDefault
- coloptAutoIncrement
coloptKey
coloptComment
+
+ coloptAutoIncrement = coloptKey
)
const (
diff --git a/parser_test.go b/parser_test.go
index <H... | Allow PRIMARY KEY/AUTO_INCREMENT order to be interchangeable | schemalex_schemalex | train | go,go |
28460d76d483e47b6faa63f5b9c3013031a68dea | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -11,10 +11,15 @@ if sys.argv[-1] == 'publish':
sys.exit()
+with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
+ readme = f.read()
+
+
setup(
name='sentry-sso-google',
version='1.1',
... | Use new README.rst as package long_description | educreations_sentry-sso-google | train | py |
aadc760bd94c553f41605672c9bdffbde4ad8765 | diff --git a/atomic_reactor/tasks/binary.py b/atomic_reactor/tasks/binary.py
index <HASH>..<HASH> 100644
--- a/atomic_reactor/tasks/binary.py
+++ b/atomic_reactor/tasks/binary.py
@@ -23,6 +23,7 @@ class BinaryPreBuildTask(plugin_based.PluginBasedTask):
plugins_def = plugin_based.PluginsDef(
prebuild=[
... | Fetch sources before build_dir initialization
* CLOUDBLD-<I>
The final goal is the fetched sources files, including the exploded sources
tarballs, will be available in each platform-specific build_dir. Since the
plugin distgit_fetch_artefacts just simply run the rhpkg script and does not
depend on any other plugin, r... | projectatomic_atomic-reactor | train | py |
9e830805076df42971f27c3c2a86496098282f35 | diff --git a/src/test/java/com/stripe/functional/PlanTest.java b/src/test/java/com/stripe/functional/PlanTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/stripe/functional/PlanTest.java
+++ b/src/test/java/com/stripe/functional/PlanTest.java
@@ -30,7 +30,7 @@ public class PlanTest extends BaseStripeTest {
... | update param name to nickname (#<I>) | stripe_stripe-java | train | java |
1534a33a3b0bb8191c7951031e9ed0e322834807 | diff --git a/spec/lib/soloist/cli_spec.rb b/spec/lib/soloist/cli_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lib/soloist/cli_spec.rb
+++ b/spec/lib/soloist/cli_spec.rb
@@ -74,7 +74,7 @@ describe Soloist::CLI do
context "when the soloistrc does not exist" do
it "raises an error" do
expect do
- ... | run all installs in tempfir in test suite
the test for not having a soloistrc was managing to run since
I have a soloistrc on my box | mkocher_soloist | train | rb |
8800c37fd82b15d977d8fe3a7b45cc58e240c65d | diff --git a/src/js/layer.js b/src/js/layer.js
index <HASH>..<HASH> 100644
--- a/src/js/layer.js
+++ b/src/js/layer.js
@@ -65,7 +65,7 @@ ch.layer = function(conf) {
// Click
if (conf.event == "click") {
- $('<p class="btn close">x</p>').bind('click', that.hide).prependTo(that.$con... | GH-<I> Btn close creates only once | mercadolibre_chico | train | js |
bce3ad4f2a4433e4add2297d99308018249d0e50 | diff --git a/bucketcache/buckets.py b/bucketcache/buckets.py
index <HASH>..<HASH> 100644
--- a/bucketcache/buckets.py
+++ b/bucketcache/buckets.py
@@ -399,11 +399,13 @@ class Bucket(ReprHelperMixin, Container, object):
md5hash = md5(self.backend.__name__.encode('utf-8'))
for batch in self.keymaker.m... | Improve debug logging for _hash_for_key | RazerM_bucketcache | train | py |
aabe8921f65196146135878e757c3bd80b4fb58a | diff --git a/src/controllers/ZoneController.php b/src/controllers/ZoneController.php
index <HASH>..<HASH> 100644
--- a/src/controllers/ZoneController.php
+++ b/src/controllers/ZoneController.php
@@ -13,11 +13,24 @@ namespace hipanel\modules\dns\controllers;
use hipanel\actions\IndexAction;
use hipanel\actions\Orienta... | added `EasyAccessControl` | hiqdev_hipanel-module-dns | train | php |
775dd8a53d086d8f86d1f5cee4d96d271593e8b7 | diff --git a/lib/spout/version.rb b/lib/spout/version.rb
index <HASH>..<HASH> 100644
--- a/lib/spout/version.rb
+++ b/lib/spout/version.rb
@@ -5,7 +5,7 @@ module Spout
MAJOR = 0
MINOR = 12
TINY = 0
- BUILD = 'beta2' # 'pre', 'rc', 'rc2', nil
+ BUILD = 'rc' # 'pre', 'rc', 'rc2', nil
STRING = ... | Version bump to <I>.rc | nsrr_spout | train | rb |
bfcb94da03c7ac5f576356468eeca75eca369c7a | diff --git a/src/javascripts/components/form.js b/src/javascripts/components/form.js
index <HASH>..<HASH> 100644
--- a/src/javascripts/components/form.js
+++ b/src/javascripts/components/form.js
@@ -53,16 +53,9 @@ export default class FrigForm extends React.Component {
}
modifiedFields() {
- let modifiedFiel... | if it quacks like a duck... | frig-js_frig | train | js |
42d3d26f286e738a86e4cf612f84c50414211e65 | diff --git a/tests/unit/utils/cloud_test.py b/tests/unit/utils/cloud_test.py
index <HASH>..<HASH> 100644
--- a/tests/unit/utils/cloud_test.py
+++ b/tests/unit/utils/cloud_test.py
@@ -122,7 +122,7 @@ class CloudUtilsTestCase(TestCase):
with self.assertRaises(Exception) as context:
cloud.sftp_file("... | [<I>] Fix test assertion | saltstack_salt | train | py |
576083090b2d4969a63ab90cc1c5bb11af6c003e | diff --git a/lib/travis/github/services/sync_user.rb b/lib/travis/github/services/sync_user.rb
index <HASH>..<HASH> 100644
--- a/lib/travis/github/services/sync_user.rb
+++ b/lib/travis/github/services/sync_user.rb
@@ -15,7 +15,7 @@ module Travis
def run
new_user? do
syncing do
- ... | reset token service: reset_token_in_sync turns feature on rather than off (this should disable it in production for now) | travis-ci_travis-core | train | rb |
8607c0ea6ea4724d23923cf6013d7b679d4712c1 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,23 +2,14 @@
# http://docs.python.org/distutils/setupscript.html
# http://docs.python.org/2/distutils/examples.html
-import sys
from setuptools import setup, find_packages
-import ast
+import re
import os
-name = '... | a little simpler setup.py | Jaymon_endpoints | train | py |
d4517ddb805888ae28eb4e3a65a3e50c873a5b72 | diff --git a/vue.config.js b/vue.config.js
index <HASH>..<HASH> 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -5,6 +5,34 @@ module.exports = {
extract: !isLib
},
chainWebpack: config => {
- // todo
+ if (isLib) {
+ // https://github.com/vuejs/vue-cli/issues/2646
+ config.merge({
+ ... | wip: added completed externals while lib build, sync'd from legacy ./build/*.conf.js | fritx_vue-threejs | train | js |
5e12da0203929a40a506193c60cd149df93f7610 | diff --git a/src/Composer/Package/Locker.php b/src/Composer/Package/Locker.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Package/Locker.php
+++ b/src/Composer/Package/Locker.php
@@ -288,7 +288,7 @@ class Locker
unset($spec['version_normalized']);
if ($package->isDev()) {
- ... | Skip locking dev package to time when proc_open does not exist on system. | mothership-ec_composer | train | php |
29ccea64652d817072e468e976b4eb3c7b0570d7 | diff --git a/src/main/java/com/github/fge/grappa/parsers/BaseParser.java b/src/main/java/com/github/fge/grappa/parsers/BaseParser.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/github/fge/grappa/parsers/BaseParser.java
+++ b/src/main/java/com/github/fge/grappa/parsers/BaseParser.java
@@ -653,7 +653,7 @@ publi... | BaseParser: fix stupid error in join() | fge_grappa | train | java |
553597adada632d320ec190d90b02a74bb1ac92c | diff --git a/lib/fog/rackspace/requests/storage/get_containers.rb b/lib/fog/rackspace/requests/storage/get_containers.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/rackspace/requests/storage/get_containers.rb
+++ b/lib/fog/rackspace/requests/storage/get_containers.rb
@@ -44,7 +44,7 @@ module Fog
inject(0)... | Don't count the :meta entry as an object. | fog_fog | train | rb |
a87591b8d5cffc5041fedcb654be2fadfb6dd78f | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -31,6 +31,7 @@ const REGEX_VERSION = /(\d+\.)?(\d+\.)?(\*|\d+)/;
exports.collection = Interface.collection;
exports.ensureAuthenticated = Interface.ensureAuthenticated;
+exports.errorHandler = () => Interfa... | fix: export error handler middleware (#<I>) | ForestAdmin_forest-express-sequelize | train | js,js |
3df9a9366ea54d4961fce4181cf904ce897b60e1 | diff --git a/trace/trace.go b/trace/trace.go
index <HASH>..<HASH> 100644
--- a/trace/trace.go
+++ b/trace/trace.go
@@ -348,11 +348,6 @@ func sendSample(sample *ssf.SSFSpan) error {
if err != nil {
return err
}
- newSample := &ssf.SSFSpan{}
- err = proto.Unmarshal(data, newSample)
- if err != nil {
- panic(err)
... | Remove re-unmarshal in sendSample (#<I>) | stripe_veneur | train | go |
ca12000b56ad982e0899a6306e6075818fff597e | diff --git a/tests/Exscript/ConnectionTest.py b/tests/Exscript/ConnectionTest.py
index <HASH>..<HASH> 100644
--- a/tests/Exscript/ConnectionTest.py
+++ b/tests/Exscript/ConnectionTest.py
@@ -32,12 +32,6 @@ class ConnectionTest(DummyTest):
self.transport.transport.device = self.device
self.transport.lo... | ConnectionTest: remove some useless code. | knipknap_exscript | train | py |
86d41d1e09fe475554d974fba6bb5a6e48de4e4c | diff --git a/mc/byzantine.js b/mc/byzantine.js
index <HASH>..<HASH> 100644
--- a/mc/byzantine.js
+++ b/mc/byzantine.js
@@ -976,7 +976,7 @@ function pushReceivedAddresses(arrAddresses, address){
}
function decisionTrustMe(proposal, approvedCoordinators) {
- console.log("byllllog decisionTrustMe " + hp + ":" + pha... | modi trustme unit compose method, use byzantine success event | trustnote_trustnote-pow-common | train | js |
d708dbbfed4eb3f035f2571813d3d6d13d1a56db | diff --git a/Feed.php b/Feed.php
index <HASH>..<HASH> 100644
--- a/Feed.php
+++ b/Feed.php
@@ -624,8 +624,13 @@ abstract class Feed
$tags = array_keys($this->channels);
// ... and now all names from feed items
- foreach ($this->items as $item)
- $tags = array_merge($tags, array_key... | Get all names from feed items: optimisation
Replaced slow array_merge with array element assignment with uniqueness check | mibe_FeedWriter | train | php |
6e06e3b495e4d08a43de801956578308880bd503 | diff --git a/src/Providers/None.php b/src/Providers/None.php
index <HASH>..<HASH> 100644
--- a/src/Providers/None.php
+++ b/src/Providers/None.php
@@ -32,6 +32,10 @@ class None implements Environment
*/
public function getRepo()
{
+ if (!$this->isGitRepo()) {
+ return '';
+ }
+
... | Explicitly check if we're in a git repo
Or we could be returned a commit id like "fatal: Not a git repository" | matthiasmullie_ci-sniffer | train | php |
643ea5548a6beb60375a8a7ce98f59ecf22b3bc0 | diff --git a/lib/bolt/pal/yaml_plan/loader.rb b/lib/bolt/pal/yaml_plan/loader.rb
index <HASH>..<HASH> 100644
--- a/lib/bolt/pal/yaml_plan/loader.rb
+++ b/lib/bolt/pal/yaml_plan/loader.rb
@@ -43,7 +43,13 @@ module Bolt
end
def self.parse_plan(yaml_string, source_ref)
- parse_tree = Psych.par... | (BOLT-<I>) Use old Psych.parse signature if needed
**What this changes** This checks the `Psych.parse` signature available in the installed ruby stdlib to see if `legacy_filename` is available. If it is, we can assume passing filename using the keyword parameter. If not, use the old Psych.parse signature and just pass... | puppetlabs_bolt | train | rb |
c30cab37873037a5468563e5782609ae6f723c7b | diff --git a/lib/client.js b/lib/client.js
index <HASH>..<HASH> 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -214,7 +214,7 @@ function onReceipt(frame, beforeSendResponse){
}
function onUnknownCommand(frame){
- this.destroy(new Error("unknown command"));
+ this.destroy(new Error("unknown command '" + fra... | Include the command name in the unknown command error message | gdaws_node-stomp | train | js,json,js |
6d6c6805c1be5e865ff40767ea4702de2f167c3a | diff --git a/spyder/app/tests/test_mainwindow.py b/spyder/app/tests/test_mainwindow.py
index <HASH>..<HASH> 100644
--- a/spyder/app/tests/test_mainwindow.py
+++ b/spyder/app/tests/test_mainwindow.py
@@ -1959,6 +1959,7 @@ def test_edidorstack_open_switcher_dlg(main_window, tmpdir):
@flaky(max_runs=3)
@pytest.mark.sl... | Add pytest.mark.use_introspection | spyder-ide_spyder | train | py |
9f422b6c4f1e0766c0662505f6b8d8a56a69e117 | diff --git a/src/consoleStream.js b/src/consoleStream.js
index <HASH>..<HASH> 100644
--- a/src/consoleStream.js
+++ b/src/consoleStream.js
@@ -1,26 +1,24 @@
var levels = require('./levels');
-var result;
-
-if (typeof(console) !== 'undefined') {
- result = console;
-}
+var dest = typeof(console) !== 'undefined' ? con... | Cleaned up a lil bit of the console stream code | MiguelCastillo_loggero | train | js |
381367b1100cf806d6fab422f0fc62b913671b7f | diff --git a/Cronner/TimestampStorage/FileStorage.php b/Cronner/TimestampStorage/FileStorage.php
index <HASH>..<HASH> 100644
--- a/Cronner/TimestampStorage/FileStorage.php
+++ b/Cronner/TimestampStorage/FileStorage.php
@@ -92,7 +92,7 @@ class FileStorage extends Object implements ITimestampStorage
private function ch... | Added description for DirectoryNotFoundException | stekycz_Cronner | train | php |
744b6b35dfbd941d2468ce8c09506b0cf991614c | diff --git a/test/term_buffer.js b/test/term_buffer.js
index <HASH>..<HASH> 100644
--- a/test/term_buffer.js
+++ b/test/term_buffer.js
@@ -309,4 +309,11 @@ describe('TermBuffer', function() {
t.setLed(4,true);
expect(t._leds.length).to.be(4);
});
+
+ it("Handles \r correctly with terminal bounds", function() {
... | Adding test for issue #<I> | Gottox_terminal.js | train | js |
8546bffcc47cdb9214cf76aeef2fdafd3f53a7da | diff --git a/src/Console/IdeHelperCommand.php b/src/Console/IdeHelperCommand.php
index <HASH>..<HASH> 100644
--- a/src/Console/IdeHelperCommand.php
+++ b/src/Console/IdeHelperCommand.php
@@ -14,7 +14,7 @@ class IdeHelperCommand extends Command
const GENERATED_NOTICE = <<<'SDL'
# File generated by "php artisan lig... | Enhance hint why schema-directives.graphql should be ignored by git | nuwave_lighthouse | train | php |
3addf51f1e6c4d78003fbd954b6bc9fad64254a6 | diff --git a/packages/node_modules/@webex/internal-plugin-presence/src/presence.js b/packages/node_modules/@webex/internal-plugin-presence/src/presence.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/internal-plugin-presence/src/presence.js
+++ b/packages/node_modules/@webex/internal-plugin-presence/s... | feat(presence): initialize worker off config setting | webex_spark-js-sdk | train | js |
99e3c0515b2257b5811ab4d8347c6d0a692d2809 | diff --git a/nodemcu-uploader.py b/nodemcu-uploader.py
index <HASH>..<HASH> 100755
--- a/nodemcu-uploader.py
+++ b/nodemcu-uploader.py
@@ -264,15 +264,13 @@ if __name__ == '__main__':
if not args.destination:
uploader.prepare()
for f in args.filename:
- uploader.write_f... | Fix but in which files would be uploaded twice | kmpm_nodemcu-uploader | train | py |
0c659fd640bf8e4330c66e66574b9fe5aaa294f6 | diff --git a/lib/sup/crypto.rb b/lib/sup/crypto.rb
index <HASH>..<HASH> 100644
--- a/lib/sup/crypto.rb
+++ b/lib/sup/crypto.rb
@@ -130,6 +130,7 @@ class CryptoManager
end
output = IO.read output_fn.path
+ output.force_encoding Encoding::ASCII_8BIT if output.respond_to? :force_encoding
## there's p... | force binary encoding before parsing decrypted messages | sup-heliotrope_sup | train | rb |
993f880eb04def4f92467e1e3f6a3ab7052eeb3b | diff --git a/blockstack/lib/config.py b/blockstack/lib/config.py
index <HASH>..<HASH> 100644
--- a/blockstack/lib/config.py
+++ b/blockstack/lib/config.py
@@ -389,6 +389,9 @@ if os.environ.get("BLOCKSTACK_TEST", None) is not None:
else:
NAMESPACE_REVEAL_EXPIRE = BLOCKS_PER_DAY # small enough so we ca... | while testing keep the price of a 1-char namespace low so we don't run
out of regtest bitcoin | blockstack_blockstack-core | train | py |
ed223101c77ef83e5575f66db7d7134150ae6924 | diff --git a/armstrong/hatband/sites.py b/armstrong/hatband/sites.py
index <HASH>..<HASH> 100644
--- a/armstrong/hatband/sites.py
+++ b/armstrong/hatband/sites.py
@@ -18,7 +18,10 @@ class HatbandAndDjangoRegistry(object):
return iter(self.items())
def __contains__(self, k):
- return k in self._re... | fix this so it uses self.dicts and can check multiples | armstrong_armstrong.hatband | train | py |
b1fceb706c011b85600902510ac31a24b720e992 | diff --git a/amqpstorm/management/http_client.py b/amqpstorm/management/http_client.py
index <HASH>..<HASH> 100644
--- a/amqpstorm/management/http_client.py
+++ b/amqpstorm/management/http_client.py
@@ -9,10 +9,11 @@ from amqpstorm.management.exception import ApiError
class HTTPClient(object):
def __init__(self, ... | Re-use requests session for management calls | eandersson_amqpstorm | train | py |
19b8e8fb733b6ccce440546052000a79b31ffc49 | diff --git a/lib/rules/util.js b/lib/rules/util.js
index <HASH>..<HASH> 100644
--- a/lib/rules/util.js
+++ b/lib/rules/util.js
@@ -334,7 +334,7 @@ setTimeout(function getWhistleVersion() {
res.on('error', util.noop);
res.on('end', function() {
var ver = util.parseJSON(body);
- ver = ver['dist-tags'];
+ ve... | bugfix: Cannot read property dist-tags of null | avwo_whistle | train | js |
8697542fffc56d486902d2f9cfa509c86b9818d8 | diff --git a/lib/deliver/ipa_uploader.rb b/lib/deliver/ipa_uploader.rb
index <HASH>..<HASH> 100644
--- a/lib/deliver/ipa_uploader.rb
+++ b/lib/deliver/ipa_uploader.rb
@@ -133,7 +133,7 @@ module Deliver
def fetch_info_plist_file
Zip::File.open(@ipa_file.path) do |zipfile|
zipfile.each do |file... | plist files inside bundles are ignored | fastlane_fastlane | train | rb |
04a247d1a8d621bbae11f9aec57086141791777e | diff --git a/test/tools/javac/api/T6838467.java b/test/tools/javac/api/T6838467.java
index <HASH>..<HASH> 100644
--- a/test/tools/javac/api/T6838467.java
+++ b/test/tools/javac/api/T6838467.java
@@ -32,7 +32,6 @@ import java.util.*;
import java.util.zip.*;
import javax.tools.*;
import com.sun.tools.javac.file.JavacF... | <I>: remove obsolete import
Reviewed-by: jjh | wmdietl_jsr308-langtools | train | java |
402f446ae2b0b8372919c309a7115aa124aa3fcb | diff --git a/proto/gossip_store.go b/proto/gossip_store.go
index <HASH>..<HASH> 100644
--- a/proto/gossip_store.go
+++ b/proto/gossip_store.go
@@ -267,10 +267,10 @@ func (s *GossipStoreImpl) UpdateNodeStatuses(d time.Duration, sd time.Duration)
} // else node is marked up
}
if nodeInfo.Status != nodeStatus {... | Correct the message (it is for change of status and not just down) | libopenstorage_gossip | train | go |
eab30d38a113ea6858c4e1e91995084d0bff49c2 | diff --git a/framework/filters/PageCache.php b/framework/filters/PageCache.php
index <HASH>..<HASH> 100644
--- a/framework/filters/PageCache.php
+++ b/framework/filters/PageCache.php
@@ -304,7 +304,7 @@ class PageCache extends ActionFilter implements DynamicContentAwareInterface
/**
* {@inheritdoc}
*/
... | getView() made public instead of protected | yiisoft_yii2 | train | php |
4825ffa63368abbb0c3b8fe4c91cbf3260f8ed8f | diff --git a/executor/executor.go b/executor/executor.go
index <HASH>..<HASH> 100644
--- a/executor/executor.go
+++ b/executor/executor.go
@@ -134,14 +134,34 @@ func (self *Executor) RunPQL(database_name string, pql string) (interface{}, err
query_list[i].Id = qry.Id
}
- // technically, this is blocking on th... | made hold retrival async from exector | pilosa_pilosa | train | go |
7d17862240877d60aca4615ad9623d765677e063 | diff --git a/lib/OptionParser.php b/lib/OptionParser.php
index <HASH>..<HASH> 100644
--- a/lib/OptionParser.php
+++ b/lib/OptionParser.php
@@ -243,7 +243,7 @@ class OptionParser
$options = array();
foreach($this->_flags as $option => $index) {
- if(!empty($this->_options[$index])) {
+ if(a... | Changed getAllOptions() to allow "0" | mjackson_optionparser | train | php |
38b6e4cf87cb4fcaf7cd70edda8b52c8d323c26e | diff --git a/structr-ui/src/main/resources/structr/js/websocket.js b/structr-ui/src/main/resources/structr/js/websocket.js
index <HASH>..<HASH> 100644
--- a/structr-ui/src/main/resources/structr/js/websocket.js
+++ b/structr-ui/src/main/resources/structr/js/websocket.js
@@ -177,7 +177,7 @@ function wsConnect() {
... | Avoid exception when code is undefined. | structr_structr | train | js |
058d846a2be3042d2af1a93c11042d0f0abe9e5b | diff --git a/src/pyctd/manager/query.py b/src/pyctd/manager/query.py
index <HASH>..<HASH> 100644
--- a/src/pyctd/manager/query.py
+++ b/src/pyctd/manager/query.py
@@ -225,7 +225,7 @@ class QueryManager(BaseDbManager):
if pathway_name:
q = q.filter(models.Pathway.pathway_name.like(pathway_name))
... | Update query.py
typo in pathway query | cebel_pyctd | train | py |
8b237c129a959c8f504aeb83cbb8281133795366 | diff --git a/salt/states/archive.py b/salt/states/archive.py
index <HASH>..<HASH> 100644
--- a/salt/states/archive.py
+++ b/salt/states/archive.py
@@ -1501,12 +1501,15 @@ def extracted(name,
for item in enforce_failed:
ret['comment'] += '\n- {0}'.format(item)
- if not keep_source and not sour... | Improve logging when keeping the cached source file | saltstack_salt | train | py |
9b7e7eeae474beb6be9e06b44f7effbad58e8acc | diff --git a/alertaclient/config.py b/alertaclient/config.py
index <HASH>..<HASH> 100644
--- a/alertaclient/config.py
+++ b/alertaclient/config.py
@@ -14,6 +14,7 @@ default_config = {
'timezone': 'Europe/London',
'timeout': 5.0,
'sslverify': True,
+ 'use_local': [], # eg. set to ['endpoint'] to preve... | Allow local config exclusions to prevent remote override (#<I>) | alerta_python-alerta-client | train | py |
ae94c9071d4541659a2f4d9a9aa06555f18db214 | diff --git a/lib/generators/adminsite/install/install_generator.rb b/lib/generators/adminsite/install/install_generator.rb
index <HASH>..<HASH> 100644
--- a/lib/generators/adminsite/install/install_generator.rb
+++ b/lib/generators/adminsite/install/install_generator.rb
@@ -33,7 +33,7 @@ module Adminsite
end
... | Fixed source path to ability.rb durring install. | RelationshusetGekko_adminsite | train | rb |
712b3078311164f679c8db9ee00ec825559a25fc | diff --git a/test/unit/ReplaceReferencesCapableTraitTest.php b/test/unit/ReplaceReferencesCapableTraitTest.php
index <HASH>..<HASH> 100644
--- a/test/unit/ReplaceReferencesCapableTraitTest.php
+++ b/test/unit/ReplaceReferencesCapableTraitTest.php
@@ -212,7 +212,7 @@ class ReplaceReferencesCapableTraitTest extends TestC... | Changed expectations for `_replaceTokens()` | Dhii_placeholder-template-abstract | train | php |
f6b86153a0cf7623e2871b1413b09f41dffe2e5a | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -57,7 +57,6 @@ function VM (opts = {}) {
} else {
var trie = opts.state || new Trie()
if (opts.activatePrecompiles) {
- trie = new Trie()
for (var i = 1; i <= 8; i++) {
trie.pu... | Fixed an issue where trie passed as opts.state is overwritten if opts.activePrecomplies is set to true | ethereumjs_ethereumjs-vm | train | js |
7215130ff518eb33a51d07c4264a105c5a90bb24 | diff --git a/holoviews/plotting/plot.py b/holoviews/plotting/plot.py
index <HASH>..<HASH> 100644
--- a/holoviews/plotting/plot.py
+++ b/holoviews/plotting/plot.py
@@ -215,7 +215,7 @@ class Plot(param.Parameterized):
# If we do not have the Document lock, schedule refresh as callback
se... | Add check if document has already been set in server mode (#<I>) | pyviz_holoviews | train | py |
2bd4ead01e94cd66b5d50f5d0fc38c76a3d1e0c5 | diff --git a/src/Aws/S3/StreamWrapper.php b/src/Aws/S3/StreamWrapper.php
index <HASH>..<HASH> 100644
--- a/src/Aws/S3/StreamWrapper.php
+++ b/src/Aws/S3/StreamWrapper.php
@@ -490,10 +490,11 @@ class StreamWrapper
if ($this->objectIterator->valid()) {
$current = $this->objectIterator->current();
... | Fixing the nextStat caching of the stream wrapper to account for the removal of the "/" | aws_aws-sdk-php | train | php |
a80ba50fb168029b1d1e30eba994092b6f38ab63 | diff --git a/plugins/debug/debugPanel.js b/plugins/debug/debugPanel.js
index <HASH>..<HASH> 100644
--- a/plugins/debug/debugPanel.js
+++ b/plugins/debug/debugPanel.js
@@ -244,6 +244,9 @@
// call the original me.Entity.draw function
this._patched(renderer);
+ // increme... | [debug] fix the bound and shape counters not being updated when the "hitbox" option is not ticked in the panel | melonjs_melonJS | train | js |
4692e18f52a4a7099ee5d20288f871a6b151234e | diff --git a/master/buildbot/process/builder.py b/master/buildbot/process/builder.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/process/builder.py
+++ b/master/buildbot/process/builder.py
@@ -808,7 +808,7 @@ class Builder(pb.Referenceable, service.MultiService):
for other_breq_object in unclaimed_reques... | test for and supply the right number of arguments to mergeRequests functions | buildbot_buildbot | train | py,py |
ef2341373c7a6b88779d0e01188a295154897577 | diff --git a/mode/clike/clike.js b/mode/clike/clike.js
index <HASH>..<HASH> 100644
--- a/mode/clike/clike.js
+++ b/mode/clike/clike.js
@@ -617,7 +617,7 @@ CodeMirror.defineMode("clike", function(config, parserConfig) {
intendSwitch: false,
indentStatements: false,
multiLineStrings: true,
- number: /^(... | [clike mode] Disallow trailing dots in numbers in Kotlin | codemirror_CodeMirror | train | js |
6e205e9e8381f0e0effe0f177f690be072a60577 | diff --git a/modules/create-router.js b/modules/create-router.js
index <HASH>..<HASH> 100644
--- a/modules/create-router.js
+++ b/modules/create-router.js
@@ -123,15 +123,17 @@ function createRouter(routes, opts = {}, deps={}) {
setProp('name', name);
setProp('params', params);
setProp('path'... | refactor: assign id to state objects only if meta provided | router5_router5 | train | js |
e7547c4e91c17064319e0bf9fca7c5aecaedda72 | diff --git a/coursera/coursera_dl.py b/coursera/coursera_dl.py
index <HASH>..<HASH> 100755
--- a/coursera/coursera_dl.py
+++ b/coursera/coursera_dl.py
@@ -192,9 +192,9 @@ def down_the_wabbit_hole(className, cookies_file):
opener.open(req)
for cookie in cj:
- if cookie.name == 'session':
- ... | Fix erroneous indentation of the body of a loop. | coursera-dl_coursera-dl | train | py |
c2dd18bd71f7a468eb9cf307f05ffcd543e4db12 | diff --git a/spectator-ext-jvm/src/main/java/com/netflix/spectator/jvm/MemoryPoolMeter.java b/spectator-ext-jvm/src/main/java/com/netflix/spectator/jvm/MemoryPoolMeter.java
index <HASH>..<HASH> 100644
--- a/spectator-ext-jvm/src/main/java/com/netflix/spectator/jvm/MemoryPoolMeter.java
+++ b/spectator-ext-jvm/src/main/j... | fix value for memtype tag on memory pool metrics | Netflix_spectator | train | java |
0615759e7c1d4ea1b143d00390d83661ceb91f00 | diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/HttpKernel/Kernel.php
+++ b/src/Symfony/Component/HttpKernel/Kernel.php
@@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface... | bumped Symfony version to <I> | symfony_symfony | train | php |
3ad8f3442522c34d5649b6b1320aa7994e0f5834 | diff --git a/spec/baby_squeel/active_record/query_methods/joining_spec.rb b/spec/baby_squeel/active_record/query_methods/joining_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/baby_squeel/active_record/query_methods/joining_spec.rb
+++ b/spec/baby_squeel/active_record/query_methods/joining_spec.rb
@@ -176,6 +176,17 @@ ... | Added a failing spec for joins | rzane_baby_squeel | train | rb |
128f6546569acc1d97e73b575ca22157a28bd257 | diff --git a/web/concrete/single_pages/dashboard/extend/install.php b/web/concrete/single_pages/dashboard/extend/install.php
index <HASH>..<HASH> 100644
--- a/web/concrete/single_pages/dashboard/extend/install.php
+++ b/web/concrete/single_pages/dashboard/extend/install.php
@@ -276,7 +276,7 @@ if ($this->controller->ge... | Fixed orphan paragraph missing its tags.
Former-commit-id: 4e<I>acd<I>f9f7ab0b<I>f<I>b4b<I>d<I> | concrete5_concrete5 | train | php |
00e0af8769765d98342df0beaf56398da6c97a57 | diff --git a/tests/TestCase/FieldHandlers/Config/ConfigTest.php b/tests/TestCase/FieldHandlers/Config/ConfigTest.php
index <HASH>..<HASH> 100644
--- a/tests/TestCase/FieldHandlers/Config/ConfigTest.php
+++ b/tests/TestCase/FieldHandlers/Config/ConfigTest.php
@@ -99,6 +99,7 @@ class ConfigTest extends PHPUnit_Framework_... | Updated unit test expected result for new validation rules provider type (task #<I>) | QoboLtd_cakephp-csv-migrations | train | php |
33ed76fdc04080b30001292b31f73739ddcccb84 | diff --git a/test/resolver-test.js b/test/resolver-test.js
index <HASH>..<HASH> 100644
--- a/test/resolver-test.js
+++ b/test/resolver-test.js
@@ -284,4 +284,41 @@ module.exports = {
});
},
+ query: function(test) {
+ this.resolver.query('www.something.com', function(err, response) {
+ ... | Added a test method for resolver.query. | royalpinto_node-cares | train | js |
41d83e16786350110dee9e5f0c0bb4b149b977ec | diff --git a/spec/chef/chef_runner.rb b/spec/chef/chef_runner.rb
index <HASH>..<HASH> 100644
--- a/spec/chef/chef_runner.rb
+++ b/spec/chef/chef_runner.rb
@@ -179,6 +179,9 @@ EOF
params[:args][:cwd])
end
+ # defeat chef logging to console during spec runs.... | acu<I> defeat chef logging to console during spec runs (using our fixed version of NullFormatter) | rightscale_right_link | train | rb |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.