hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
e33632f79b883fd8ac65d5d5605fa872117edb6d | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -14,6 +14,10 @@ async function getGitUserInfo(options = {}) {
function getUserFromConfig(options) {
return new Promise((resolve, reject) => {
+ if (typeof options.path !== 'string') {
+ return resolve(null)
+ ... | fix: return null on undefined path | rexxars_git-user-info | train |
ff7357a603db123cbafd5d301c89e9c3fe3ad92c | diff --git a/lib/certmeister/redis/store.rb b/lib/certmeister/redis/store.rb
index <HASH>..<HASH> 100644
--- a/lib/certmeister/redis/store.rb
+++ b/lib/certmeister/redis/store.rb
@@ -4,17 +4,35 @@ module Certmeister
class Store
- def initialize(redis)
+ def initialize(redis, environment = "developmen... | Implement redis store
It does not implement a real health check yet. | sheldonh_certmeister | train |
71328ff0b057288ed1a97fd637497fba7f500103 | diff --git a/lib/autoit/version.rb b/lib/autoit/version.rb
index <HASH>..<HASH> 100644
--- a/lib/autoit/version.rb
+++ b/lib/autoit/version.rb
@@ -1,3 +1,3 @@
module Autoit
- VERSION = '1.3.2'.freeze
+ VERSION = '1.3.3'.freeze
end | Bump autoit to <I> | rpossan_autoit | train |
f623779212ec20dd4e1548f3a2ea11c72205e4ec | diff --git a/jctools-core/src/main/java/org/jctools/queues/BaseMpscLinkedArrayQueue.java b/jctools-core/src/main/java/org/jctools/queues/BaseMpscLinkedArrayQueue.java
index <HASH>..<HASH> 100644
--- a/jctools-core/src/main/java/org/jctools/queues/BaseMpscLinkedArrayQueue.java
+++ b/jctools-core/src/main/java/org/jctool... | Fix prepetual fill issue for unbounded queues | JCTools_JCTools | train |
9eb0c83d7be31f9ac5cd85275fc02058db8d14e5 | diff --git a/ykman/driver_otp.py b/ykman/driver_otp.py
index <HASH>..<HASH> 100644
--- a/ykman/driver_otp.py
+++ b/ykman/driver_otp.py
@@ -407,5 +407,7 @@ def open_devices():
for i in range(255):
dev = ykpers.yk_open_key(i)
if not dev:
+ logger.debug('Failed to open key... | Log error/success when opening device over OTP | Yubico_yubikey-manager | train |
7c49a5b983479c6ce54d00167c7d05527df5144d | diff --git a/stream.js b/stream.js
index <HASH>..<HASH> 100644
--- a/stream.js
+++ b/stream.js
@@ -28,6 +28,13 @@ function LineStream () {
self.writable = true
self.buffer = ''
+ self.downstream = null
+
+ self.on('pipe', function(upstream) {
+ upstream.on('end', function(data, encoding) {
+ self.emit... | Support "end" events through the pipe | iriscouch_couchjs | train |
c99462ebdd828a9a3aad2a9803d8a664013cd427 | diff --git a/components/List/ListItem.js b/components/List/ListItem.js
index <HASH>..<HASH> 100644
--- a/components/List/ListItem.js
+++ b/components/List/ListItem.js
@@ -7,7 +7,6 @@ const ListItemContainer = styled.li`
color: ${({ active, theme }) => active ? theme.colors.primary : theme.colors.black};
padding: ... | Remove List border, give border to SidebarLayout instead | Bandwidth_shared-components | train |
eb68a078291299716dee3f78dfaae3af360d09eb | diff --git a/code/checkout/components/CustomerDetailsCheckoutComponent.php b/code/checkout/components/CustomerDetailsCheckoutComponent.php
index <HASH>..<HASH> 100644
--- a/code/checkout/components/CustomerDetailsCheckoutComponent.php
+++ b/code/checkout/components/CustomerDetailsCheckoutComponent.php
@@ -6,35 +6,39 @@... | Don't generate the contact details step form if there is no order available.
Also, fill out customer details from current member object, if not already present in order. | silvershop_silvershop-core | train |
bace19ea71a3341da90b8f9ce39b74a4ae796910 | diff --git a/src/java/com/threerings/miso/client/MisoScenePanel.java b/src/java/com/threerings/miso/client/MisoScenePanel.java
index <HASH>..<HASH> 100644
--- a/src/java/com/threerings/miso/client/MisoScenePanel.java
+++ b/src/java/com/threerings/miso/client/MisoScenePanel.java
@@ -1,5 +1,5 @@
//
-// $Id: MisoScenePan... | The AutoFringer picks which fringe tile to use next by querying a
Random, instead it relies on a duplicatable hashing method.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1 | threerings_narya | train |
e21c25891843b6f5f0879f796d59dba0fb2be128 | diff --git a/test/interface_test.rb b/test/interface_test.rb
index <HASH>..<HASH> 100644
--- a/test/interface_test.rb
+++ b/test/interface_test.rb
@@ -20,6 +20,10 @@ module Byebug
@interface = SpecificInterface.new
end
+ def teardown
+ @interface.history.clear
+ end
+
def test_reads_simple... | Ensure test clears up Readline::HISTORY | deivid-rodriguez_byebug | train |
6dce2885e932453c9abd0320faccd8f2e58be906 | diff --git a/tests/tests_pgi/test_pgi_misc.py b/tests/tests_pgi/test_pgi_misc.py
index <HASH>..<HASH> 100644
--- a/tests/tests_pgi/test_pgi_misc.py
+++ b/tests/tests_pgi/test_pgi_misc.py
@@ -254,7 +254,7 @@ if 2:
"raises -> (bool, contents: str, etag_out: str)")
def test_virtual_method(self):
- ... | tests: use a differend vfunc, the atk one is too new for the ubuntu CI | pygobject_pgi | train |
76983b1ec6c54f4cceeaaf0d841b0a783318f9f0 | diff --git a/Eloquent/Model.php b/Eloquent/Model.php
index <HASH>..<HASH> 100755
--- a/Eloquent/Model.php
+++ b/Eloquent/Model.php
@@ -1529,6 +1529,7 @@ abstract class Model implements ArrayAccess, ArrayableInterface, JsonableInterfa
foreach ($this->touches as $relation)
{
$this->$relation()->touch();
+ $th... | Ensure to propagate touchOwner on relationships. | illuminate_database | train |
ea3f86c66743b964cc2a6386fedecee905877d35 | diff --git a/clam/clamservice.py b/clam/clamservice.py
index <HASH>..<HASH> 100755
--- a/clam/clamservice.py
+++ b/clam/clamservice.py
@@ -2493,7 +2493,7 @@ def set_defaults():
settings.BASICAUTH = False #default is HTTP Digest
if not 'LISTPROJECTS' in settingkeys:
settings.LISTPROJECTS = True
- ... | hide filename field in editor interface when filename is fixed anyway (issue #<I>) | proycon_clam | train |
a61ae2fa3aec6fba981271aeac35809e1e7a90a4 | diff --git a/harvestingkit/inspire_cds_package/mappings.py b/harvestingkit/inspire_cds_package/mappings.py
index <HASH>..<HASH> 100644
--- a/harvestingkit/inspire_cds_package/mappings.py
+++ b/harvestingkit/inspire_cds_package/mappings.py
@@ -366,6 +366,10 @@ mappings = {
{
"cds": "Nuclear Physics - The... | inspire_cds_package: add Quantum subject | inspirehep_harvesting-kit | train |
6bf0c5d2341a589a9d31f3b8be8d459348b90244 | diff --git a/src/main/java/org/fit/layout/impl/DefaultArea.java b/src/main/java/org/fit/layout/impl/DefaultArea.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/fit/layout/impl/DefaultArea.java
+++ b/src/main/java/org/fit/layout/impl/DefaultArea.java
@@ -15,6 +15,7 @@ import java.util.Vector;
import org.fit.... | getAreaTree api for the individual areas | FitLayout_api | train |
23c1b7d47412f640553184a4031ee225f253d7c6 | diff --git a/src/OmniApp/Cli/Output.php b/src/OmniApp/Cli/Output.php
index <HASH>..<HASH> 100644
--- a/src/OmniApp/Cli/Output.php
+++ b/src/OmniApp/Cli/Output.php
@@ -125,4 +125,12 @@ class Output extends \OmniApp\BaseEmitter
return isset($this->env[$key]) ? $this->env[$key] : null;
}
+
+ /**
+ *... | Add Output->__toString method | hfcorriez_pagon | train |
68ee6b05e5282db4cb4f7be8d3a4ab3955346903 | diff --git a/commons/src/main/java/com/orientechnologies/common/collection/OMVRBTree.java b/commons/src/main/java/com/orientechnologies/common/collection/OMVRBTree.java
index <HASH>..<HASH> 100644
--- a/commons/src/main/java/com/orientechnologies/common/collection/OMVRBTree.java
+++ b/commons/src/main/java/com/orientec... | NPE issue reported in ML by Rob was fixed. | orientechnologies_orientdb | train |
b59e13015fac9aea671e743e450649439cd0dec8 | diff --git a/Classes/Controller/SearchController.php b/Classes/Controller/SearchController.php
index <HASH>..<HASH> 100644
--- a/Classes/Controller/SearchController.php
+++ b/Classes/Controller/SearchController.php
@@ -274,11 +274,11 @@ class Tx_SolrFrontend_Controller_SearchController extends Tx_Extbase_MVC_Control
... | Updated suggestion for suggest component in solr | subugoe_typo3-find | train |
e08329cae4a1198e124c7615e92f44a7319a2cb8 | diff --git a/org/junit/tests/AssertionTest.java b/org/junit/tests/AssertionTest.java
index <HASH>..<HASH> 100644
--- a/org/junit/tests/AssertionTest.java
+++ b/org/junit/tests/AssertionTest.java
@@ -224,6 +224,7 @@ public class AssertionTest {
@Test public void sameWithMessage() {
try {
assertSame("not same", ... | Fixed tests for assertSame and assertNotSame. | junit-team_junit4 | train |
6cac0edb7ac1ca9e6c7c3aa61539b1d2dc0769cb | diff --git a/wunderline-add.js b/wunderline-add.js
index <HASH>..<HASH> 100755
--- a/wunderline-add.js
+++ b/wunderline-add.js
@@ -118,7 +118,7 @@ function main() {
// set the dueDate as date for reminder, if no valid datetime given
reminderDatetime = moment(dueDate);
} else {
- console.error("I... | Add expected format to error for invalid reminder
related to #<I> | wayneashleyberry_wunderline | train |
82e8d11c12f160fbf07a8faef5931c2f7a364a6a | diff --git a/src/selector.js b/src/selector.js
index <HASH>..<HASH> 100644
--- a/src/selector.js
+++ b/src/selector.js
@@ -809,8 +809,8 @@ var contains = document.compareDocumentPosition ? function(a, b){
};
var isXML = function(elem){
- return elem && elem.nodeType === 9 && elem.nodeName !== "HTML" ||
- isXML( e... | Re-worked the logic for handling isXML detection. | jquery_jquery | train |
52cee243cc4e84f940a29a99d6df360230579840 | diff --git a/examples/server/settings.py b/examples/server/settings.py
index <HASH>..<HASH> 100644
--- a/examples/server/settings.py
+++ b/examples/server/settings.py
@@ -15,6 +15,16 @@ ROOT_URLCONF = 'server.urls'
SECRET_KEY = 'secret'
+INSTALLED_APPS = (
+ 'django.contrib.auth',
+ 'django.contrib.contentty... | redis4ws optionally loaded | jrief_django-angular | train |
e9709aec0a5f76164c09beb6fa0a77b3c004d4b8 | diff --git a/app/models/agents/peak_detector_agent.rb b/app/models/agents/peak_detector_agent.rb
index <HASH>..<HASH> 100644
--- a/app/models/agents/peak_detector_agent.rb
+++ b/app/models/agents/peak_detector_agent.rb
@@ -138,7 +138,7 @@ module Agents
def remember(group, event)
memory['data'] ||= {}
... | Prevent PeakDetectorAgent from storing invalid data in it's memory
The Agent expects the data in its memory groups to be castable to a
float. By attempting the type cast when receiving events we prevent the
memory from being corrupted with invalid data which lead exceptions
while trying to access it.
#<I> | huginn_huginn | train |
b764d49945ac1f9e5d6546170bdd5eca85a20c4b | diff --git a/lib/reek/block_context.rb b/lib/reek/block_context.rb
index <HASH>..<HASH> 100644
--- a/lib/reek/block_context.rb
+++ b/lib/reek/block_context.rb
@@ -21,7 +21,19 @@ module Reek
end
end
- class BlockContext < CodeContext
+ class VariableContainer < CodeContext
+
+ def initialize(outer, exp)
+... | Removed duplication between blocks and methods | troessner_reek | train |
8c76bbb53d3ce4b3b8eb384f75309a9e793c7ece | diff --git a/salt/modules/dnsutil.py b/salt/modules/dnsutil.py
index <HASH>..<HASH> 100644
--- a/salt/modules/dnsutil.py
+++ b/salt/modules/dnsutil.py
@@ -2,8 +2,9 @@
'''
Compendium of generic DNS utilities.
-.. note:
- Some functions in the `dnsutil` execution module depend on `dig`.
+.. note::
+
+ Some func... | Some minor doc fixes for dnsutil module so they'll render correctly | saltstack_salt | train |
5bc0c40a060a72dee33b08e9ce4e34c845af704d | diff --git a/lib/slurper.rb b/lib/slurper.rb
index <HASH>..<HASH> 100644
--- a/lib/slurper.rb
+++ b/lib/slurper.rb
@@ -1,6 +1,6 @@
require 'yaml'
require 'story'
-YAML::ENGINE.yamler='syck'
+YAML::ENGINE.yamler='syck' if RUBY_VERSION > '1.9'
class Slurper | Set yaml engine only if ruby is greater than <I> | hashrocket_slurper | train |
6e8094376ac237bfb4acc77612fc14af1db64848 | diff --git a/lib/namey/generator.rb b/lib/namey/generator.rb
index <HASH>..<HASH> 100644
--- a/lib/namey/generator.rb
+++ b/lib/namey/generator.rb
@@ -11,8 +11,12 @@ module Namey
# initialize the name generator
# * +dbname+ - Sequel style db URI ex: 'sqlite://foo.db'
def initialize(dbname = nil)
- d... | accept an existing Sequel DB as an option | muffinista_namey | train |
06d088161a77389884e0895614f63c50e6ee25da | diff --git a/src/feat/database/driver.py b/src/feat/database/driver.py
index <HASH>..<HASH> 100644
--- a/src/feat/database/driver.py
+++ b/src/feat/database/driver.py
@@ -22,7 +22,7 @@
from urllib import urlencode, quote
from zope.interface import implements
-from twisted.internet import error as tw_error, base
+fr... | Respond with correct failure when couchdb client tries to use
filtered changes listener with an unexisting filter.
Also change the order of calls against the response decoder in http client.
Now connectionMade() is called when the response status is already set,
so that it could use this value to respond. | f3at_feat | train |
6a79239944fa495130aded67c048592eb40c97b6 | diff --git a/pkg/kubectl/cmd/attach.go b/pkg/kubectl/cmd/attach.go
index <HASH>..<HASH> 100644
--- a/pkg/kubectl/cmd/attach.go
+++ b/pkg/kubectl/cmd/attach.go
@@ -115,7 +115,8 @@ func (*DefaultRemoteAttach) Attach(method string, url *url.URL, config *restclie
type AttachOptions struct {
StreamOptions
- CommandName... | suggest using describe cmd to list pod containers | kubernetes_kubernetes | train |
3b52a879ad4e9adf01d344f8117e550d8d5f6e4f | diff --git a/src/frontend/org/voltdb/iv2/BaseInitiator.java b/src/frontend/org/voltdb/iv2/BaseInitiator.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/iv2/BaseInitiator.java
+++ b/src/frontend/org/voltdb/iv2/BaseInitiator.java
@@ -172,14 +172,6 @@ public abstract class BaseInitiator implements Initiator... | Don't interrupt IV2 sites on shutdown. Let the poinson pill take care of the
running procedures. | VoltDB_voltdb | train |
5fe17e0433ee4be97ab17f3aa88a76b0e114e714 | diff --git a/test/lib/queue_worker.spec.js b/test/lib/queue_worker.spec.js
index <HASH>..<HASH> 100644
--- a/test/lib/queue_worker.spec.js
+++ b/test/lib/queue_worker.spec.js
@@ -1752,7 +1752,7 @@ describe('QueueWorker', function() {
} catch (errorB) {
done(errorB)
}
- }, 0);
+... | Reducing possibility of a race-condition in new shutdown() test | FirebaseExtended_firebase-queue | train |
94d0c17b808904d8c9d18133dfcbc46bcd433f2f | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -161,6 +161,26 @@ There are props that are common for all components and special props for each co
</thead>
<tbody>
<tr>
+ <td>audio-src</td>
+ <td><code>String</code></td>
+ <td><code>null</code>... | Fix some lint problems and add info to readme file. | staskobzar_vue-audio-visual | train |
bc4bf66d17e38016733b310a3ca2ee7c2c762ae6 | diff --git a/dvc/remote/local.py b/dvc/remote/local.py
index <HASH>..<HASH> 100644
--- a/dvc/remote/local.py
+++ b/dvc/remote/local.py
@@ -626,8 +626,12 @@ class LocalCache(LocalRemote, CacheMixin):
func = pbar.wrap_fn(func)
with ThreadPoolExecutor(max_workers=jobs) as executor:
... | (bugfix) get/import: fix broken progress bar (#<I>)
PR #<I> (6d<I>e) extended `LocalRemote::_get_plans` to return one
`checksums` too. As all of the args from `_get_plans` was passed
down to `download()`, it recognized extra arg of checksum as
`no_progress_bar` due to which it became True and stopped showing
progr... | iterative_dvc | train |
83b05948907f290669a198d57dc1f5a311dc3310 | diff --git a/app/controllers/humpyard/pages_controller.rb b/app/controllers/humpyard/pages_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/humpyard/pages_controller.rb
+++ b/app/controllers/humpyard/pages_controller.rb
@@ -251,6 +251,8 @@ module Humpyard
raise ::ActionController::RoutingError, "N... | Better fresh_when config and some debug headers | humpyard_humpyard | train |
58a9c52e530343ba1391c18cb5bf93a59512bbb2 | diff --git a/CHANGELOG b/CHANGELOG
index <HASH>..<HASH> 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+v0.7 [30-04-2013]
+* implemented Array and Hash properties types
+* fixed a bug with Date property implementation
+
v0.6.2 [23-05-2012]
* adds an ability to specify/create indices on *has_one* and *belongs_... | added tests for new Hash and Array type properties (now also throwing an exception if passed wrong property value) | german_redis_orm | train |
973d661007b251405d7f8b5dcaf32885807a89d6 | diff --git a/lib/ransack/nodes/sort.rb b/lib/ransack/nodes/sort.rb
index <HASH>..<HASH> 100644
--- a/lib/ransack/nodes/sort.rb
+++ b/lib/ransack/nodes/sort.rb
@@ -3,7 +3,7 @@ module Ransack
class Sort < Node
include Bindable
- attr_reader :name, :dir
+ attr_reader :name, :dir, :ransacker_args
... | Added support of ransacker_args to Ransack::Nodes::Sort and related test. | activerecord-hackery_ransack | train |
a13bdfc159192dfd320c01d45d498e10732cc6de | diff --git a/lib/vagrant_snap.rb b/lib/vagrant_snap.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant_snap.rb
+++ b/lib/vagrant_snap.rb
@@ -16,6 +16,7 @@ module Snap
end
def parse_tree(vmname)
+ init
vm = VirtualBox::VM.find( vmname )
@@current = vm.current_snapshot
... | check snapshot name uniqueness before taking new snapshot | t9md_vagrant-snap | train |
4eb779e596dd498f2bdf4763ce06f0d1b62c1a08 | diff --git a/provider/marathon.go b/provider/marathon.go
index <HASH>..<HASH> 100644
--- a/provider/marathon.go
+++ b/provider/marathon.go
@@ -235,24 +235,11 @@ func (provider *Marathon) taskFilter(task marathon.Task, applications *marathon.
}
}
if portValueLabel != "" {
- port, err := strconv.Atoi((*applicatio... | Allow traefik.port to not be in the list of marathon ports | containous_traefik | train |
484741ccf0ff6eca78ac2a84400d5b5399a6516a | diff --git a/buffer_test.go b/buffer_test.go
index <HASH>..<HASH> 100644
--- a/buffer_test.go
+++ b/buffer_test.go
@@ -9,6 +9,16 @@ import (
"testing"
)
+func TestSpill(t *testing.T) {
+ buf := NewMulti(New(5), NewDiscard())
+ buf.Write([]byte("Hello World"))
+ data := make([]byte, 12)
+ n, _ := buf.Read(data)
+ i... | Added Discard Buffer, which is always empty, and accepts all writes | djherbis_buffer | train |
164f64fb9f92440256787ba30af39b4cdc5b4617 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@
#### Fixes
* Your contribution here.
+* [#1893](https://github.com/ruby-grape/grape/pull/1893): Allows `Grape::API` to behave like a Rack::app in some instances where it was misbehaving - [@myx... | Makes sure Grape::API behaves as a Rack::App (#<I>)
Makes sure Grape::API behaves as a Rack::App by calling: 'call' on the first mounted instance rather than the base instance (which is never mounted) which will have the environment information as to where it was mounted. | ruby-grape_grape | train |
a4856efbfe6d9f0a1ca4968de926a9e68d354ec7 | diff --git a/src/TwigBridge/TwigBridge.php b/src/TwigBridge/TwigBridge.php
index <HASH>..<HASH> 100644
--- a/src/TwigBridge/TwigBridge.php
+++ b/src/TwigBridge/TwigBridge.php
@@ -24,7 +24,7 @@ class TwigBridge
/**
* @var string TwigBridge version
*/
- const VERSION = '0.1.12';
+ const VERSION = '... | Bumped version for release <I> | rcrowe_TwigBridge | train |
3b4a82fdd9e32fb765764c3f22a2181839dccd5b | diff --git a/src/Util/Href.php b/src/Util/Href.php
index <HASH>..<HASH> 100644
--- a/src/Util/Href.php
+++ b/src/Util/Href.php
@@ -20,10 +20,6 @@ class Href
*/
public function __construct( $url, $validate = false )
{
- if ($validate && !$this->isValid( $url )) {
- throw new InvalidUrl(... | Updated Href class and tests | cuevae_collection-json-php | train |
7e6928466118168ab232fd1e89b778d6704f36b8 | diff --git a/framework/core/src/Core/Handlers/Events/DiscussionMetadataUpdater.php b/framework/core/src/Core/Handlers/Events/DiscussionMetadataUpdater.php
index <HASH>..<HASH> 100755
--- a/framework/core/src/Core/Handlers/Events/DiscussionMetadataUpdater.php
+++ b/framework/core/src/Core/Handlers/Events/DiscussionMetad... | Make sure user activity is synced when whole discussions are deleted
We need to fire the PostWasDeleted event for every post when a
discussion is deleted. This means deleting big discussions will be an
intensive process, but that’s OK because it’s very rare. | flarum_core | train |
cab9932a8c2787a378e52fc52921492c6bef7d71 | diff --git a/rq_scheduler/scheduler.py b/rq_scheduler/scheduler.py
index <HASH>..<HASH> 100644
--- a/rq_scheduler/scheduler.py
+++ b/rq_scheduler/scheduler.py
@@ -131,8 +131,11 @@ class Scheduler(object):
"""
timeout = kwargs.pop('timeout', None)
job_id = kwargs.pop('job_id', None)
+ j... | [Feat] Updated enqueue_in/at to accept job_ttl and job_result_ttl arguments | rq_rq-scheduler | train |
61c43de3dcb4acaa6f13b9d3a9dff20ad62345f3 | diff --git a/pyqode/core/widgets/filesystem_treeview.py b/pyqode/core/widgets/filesystem_treeview.py
index <HASH>..<HASH> 100644
--- a/pyqode/core/widgets/filesystem_treeview.py
+++ b/pyqode/core/widgets/filesystem_treeview.py
@@ -287,7 +287,15 @@ class FileSystemHelper:
_logger().info('%s <%s> to <%s>' % ... | FSTreeView: improve action paste
Now it will always prompt you for a new name (this is needed if you copy a file in the same directory). | pyQode_pyqode.core | train |
691ad461b09f249f2cbd4614c68576ebb303ea2f | diff --git a/Auth/OpenID.php b/Auth/OpenID.php
index <HASH>..<HASH> 100644
--- a/Auth/OpenID.php
+++ b/Auth/OpenID.php
@@ -97,7 +97,7 @@ define('Auth_OpenID_punct',
"!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~");
if (Auth_OpenID_getMathLib() === null) {
- define('Auth_OpenID_NO_MATH_SUPPORT', true);
+ Auth_Open... | [project @ [FIX #<I>] Replace direct usage of NO_MATH_SUPPORT with function calls] | openid_php-openid | train |
6812db497df96cd9c3d19821c43ac5e2413a32b3 | diff --git a/spec/unit/controller_filters_spec.rb b/spec/unit/controller_filters_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/controller_filters_spec.rb
+++ b/spec/unit/controller_filters_spec.rb
@@ -4,29 +4,29 @@ describe ActiveAdmin, "filters" do
let(:application){ ActiveAdmin::Application.new }
descri... | controller_filters_spec updated (test are passing now). | activeadmin_activeadmin | train |
e795451474a784b11061cf7f5ff9768a71dec143 | diff --git a/src/main/java/org/aeonbits/owner/Converters.java b/src/main/java/org/aeonbits/owner/Converters.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/aeonbits/owner/Converters.java
+++ b/src/main/java/org/aeonbits/owner/Converters.java
@@ -28,7 +28,7 @@ public enum Converters {
}
},
- ... | added class with object constructor converter; refactoring | lviggiano_owner | train |
32f40ab9525256f1f7654d54f3307a4e9e1bc7c4 | diff --git a/core/Date.php b/core/Date.php
index <HASH>..<HASH> 100644
--- a/core/Date.php
+++ b/core/Date.php
@@ -290,6 +290,18 @@ class Date
}
/**
+ * Returns `true` if the current year is a leap year, false otherwise.
+ *
+ * @return bool
+ */
+ public function isLeapYear()
+ {
+ ... | refs #<I> added method to detect whether current year is a leap year | matomo-org_matomo | train |
c041c89f598e55d766195536375696f68bd32f22 | diff --git a/spec/fixture-helper.js b/spec/fixture-helper.js
index <HASH>..<HASH> 100644
--- a/spec/fixture-helper.js
+++ b/spec/fixture-helper.js
@@ -57,20 +57,20 @@ module.exports = function fixtureHelper (tmpDir) {
},
// Creates a cordova project with one platform installed
- projectWithPl... | test: use fs.copySync for increased performance (#<I>) | apache_cordova-lib | train |
8f6dfaf2808a48aed8c4fb99731d3bb176b7360b | diff --git a/Resources/public/js/calendar-settings.js b/Resources/public/js/calendar-settings.js
index <HASH>..<HASH> 100644
--- a/Resources/public/js/calendar-settings.js
+++ b/Resources/public/js/calendar-settings.js
@@ -1,35 +1,34 @@
$(function () {
- var date = new Date();
- var d = date.getDate();
- var m = da... | Fix JavaScript file indentation inconsistency. | adesigns_calendar-bundle | train |
9092ec083d2910069204ad97270d56bbd0a51054 | diff --git a/text/text.go b/text/text.go
index <HASH>..<HASH> 100644
--- a/text/text.go
+++ b/text/text.go
@@ -21,7 +21,6 @@ import (
"image"
"image/color"
"math"
- "reflect"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
@@ -113,25 +112,6 @@ func drawGlyph(dst *ebiten.Image, face font.Face, r ru... | text: Remove uniqFace for performance
Fixes #<I>. Add comments for #<I>. | hajimehoshi_ebiten | train |
3d17f21de491b6976aa453f5b06badb70f8449cc | diff --git a/java/com/couchbase/lite/ApiTest.java b/java/com/couchbase/lite/ApiTest.java
index <HASH>..<HASH> 100644
--- a/java/com/couchbase/lite/ApiTest.java
+++ b/java/com/couchbase/lite/ApiTest.java
@@ -167,14 +167,14 @@ public class ApiTest extends LiteTestCase {
UnsavedRevision newRev =doc.createRevision... | Expected vs actual was reversed in the assertion | couchbase_couchbase-lite-android | train |
55082718a4699f1bc3eefed2b7494552fdea2243 | diff --git a/tests/HttpClientTest.php b/tests/HttpClientTest.php
index <HASH>..<HASH> 100644
--- a/tests/HttpClientTest.php
+++ b/tests/HttpClientTest.php
@@ -81,4 +81,31 @@ class HttpClientTest extends \PHPUnit_Framework_TestCase {
$this->assertNotEmpty($httpClient->request, 'No request found');
$thi... | Added test for request creation from valid HTTP request delivered in 2 chunks. | kiler129_CherryHttp | train |
faa649efa0bbe971ab2eefd6d1902f4f6ee518ab | diff --git a/mutant/management/__init__.py b/mutant/management/__init__.py
index <HASH>..<HASH> 100644
--- a/mutant/management/__init__.py
+++ b/mutant/management/__init__.py
@@ -86,7 +86,6 @@ def model_definition_post_save(sender, instance, created, **kwargs):
old_db_table = old_model_class._meta.db_table... | Removed a redundant call to remove_from_app_cache.
ModelDefinition.save() already deals with unregistration of stale model_class. | charettes_django-mutant | train |
748ba06e26bcdb855eddeba1546323ee8077e242 | diff --git a/cache2k-core/src/main/java/org/cache2k/impl/xmlConfiguration/CacheConfigurationProviderImpl.java b/cache2k-core/src/main/java/org/cache2k/impl/xmlConfiguration/CacheConfigurationProviderImpl.java
index <HASH>..<HASH> 100644
--- a/cache2k-core/src/main/java/org/cache2k/impl/xmlConfiguration/CacheConfigurati... | fix for latest commits: wrong catch blocks, masks more precise exception | cache2k_cache2k | train |
42dec6be1f4e20ad3f9205b90fdb9e0f9286ac8a | diff --git a/tests/functional/Tcpdf/FpdiTest.php b/tests/functional/Tcpdf/FpdiTest.php
index <HASH>..<HASH> 100644
--- a/tests/functional/Tcpdf/FpdiTest.php
+++ b/tests/functional/Tcpdf/FpdiTest.php
@@ -152,9 +152,10 @@ class FpdiTest extends TestCase
public function testReleaseOfStreamHandleOnUnset()
{
- ... | Optimized some tests in view to handling of temporary files. | Setasign_FPDI | train |
b05c70d29737eb96cf44bfbcbc68d932d01c9924 | diff --git a/pkg/namesgenerator/names-generator.go b/pkg/namesgenerator/names-generator.go
index <HASH>..<HASH> 100644
--- a/pkg/namesgenerator/names-generator.go
+++ b/pkg/namesgenerator/names-generator.go
@@ -151,6 +151,9 @@ var (
// Alexander Graham Bell - an eminent Scottish-born scientist, inventor, engineer an... | Added four names to namesgenerator | moby_moby | train |
7df62d3a00d5345369ea5ccb2d410fa970f4bebe | diff --git a/systemd/journal.py b/systemd/journal.py
index <HASH>..<HASH> 100644
--- a/systemd/journal.py
+++ b/systemd/journal.py
@@ -113,7 +113,7 @@ class Journal(_Journal):
# Default conversion in unicode
try:
result = _convert_unicode(value)
- except:
+ ... | systemd-python: Journal convert_unicode exception handling change
Rather than catch all, is now limited to UnicodeDecodeError | systemd_python-systemd | train |
dfadb5c20e8e1ecf53a024ba08dd408d4fd23a28 | diff --git a/lib/active_support/cache/dalli_store23.rb b/lib/active_support/cache/dalli_store23.rb
index <HASH>..<HASH> 100644
--- a/lib/active_support/cache/dalli_store23.rb
+++ b/lib/active_support/cache/dalli_store23.rb
@@ -22,8 +22,6 @@ module ActiveSupport
DELETED = "DELETED\r\n"
end
- E... | Remove escape_key(), does not work on Ruby <I> | petergoldstein_dalli | train |
fcaf926885aaec071cd9142aae8393ec62bf5def | diff --git a/tests/test_configuration.py b/tests/test_configuration.py
index <HASH>..<HASH> 100644
--- a/tests/test_configuration.py
+++ b/tests/test_configuration.py
@@ -94,6 +94,26 @@ def test_tox_generative_environments_has_common_definition():
assert tox_environments == tox_ini
+def test_tox_multiline_sett... | test: ensure multiline tox settings are written on the new line | dry-python_dependencies | train |
46e313aab153c336c8204a86eaf3b15123e56a4e | diff --git a/pac4j-saml/src/main/java/org/pac4j/saml/metadata/SAML2MetadataGenerator.java b/pac4j-saml/src/main/java/org/pac4j/saml/metadata/SAML2MetadataGenerator.java
index <HASH>..<HASH> 100644
--- a/pac4j-saml/src/main/java/org/pac4j/saml/metadata/SAML2MetadataGenerator.java
+++ b/pac4j-saml/src/main/java/org/pac4j... | Binding not properly generated in SAML metadata (#<I>)
* Binding not properly generated in SAML metadata
* remove useless private constrctor | pac4j_pac4j | train |
b279f8bfb4250c2c151f6f7ea0563c8de0a91472 | diff --git a/src/RenderExpressionTrait.php b/src/RenderExpressionTrait.php
index <HASH>..<HASH> 100644
--- a/src/RenderExpressionTrait.php
+++ b/src/RenderExpressionTrait.php
@@ -3,8 +3,8 @@
namespace Dhii\Expression\Renderer;
use ArrayAccess;
-use Dhii\Expression\ExpressionInterface;
use Dhii\Expression\Renderer\... | Loosened main render method param type
Given that this trait is intended to provide the render entry point, it must be able to support all possible renderable objects.
`TermInterface` is now used to allow terms that do not have chilren to be rendered using this functionality. | Dhii_expression-renderer-abstract | train |
6e056c2445d3bdc09dbb6676db8d9a84017b1ff0 | diff --git a/Python/phate/preprocessing.py b/Python/phate/preprocessing.py
index <HASH>..<HASH> 100644
--- a/Python/phate/preprocessing.py
+++ b/Python/phate/preprocessing.py
@@ -32,18 +32,37 @@ def library_size_normalize(data, verbose=False):
print("Normalizing library sizes for %s cells" % (data.shape[0]))
... | allow library size norm for large sparse matrices | KrishnaswamyLab_PHATE | train |
db3a8585280feecfb8c51de20461a80dafb16be1 | diff --git a/rets/interpreters/search.py b/rets/interpreters/search.py
index <HASH>..<HASH> 100644
--- a/rets/interpreters/search.py
+++ b/rets/interpreters/search.py
@@ -1,5 +1,8 @@
from rets.exceptions import InvalidSearch
import datetime
+import logging
+
+logger = logging.getLogger('rets')
class SearchInterp... | added a rets logger | refindlyllc_rets | train |
ac5db5ec115455e54090542870847820357739a2 | diff --git a/lib/puppet/type/file.rb b/lib/puppet/type/file.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/type/file.rb
+++ b/lib/puppet/type/file.rb
@@ -466,96 +466,6 @@ module Puppet
@stat = nil
end
-
- # Build a recursive map of a link source
- def linkrecurse(recurse)
- ... | Removing the old, obsolete recursion methods. | puppetlabs_puppet | train |
28f7397fd087a072e7cd5b160b9ce74c68ceccd5 | diff --git a/lib/chai/interface/assert.js b/lib/chai/interface/assert.js
index <HASH>..<HASH> 100644
--- a/lib/chai/interface/assert.js
+++ b/lib/chai/interface/assert.js
@@ -1344,7 +1344,7 @@ module.exports = function (chai, util) {
}
/**
- * ### .changes(function, object, property)
+ * ### .changes(funct... | Update doc comments to include message argument | chaijs_chai | train |
d5fb5e1d019e004b5997557ed6b2a8c61e8e69c4 | diff --git a/smack-core/src/main/java/org/jivesoftware/smack/packet/StreamOpen.java b/smack-core/src/main/java/org/jivesoftware/smack/packet/StreamOpen.java
index <HASH>..<HASH> 100644
--- a/smack-core/src/main/java/org/jivesoftware/smack/packet/StreamOpen.java
+++ b/smack-core/src/main/java/org/jivesoftware/smack/pack... | Add all possible attributes to StreamOpen | igniterealtime_Smack | train |
c42b8c3b192e8a36d99bd702108aed051c31913e | diff --git a/bin/mastarm b/bin/mastarm
index <HASH>..<HASH> 100755
--- a/bin/mastarm
+++ b/bin/mastarm
@@ -149,7 +149,7 @@ commander
.description('Run tests using Jest')
.option('-u, --update-snapshots', 'Force update of snapshots. USE WITH CAUTION.')
.option('--coverage', 'Run Jest with coverage reporting')
... | refactor(tests): Refactor caching and jest preprocessing
Directly import presets for preprocessing with Jest
Change cache option so that it doesn’t cache by default. This is an
unfortunate issue with not having a babelrc file. While doing tests on
the Scenario Editor I noticed that unless I turned off caching, test... | conveyal_mastarm | train |
256401331c9736477fcc2d564613385becebee8c | diff --git a/airtest/report/report.py b/airtest/report/report.py
index <HASH>..<HASH> 100644
--- a/airtest/report/report.py
+++ b/airtest/report/report.py
@@ -461,6 +461,9 @@ class LogToHtml(object):
self.static_root = self.static_root.replace("\\", "/")
self.static_root += "/"
+ if n... | fix the bug that output_file is none
(cherry picked from commit afa<I>a<I>a<I>b<I>b<I>ee<I>b<I>c<I>d<I>) | AirtestProject_Airtest | train |
23c73bc70f83bbc17c8f1e51fe52b6bb32b489da | diff --git a/packages/debugger-ui/src/ui/index.js b/packages/debugger-ui/src/ui/index.js
index <HASH>..<HASH> 100644
--- a/packages/debugger-ui/src/ui/index.js
+++ b/packages/debugger-ui/src/ui/index.js
@@ -49,10 +49,10 @@ const Page = (window.Page = {
const statusNode = document.getElementById('status');
swi... | fix: use textContent instead of innerHTML in debugger-ui (#<I>)
Apply the fixes suggested in
<URL> | react-native-community_cli | train |
e600d27b1fdfa8589a1b93335bca24787d28a7fc | diff --git a/lib/attachable.rb b/lib/attachable.rb
index <HASH>..<HASH> 100644
--- a/lib/attachable.rb
+++ b/lib/attachable.rb
@@ -45,7 +45,14 @@ module Attachable
def file=(tempfile)
tempfile.rewind #This may not be super efficient, but it's the necessary fix for Rails 3.1
self["#{attachment_file_pr... | Make the size attribute optional. This is getting tiring. | bamnet_attachable | train |
e800a3854f234a034906a6d8ad60b9c33cf829f0 | diff --git a/src/unity/python/turicreate/test/test_json.py b/src/unity/python/turicreate/test/test_json.py
index <HASH>..<HASH> 100644
--- a/src/unity/python/turicreate/test/test_json.py
+++ b/src/unity/python/turicreate/test/test_json.py
@@ -23,6 +23,7 @@ import math
import os
import pandas
import pytz
+import six
... | Fix test_json.py failure in Python 3 (#<I>)
The test for `(str, unicode)` should be done instead using
`six.string_types` since there is no `unicode` type in
Python 3. | apple_turicreate | train |
bc2f8f96bc49127daf02da981030c6477bc17ae3 | diff --git a/spec/ll/compiler_spec.rb b/spec/ll/compiler_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/ll/compiler_spec.rb
+++ b/spec/ll/compiler_spec.rb
@@ -34,4 +34,35 @@ describe LL::Compiler do
end
end
end
+
+ describe '#on_terminals' do
+ before do
+ @node = s(:terminals, s(:ident, 'A'))
+... | Specs for Compiler#on_terminals. | YorickPeterse_ruby-ll | train |
2b8354933ac8047440e393bcb03a5711e2e1d4e3 | diff --git a/lib/io_streams/paths/sftp.rb b/lib/io_streams/paths/sftp.rb
index <HASH>..<HASH> 100644
--- a/lib/io_streams/paths/sftp.rb
+++ b/lib/io_streams/paths/sftp.rb
@@ -26,12 +26,13 @@ module IOStreams
include SemanticLogger::Loggable if defined?(SemanticLogger)
class << self
- attr_accesso... | Give time for remote sftp server to get ready to accept the password. | rocketjob_iostreams | train |
cf9a4e7f8f5d63e0f37b5ec0b2ca59c8464c09ba | diff --git a/tests/unit/modules/test_mysql.py b/tests/unit/modules/test_mysql.py
index <HASH>..<HASH> 100644
--- a/tests/unit/modules/test_mysql.py
+++ b/tests/unit/modules/test_mysql.py
@@ -450,7 +450,9 @@ class MySQLTestCase(TestCase, LoaderModuleMockMixin):
connect_mock = MagicMock()
with patch.obj... | Use the `OperationalError` from the salt mysql module intead.
The reason is that the exception can come from either MySQLdb or
pymysql(which patches sys.modules to behave like MySQLdb). | saltstack_salt | train |
f488e06bc7923f00bfdcb833565702b33f30b0e7 | diff --git a/src/quart/testing/connections.py b/src/quart/testing/connections.py
index <HASH>..<HASH> 100644
--- a/src/quart/testing/connections.py
+++ b/src/quart/testing/connections.py
@@ -19,7 +19,7 @@ class HTTPDisconnectError(Exception):
pass
-class WebsocketDisconnect(Exception):
+class WebsocketDisconne... | fix build by renaming WebsocketDisconnect to WebsocketDisconnectError | pgjones_quart | train |
68b198d7dad0355f3a567afb9afcc606c16c9902 | diff --git a/rtv/docs.py b/rtv/docs.py
index <HASH>..<HASH> 100644
--- a/rtv/docs.py
+++ b/rtv/docs.py
@@ -17,7 +17,7 @@ Press `?` to open the help screen.
"""
HELP = """
-Basic Commands
+[Basic Commands]
`j/k` or `UP/DOWN` : Move the cursor up/down
`m/n` or `PgUp/PgDn`: Jump to the previous/next page
`o`... | Added brackets to help page. | michael-lazar_rtv | train |
7ca3dd67691388a00e7b747aa2615e630cca96ba | diff --git a/lxd/instance_exec.go b/lxd/instance_exec.go
index <HASH>..<HASH> 100644
--- a/lxd/instance_exec.go
+++ b/lxd/instance_exec.go
@@ -412,7 +412,7 @@ func (s *execWs) Do(op *operations.Operation) error {
}
exitCode, err := cmd.Wait()
- logger.Debug("Instance process stopped")
+ logger.Debug("Instance pro... | lxd/instance/exec: Log exit code of command | lxc_lxd | train |
7ea90d3a477e41e0ae6958545c5f8e9c3fde459f | diff --git a/src/main/resources/META-INF/resources/primefaces-extensions/fuzzysearch/1-fuzzysearch-widget.js b/src/main/resources/META-INF/resources/primefaces-extensions/fuzzysearch/1-fuzzysearch-widget.js
index <HASH>..<HASH> 100644
--- a/src/main/resources/META-INF/resources/primefaces-extensions/fuzzysearch/1-fuzzy... | Added since tag and jsdoc | primefaces-extensions_core | train |
fc35e5751d08b88547d776e423f2800128d7d498 | diff --git a/src/actions/__tests__/entity-action-builder-test.js b/src/actions/__tests__/entity-action-builder-test.js
index <HASH>..<HASH> 100644
--- a/src/actions/__tests__/entity-action-builder-test.js
+++ b/src/actions/__tests__/entity-action-builder-test.js
@@ -13,28 +13,28 @@ describe('The actionBuilder', () => {... | [tests] action builder rename message. | get-focus_deprecated-focus-graph | train |
8dffa0ae9fd7ffcfb73225d14762ad45c15b38d0 | diff --git a/src/mongo/queue/MongoTripodQueue.class.php b/src/mongo/queue/MongoTripodQueue.class.php
index <HASH>..<HASH> 100644
--- a/src/mongo/queue/MongoTripodQueue.class.php
+++ b/src/mongo/queue/MongoTripodQueue.class.php
@@ -33,6 +33,10 @@ class MongoTripodQueue extends MongoTripodBase
{
$now = new ... | tripodConfig is read from job data, not the queue | talis_tripod-php | train |
0e6c90d71f5686aba38d86fca4807de682c18e87 | diff --git a/src/main/java/com/marklogic/client/datamovement/impl/QueryBatcherImpl.java b/src/main/java/com/marklogic/client/datamovement/impl/QueryBatcherImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/marklogic/client/datamovement/impl/QueryBatcherImpl.java
+++ b/src/main/java/com/marklogic/client/datam... | fix an error message that wasn't showing what error occured | marklogic_java-client-api | train |
b148a904d8de88718ace087e5eb89d44b75f272f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -10,8 +10,11 @@ setup(
license='BSD',
url='http://github.com/praekelt/django-recaptcha',
packages=find_packages(),
+ install_requires = [
+ 'django',
+ ],
tests_require=[
- 'django-setup... | Up setuptest version so tests pass with Django <I> | praekelt_django-recaptcha | train |
d63d54e53edbb12ece0d916380bc6f340da1f70e | diff --git a/jf_agent/jf_jira/jira_download.py b/jf_agent/jf_jira/jira_download.py
index <HASH>..<HASH> 100644
--- a/jf_agent/jf_jira/jira_download.py
+++ b/jf_agent/jf_jira/jira_download.py
@@ -140,9 +140,27 @@ def download_projects_and_versions(
if exclude_projects:
filters.append(lambda proj: proj.key ... | [OJ-<I>] Handle case where `projectCategory` is not set
If we are using category-based include/exclude conditions, handle the
case where projects lack a defined category. | Jellyfish-AI_jf_agent | train |
58df297e19c9b6c29cae1fa944302b655e960071 | diff --git a/orb/schema/table.py b/orb/schema/table.py
index <HASH>..<HASH> 100644
--- a/orb/schema/table.py
+++ b/orb/schema/table.py
@@ -472,10 +472,6 @@ class Table(object):
elif type(value) in (str, unicode):
value = orb.Query.fromXmlString(value)
- # restore the v... | Moved the restoreValue from loading from the database to extracting the value from recordValue | orb-framework_orb | train |
715758854a460c56f0067da2a10e4f51baa84109 | diff --git a/src/server/worker/api_server.go b/src/server/worker/api_server.go
index <HASH>..<HASH> 100644
--- a/src/server/worker/api_server.go
+++ b/src/server/worker/api_server.go
@@ -527,13 +527,13 @@ func (a *APIServer) linkData(inputs []*Input, dir string) error {
return os.Symlink(filepath.Join(dir, "out"), fi... | Delete the symlinks, not their sources. | pachyderm_pachyderm | train |
094b7ac2f0b4d13b61157e07d7010b38ee997edb | diff --git a/presto-raptor/src/main/java/com/facebook/presto/raptor/RaptorPageSink.java b/presto-raptor/src/main/java/com/facebook/presto/raptor/RaptorPageSink.java
index <HASH>..<HASH> 100644
--- a/presto-raptor/src/main/java/com/facebook/presto/raptor/RaptorPageSink.java
+++ b/presto-raptor/src/main/java/com/facebook... | Create a new storage page sink if we hit the max row count | prestodb_presto | train |
484736882c9ad58f178997443bc11f87a72086ec | diff --git a/src/components/PasswordSetterBox.js b/src/components/PasswordSetterBox.js
index <HASH>..<HASH> 100644
--- a/src/components/PasswordSetterBox.js
+++ b/src/components/PasswordSetterBox.js
@@ -199,6 +199,7 @@ class PasswordSetterBox extends Nimiq.Observable {
this.$el.classList.remove('repeat-sho... | re-focus password setter on wrong password | nimiq_keyguard-next | train |
244aab4178ff9dd09172da5802c2149155885f90 | diff --git a/lib/onebox/engine/whitelisted_generic_onebox.rb b/lib/onebox/engine/whitelisted_generic_onebox.rb
index <HASH>..<HASH> 100644
--- a/lib/onebox/engine/whitelisted_generic_onebox.rb
+++ b/lib/onebox/engine/whitelisted_generic_onebox.rb
@@ -16,6 +16,7 @@ module Onebox
def self.default_whitelist
... | Add 8tracks, fix some whitespace issues | discourse_onebox | train |
35c905d77a2327ef215cfd7d95cd86efa610b274 | diff --git a/lib/ibm_watson/speech_to_text_v1.rb b/lib/ibm_watson/speech_to_text_v1.rb
index <HASH>..<HASH> 100644
--- a/lib/ibm_watson/speech_to_text_v1.rb
+++ b/lib/ibm_watson/speech_to_text_v1.rb
@@ -533,7 +533,7 @@ module IBMWatson
"redaction" => redaction
}
options.delete_if { |_, v| v.nil? ... | feat(SpeechToText): add support to disable ssl in STT websockets | watson-developer-cloud_ruby-sdk | train |
af494f207dedfabb8b43bcf3b77028043229d35d | diff --git a/test/scope.js b/test/scope.js
index <HASH>..<HASH> 100644
--- a/test/scope.js
+++ b/test/scope.js
@@ -53,7 +53,8 @@ describe("Scope", function suite() {
var app = servers.express;
app.post('/login', function(req, res, next) {
- var bearer = scope.login(res, {
+ var givemeScope = req.query.scope... | Test multiple scopes on same url | kapouer_upcache | train |
807220ac1620b2f3022d52b9474323f882120a02 | diff --git a/enabler/src/com/openxc/enabler/OpenXcEnablerActivity.java b/enabler/src/com/openxc/enabler/OpenXcEnablerActivity.java
index <HASH>..<HASH> 100644
--- a/enabler/src/com/openxc/enabler/OpenXcEnablerActivity.java
+++ b/enabler/src/com/openxc/enabler/OpenXcEnablerActivity.java
@@ -62,12 +62,21 @@ public class ... | Save and restore current tab in Enabler.
Fixed #<I>. | openxc_openxc-android | train |
3265a8b18e8c4c0ff6e8698cc7ca011ebf3b1db9 | diff --git a/fastlane_core/lib/fastlane_core/cert_checker.rb b/fastlane_core/lib/fastlane_core/cert_checker.rb
index <HASH>..<HASH> 100644
--- a/fastlane_core/lib/fastlane_core/cert_checker.rb
+++ b/fastlane_core/lib/fastlane_core/cert_checker.rb
@@ -58,8 +58,8 @@ module FastlaneCore
url = 'https://developer.a... | [fastlane_core] Fixed import check of WWDR certificate (#<I>) | fastlane_fastlane | train |
ad15b6a18c0faf17e0a6d8b78c806b6c6a2f4fe6 | diff --git a/src/stream/csv/parser.js b/src/stream/csv/parser.js
index <HASH>..<HASH> 100644
--- a/src/stream/csv/parser.js
+++ b/src/stream/csv/parser.js
@@ -18,7 +18,7 @@
/*exported _GpfStreamCsvParser*/ // gpf.stream.csv.Parser
/*#endif*/
-_gpfErrorDeclare("csv", {
+_gpfErrorDeclare("csv/parser", {
invalidC... | Fixing errors domain (#<I>) | ArnaudBuchholz_gpf-js | train |
1ce39f486000c9ddbb407410bf7a690420811c01 | diff --git a/src/ContactServiceProvider.php b/src/ContactServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/ContactServiceProvider.php
+++ b/src/ContactServiceProvider.php
@@ -99,7 +99,7 @@ class ContactServiceProvider extends ServiceProvider
/**
* Get the services provided by the provider.
*
- ... | Tweaked use statements and docblocks | BootstrapCMS_Contact | train |
d584a2b8ac57eff3bf230c760e5bda205c6ea747 | diff --git a/python/pyspark/ml/tests.py b/python/pyspark/ml/tests.py
index <HASH>..<HASH> 100644
--- a/python/pyspark/ml/tests.py
+++ b/python/pyspark/ml/tests.py
@@ -466,6 +466,31 @@ class InducedErrorEstimator(Estimator, HasInducedError):
class CrossValidatorTests(PySparkTestCase):
+ def test_copy(self):
+ ... | [SPARK-<I>][PYSPARK] PySpark CrossValidatorModel should support avgMetrics
## What changes were proposed in this pull request?
support avgMetrics in CrossValidatorModel with Python
## How was this patch tested?
Doctest and `test_save_load` in `pyspark/ml/test.py`
[JIRA](<URL>) | apache_spark | train |
da84dc194b6b2e33064ee286513fddf6014293d3 | diff --git a/Tests/js/views/actions/assets/ez-buttonactionview-tests.js b/Tests/js/views/actions/assets/ez-buttonactionview-tests.js
index <HASH>..<HASH> 100644
--- a/Tests/js/views/actions/assets/ez-buttonactionview-tests.js
+++ b/Tests/js/views/actions/assets/ez-buttonactionview-tests.js
@@ -1,13 +1,12 @@
YUI.add('e... | Refactored the button action view test to not use any "global" variable | ezsystems_PlatformUIBundle | train |
cb5f22b760d8370c076223e8f2e0c06de58c3b98 | diff --git a/structr-modules/structr-flow-module/src/main/java/org/structr/flow/impl/FlowComparison.java b/structr-modules/structr-flow-module/src/main/java/org/structr/flow/impl/FlowComparison.java
index <HASH>..<HASH> 100644
--- a/structr-modules/structr-flow-module/src/main/java/org/structr/flow/impl/FlowComparison.... | Fixes bug in FlowComparison when comparing different number types. | structr_structr | train |
10445db011ca518cf7bac24054e02f4cdf3a95e2 | diff --git a/lib/arjdbc/db2/as400.rb b/lib/arjdbc/db2/as400.rb
index <HASH>..<HASH> 100644
--- a/lib/arjdbc/db2/as400.rb
+++ b/lib/arjdbc/db2/as400.rb
@@ -67,6 +67,11 @@ module ArJdbc
result
end
private :execute_and_auto_confirm
+
+ # disable all schemas browsing when default schema is specified
+ ... | add db2_schema to table_exists? | jruby_activerecord-jdbc-adapter | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.