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 |
|---|---|---|---|---|---|
2fcb61d0747d3e86c32a9cb8f8008f89629bc8e6 | diff --git a/funfactory/manage.py b/funfactory/manage.py
index <HASH>..<HASH> 100644
--- a/funfactory/manage.py
+++ b/funfactory/manage.py
@@ -48,7 +48,7 @@ def setup_environ(manage_file, settings=None, more_pythonic=False):
"level __init__.py and apps directories. This is error "
... | Update URL to playdoh RTD page about upgrading | mozilla_funfactory | train | py |
f60b2afc909294a84b2ed7955a02908317d697a6 | diff --git a/lxd/images.go b/lxd/images.go
index <HASH>..<HASH> 100644
--- a/lxd/images.go
+++ b/lxd/images.go
@@ -1429,12 +1429,12 @@ func autoUpdateImagesTask(d *Daemon) (task.Func, task.Schedule) {
return
}
- logger.Infof("Updating images")
+ logger.Info("Updating images")
_, err = op.Run()
if err !... | lxd/images: Error improvements in autoUpdateImagesTask | lxc_lxd | train | go |
bd8b5a94115abb4ecda09ffaf9b48c118daefd37 | diff --git a/satpy/tests/modifier_tests/test_parallax.py b/satpy/tests/modifier_tests/test_parallax.py
index <HASH>..<HASH> 100644
--- a/satpy/tests/modifier_tests/test_parallax.py
+++ b/satpy/tests/modifier_tests/test_parallax.py
@@ -713,3 +713,6 @@ def test_modifier_interface_cloud_moves_to_observer(cth):
... | Add test confirming new cloud area fully cloudy
Add a test confirming that the new destination cloud area is fully
cloudy.
This test is currently failing. | pytroll_satpy | train | py |
ec3c3f73f3c0e12ceb46f765b8ce9b7ba3653dbb | diff --git a/tests/browser.worker.js b/tests/browser.worker.js
index <HASH>..<HASH> 100644
--- a/tests/browser.worker.js
+++ b/tests/browser.worker.js
@@ -64,7 +64,10 @@ function runTests() {
worker.postMessage(['create', dbs.remote]);
});
- if (typeof mozIndexedDB === 'undefined') {
+
+ // Mozilla ... | (#<I>) - disable local Web Workers in IE | pouchdb_pouchdb | train | js |
fe2595e5f14c4a87fb33e79327f0da3d471b3081 | diff --git a/bin.js b/bin.js
index <HASH>..<HASH> 100755
--- a/bin.js
+++ b/bin.js
@@ -1,6 +1,6 @@
#! /usr/bin/env node
-var deprecations = require('deprecations');
+var deprecations = require('./');
var modules = process.argv.slice(2); | Remove a mistaken recursive require. | ljharb_npm-deprecations | train | js |
711c1d3a44c8b691af25d680744612baed7d2f36 | diff --git a/pkg/endpoint/bpf.go b/pkg/endpoint/bpf.go
index <HASH>..<HASH> 100644
--- a/pkg/endpoint/bpf.go
+++ b/pkg/endpoint/bpf.go
@@ -482,7 +482,8 @@ func (e *Endpoint) regenerateBPF(owner Owner, epdir, reason string) (uint64, err
// Regenerate policy and apply any options resulting in the
// policy change.
... | pkg/endpoint: assign errors to err to detect failure on defer | cilium_cilium | train | go |
13d1fec2cbd8580aa5a55425e9896d9288f92a19 | diff --git a/public/app/plugins/panel/graph/series_overrides_ctrl.js b/public/app/plugins/panel/graph/series_overrides_ctrl.js
index <HASH>..<HASH> 100644
--- a/public/app/plugins/panel/graph/series_overrides_ctrl.js
+++ b/public/app/plugins/panel/graph/series_overrides_ctrl.js
@@ -105,7 +105,7 @@ define([
$scope.... | fix z-index order in Series Overrides | grafana_grafana | train | js |
9bebc6631b971e2aaa142b24a645a5f3845014cd | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -8,16 +8,4 @@
module.exports = function(hydro) {
hydro.set('proxies', 'describe', 'addSuite');
hydro.set('proxies', 'it', 'addTest');
-}
-
-/**
- * Plugin title.
- */
-
-module.exports.title = 'hydro-bdd';
-
-/**
- * Pl... | Do not bother with plugin details for now | hydrojs_bdd | train | js |
dc3e0c64954b1c0df4e770e2513199f3ed97de74 | diff --git a/Controller/CaptchaController.php b/Controller/CaptchaController.php
index <HASH>..<HASH> 100644
--- a/Controller/CaptchaController.php
+++ b/Controller/CaptchaController.php
@@ -53,6 +53,7 @@ class CaptchaController extends Controller
$response = new Response($generator->generate($options));
... | Added no-cache header
This prevents Varnish from caching the captcha image | Gregwar_CaptchaBundle | train | php |
20959b16666a322f95ff81c31677051dc1c09148 | diff --git a/libcontainer/integration/checkpoint_test.go b/libcontainer/integration/checkpoint_test.go
index <HASH>..<HASH> 100644
--- a/libcontainer/integration/checkpoint_test.go
+++ b/libcontainer/integration/checkpoint_test.go
@@ -11,7 +11,6 @@ import (
"testing"
"github.com/opencontainers/runc/libcontainer"
... | libcontainer/integration/checkpoint_test: simplify
Since commit <I>e<I>d6f it is not longer needed to have `cgroup2'
mount. | opencontainers_runc | train | go |
0af6feac332c66fa79f422e88397073366575ff4 | diff --git a/pgmpy/factors/discrete/DiscreteFactor.py b/pgmpy/factors/discrete/DiscreteFactor.py
index <HASH>..<HASH> 100644
--- a/pgmpy/factors/discrete/DiscreteFactor.py
+++ b/pgmpy/factors/discrete/DiscreteFactor.py
@@ -156,7 +156,9 @@ class DiscreteFactor(BaseFactor, StateNameMixin):
def get_value(self, **kw... | Fixes DiscreteFactor.get_value to work in the case when variables have int state names | pgmpy_pgmpy | train | py |
fc57e28f7991b9898592c4649cd26de70377ca9d | diff --git a/lib/flickr/object/set.rb b/lib/flickr/object/set.rb
index <HASH>..<HASH> 100644
--- a/lib/flickr/object/set.rb
+++ b/lib/flickr/object/set.rb
@@ -56,6 +56,7 @@ module Flickr
def get_photos(params = {})
api.get_photos(id, params)
end
+ alias photos get_photos
##
#... | Add a consistent method alias | janko_flickr-objects | train | rb |
8854d79587502b508e978a1f78e554215ac7875b | diff --git a/src/PugHandlerTrait.php b/src/PugHandlerTrait.php
index <HASH>..<HASH> 100644
--- a/src/PugHandlerTrait.php
+++ b/src/PugHandlerTrait.php
@@ -235,7 +235,7 @@ trait PugHandlerTrait
serialize($importCarrier->getCurrentImportPaths())
);
- if ($pug->getOpt... | Fix #<I> Throw PugException only if facade/ignition is installed
Fix Laravel < 6 errors display compatibility | BKWLD_laravel-pug | train | php |
ef52ae373138fb0996dc73fd156a37b15f7b2d40 | diff --git a/Concerns/BuildsQueries.php b/Concerns/BuildsQueries.php
index <HASH>..<HASH> 100644
--- a/Concerns/BuildsQueries.php
+++ b/Concerns/BuildsQueries.php
@@ -68,7 +68,7 @@ trait BuildsQueries
* Execute the query and get the first result.
*
* @param array $columns
- * @return mixed
+ ... | Fixed phpDoc (#<I>) | illuminate_database | train | php |
035f5254ca0d84ff5ef757ec64e34452082186c2 | diff --git a/jenetics/src/main/java/io/jenetics/util/StreamPublisher.java b/jenetics/src/main/java/io/jenetics/util/StreamPublisher.java
index <HASH>..<HASH> 100644
--- a/jenetics/src/main/java/io/jenetics/util/StreamPublisher.java
+++ b/jenetics/src/main/java/io/jenetics/util/StreamPublisher.java
@@ -153,17 +153,30 @@... | #<I>: Improve stream reading code. | jenetics_jenetics | train | java |
41dbbd570b484194f509f952695cbde7e9ebffa5 | diff --git a/python/tests/sbp/test_table.py b/python/tests/sbp/test_table.py
index <HASH>..<HASH> 100644
--- a/python/tests/sbp/test_table.py
+++ b/python/tests/sbp/test_table.py
@@ -45,7 +45,7 @@ def test_table_count():
Test number of available messages to deserialize.
"""
- number_of_messages = 196
+ number... | Remove the three XXXInput type messages from the overall count of SBP messages in python test | swift-nav_libsbp | train | py |
c301f2e826663a34a1eef9ba7f0df5e73ed739fd | diff --git a/usb1.py b/usb1.py
index <HASH>..<HASH> 100644
--- a/usb1.py
+++ b/usb1.py
@@ -1414,10 +1414,8 @@ class USBDevice(object):
You should not instanciate this class directly.
Call LibUSBContext methods to receive instances of this class.
"""
- # Important: device_p refcount mus... | Make USBDevice completely handle for refcount. | vpelletier_python-libusb1 | train | py |
82c6e22d9eac602c6356ac3090568cec3739fe41 | diff --git a/addon/components/ui-dropdown.js b/addon/components/ui-dropdown.js
index <HASH>..<HASH> 100644
--- a/addon/components/ui-dropdown.js
+++ b/addon/components/ui-dropdown.js
@@ -44,6 +44,7 @@ export default Ember.Select.extend(Base, DataAttributes, {
// Without this, Dropdown Items will not be clickable i... | Fix issue with content changing during or after the dropdown is destroyed | Semantic-Org_Semantic-UI-Ember | train | js |
4357f342f470389ab311abb7d024717a91900b60 | diff --git a/src/scs_core/estate/configuration_check.py b/src/scs_core/estate/configuration_check.py
index <HASH>..<HASH> 100644
--- a/src/scs_core/estate/configuration_check.py
+++ b/src/scs_core/estate/configuration_check.py
@@ -84,6 +84,19 @@ class ConfigurationCheck(JSONable):
self.__context = context ... | Upgraded configuration_monitor_check.py | south-coast-science_scs_core | train | py |
d6e6189230ab2910ccf3a95338d7dfa59981cb74 | diff --git a/tests/test_model_relations.py b/tests/test_model_relations.py
index <HASH>..<HASH> 100644
--- a/tests/test_model_relations.py
+++ b/tests/test_model_relations.py
@@ -133,10 +133,13 @@ class TestCase:
mate2 = User(name="Mate2", supervisor=ceo).blocking_save()
ceo.reload()
assert m... | FIX: enable tests for issue "self referencing models creates erroneous two way relations". rclose #<I> closes #GH-<I> | zetaops_pyoko | train | py |
b647371fb6a5b7c3bcf2b527d846520ca8b9acec | diff --git a/src/Dispatcher.es6.js b/src/Dispatcher.es6.js
index <HASH>..<HASH> 100644
--- a/src/Dispatcher.es6.js
+++ b/src/Dispatcher.es6.js
@@ -186,7 +186,10 @@ export default class Dispatcher {
invariant(
!this[IS_DISPATCHING],
'Dispatch.dispatch(...): Cannot dispatch ' +
- 'in the middle of a dispatch... | Log the type and source of the action dispatched during a dispatch (#<I>)
* Add more information about which action conflicted during dispatch-in-dispatch crashes
* Just log type and source
-----------------------------------------------------------
On branch master - Thu 7 Jul <I> <I>:<I>:<I> PDT by matrinox <<... | addthis_fluxthis | train | js |
4544a34085039e416b9bafb2ff21e08d4bc91042 | diff --git a/js/core/DomElement.js b/js/core/DomElement.js
index <HASH>..<HASH> 100644
--- a/js/core/DomElement.js
+++ b/js/core/DomElement.js
@@ -304,6 +304,18 @@ define(["require", "js/core/EventDispatcher", "js/core/Component", "js/core/Cont
}
}
},
+ /**
... | moved renderSelected to DomElement | rappid_rAppid.js | train | js,js |
e16c93486d16ac4f3a05f720ee6478b5cef93f10 | diff --git a/changes.go b/changes.go
index <HASH>..<HASH> 100644
--- a/changes.go
+++ b/changes.go
@@ -65,7 +65,7 @@ func Changes(layers []string, rw string) ([]Change, error) {
file := filepath.Base(path)
// If there is a whiteout, then the file was removed
if strings.HasPrefix(file, ".wh.") {
- originalFil... | fix Path corruption in 'docker diff' | moby_moby | train | go |
de83663f88fad3ecfdaf3823bed44b7294cb36e2 | diff --git a/seleniumbase/fixtures/base_case.py b/seleniumbase/fixtures/base_case.py
index <HASH>..<HASH> 100755
--- a/seleniumbase/fixtures/base_case.py
+++ b/seleniumbase/fixtures/base_case.py
@@ -1,7 +1,21 @@
"""
-These methods improve on and expand existing WebDriver commands.
-Improvements include making WebDrive... | Update description in base_case.py | seleniumbase_SeleniumBase | train | py |
63e73192bc79b0b12687459eb4e1054f38294fa0 | diff --git a/src/main/QafooLabs/Profiler.php b/src/main/QafooLabs/Profiler.php
index <HASH>..<HASH> 100644
--- a/src/main/QafooLabs/Profiler.php
+++ b/src/main/QafooLabs/Profiler.php
@@ -248,7 +248,11 @@ class Profiler
}
$enable = self::$extensionPrefix . '_layers_enable';
- $enable($options[... | Bugfix with xhprof_layers_enable | tideways_profiler | train | php |
4a9b91fd5e479f04074ee2563219a4ce959ebb88 | diff --git a/ginkgo.go b/ginkgo.go
index <HASH>..<HASH> 100644
--- a/ginkgo.go
+++ b/ginkgo.go
@@ -7,7 +7,9 @@ import (
"time"
)
-const defaultTimeout = 5
+const GINKGO_VERSION = config.VERSION
+
+const defaultTimeout = 1
var globalSuite *suite | added version information to ginkgo.go | onsi_ginkgo | train | go |
8b8ecba876ed2ba5a48e33138391bb0f7f718e1f | diff --git a/scripts/server.js b/scripts/server.js
index <HASH>..<HASH> 100644
--- a/scripts/server.js
+++ b/scripts/server.js
@@ -98,7 +98,7 @@ const requestHandler = (request, response) => {
} else if (invalidColors.length) {
responseObj.status = `'${invalidColors.join(', ')}' is not a valid HEX color`;
... | fix($server): makes sure server does not continue, if invalid colors are requested | meodai_color-names | train | js |
433b739e45f0cb8cf2f20687b21586174565884e | diff --git a/lib/hermann/consumer.rb b/lib/hermann/consumer.rb
index <HASH>..<HASH> 100644
--- a/lib/hermann/consumer.rb
+++ b/lib/hermann/consumer.rb
@@ -7,6 +7,8 @@ else
end
module Hermann
+ # Hermann::Consumer provides a simple consumer API which is only safe to be
+ # executed in a single thread
class Cons... | Add a small note about consumer thread-safety | reiseburo_hermann | train | rb |
914e25fad87c4474ab61e20062872a1341f644d0 | diff --git a/service/gcs/core/gcs/storage.go b/service/gcs/core/gcs/storage.go
index <HASH>..<HASH> 100644
--- a/service/gcs/core/gcs/storage.go
+++ b/service/gcs/core/gcs/storage.go
@@ -21,7 +21,7 @@ import (
const (
// baseFilesPath is the path in the utility VM containing all the files
// that will be used as t... | Moved storage root and base file path away from potetial real-only directory | Microsoft_hcsshim | train | go |
00556d4b3b52ba3a9bd5efd8ce95d5fa087bf8cd | diff --git a/client/driver/rkt_test.go b/client/driver/rkt_test.go
index <HASH>..<HASH> 100644
--- a/client/driver/rkt_test.go
+++ b/client/driver/rkt_test.go
@@ -3,8 +3,8 @@ package driver
import (
"fmt"
"os"
- "os/exec"
"testing"
+ "time"
"github.com/hashicorp/noma... | Add missing import and remove unsued one | hashicorp_nomad | train | go,go |
e0aac8cecb1f287256615c9c18243ec0927e8405 | diff --git a/lib/lifx/client.rb b/lib/lifx/client.rb
index <HASH>..<HASH> 100644
--- a/lib/lifx/client.rb
+++ b/lib/lifx/client.rb
@@ -48,8 +48,8 @@ module LIFX
# @yield [Client] This block is evaluated every `condition_interval` seconds. If true, method returns. If no block is supplied, it will block until it fin... | Allow blocks with no arguments in Client#discover! | LIFX_lifx-gem | train | rb |
52e4e95d451d752dd3fa75960934df8704d0647b | diff --git a/angr/engines/light/engine.py b/angr/engines/light/engine.py
index <HASH>..<HASH> 100644
--- a/angr/engines/light/engine.py
+++ b/angr/engines/light/engine.py
@@ -7,7 +7,7 @@ import ailment
import pyvex
import archinfo
-from ...engines.vex.claripy.irop import operations as vex_operations
+from ...engine... | Support extended IROps (#<I>) | angr_angr | train | py |
82a70733ba2535894833d95b612977a26b31a26f | diff --git a/spec/Formatter/PhpCsFixerFormatterSpec.php b/spec/Formatter/PhpCsFixerFormatterSpec.php
index <HASH>..<HASH> 100644
--- a/spec/Formatter/PhpCsFixerFormatterSpec.php
+++ b/spec/Formatter/PhpCsFixerFormatterSpec.php
@@ -6,7 +6,7 @@ use GrumPHP\Formatter\PhpCsFixerFormatter;
use GrumPHP\Formatter\ProcessForm... | Update ProcessUtils in spec tests | phpro_grumphp | train | php,php |
5738d6b72d7323f2e6fbdb7a559ebeccdb93d27d | diff --git a/completions.go b/completions.go
index <HASH>..<HASH> 100644
--- a/completions.go
+++ b/completions.go
@@ -638,7 +638,10 @@ to enable it. You can execute the following once:
$ echo "autoload -U compinit; compinit" >> ~/.zshrc
To load completions for every new session, execute once:
+# Linux:
$ %[1]s c... | Add install instructions for zsh on Mac OS (#<I>)
zsh is now the default on Mac OS, but the $_fpath version of the installation instructions are likely to put the completion in a strange location that the user might not expect (e.g. an oh-my-zsh plugin's function directory). So, since Mac OS seems to (as far as I can... | spf13_cobra | train | go |
4830760a0d414e7348d76475a6a89a38f5391e9c | diff --git a/test/test_validate.py b/test/test_validate.py
index <HASH>..<HASH> 100644
--- a/test/test_validate.py
+++ b/test/test_validate.py
@@ -178,7 +178,7 @@ class TestUMLGenerateDirective(TestUMLGenerateDirectiveBase):
def test_setup(self):
""" simply calls the setup function, ensuring no errors "... | Fixes tests after PR for #<I> for parallel support | alendit_sphinx-pyreverse | train | py |
647b0008aac8ee0226205c87b8bcf04affe0469d | diff --git a/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepoDownloader.php b/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepoDownloader.php
index <HASH>..<HASH> 100644
--- a/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepoDownloader.php
+++ b/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepo... | - Added an ability to re-clone a multi-repository when it was removed. | andkirby_multi-repo-composer | train | php |
ce624cc7d34c8b78aa482ae92a46d2cadc145b73 | diff --git a/hugolib/site_benchmark_test.go b/hugolib/site_benchmark_test.go
index <HASH>..<HASH> 100644
--- a/hugolib/site_benchmark_test.go
+++ b/hugolib/site_benchmark_test.go
@@ -131,8 +131,10 @@ category = "categories"
tags = make([]string, cfg.TagsPerPage)
)
+ tagOffset := rand.Intn(10)
+
... | hugolib: Add slightly more realistic tag distribution to benchmark | gohugoio_hugo | train | go |
b8fc0c20f061e5a1b458e94c3db9e9130e935185 | diff --git a/source/core/oxshopmetadata.php b/source/core/oxshopmetadata.php
index <HASH>..<HASH> 100644
--- a/source/core/oxshopmetadata.php
+++ b/source/core/oxshopmetadata.php
@@ -133,10 +133,9 @@ class oxShopMetaData extends oxSuperCfg
if ( $rs && $rs->recordCount()> 0 && $rs->fields[0] ) {
... | <I>: Wrong article inheritance in subshops Inheritance option priority order changed (cherry picked from commit a<I>) | OXID-eSales_oxideshop_ce | train | php |
2776d5d0b424449657d11730f81862878f34dc73 | diff --git a/pywb/static/wombat.js b/pywb/static/wombat.js
index <HASH>..<HASH> 100644
--- a/pywb/static/wombat.js
+++ b/pywb/static/wombat.js
@@ -156,7 +156,7 @@ _WBWombat = (function() {
}
// OPTS: additional ignore prefixes
- if (wb_opts.norewrite_prefixes) {
+ if (wb_opts.no_rewrit... | Fix typo in handling of no_rewrite_prefixes | webrecorder_pywb | train | js |
41851663e591433fec1b021b88aa77a8fb0d37b0 | diff --git a/lib/algorithm.rb b/lib/algorithm.rb
index <HASH>..<HASH> 100644
--- a/lib/algorithm.rb
+++ b/lib/algorithm.rb
@@ -165,7 +165,7 @@ module OpenTox
# @param [Hash] params Keys `:similarity_algorithm,:p_values` are required
# @return [Hash] Hash with keys `:prediction, :confidence`
def sel... | Hotfix: Gaussian Decay for neighbors | opentox_lazar | train | rb |
e1abceee8c643c519cc6131639207a41a36054f5 | diff --git a/lib/vagrant/action/builtin/wait_for_communicator.rb b/lib/vagrant/action/builtin/wait_for_communicator.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/action/builtin/wait_for_communicator.rb
+++ b/lib/vagrant/action/builtin/wait_for_communicator.rb
@@ -52,6 +52,7 @@ module Vagrant
# Wait for a ... | Sleep to avoid <I>% CPU in waiting time of 'vagrant up' | hashicorp_vagrant | train | rb |
0880dc795abb2d45dfeab79726b0f05212de2ea9 | diff --git a/generators/models_from_tables/templates/model.rb b/generators/models_from_tables/templates/model.rb
index <HASH>..<HASH> 100644
--- a/generators/models_from_tables/templates/model.rb
+++ b/generators/models_from_tables/templates/model.rb
@@ -1,6 +1,6 @@
class <%= class_name -%> < ActiveRecord::Base
set... | fixed typo with primary key in generated model file | alexrothenberg_legacy_data | train | rb |
027fe9feee6245a81461b7c7b7741df0ab2c68c2 | diff --git a/safe/definitions.py b/safe/definitions.py
index <HASH>..<HASH> 100644
--- a/safe/definitions.py
+++ b/safe/definitions.py
@@ -854,6 +854,8 @@ road_class_mapping = [
'string_defaults': ['Other']
}
]
+# List to keep the order of the keys.
+road_class_order = [item['key'] for item in road_class... | order road and buildings in definitions.py | inasafe_inasafe | train | py |
0d9b1eabdbaa7e8aa2624cc5481eda64346a141a | diff --git a/middleman-core/lib/middleman-core/configuration.rb b/middleman-core/lib/middleman-core/configuration.rb
index <HASH>..<HASH> 100644
--- a/middleman-core/lib/middleman-core/configuration.rb
+++ b/middleman-core/lib/middleman-core/configuration.rb
@@ -45,7 +45,7 @@ module Middleman
end
def co... | Instances actually need to dup the global config so they don't set variables that may be different later (tests, config reloading) | middleman_middleman | train | rb |
3dc7e5c8d64cc1b10ed36141836ec5ba94fba0c7 | diff --git a/coapthon/layers/blocklayer.py b/coapthon/layers/blocklayer.py
index <HASH>..<HASH> 100644
--- a/coapthon/layers/blocklayer.py
+++ b/coapthon/layers/blocklayer.py
@@ -58,7 +58,7 @@ class BlockLayer(object):
del transaction.request.block2
else:
# early negotiati... | Fix payload transmitted in Block2 transfer.
Previosly the CoAP server transmitted the first block of data for Block2
transfer, even when a client requested in Block2 request following
block. This patch changes server operation to transmit the payload
block requested by the client. | Tanganelli_CoAPthon3 | train | py |
188dedfbe601b498e00d0f13ee93b5daaabaa570 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ print(long_description)
setup(
name='napalm-logs',
- version='0.0.1',
+ version='0.0.3',
packages=find_packages(),
author='Mircea Ulinic',
author_email='mircea.ulinic@gmail.com', | Version <I>
<I> not released although the tag was created
(forgot to update this file before creating the tag) | napalm-automation_napalm-logs | train | py |
701121b8db02df8f3869dd80f99776936e47c263 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -43,7 +43,7 @@ module.exports = function(grunt) {
"test/*.js"
],
options: {
- es3: true,
+ es3: true, // Enforce ES3 compatibility
indent: 2, // Indent by 2... | Add clarifying comment to ES3 option. | documentcloud_underscore-contrib | train | js |
ea145395f22d557a289340be23cadc3af9d31f8e | diff --git a/microphone/audio_node.py b/microphone/audio_node.py
index <HASH>..<HASH> 100644
--- a/microphone/audio_node.py
+++ b/microphone/audio_node.py
@@ -1,3 +1,4 @@
+import argparse
import zmq
@@ -19,3 +20,26 @@ class AudioNode(object):
# forward all audio internal traffic out
zmq.proxy(s... | adding in some arguments to the audio node | benhoff_microphone | train | py |
e1df4c26d1f6e8e28a2fd90fd3ef4122072c2bf0 | diff --git a/CPTP/Module/Admin.php b/CPTP/Module/Admin.php
index <HASH>..<HASH> 100644
--- a/CPTP/Module/Admin.php
+++ b/CPTP/Module/Admin.php
@@ -111,7 +111,7 @@ class CPTP_Module_Admin extends CPTP_Module {
}
?>
<p>
- <code><?php echo home_url() . '/' . esc_html( $slug );?></code>
+ <code><?php echo home... | Strip slash if `$slug` has no value | torounit_custom-post-type-permalinks | train | php |
b4869643a35a205f8304fd42e89eae8ba5096ab4 | diff --git a/python/setup.py b/python/setup.py
index <HASH>..<HASH> 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -1,4 +1,4 @@
-from setuptools import setup, Extension
+from setuptools import setup, extension
from setuptools.command.build_ext import build_ext
from Cython.Build import cythonize
@@ -28,6 +28,... | workaround for cython bug#<I> | dwavesystems_minorminer | train | py |
bcdad953baa37d2ce70d9e52febf7673303c7748 | diff --git a/structr-ui/src/main/resources/structr/js/structr-app.js b/structr-ui/src/main/resources/structr/js/structr-app.js
index <HASH>..<HASH> 100644
--- a/structr-ui/src/main/resources/structr/js/structr-app.js
+++ b/structr-ui/src/main/resources/structr/js/structr-app.js
@@ -105,7 +105,7 @@ function StructrApp(b... | to handle dynamically created structr buttons (#<I>)
PR to handle dynamically created structr buttons | structr_structr | train | js |
7bda3d75a8b8191b85c11ba100e09940594d6abe | diff --git a/internal/util/url.go b/internal/util/url.go
index <HASH>..<HASH> 100644
--- a/internal/util/url.go
+++ b/internal/util/url.go
@@ -46,7 +46,7 @@ const (
// FetchResource fetches a resource given a URL. The supported schemes are http, data, and oem.
func FetchResource(l *log.Logger, u url.URL) ([]byte, err... | util/url: allow https urls | coreos_ignition | train | go |
6532cfd95a4dd511767e498a2f1f94b48fc8b8aa | diff --git a/mockserver-client-ruby/lib/mockserver/model/request.rb b/mockserver-client-ruby/lib/mockserver/model/request.rb
index <HASH>..<HASH> 100644
--- a/mockserver-client-ruby/lib/mockserver/model/request.rb
+++ b/mockserver-client-ruby/lib/mockserver/model/request.rb
@@ -14,7 +14,7 @@ module MockServer::Model
... | Added PATCH to the allowed HTTPMethod values. | jamesdbloom_mockserver | train | rb |
a87c66b2e45f99c3610f973c8bc61d6e5c72be56 | diff --git a/tool.go b/tool.go
index <HASH>..<HASH> 100644
--- a/tool.go
+++ b/tool.go
@@ -173,6 +173,8 @@ func main() {
if s.Watcher == nil {
return err
+ } else if err != nil {
+ handleError(err, options, nil)
}
s.WaitForChange()
}
@@ -235,6 +237,8 @@ func main() {
if s.Watcher == nil... | Do now swallow compiler errors in watch mode. | gopherjs_gopherjs | train | go |
44fe0f87a1080d8e8e9f9ccd2bd0dc816da8909f | diff --git a/currencies/management/commands/initcurrencies.py b/currencies/management/commands/initcurrencies.py
index <HASH>..<HASH> 100644
--- a/currencies/management/commands/initcurrencies.py
+++ b/currencies/management/commands/initcurrencies.py
@@ -21,6 +21,7 @@ class Command(NoArgsCommand):
if not Currency.o... | Update currencies/management/commands/initcurrencies.py
Counter variable "i" not add | bashu_django-simple-currencies | train | py |
34ff5b04d3908575d2620456715368425227a46e | diff --git a/rebulk/rebulk.py b/rebulk/rebulk.py
index <HASH>..<HASH> 100644
--- a/rebulk/rebulk.py
+++ b/rebulk/rebulk.py
@@ -309,7 +309,11 @@ class Rebulk(object):
:rtype:
"""
if not self.disabled(context):
- for pattern in self._patterns:
+ patterns = list(self._patte... | Implement matches composition like processors and rules | Toilal_rebulk | train | py |
271cf4fca856b6328f57188e7114b3122b5ac375 | diff --git a/asammdf/blocks/mdf_v3.py b/asammdf/blocks/mdf_v3.py
index <HASH>..<HASH> 100644
--- a/asammdf/blocks/mdf_v3.py
+++ b/asammdf/blocks/mdf_v3.py
@@ -172,6 +172,7 @@ class MDF3(MDF_Common):
self._integer_interpolation = 0
self._float_interpolation = 1
self._raise_on_multiple_occurren... | add missing attribtue in MDF3 | danielhrisca_asammdf | train | py |
8190959309de87072cec432e3d25814cc2664f67 | diff --git a/src/main/java/com/googlecode/mp4parser/authoring/tracks/EC3TrackImpl.java b/src/main/java/com/googlecode/mp4parser/authoring/tracks/EC3TrackImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/googlecode/mp4parser/authoring/tracks/EC3TrackImpl.java
+++ b/src/main/java/com/googlecode/mp4parser/auth... | added back skip(negative) EC3TrackImpl since it doesn't work as it is now
git-svn-id: <URL> | sannies_mp4parser | train | java |
f6de5723730aad138ad9d10c277da5ceca83da70 | diff --git a/date/isDate.js b/date/isDate.js
index <HASH>..<HASH> 100644
--- a/date/isDate.js
+++ b/date/isDate.js
@@ -11,6 +11,10 @@ sb.date.isDate = function(txtDate, params){
if(!params){
params = {};
}
+
+ if(!txtDate){
+ return false;
+ }
var currentYear = new Date().getFullYear();
var minYear = params... | returning false if no date string was given as argument | surebert_surebert-framework | train | js |
5603eb911602c4527c6633c1ce2c3de65f8100fe | diff --git a/cmd/puppeth/wizard_faucet.go b/cmd/puppeth/wizard_faucet.go
index <HASH>..<HASH> 100644
--- a/cmd/puppeth/wizard_faucet.go
+++ b/cmd/puppeth/wizard_faucet.go
@@ -165,8 +165,7 @@ func (w *wizard) deployFaucet() {
}
// Load up the credential needed to release funds
if infos.node.keyJSON != "" {
- var ... | cmd/puppeth: fix key reuse during faucet deploys | ethereum_go-ethereum | train | go |
39ae39235231ef714ef227de93192f63a2743728 | diff --git a/lib/Connection.php b/lib/Connection.php
index <HASH>..<HASH> 100644
--- a/lib/Connection.php
+++ b/lib/Connection.php
@@ -67,7 +67,7 @@ class Connection implements Serializable
/** @var \Opis\Database\Schema Schema instance */
protected $schema;
- /** @var arrray Compiler option... | Fix typo arrray -> array. | opis_database | train | php |
79b5cae38eb697e2446fae53ea1f4ef5337beb36 | diff --git a/webview/util.py b/webview/util.py
index <HASH>..<HASH> 100644
--- a/webview/util.py
+++ b/webview/util.py
@@ -65,10 +65,9 @@ def escape_string(string):
def transform_url(url):
- if url is None or ':' in url:
- return url
- else:
+ if url and ':' not in url:
return 'file://' + ... | Fix transform_url logic
It should have been `':' in url` instead of `not in`. :D
Anyway I think this syntax reads better. | r0x0r_pywebview | train | py |
b4bdf34fe88e8415d5a7529d0b8dfa5182ca37d7 | diff --git a/accounting/__init__.py b/accounting/__init__.py
index <HASH>..<HASH> 100644
--- a/accounting/__init__.py
+++ b/accounting/__init__.py
@@ -26,7 +26,7 @@ from accounting.accounting import Accounting
from accounting.utils import (is_num, is_str, check_type, check_precision)
-__version__ = '0.0.1'
+__vers... | expose public callables to the package namespace | ojengwa_accounting | train | py |
05dc91df362b54b503dcf60ab9009f0cc38c843d | diff --git a/treetime/treeanc.py b/treetime/treeanc.py
index <HASH>..<HASH> 100644
--- a/treetime/treeanc.py
+++ b/treetime/treeanc.py
@@ -874,7 +874,7 @@ class TreeAnc(object):
# if ancestral sequences are not in place, reconstruct them
if marginal and (not hasattr(self.tree.root,'marginal_profile')... | catch cseq==None in infer_gtr | neherlab_treetime | train | py |
7549717a088b03d88321805a0cde28060221495b | diff --git a/app/src/js/modules/omnisearch.js b/app/src/js/modules/omnisearch.js
index <HASH>..<HASH> 100644
--- a/app/src/js/modules/omnisearch.js
+++ b/app/src/js/modules/omnisearch.js
@@ -64,7 +64,7 @@
templateSelection: function (item) {
window.location.href = item.path;
- ... | Prevent the option from being displayed in the results list | bolt_bolt | train | js |
9dbb330a709cfab33cc4a61a492302cbe0e28f7e | diff --git a/install.rb b/install.rb
index <HASH>..<HASH> 100644
--- a/install.rb
+++ b/install.rb
@@ -18,5 +18,3 @@ script = 'sweatshop'
FileUtils.cp(File.join(root, 'config', config), File.join(RAILS_ROOT, 'config', config))
FileUtils.cp(File.join(root, 'script', script), File.join(RAILS_ROOT, 'script', script))
p... | don't print README.markdown in install.rb script | famoseagle_sweatshop | train | rb |
47ed387f91331253fab941f6fdfda2759ea0b138 | diff --git a/packages/gestalt/src/Masonry/Masonry.js b/packages/gestalt/src/Masonry/Masonry.js
index <HASH>..<HASH> 100644
--- a/packages/gestalt/src/Masonry/Masonry.js
+++ b/packages/gestalt/src/Masonry/Masonry.js
@@ -492,7 +492,10 @@ export default class Masonry<T> extends React.Component<Props<T>, State> {
... | Fix one more occurrence of height being set to Infinity (#<I>) | pinterest_gestalt | train | js |
db232e56a366a44125d62b22be340efe06d1db8e | diff --git a/fwdpy11/_tables_to_tskit.py b/fwdpy11/_tables_to_tskit.py
index <HASH>..<HASH> 100644
--- a/fwdpy11/_tables_to_tskit.py
+++ b/fwdpy11/_tables_to_tskit.py
@@ -32,7 +32,8 @@ def _generate_mutation_metadata(pop):
'label': m.label,
'esizes': list(m.esizes),
'heffects':... | Add mutation key to mutation metadata when dumping tables to tskit. | molpopgen_fwdpy11 | train | py |
95c99b50c32cefa9630bd7b025a41741bec2b5a4 | diff --git a/cassandra/db.go b/cassandra/db.go
index <HASH>..<HASH> 100644
--- a/cassandra/db.go
+++ b/cassandra/db.go
@@ -2,6 +2,7 @@ package cassandra
import (
"github.com/gocql/gocql"
+ consul "github.com/hashicorp/consul/api"
)
// GetTables returns all tables in configured keyspace
@@ -35,3 +36,25 @@ func ... | cassandra: get nodes from consul | dollarshaveclub_go-lib | train | go |
fb3dff6ab6fb175c211f2f2aba10ff8c389603e7 | diff --git a/lib/transports/polling.js b/lib/transports/polling.js
index <HASH>..<HASH> 100644
--- a/lib/transports/polling.js
+++ b/lib/transports/polling.js
@@ -135,17 +135,20 @@ Polling.prototype.onData = function(data){
// otherwise bypass onData and handle the message
self.onPacket(packet);
+ });
+ ... | polling: consider the possibility of an event changing readyState | socketio_engine.io-client | train | js |
49d298d2f215fd13aa1c8af1afe6f4aedb8c4358 | diff --git a/geojson/geometry.py b/geojson/geometry.py
index <HASH>..<HASH> 100644
--- a/geojson/geometry.py
+++ b/geojson/geometry.py
@@ -2,7 +2,6 @@ from decimal import Decimal
from geojson.base import GeoJSON
-
class Geometry(GeoJSON):
"""
Represents an abstract base class for a WGS84 geometry.
@@ -2... | Different JSON compliant types for python 2 and 3 | jazzband_python-geojson | train | py |
f1ec27ec213ae30d964885eb4c879d47ba98646d | diff --git a/src/MenuItem/RadioItem.php b/src/MenuItem/RadioItem.php
index <HASH>..<HASH> 100644
--- a/src/MenuItem/RadioItem.php
+++ b/src/MenuItem/RadioItem.php
@@ -52,13 +52,16 @@ class RadioItem implements MenuItemInterface, ToggableItemInterface
? $parentItem->getItems()
: $cliMen... | array_walk() does not like functions are first parameter | php-school_cli-menu | train | php |
f5f48b600c2993dffdd342ab766e2385cbd3ccc2 | diff --git a/src/Config.php b/src/Config.php
index <HASH>..<HASH> 100644
--- a/src/Config.php
+++ b/src/Config.php
@@ -70,6 +70,8 @@ class Config
const E_CUSTGROUP_A_TAX_CLASS_ID = 'tax_class_id';
const E_CUSTOMER_A_EMAIL = 'email';
const E_CUSTOMER_A_ENTITY_ID = self::E_COMMON_A_ENTITY_ID;
+ const E_... | MOBI-<I> - Create aggregate to use in Accounts grid | praxigento_mobi_mod_core | train | php |
91b49f8538b423648d4c93855e0dc0ce326bdfc3 | diff --git a/cobraadaptor/adaptor.go b/cobraadaptor/adaptor.go
index <HASH>..<HASH> 100644
--- a/cobraadaptor/adaptor.go
+++ b/cobraadaptor/adaptor.go
@@ -84,6 +84,7 @@ func NewCobraAdaptor(clientFlags *cliflags.ClientFlags) CobraAdaptor {
registry.NewLogoutCommand(dockerCli),
system.NewVersionCommand(dockerCli),... | Migrate info command to cobra | docker_cli | train | go,go |
0e17ac483bbb044f6cb114d982cda65c4eea28d9 | diff --git a/tests/test_asym_logit.py b/tests/test_asym_logit.py
index <HASH>..<HASH> 100644
--- a/tests/test_asym_logit.py
+++ b/tests/test_asym_logit.py
@@ -20,7 +20,7 @@ import pylogit.asym_logit as asym
try:
# in Python 3 range returns an iterator instead of list
# to maintain backwards compatibility use... | Added import of python2 compatible range function for testing. | timothyb0912_pylogit | train | py |
ce3e23bdd42dbfbaa6fe06226bb4e0d26c4d6eab | diff --git a/test/functional/KrizalysOnedriveTest.php b/test/functional/KrizalysOnedriveTest.php
index <HASH>..<HASH> 100644
--- a/test/functional/KrizalysOnedriveTest.php
+++ b/test/functional/KrizalysOnedriveTest.php
@@ -1243,7 +1243,7 @@ EOF;
'Test file',
'Test content',
[
- ... | Fixed request headers in functional test cases | krizalys_onedrive-php-sdk | train | php |
8764e536b1daa37d78fd2839e21d351bbc06d1f7 | diff --git a/lib/plugins/internal/timeout.js b/lib/plugins/internal/timeout.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/internal/timeout.js
+++ b/lib/plugins/internal/timeout.js
@@ -1,21 +1,18 @@
-var _ = require('lodash')
-
module.exports = function (timeoutInMs) {
return {
name: 'teenytest-timeout',
... | The extra var caused a bug which caused a guard.
This bug was caught by Standard JavaScript™ c/o @feross | testdouble_teenytest | train | js |
d484795f5ec578584703dd7d4e609ab9462a9ebd | diff --git a/penman/graph.py b/penman/graph.py
index <HASH>..<HASH> 100644
--- a/penman/graph.py
+++ b/penman/graph.py
@@ -109,6 +109,13 @@ class Graph(object):
id(self)
)
+ def __eq__(self, other):
+ if not isinstance(other, Graph):
+ return NotImplemented
+ return (... | Add Graph.__eq__ for exact comparisons
Epidata and metadata are ignored, but the triples and top must
match (including variable names). | goodmami_penman | train | py |
f8cfa40af9b1b4742124b5de4714a16edf917640 | diff --git a/src/sap.m/src/sap/m/IconTabHeader.js b/src/sap.m/src/sap/m/IconTabHeader.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/IconTabHeader.js
+++ b/src/sap.m/src/sap/m/IconTabHeader.js
@@ -565,8 +565,18 @@ sap.ui.define(['jquery.sap.global', './library', 'sap/ui/core/Control', 'sap/ui/
* @returns i... | [FIX] sap.m.IconTabBar: Changed scrolling arrows appearance on
mobile devices
The "navigation" arrows are changed to "slim" arrows on touch devices
Change-Id: I0e<I>a<I>a<I>ebeccd<I>c5e<I>dda<I>
BCP: <I> | SAP_openui5 | train | js |
fd8ed43c80b442075864de73f1c3ec4fb63df92f | diff --git a/rest_framework_serializer_field_permissions/permissions.py b/rest_framework_serializer_field_permissions/permissions.py
index <HASH>..<HASH> 100644
--- a/rest_framework_serializer_field_permissions/permissions.py
+++ b/rest_framework_serializer_field_permissions/permissions.py
@@ -50,4 +50,4 @@ class IsAut... | Adapt to Django <I>+ interface. | InterSIS_django-rest-serializer-field-permissions | train | py |
61becfe2b99f1d026c300fbe16ac853b2147b3cf | diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb
index <HASH>..<HASH> 100644
--- a/actionpack/test/controller/resources_test.rb
+++ b/actionpack/test/controller/resources_test.rb
@@ -997,6 +997,16 @@ class ResourcesTest < ActionController::TestCase
end
end... | Test default singleton resource route to ensure it uses GET. This is important if using map.root :resource instead of map.root :resources for some reason. | rails_rails | train | rb |
1e208b743c3fed378eb3189d8080aba8ba77d730 | diff --git a/chardet/charsetgroupprober.py b/chardet/charsetgroupprober.py
index <HASH>..<HASH> 100644
--- a/chardet/charsetgroupprober.py
+++ b/chardet/charsetgroupprober.py
@@ -73,6 +73,7 @@ class CharSetGroupProber(CharSetProber):
continue
if state == ProbingState.FOUND_IT:
... | Properly set CharsetGroupProber.state to FOUND_IT (#<I>)
Throughout the rest of the chardet code we assume that FOUND_IT means we
can stop looking. Previously the CharsetGroupProber did not set its
state appropriately when a child prober returned FOUND_IT. This
substantially speeds up the chardet for most encodings... | chardet_chardet | train | py |
514360635153d01d133d4c40ec75885701de4edc | diff --git a/salt/cli/salt.py b/salt/cli/salt.py
index <HASH>..<HASH> 100644
--- a/salt/cli/salt.py
+++ b/salt/cli/salt.py
@@ -210,7 +210,7 @@ class SaltCMD(salt.utils.parsers.SaltCMDOptionParser):
# returned 'ok' with a retcode of 0.
# This is the final point before the 'salt' cmd returns,
... | Don't iterate through retcodes twice
This use a generator comprehension to stop iteration as soon as a
nonzero retcode is found. | saltstack_salt | train | py |
1e431abadb6b2a84aa99a930e64010a487475d75 | diff --git a/lib/AssetGraph.js b/lib/AssetGraph.js
index <HASH>..<HASH> 100644
--- a/lib/AssetGraph.js
+++ b/lib/AssetGraph.js
@@ -116,7 +116,7 @@ _.extend(AssetGraph.prototype, {
cb(new Error("AssetGraph.resolveAssetConfig: No resolver found for protocol: " + protocol));
}
... | AssetGraph.resolveAssetConfig: Fixed test for root-relative urls (also matched protocol-relative ones). | assetgraph_assetgraph | train | js |
0a486b8f5705242de523489190f3975d55b3b3e6 | diff --git a/src/Dev/CliDebugView.php b/src/Dev/CliDebugView.php
index <HASH>..<HASH> 100644
--- a/src/Dev/CliDebugView.php
+++ b/src/Dev/CliDebugView.php
@@ -160,7 +160,7 @@ class CliDebugView extends DebugView
public function debugVariableText($val)
{
// Check debug
- if (ClassInfo::hasMetho... | BUG Fix issue with CLIDebugView failing on class name of existing class
Fixes #<I> | silverstripe_silverstripe-framework | train | php,php |
e1cbecadab25559f183a59694c6b1a1a83cab1bf | diff --git a/concrete/src/Page/Page.php b/concrete/src/Page/Page.php
index <HASH>..<HASH> 100644
--- a/concrete/src/Page/Page.php
+++ b/concrete/src/Page/Page.php
@@ -1321,7 +1321,7 @@ class Page extends Collection implements \Concrete\Core\Permission\ObjectInterfa
/**
* Returns theme id for the collection.
... | Fix PHPDoc of Page::getCollectionThemeID | concrete5_concrete5 | train | php |
d4d708bb79d8cdcc42eadd3796144358a6e9194e | diff --git a/phantomjs/main.js b/phantomjs/main.js
index <HASH>..<HASH> 100644
--- a/phantomjs/main.js
+++ b/phantomjs/main.js
@@ -39,6 +39,9 @@ sendMessage('private', 'version', phantom.version);
setInterval(function() {
if (new Date() - last > options.timeout) {
sendMessage('fail.timeout');
+ if (options.... | Added option for screenshots
Added an option for time stamped screenshots of the test page to be
rendered upon failure or timeout. Helps with debugging remote test page
issues. | gruntjs_grunt-lib-phantomjs | train | js |
66b419c7fd4f9c0e04ab2129edd470ecc1db902b | diff --git a/acestream/request.py b/acestream/request.py
index <HASH>..<HASH> 100644
--- a/acestream/request.py
+++ b/acestream/request.py
@@ -29,6 +29,12 @@ class Request(object):
def getversion(self):
return self.getservice(method='get_version')
+ def getsearch(self, **params):
+ return self.get('server... | request: add methods for search endpoint | jonian_python-acestream | train | py |
d1bb12c8192a99ff86c6756a118160436a2c50f4 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ long_description = """
setup(
name='termtool',
- version='1.0',
+ version='1.1dev',
description='Declarative terminal tool programming',
author='Mark Paschal',
author_email='markpasc... | Mark this as <I> in development | markpasc_arghlog | train | py,py |
f73c245f5c5d2b9959a1b9c6e4efbdb58922d9d9 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ setup(
packages=['jsonrpcclient'],
package_data={'jsonrpcclient': ['response-schema.json']},
install_requires=['requests', 'jsonschema'],
- version='1.0.10',
+ version='1.0.11',
descrip... | Bumped to version <I> | bcb_jsonrpcclient | train | py |
604daeca76082d174c69cc41d30f7387e999b82a | diff --git a/src/translate.js b/src/translate.js
index <HASH>..<HASH> 100755
--- a/src/translate.js
+++ b/src/translate.js
@@ -815,7 +815,7 @@ angular.module('pascalprecht.translate').provider('$translate', ['$STORAGE_KEY',
// if there isn't a translation table for the language we've requested,
// we lo... | fix(translateService): uses should only load if a loader is registered | angular-translate_angular-translate | train | js |
5badec38e469ccab4edfb7b4ba189a4a915e305b | diff --git a/superset/utils.py b/superset/utils.py
index <HASH>..<HASH> 100644
--- a/superset/utils.py
+++ b/superset/utils.py
@@ -716,7 +716,7 @@ def has_access(f):
return redirect(
url_for(
self.appbuilder.sm.auth_view.__class__.__name__ + '.login',
- next=request... | use full path in case of there are query params (#<I>) | apache_incubator-superset | train | py |
a943b78acc89185804bc9c2794ae0dcc209f0f75 | diff --git a/views/js/controller/list/index.js b/views/js/controller/list/index.js
index <HASH>..<HASH> 100644
--- a/views/js/controller/list/index.js
+++ b/views/js/controller/list/index.js
@@ -32,7 +32,7 @@ define(['jquery', 'i18n', 'helpers', 'ui/feedback'], function ($, __, helpers, f
$listCont... | Fix the broken HTML when the edited list contains tags inside of its name | oat-sa_tao-core | train | js |
33a8011fbe6a7c3e65cdb30f342a55117bc94610 | diff --git a/src/Wardrobe/Core/Controllers/PostController.php b/src/Wardrobe/Core/Controllers/PostController.php
index <HASH>..<HASH> 100644
--- a/src/Wardrobe/Core/Controllers/PostController.php
+++ b/src/Wardrobe/Core/Controllers/PostController.php
@@ -1,6 +1,6 @@
<?php namespace Wardrobe\Core\Controllers;
-use Vi... | Resolve a auth issue in previews | wardrobecms_core-archived | train | php |
ecee041b87e015262887617a733bd09083242c49 | diff --git a/qiskit/aqua/quantum_instance.py b/qiskit/aqua/quantum_instance.py
index <HASH>..<HASH> 100644
--- a/qiskit/aqua/quantum_instance.py
+++ b/qiskit/aqua/quantum_instance.py
@@ -144,7 +144,12 @@ class QuantumInstance:
cache_file=cache_file) if circuit_caching else No... | disable measurement error mitigation for statevector simulator | Qiskit_qiskit-terra | train | py |
f2e8654ce0e8e2ed9a8ae670143776dfb6089193 | diff --git a/middleware/statics.js b/middleware/statics.js
index <HASH>..<HASH> 100644
--- a/middleware/statics.js
+++ b/middleware/statics.js
@@ -39,7 +39,7 @@ function produceMapper(map)
if(middlewares.length === 0)
return next();
var follow = middlewares.shift();
- follow(req, res, hackedNext);
+ re... | manage ocm map in statics mw | deepjs_autobahn | train | js |
0200629650e5513ee0bc8b90f9af210012f42779 | diff --git a/lib/puppet/type/file/ctime.rb b/lib/puppet/type/file/ctime.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/type/file/ctime.rb
+++ b/lib/puppet/type/file/ctime.rb
@@ -10,7 +10,7 @@ module Puppet
current_value
end
- validate do
+ validate do |val|
fail "ctime is read-only"
end... | Fix arity of blocks to validate for file properties
In Ruby <I> define_method respects arity of blocks, so blocks given to
validate must take one arg. | puppetlabs_puppet | train | rb,rb,rb |
51ca4290755a1502fb4b3524026f5692afb589eb | diff --git a/qunit/qunit.js b/qunit/qunit.js
index <HASH>..<HASH> 100644
--- a/qunit/qunit.js
+++ b/qunit/qunit.js
@@ -305,7 +305,7 @@ var QUnit = {
if ( timeout && window.setTimeout ) {
config.timeout = window.setTimeout(function() {
QUnit.ok( false, "Test timed out" );
- start();
+ QUnit.start();
... | The QUnit. prefix was missing from the uses of the start() method. | JamesMGreene_qunit-assert-html | train | js |
77f5e980d94f70ee87bb1c2cebe92959671bc3df | diff --git a/test/rpc/rpc-handler-reroutingSpec.js b/test/rpc/rpc-handler-reroutingSpec.js
index <HASH>..<HASH> 100644
--- a/test/rpc/rpc-handler-reroutingSpec.js
+++ b/test/rpc/rpc-handler-reroutingSpec.js
@@ -15,8 +15,8 @@ const options = {
messageConnector: new MessageConnectorMock(),
logger: { log: jasmine.cr... | test: increase rpc ack timeout in rerouting tests
The tests don't mock ack behaviour, so the rpc objects were sometimes
being destroyed by an ack timeout before the tests ran. | deepstreamIO_deepstream.io | train | js |
e607f753d90b2a3ad7009d74fb8d52d832930a1e | diff --git a/Resources/public/js/directives/collectionFormDirective.js b/Resources/public/js/directives/collectionFormDirective.js
index <HASH>..<HASH> 100644
--- a/Resources/public/js/directives/collectionFormDirective.js
+++ b/Resources/public/js/directives/collectionFormDirective.js
@@ -49,8 +49,8 @@ portfolioApp
... | [PortfolioBundle] Correct save of children | claroline_Distribution | train | js,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.