hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
68f0ae87269d1f390f2bd664392102ee5cbed6ca | diff --git a/tests/test_changer.py b/tests/test_changer.py
index <HASH>..<HASH> 100644
--- a/tests/test_changer.py
+++ b/tests/test_changer.py
@@ -3,12 +3,6 @@ from unittest.mock import patch, Mock
from stem import Signal
-import os
-import sys
-current_dir = os.path.dirname(os.path.dirname(__file__))
-sys.path.in... | Tests - update tests with regard to the latest code updates | DusanMadar_TorIpChanger | train |
6141d30e34a34c8137eae398595af15b4b1a0354 | diff --git a/wepay/__init__.py b/wepay/__init__.py
index <HASH>..<HASH> 100644
--- a/wepay/__init__.py
+++ b/wepay/__init__.py
@@ -1,7 +1,7 @@
from api import WePay
# Major, minor, revision
-VERSION = (1, 2, 2)
+VERSION = (1, 2, 3)
def get_version():
return "%s.%s.%s" % VERSION
diff --git a/wepay/calls/user... | added optional argument to /user/register/call | lehins_python-wepay | train |
7f4d88c690119ecb7e03268de80443c61dd07b86 | diff --git a/src/Publishes/Views/scaffold-interface/users/index.blade.php b/src/Publishes/Views/scaffold-interface/users/index.blade.php
index <HASH>..<HASH> 100644
--- a/src/Publishes/Views/scaffold-interface/users/index.blade.php
+++ b/src/Publishes/Views/scaffold-interface/users/index.blade.php
@@ -21,14 +21,22 @@
... | Check if the user has no roles
Currently getting an error if the user has no roles or permissions, this is just a simple fix for that. | amranidev_scaffold-interface | train |
4d052a7f6a4d0629348f7b36a7cfdcdff6a368f8 | diff --git a/Command/ProcessHelpCommand.php b/Command/ProcessHelpCommand.php
index <HASH>..<HASH> 100644
--- a/Command/ProcessHelpCommand.php
+++ b/Command/ProcessHelpCommand.php
@@ -98,12 +98,18 @@ class ProcessHelpCommand extends ContainerAwareCommand
}
} else {
foreach ... | Added a few error messages and a new TODO | cleverage_process-bundle | train |
9d7736a13e1479161c84b48760e748861165c23b | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -70,6 +70,18 @@ class PixivAppApi {
return this.got('v1/user/bookmarks/illust', {query});
}
+ illustDetail(id, query) {
+ if (!id) {
+ return Promise.reject(new Error('illust_id required'));
+ }
+
+ query = Object.... | illust detail api call added | akameco_pixiv-app-api | train |
559795815fcf9ced5e57d79de718c2b281239cae | diff --git a/grimoire_elk/elastic_items.py b/grimoire_elk/elastic_items.py
index <HASH>..<HASH> 100644
--- a/grimoire_elk/elastic_items.py
+++ b/grimoire_elk/elastic_items.py
@@ -116,6 +116,9 @@ class ElasticItems():
def set_cfg_section_name(self, cfg_section_name):
self.cfg_section_name = cfg_section_nam... | [elastic_items] Add set_from_date method
This code includes the method `set_from_date` needed
to set the last enrich date obtained before executing the
enrichment of the repos which (enriched) data is stored in
the same index. | chaoss_grimoirelab-elk | train |
80645161451a6b7112af2da0edd6a250c2f82c3b | diff --git a/ifaddrs.go b/ifaddrs.go
index <HASH>..<HASH> 100644
--- a/ifaddrs.go
+++ b/ifaddrs.go
@@ -356,39 +356,6 @@ func IfByTypeInclude(inputRe string, ifAddrs []IfAddr) ([]IfAddr, error) {
return addrs, nil
}
-// GroupIfAddrsBy groups an []IfAddr based on the matching selector
-func GroupIfAddrsBy(selectorNa... | Remove GroupBy support. This functionality isn't necessary any more with the uniqueBy. | hashicorp_go-sockaddr | train |
9135bafc35f2263bedfa71dd24c07c166fc41841 | diff --git a/elytron/src/main/java/org/wildfly/extension/elytron/AbstractCredentialStoreResourceDefinition.java b/elytron/src/main/java/org/wildfly/extension/elytron/AbstractCredentialStoreResourceDefinition.java
index <HASH>..<HASH> 100644
--- a/elytron/src/main/java/org/wildfly/extension/elytron/AbstractCredentialSto... | [WFCORE-<I>] Correct the cast to avoid a ClassCastException. | wildfly_wildfly-core | train |
b91d36a124237be296366f085245fe3219452797 | diff --git a/src/validator.js b/src/validator.js
index <HASH>..<HASH> 100644
--- a/src/validator.js
+++ b/src/validator.js
@@ -58,12 +58,17 @@ export default class Validator {
}
registerEvents () {
+ const { isSimplePath } = util.Vue.parsers.expression
const attrs = this._dir.el.attributes
for (let... | :bug: bug(event): fix cannot fire top level events
Fixes #<I> | kazupon_vue-validator | train |
de6cb58f14a1163cb8f5cff088a31660ea4df3ef | diff --git a/src/views/editProfile.blade.php b/src/views/editProfile.blade.php
index <HASH>..<HASH> 100644
--- a/src/views/editProfile.blade.php
+++ b/src/views/editProfile.blade.php
@@ -26,7 +26,7 @@
{!! Form::text('last_name', $admin->last_name, array('class' => 'form-control')) !!}
<br />
... | fixed "email" string to be read from l<I>n | serverfireteam_panel | train |
482a2f65c9c5759dff5e8f8127515d5d4aabef77 | diff --git a/lib/recaptcha/client_helper.rb b/lib/recaptcha/client_helper.rb
index <HASH>..<HASH> 100644
--- a/lib/recaptcha/client_helper.rb
+++ b/lib/recaptcha/client_helper.rb
@@ -1,30 +1,5 @@
module Recaptcha
module ClientHelper
- def build_html(options = {})
- site_key = options[:site_key] || Recaptcha... | Rename build_html to recaptcha_components | ambethia_recaptcha | train |
6e522b9e10dea63dd327e95325fd048f29bf04ad | diff --git a/events.go b/events.go
index <HASH>..<HASH> 100644
--- a/events.go
+++ b/events.go
@@ -139,7 +139,7 @@ func NewSysEvtCh() chan Event {
return ec
}
-var DefaultEvtStream = NewEvtStream()
+var DefaultEvtStream *EvtStream
type EvtStream struct {
sync.RWMutex
diff --git a/render.go b/render.go
index <... | Init() cleanly after Close() | gizak_termui | train |
504e1a66f1277af17a3637b44a23016a3b9a8bad | diff --git a/src/main/java/net/finmath/time/FloatingpointDate.java b/src/main/java/net/finmath/time/FloatingpointDate.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/finmath/time/FloatingpointDate.java
+++ b/src/main/java/net/finmath/time/FloatingpointDate.java
@@ -6,7 +6,9 @@
package net.finmath.time;
+i... | Added conversion from LocalDateTime to double (duration). | finmath_finmath-lib | train |
21d168d46450f0bdc85da731ed5765662e029a62 | diff --git a/scoped_nodes.py b/scoped_nodes.py
index <HASH>..<HASH> 100644
--- a/scoped_nodes.py
+++ b/scoped_nodes.py
@@ -394,6 +394,10 @@ class Module(LocalsDictNodeNG):
explicit = all.assigned_stmts().next()
except InferenceError:
return [name for name in self.keys() if not name.st... | quick fix crash on case where __all__ is imported from another module | PyCQA_astroid | train |
23a3ceafb404f80bee0dfb36e928ad24a4e42a35 | diff --git a/pmagpy/controlled_vocabularies3.py b/pmagpy/controlled_vocabularies3.py
index <HASH>..<HASH> 100755
--- a/pmagpy/controlled_vocabularies3.py
+++ b/pmagpy/controlled_vocabularies3.py
@@ -205,7 +205,7 @@ class Vocabulary(object):
# print '-I- Could not connect to earthref.org, using cached vocabu... | another typo in controlled_vocabularies3 | PmagPy_PmagPy | train |
c282c328de7858d5da81c5d085f8e2f0933c75ec | diff --git a/TYPO3.Neos/Tests/Unit/Controller/Frontend/PageControllerTest.php b/TYPO3.Neos/Tests/Unit/Controller/Frontend/PageControllerTest.php
index <HASH>..<HASH> 100644
--- a/TYPO3.Neos/Tests/Unit/Controller/Frontend/PageControllerTest.php
+++ b/TYPO3.Neos/Tests/Unit/Controller/Frontend/PageControllerTest.php
@@ -3... | [~BUGFIX] TYPO3: Fixed a failing test introduced in the last commit (sorry).
Change-Id: Ie<I>b<I>c6d<I>deb5f<I>b<I>e7e<I>ed0e
Original-Commit-Hash: <I>d<I>a<I>ef5c<I>e<I>a2f8c2bba5d4dad9 | neos_neos-development-collection | train |
4b263f86a23558c6b8699f426961bf5c36c1be24 | diff --git a/scripts/build_wikidata.js b/scripts/build_wikidata.js
index <HASH>..<HASH> 100644
--- a/scripts/build_wikidata.js
+++ b/scripts/build_wikidata.js
@@ -308,9 +308,10 @@ function processEntities(result) {
// P18 - Image (use this for flags)
imageFile = getClaimValue(entity, 'P18');
} else {... | Fallback to fetch P<I> Coat of Arms image
(closes #<I>) | osmlab_name-suggestion-index | train |
deddfa256af2f1a879eb8bea19a9f8645b96a4e3 | diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/DispatcherGateway.java b/flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/DispatcherGateway.java
index <HASH>..<HASH> 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/DispatcherGateway.java
+++ b/flin... | [FLINK-<I>][runtime] Removes unnecessary obsolete method overwriting
RestfulGateway provides the exact same method signature.
DispatcherGateway.requestJob became obsolete with the changes made in ce<I>a<I>. | apache_flink | train |
36547ceac6311a9b8b416f5a00705bc1528ac8b8 | diff --git a/libvmi/event.py b/libvmi/event.py
index <HASH>..<HASH> 100644
--- a/libvmi/event.py
+++ b/libvmi/event.py
@@ -201,6 +201,14 @@ class RegEvent(Event):
if self.equal is None:
self.equal = 0
+ @property
+ def value(self):
+ return self._cffi_event.reg_event.value
+
+ @v... | event: add value property for RegEvent | libvmi_python | train |
acf54ed7932aa6e6af8dbfad29fbb6f88a2b2474 | diff --git a/src/rinoh/backend/pdf/cos.py b/src/rinoh/backend/pdf/cos.py
index <HASH>..<HASH> 100644
--- a/src/rinoh/backend/pdf/cos.py
+++ b/src/rinoh/backend/pdf/cos.py
@@ -15,7 +15,7 @@ from contextlib import contextmanager
from collections import OrderedDict
from datetime import datetime
from functools import wr... | PDF stream: perform sanity check before writing | brechtm_rinohtype | train |
8b1d22d072890341fffb3919200876578a264629 | diff --git a/test/test_suite_test.go b/test/test_suite_test.go
index <HASH>..<HASH> 100644
--- a/test/test_suite_test.go
+++ b/test/test_suite_test.go
@@ -167,6 +167,7 @@ var _ = BeforeAll(func() {
if progressChan := goReportVagrantStatus(); progressChan != nil {
defer func() { progressChan <- err == nil }()
}
+... | Test: Add prometheus deployment on Kubernetes test
Installing prometheus on test to scrape Cilium metrics to detect if any
problem on Cilium
Related-to: #<I>
Related-to: `dc7a<I>a<I>dee4f0cce<I>eefa<I>ab5a<I>` | cilium_cilium | train |
a8dc02e2550cc2ca6f7546e051a5a8d3e17d07fe | diff --git a/cartodb/__init__.py b/cartodb/__init__.py
index <HASH>..<HASH> 100644
--- a/cartodb/__init__.py
+++ b/cartodb/__init__.py
@@ -1,2 +1,4 @@
-from cartodb import *
-from imports import *
+from __future__ import absolute_import
+
+from .cartodb import *
+from .imports import *
diff --git a/cartodb/cartodb.py b... | python3 compatible (only ImportAPI) | CartoDB_carto-python | train |
f7060c9de310cca2fa8024875aa32d60c14b130c | diff --git a/bcbio/variation/validate.py b/bcbio/variation/validate.py
index <HASH>..<HASH> 100644
--- a/bcbio/variation/validate.py
+++ b/bcbio/variation/validate.py
@@ -7,6 +7,7 @@ validity of pipeline updates and algorithm changes.
import collections
import contextlib
import csv
+import hashlib
import os
import... | CWL: uniquify input validation files by checksum
Identical staged files from multiple samples will be in different
directories so make unique via file contents. | bcbio_bcbio-nextgen | train |
1a739c57e416adacca53c71a42fd259098d21558 | diff --git a/src/Archive/Adapter/Gzip.php b/src/Archive/Adapter/Gzip.php
index <HASH>..<HASH> 100644
--- a/src/Archive/Adapter/Gzip.php
+++ b/src/Archive/Adapter/Gzip.php
@@ -84,7 +84,7 @@ class Gzip implements AdapterInterface
}
$filename = $destination;
- if ($outfile = gzopen($filename, $m... | Attempt to fix Gzip failures. (#<I>)
* Attempt to fix Gzip failures.
* StyleCI complaints. | zestframework_Zest_Framework | train |
9099310884d286d22fcadb759b836e92547bca44 | diff --git a/saspy/sasbase.py b/saspy/sasbase.py
index <HASH>..<HASH> 100644
--- a/saspy/sasbase.py
+++ b/saspy/sasbase.py
@@ -481,14 +481,10 @@ class SASsession():
In Zeppelin, the html LST results can be displayed via print("%html "+ ll['LST']) to diplay as HTML.
-
- OR, as I've added an HTML meth... | doc sas.HTML for Jup and Zep | sassoftware_saspy | train |
4d22a51414b696c4ea54252592281f4d7f953f62 | diff --git a/test/e2e/common/host_path.go b/test/e2e/common/host_path.go
index <HASH>..<HASH> 100644
--- a/test/e2e/common/host_path.go
+++ b/test/e2e/common/host_path.go
@@ -68,7 +68,9 @@ var _ = Describe("[sig-storage] HostPath", func() {
source := &v1.HostPathVolumeSource{
Path: "/tmp",
}
- pod := testPod... | tests: creates HostPath pods as unprivileged
The containers are mounted the /tmp folder as a HostPath volume
and they are supposed to create a new file in it.
The /tmp folder has <I> file permissions, so there shouldn't be any
problems creating a file, even if the container is unprivileged. | kubernetes_kubernetes | train |
e51f01f4645c547bacc8a49b385d588452407da7 | diff --git a/pyccc/docker_utils.py b/pyccc/docker_utils.py
index <HASH>..<HASH> 100644
--- a/pyccc/docker_utils.py
+++ b/pyccc/docker_utils.py
@@ -132,7 +132,7 @@ def make_tar_stream(build_context, buffer):
"""
tf = tarfile.TarFile(fileobj=buffer, mode='w')
for context_path, fileobj in build_context.item... | Duck-typed approach to checking for local instances of file references | Autodesk_pyccc | train |
379cb3909eea0ba19011b8415e3f71bbb533588c | diff --git a/docs/deploy.md b/docs/deploy.md
index <HASH>..<HASH> 100644
--- a/docs/deploy.md
+++ b/docs/deploy.md
@@ -22,13 +22,11 @@ The next step is to declare how many nodes you want to the program to be spun up
Local deployment will spin up `num_nodes` local processes, each containing one Bud instance, running ... | Code and docs cleanup for deployment stuff. | bloom-lang_bud | train |
90304e05eef80df609abaf9829a102794382461a | diff --git a/tests/unit/modules/dig_test.py b/tests/unit/modules/dig_test.py
index <HASH>..<HASH> 100644
--- a/tests/unit/modules/dig_test.py
+++ b/tests/unit/modules/dig_test.py
@@ -13,6 +13,41 @@ ensure_in_syspath('../../')
from salt.modules import dig
+_SPF_VALUES = {
+ 'dig +short xmission.com TXT': {
+ ... | Fix dig tests
Added a side_effect function to allow for testing of recursive functions
in the SPF tests. Also enabled all skipped tests as they now all pass. | saltstack_salt | train |
5475bff8ca990462d158bb8b8476a74b23699076 | diff --git a/lib/node_modules/@stdlib/bench/test/test.harness.js b/lib/node_modules/@stdlib/bench/test/test.harness.js
index <HASH>..<HASH> 100644
--- a/lib/node_modules/@stdlib/bench/test/test.harness.js
+++ b/lib/node_modules/@stdlib/bench/test/test.harness.js
@@ -826,3 +826,68 @@ tape( 'if not provided a benchmark f... | Add tests for creating an object mode stream | stdlib-js_stdlib | train |
261c4f68c544a84904bdf03fcf7b2399f73db426 | diff --git a/src/test/java/com/thinkaurelius/titan/blueprints/LocalBlueprintsTest.java b/src/test/java/com/thinkaurelius/titan/blueprints/LocalBlueprintsTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/thinkaurelius/titan/blueprints/LocalBlueprintsTest.java
+++ b/src/test/java/com/thinkaurelius/titan/bluep... | throw UnsupportedOperationException on newly added generateGraph(String) in blueprints test. Only affects one test case. | thinkaurelius_titan | train |
1dfb99762fc0b86fe226397b086d7213910eca3e | diff --git a/ndio/ramon/RAMONSegment.py b/ndio/ramon/RAMONSegment.py
index <HASH>..<HASH> 100644
--- a/ndio/ramon/RAMONSegment.py
+++ b/ndio/ramon/RAMONSegment.py
@@ -11,7 +11,7 @@ class RAMONSegment(RAMONVolume):
RAMONSegment Object for storing neuroscience data with a voxel volume
"""
def __init__(self... | rename as segmentclass (no underscore) for consist` | neurodata_ndio | train |
b08b93abbe707e3f2b9c65eca841c0263e98bf85 | diff --git a/sdl/video.go b/sdl/video.go
index <HASH>..<HASH> 100644
--- a/sdl/video.go
+++ b/sdl/video.go
@@ -229,8 +229,12 @@ func (window *Window) GetDisplayMode(mode *DisplayMode) error {
}
// Window (https://wiki.libsdl.org/SDL_GetWindowPixelFormat)
-func (window *Window) GetPixelFormat() uint32 {
- return (ui... | Make GetPixelFormat idiomatic with respect to errors | veandco_go-sdl2 | train |
275a2a2bdcd0d7d9669ce706c21b18240a26d544 | diff --git a/lib/Thelia/Core/Template/Loop/Document.php b/lib/Thelia/Core/Template/Loop/Document.php
index <HASH>..<HASH> 100644
--- a/lib/Thelia/Core/Template/Loop/Document.php
+++ b/lib/Thelia/Core/Template/Loop/Document.php
@@ -67,7 +67,8 @@ class Document extends BaseI18nLoop implements PropelSearchLoopInterface
... | Allow modules to use image and document loop | thelia_core | train |
84c78b9f5f3dad58f92161069e6482f7267ffdb6 | diff --git a/src/Illuminate/Foundation/Exceptions/Handler.php b/src/Illuminate/Foundation/Exceptions/Handler.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Foundation/Exceptions/Handler.php
+++ b/src/Illuminate/Foundation/Exceptions/Handler.php
@@ -191,7 +191,7 @@ class Handler implements ExceptionHandlerContract... | Change exception's handler ignore method to public (#<I>) | laravel_framework | train |
3c9b61c4ef302cf3463f8d82b7976be7e3400147 | diff --git a/jsonschema/compat.py b/jsonschema/compat.py
index <HASH>..<HASH> 100644
--- a/jsonschema/compat.py
+++ b/jsonschema/compat.py
@@ -1,3 +1,8 @@
+"""
+Python 2/3 compatibility helpers.
+
+Note: This module is *not* public API.
+"""
import contextlib
import operator
import sys | Add a note to compat.py.
This was always true, and documented in the FAQ.
Adding it nonetheless to the module docstring. | Julian_jsonschema | train |
3214a30e8179b934b0cb451112e37c7f58724843 | diff --git a/lib/AssetGraph.js b/lib/AssetGraph.js
index <HASH>..<HASH> 100644
--- a/lib/AssetGraph.js
+++ b/lib/AssetGraph.js
@@ -157,7 +157,8 @@ AssetGraph.prototype = {
inlineAsset: function (asset, cb) {
if (!asset.url) {
- throw new Error("AssetGraph.inlineAsset: " + asset + " is already... | AssetGraph.inlineAsset: Trying to inline an asset that's already inline shouldn't cause a fatal error. Just don't do anything. | assetgraph_assetgraph | train |
d293b8fd3432e429d390ef6ffabacef1b4cd0747 | diff --git a/TODO b/TODO
index <HASH>..<HASH> 100644
--- a/TODO
+++ b/TODO
@@ -7,8 +7,6 @@ Offline list:
-- verify all ReceiveBlob calls and see which should be blobserver.Receive
instead, or ReceiveNoHash. git grep -E "\.ReceiveBlob\("
--- remove ContextWrapper stuff.
-
-- union storage target. sharder can be... | Use pkg/gate in a couple places. Do s3 parallel state. Update TODO.
Change-Id: I<I>baa7b<I>ceca3f<I>c8fa<I>ad<I>c<I> | perkeep_perkeep | train |
215a66b5c6e762f2c5080dc6b9cd5736504b527b | diff --git a/src/sandbox/env/_env-vars.js b/src/sandbox/env/_env-vars.js
index <HASH>..<HASH> 100644
--- a/src/sandbox/env/_env-vars.js
+++ b/src/sandbox/env/_env-vars.js
@@ -52,7 +52,8 @@ module.exports = function _setupEnv(callback) {
// populate SESSION_TABLE_NAME (used by @architect/functions http functions)
... | tmp patch broken sandbox | architect_architect | train |
d5abdfba8a88afda8085992a4abbe1d90bbd0084 | diff --git a/lib/puppet/parser/compiler.rb b/lib/puppet/parser/compiler.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/parser/compiler.rb
+++ b/lib/puppet/parser/compiler.rb
@@ -10,7 +10,7 @@ require 'puppet/util/errors'
class Puppet::Parser::Compiler
include Puppet::Util
include Puppet::Util::Errors
- a... | Fix #<I> - Inconsistent resource evaluation order in subsequent evaluation runs
While evaluating the AST, catalog vertices are not always ordered
the same way on different run, leading to some tags (which should
have been applied in evaluation order) to not be associated with
some underlying resources.
This changeset... | puppetlabs_puppet | train |
36eee9a88c9600bc75e594116d4ee77f9dd5e231 | diff --git a/account/models.py b/account/models.py
index <HASH>..<HASH> 100644
--- a/account/models.py
+++ b/account/models.py
@@ -294,7 +294,7 @@ class EmailAddress(models.Model):
class EmailConfirmation(models.Model):
email_address = models.ForeignKey(EmailAddress)
- created = models.DateTimeField(default=... | Fixed small bug with EmailConfirmation.created
Fixes #<I> | pinax_django-user-accounts | train |
6bf746fc5194af5114a60c9c586b9a1f080dcdcb | diff --git a/src/Request.php b/src/Request.php
index <HASH>..<HASH> 100644
--- a/src/Request.php
+++ b/src/Request.php
@@ -51,7 +51,7 @@ class Request implements RequestInterface
$this->updateHostFromUri();
}
- if ($body != '') {
+ if ($body !== '' && $body !== null) {
... | fix request/response constructor does not read stream | guzzle_psr7 | train |
623a953ab190cdf35be337cd3ba6c28ab2604122 | diff --git a/stl/metadata.py b/stl/metadata.py
index <HASH>..<HASH> 100644
--- a/stl/metadata.py
+++ b/stl/metadata.py
@@ -1,6 +1,6 @@
__package_name__ = 'numpy-stl'
__import_name__ = 'stl'
-__version__ = '1.5.0'
+__version__ = '1.5.1'
__author__ = 'Rick van Hattem'
__author_email__ = 'Wolph@Wol.ph'
__description_... | releasing <I> to fix #<I> | WoLpH_numpy-stl | train |
88ac4042724903de1045927ecedc0fb968d58a0e | diff --git a/CIT_magic.py b/CIT_magic.py
index <HASH>..<HASH> 100755
--- a/CIT_magic.py
+++ b/CIT_magic.py
@@ -231,6 +231,12 @@ def main():
MeasRec['treatment_temp']='%7.1f'%(float(treat)+273)
MeasRec['treatment_dc_field']='0'
MeasRec['treatment_ac_field']='0'
+ ... | Add LT treatment step to CIT_magic.py | PmagPy_PmagPy | train |
72872ff6fbb40ab1c4d4926d8efd2aac0305dad2 | diff --git a/src/Cache_Command.php b/src/Cache_Command.php
index <HASH>..<HASH> 100644
--- a/src/Cache_Command.php
+++ b/src/Cache_Command.php
@@ -105,7 +105,7 @@ class Cache_Command extends WP_CLI_Command {
if ( null !== $height ) {
$oembed_args['height'] = $height; // Keep as string as if from a shortcode attr... | Put ternary condition inside brackets for readability | wp-cli_embed-command | train |
9b516e53ef9210cb14facc4075b5ac081571f654 | diff --git a/packages/test-utils/src/wrapper.js b/packages/test-utils/src/wrapper.js
index <HASH>..<HASH> 100644
--- a/packages/test-utils/src/wrapper.js
+++ b/packages/test-utils/src/wrapper.js
@@ -574,8 +574,25 @@ export default class Wrapper implements BaseWrapper {
)
}
- // Don't fire event on a di... | fix: whitelist tags to be ignored with `disabled` attribute | vuejs_vue-test-utils | train |
091df817985c32e2c1765343cb2e080220b309f4 | diff --git a/playem-vimeo.js b/playem-vimeo.js
index <HASH>..<HASH> 100644
--- a/playem-vimeo.js
+++ b/playem-vimeo.js
@@ -149,8 +149,8 @@ function VimeoPlayer(){
type: 'application/x-shockwave-flash',
classid: "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
allowscriptaccess: "always",
- width: this.em... | bug fix: height and width parameters were inverted | adrienjoly_playemjs | train |
4cad36b7dfd7f2ee298e5f84d65b7a1988204f9b | diff --git a/src/api/WorldWindFixes.js b/src/api/WorldWindFixes.js
index <HASH>..<HASH> 100644
--- a/src/api/WorldWindFixes.js
+++ b/src/api/WorldWindFixes.js
@@ -484,6 +484,36 @@ export default class WorldWindFixes {
xhr.send(null);
};
+
+ /**
+ * Prepare attribut... | Added KmlPlacemark prepareAttributes to WorldWindFixes.
- Center the placemark horizontally.
- Place the text above the placemark.
- Add depth testing to the text (hack to prevent a bug where text from distant features appearing in the view). | WorldWindEarth_worldwind-react-globe | train |
d2478cb1638940bdc3f3a2f93267d7b756a55f3b | diff --git a/lib/culerity/remote_object_proxy.rb b/lib/culerity/remote_object_proxy.rb
index <HASH>..<HASH> 100644
--- a/lib/culerity/remote_object_proxy.rb
+++ b/lib/culerity/remote_object_proxy.rb
@@ -55,7 +55,11 @@ module Culerity
if res.first == :return
res[1]
elsif res.first == :exception
- ... | Include local backtrace in addition to the remote backtrace when a CulerityException is raised | langalex_culerity | train |
d297957c7f67bfbaf0fd0dc4ef870608216cfe4e | diff --git a/jmccc-mcdownloader/src/main/java/org/to2mbn/jmccc/mcdownloader/RemoteVersionList.java b/jmccc-mcdownloader/src/main/java/org/to2mbn/jmccc/mcdownloader/RemoteVersionList.java
index <HASH>..<HASH> 100644
--- a/jmccc-mcdownloader/src/main/java/org/to2mbn/jmccc/mcdownloader/RemoteVersionList.java
+++ b/jmccc-m... | Fix RemoteVersionList.latestSnapshot/Release is default to empty
expected: null | to2mbn_JMCCC | train |
3968af9a88f12c4c62cee17e79cc3d03f2ff84ba | diff --git a/tests/test_symetric.py b/tests/test_symetric.py
index <HASH>..<HASH> 100644
--- a/tests/test_symetric.py
+++ b/tests/test_symetric.py
@@ -43,7 +43,7 @@ class TestUtil(unittest.TestCase):
AESKey = self.session.generateKey(AESKeyTemplate)
except PyKCS11.PyKCS11Error as e:
#... | test_symetric: use exception value
Use e.value to get the numerical value of the error, instead of using
the text representation of the exception. | LudovicRousseau_PyKCS11 | train |
f7917f61c962d9079b08728ad8cdd9e59dca13aa | diff --git a/gulp-tasks/build.js b/gulp-tasks/build.js
index <HASH>..<HASH> 100644
--- a/gulp-tasks/build.js
+++ b/gulp-tasks/build.js
@@ -133,7 +133,7 @@ gulp.task('lerna-publish', (callback) => {
runSequence(
'lerna-bootstrap',
'test:dev',
- 'test',
+ 'test:prod',
'_lerna-publish-dry-run',
... | Fix the lerna-publish pipeline. (#<I>)
* Fix the lerna-publish pipeline.
* Properly clear out the env variable.
* Review feedback. | GoogleChrome_workbox | train |
4dc7b91ebb17cb12100dafee5bd75d54a7047340 | diff --git a/lib/solargraph/language_server/message/base.rb b/lib/solargraph/language_server/message/base.rb
index <HASH>..<HASH> 100644
--- a/lib/solargraph/language_server/message/base.rb
+++ b/lib/solargraph/language_server/message/base.rb
@@ -28,8 +28,11 @@ module Solargraph
@result = data
end
... | Completion item kinds and error handling. | castwide_solargraph | train |
ba68d13940659709fff8035e17bef7ae7c574618 | diff --git a/setuptools/tests/test_sphinx_upload_docs.py b/setuptools/tests/test_sphinx_upload_docs.py
index <HASH>..<HASH> 100644
--- a/setuptools/tests/test_sphinx_upload_docs.py
+++ b/setuptools/tests/test_sphinx_upload_docs.py
@@ -25,7 +25,6 @@ def sphinx_doc_sample_project(tmpdir_cwd):
@pytest.mark.usefixture... | Update sphinx upload_docs test | pypa_setuptools | train |
3245666be39f7882b3016cf86bf49c24549ea996 | diff --git a/main.js b/main.js
index <HASH>..<HASH> 100644
--- a/main.js
+++ b/main.js
@@ -85,7 +85,7 @@ http.createServer(function(request, response) {
newState = 1;
}
else if(action === "1") {
- newState = 2;
+ newState = 3;
... | Changed state according to API Doc <I> | benzman81_nukiio-dummy-bridge | train |
aa95dcbdf2eb1943da09dc731af0823ffab97d33 | diff --git a/core/commands/ping.go b/core/commands/ping.go
index <HASH>..<HASH> 100644
--- a/core/commands/ping.go
+++ b/core/commands/ping.go
@@ -3,6 +3,7 @@ package commands
import (
"bytes"
"context"
+ "errors"
"fmt"
"io"
"strings"
@@ -26,6 +27,9 @@ type PingResult struct {
Text string
}
+// ErrPi... | ping: add a useful error message when pinging self
We don't allow dialing self for many (very good) reasons.
fixes #<I>
License: MIT | ipfs_go-ipfs | train |
1fc15a5129d70a5b5009b80d1a169cd7230b3b69 | diff --git a/test/util.spec.js b/test/util.spec.js
index <HASH>..<HASH> 100644
--- a/test/util.spec.js
+++ b/test/util.spec.js
@@ -113,9 +113,9 @@ describe('.util', () => {
})
it('.urlAdd http with redirection', (done) => {
- ipfs.util.addFromURL('http://covers.openlibrary.org/book/id/969165.jpg', (err, resu... | fix: use a different remote server for test
The previous server had issues, so the test timed out. Hopefully
this on is more stable. | ipfs_js-ipfs-http-client | train |
55c2228d2021edecfd0af2aab9f7c866356ff76f | diff --git a/src/Robo/Commands/Vm/VmCommand.php b/src/Robo/Commands/Vm/VmCommand.php
index <HASH>..<HASH> 100644
--- a/src/Robo/Commands/Vm/VmCommand.php
+++ b/src/Robo/Commands/Vm/VmCommand.php
@@ -269,6 +269,7 @@ class VmCommand extends BltTasks {
$base_box = $this->askChoice(
"Which base box would you li... | Fixes #<I>: Add geerlingguy/drupal-vm as default base box. (#<I>) | acquia_blt | train |
143e059ed1ec40b03c8cac01693a1432f78755dc | diff --git a/app/server.js b/app/server.js
index <HASH>..<HASH> 100644
--- a/app/server.js
+++ b/app/server.js
@@ -457,7 +457,7 @@ var Server = function(config) {
if (response.statusCode == 200) {
new models.file({
... | show nicer filenames in file list | sdelements_lets-chat | train |
4afb0dd46fd47a73b33e00392ec1b933d53b440d | diff --git a/concrete/src/Legacy/PageList.php b/concrete/src/Legacy/PageList.php
index <HASH>..<HASH> 100644
--- a/concrete/src/Legacy/PageList.php
+++ b/concrete/src/Legacy/PageList.php
@@ -179,6 +179,8 @@ class PageList extends DatabaseItemList
if ($this->displayOnlyApprovedPages) {
$cvIsAppro... | Avoid accessing undefined variable in Legacy\PageList::setupPermissions | concrete5_concrete5 | train |
8e395cf1641a4c60ae467ab8b60594839204cb40 | diff --git a/scripts/release.js b/scripts/release.js
index <HASH>..<HASH> 100644
--- a/scripts/release.js
+++ b/scripts/release.js
@@ -12,6 +12,7 @@ const stdin = readline.createInterface({
function syncRemote(branchName, nextVersion) {
exec(`git push origin ${branchName}`);
exec(`git push --tags`);
+ console.l... | refactor(release): Exit failure if the release script is executed in other than the master branch. | aaronkaka_es6-react-component | train |
eeb8486222cd7c688bd4b3d2d5eff602f670ae3f | diff --git a/commerce-api/src/main/java/com/liferay/commerce/subscription/CommerceSubscriptionEntryHelper.java b/commerce-api/src/main/java/com/liferay/commerce/subscription/CommerceSubscriptionEntryHelper.java
index <HASH>..<HASH> 100644
--- a/commerce-api/src/main/java/com/liferay/commerce/subscription/CommerceSubscr... | COMMERCE-<I> refactoring for subscription payment check | liferay_com-liferay-commerce | train |
1f49388230a53ccf125d0cdd315635885bb0fa70 | diff --git a/interact.js b/interact.js
index <HASH>..<HASH> 100644
--- a/interact.js
+++ b/interact.js
@@ -1754,6 +1754,14 @@
}
if (inertia || smoothEnd) {
+ var claimedPointerIndex = indexOf(claimedPointers, getPointerId(this.pointerMoves[0]));
+
+ ... | Unclaim pointer when starting inertia | taye_interact.js | train |
cd73dc6d9994870fd609cfba9d4fe97cfd5adbf9 | diff --git a/htmlToElement.js b/htmlToElement.js
index <HASH>..<HASH> 100644
--- a/htmlToElement.js
+++ b/htmlToElement.js
@@ -137,7 +137,9 @@ export default function htmlToElement(rawHtml, customOpts = {}, done) {
{opts.bullet}
</TextComponent>);
}
- linebreakAfter = opt... | Fix line breaks for <li> elements:
- add line break only if addLineBreaks is true
- add line breaks only between <li> elements (do not set a line break for the last <li>) | jsdf_react-native-htmlview | train |
5e0f6214d2421a4931c85ee6a239158c69e57b65 | diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_controller/routing.rb
+++ b/actionpack/lib/action_controller/routing.rb
@@ -267,7 +267,7 @@ module ActionController
module Routing
SEPARATORS = %w( / . ?... | Support OPTIONS verb in route conditions [#<I> state:resolved] | rails_rails | train |
8883e4b73fe955ec03b9812884254996280c1f79 | diff --git a/fints/formals.py b/fints/formals.py
index <HASH>..<HASH> 100644
--- a/fints/formals.py
+++ b/fints/formals.py
@@ -960,5 +960,4 @@ class SupportedMessageTypes(DataElementGroup):
Source: Messages - Multibankfähige Geschäftsvorfälle (SEPA) - C.2.3.1.1.1
"""
- expected_type = AlphanumericField(... | Update formals.py
Set properties of SupportedMessageTypes to match the spec (max_length, max_count, required) | raphaelm_python-fints | train |
97c0c6e4efd779618a0d5542942b243e6fa383c6 | diff --git a/def.js b/def.js
index <HASH>..<HASH> 100644
--- a/def.js
+++ b/def.js
@@ -259,6 +259,14 @@
return empty;
}
+ function isSimpleAnnotation(spec) {
+ if (!spec["!type"]) return false;
+ for (var prop in spec)
+ if (prop != "!type" && prop != "!doc" && prop != "!url")
+ return fals... | Add support for adding docstrings and urls to def files. | ternjs_tern | train |
4f3b47d596b9e777828575fe2012ffe2bcbfa7c9 | diff --git a/quantumclient/shell.py b/quantumclient/shell.py
index <HASH>..<HASH> 100644
--- a/quantumclient/shell.py
+++ b/quantumclient/shell.py
@@ -232,7 +232,8 @@ class QuantumShell(App):
description=__doc__.strip(),
version=VERSION,
command_manager=CommandManager('quantum.cli... | Stored the quantum commands list to the variable.
By storing the quantum commands list to
the variable, the subclass can depend
the quantum shell to parse the command.
Fixes: bug <I>
Change-Id: I0a6f<I>d<I>cf<I>e<I>e4ddf<I>d6f9a<I>d<I> | rackerlabs_rackspace-python-neutronclient | train |
acab4c4bb44654e4eb89b5226926b97aceb52849 | diff --git a/ofxhome/__init__.py b/ofxhome/__init__.py
index <HASH>..<HASH> 100644
--- a/ofxhome/__init__.py
+++ b/ofxhome/__init__.py
@@ -2,6 +2,8 @@ import urllib
from datetime import datetime
from xml.dom.minidom import parseString
+__version__ = '0.3.1'
+
API_URL='http://www.ofxhome.com/api.php'
class OFXHo... | pypi install fails (gh-1) fixed
This was due to a missing file referenced in setup.py | captin411_ofxhome | train |
0c727db6d1bc35a62547cde44fe3cc6d51d13e8c | diff --git a/packages/ringcentral-integration/modules/ConversationLogger/index.js b/packages/ringcentral-integration/modules/ConversationLogger/index.js
index <HASH>..<HASH> 100644
--- a/packages/ringcentral-integration/modules/ConversationLogger/index.js
+++ b/packages/ringcentral-integration/modules/ConversationLogge... | bugFix/ConversationLogger addIfNotExist error issues (#<I>) | ringcentral_ringcentral-js-widgets | train |
b4746e82e5fabfa919aa8c8d27ec44afdafa750a | diff --git a/test/integration/client/query-callback-error-tests.js b/test/integration/client/query-callback-error-tests.js
index <HASH>..<HASH> 100644
--- a/test/integration/client/query-callback-error-tests.js
+++ b/test/integration/client/query-callback-error-tests.js
@@ -1,4 +1,4 @@
-return console.log('query-callba... | s/saftey/safety | brianc_node-postgres | train |
633b18b9f0a60e583012b53ea16f589a45b160ae | diff --git a/config/config.go b/config/config.go
index <HASH>..<HASH> 100644
--- a/config/config.go
+++ b/config/config.go
@@ -66,6 +66,11 @@ func AddSource(srcs ...Source) {
m.AddSource(srcs...)
}
+// AddFileSource adds a file configuration source.
+func AddFileSource(path string) {
+ m.AddFileSource(path)
+}
+
... | Add AddFileSource method to config | cuigh_auxo | train |
3b3e2cecf3a2f4d2130e4a675402e33a69cb5c61 | diff --git a/mod/scorm/db/upgrade.php b/mod/scorm/db/upgrade.php
index <HASH>..<HASH> 100644
--- a/mod/scorm/db/upgrade.php
+++ b/mod/scorm/db/upgrade.php
@@ -478,22 +478,24 @@ function xmldb_scorm_upgrade($oldversion) {
/// scorm savepoint reached
upgrade_mod_savepoint(true, 2010092400, 'scorm');
... | MDL-<I> scorm - fix upgrade on change to not null
Every time one column is changed from null to not null
we must ensure that there aren't nulls at all or the
DDL statement will fail, as was reported here. The
simplest way, just apply for the default when the column is null. | moodle_moodle | train |
c6278fdb99b57be3760cdc1c265608fce7c74889 | diff --git a/lib/waterline/utils/query/help-find.js b/lib/waterline/utils/query/help-find.js
index <HASH>..<HASH> 100644
--- a/lib/waterline/utils/query/help-find.js
+++ b/lib/waterline/utils/query/help-find.js
@@ -201,15 +201,15 @@ module.exports = function helpFind(WLModel, s2q, done) {
var junctionTable... | Normalize terminology and add missing 'else'. | balderdashy_waterline | train |
cc237ebae7d1cf2d4901f2d9665c3b4a124164ae | diff --git a/uportal-war/src/main/java/org/jasig/portal/layout/dlm/RDBMDistributedLayoutStore.java b/uportal-war/src/main/java/org/jasig/portal/layout/dlm/RDBMDistributedLayoutStore.java
index <HASH>..<HASH> 100644
--- a/uportal-war/src/main/java/org/jasig/portal/layout/dlm/RDBMDistributedLayoutStore.java
+++ b/uportal... | UP-<I> Log warning and ingore node for missing portlet | Jasig_uPortal | train |
0c58dc0f67f38c01bf87d32725f480c5c70e98ba | diff --git a/mtools/mgenerate/operators/__init__.py b/mtools/mgenerate/operators/__init__.py
index <HASH>..<HASH> 100644
--- a/mtools/mgenerate/operators/__init__.py
+++ b/mtools/mgenerate/operators/__init__.py
@@ -1 +1 @@
-from operators import ChooseOperator, MissingOperator, NumberOperator, ObjectIdOperator, ArrayOp... | added DateTimeOperator "$date" or "$datetime". No relative parsing like "-4days" yet. | rueckstiess_mtools | train |
bed32597b7097afe5bf331a5f00a586fe0be8ed4 | diff --git a/ipyrad/analysis/structure.py b/ipyrad/analysis/structure.py
index <HASH>..<HASH> 100644
--- a/ipyrad/analysis/structure.py
+++ b/ipyrad/analysis/structure.py
@@ -31,7 +31,7 @@ MISSING_IMPORTS = """
To use the ipa.structure module you must install two additional
libraries which can be done with the follo... | path fix for conda envs | dereneaton_ipyrad | train |
7cb1fdd4d109165722858cd626abbfc8d5e2ebc4 | diff --git a/src/transformers/models/perceiver/modeling_perceiver.py b/src/transformers/models/perceiver/modeling_perceiver.py
index <HASH>..<HASH> 100755
--- a/src/transformers/models/perceiver/modeling_perceiver.py
+++ b/src/transformers/models/perceiver/modeling_perceiver.py
@@ -915,6 +915,7 @@ class PerceiverForMas... | Fixing tests for perceiver (texts) (#<I>)
* Fixing tests for perceiver (texts)
* For MaskedLM | huggingface_pytorch-pretrained-BERT | train |
ca33c86c84763a7a7c93a7c9670804e7c199c12f | diff --git a/cas-server-support-oauth/src/main/java/org/jasig/cas/support/oauth/OAuthConstants.java b/cas-server-support-oauth/src/main/java/org/jasig/cas/support/oauth/OAuthConstants.java
index <HASH>..<HASH> 100644
--- a/cas-server-support-oauth/src/main/java/org/jasig/cas/support/oauth/OAuthConstants.java
+++ b/cas-... | Update OAuthConstants.java
As far as I can tell bearer token should be written with uppercase B, ie:
- <URL> (line <I>), this can be fixed by making authHeader lowercase before comparision, but that would allow usage of constructs like "bEarer" etc. which doesn't seem right.
According to <URL> | apereo_cas | train |
c479a83008728be0880955fbc1b06bb1ed30ea35 | diff --git a/dolt/__init__.py b/dolt/__init__.py
index <HASH>..<HASH> 100644
--- a/dolt/__init__.py
+++ b/dolt/__init__.py
@@ -19,14 +19,15 @@ class Dolt(object):
def __call__(self, *args, **kwargs):
self._attribute_stack += [str(a) for a in args]
self._params = kwargs
- body = None
- ... | add a flex point for APIs that need something other than POST-style bodies | tswicegood_Dolt | train |
4763b9d68207cb49e23adc72c1f657a3c00f73ba | diff --git a/lib/cf/cli/start/base.rb b/lib/cf/cli/start/base.rb
index <HASH>..<HASH> 100644
--- a/lib/cf/cli/start/base.rb
+++ b/lib/cf/cli/start/base.rb
@@ -27,6 +27,11 @@ module CF
end
def display_target
+ if client.nil?
+ fail "No target has been specified."
+ return
+ ... | show a reasonable error when target is run without a target set
[finishes #<I>] | cloudfoundry-attic_cf | train |
189ad823baa8d58f9981925f25fd27f20f7d34e1 | diff --git a/src/remote.js b/src/remote.js
index <HASH>..<HASH> 100644
--- a/src/remote.js
+++ b/src/remote.js
@@ -76,6 +76,14 @@ module.exports = {
r.iteration = 1;
return r;
}
+
+ /**
+ * @todo `opts.pluginState` isn't set on the first iteration. Re-set every
+ * time to ensure initial v... | Ensure lambda is set on remote doc. | MRN-Code_decentralized-laplacian-ridge-regression | train |
ba795689f49870defe4c9faede4e4280925bd38c | diff --git a/leaflet.photon.js b/leaflet.photon.js
index <HASH>..<HASH> 100644
--- a/leaflet.photon.js
+++ b/leaflet.photon.js
@@ -7,6 +7,7 @@ L.Control.Photon = L.Control.extend({
emptyMessage: "No result",
minChar: 3,
limit: 5,
+ submitDelay: 300,
includePosition: true
... | Add a key buffering before submitting request | komoot_leaflet.photon | train |
ecd57cad44f0d1fb369ec2bb473b4dbac748fed9 | diff --git a/lib/magic_pipe/senders/async.rb b/lib/magic_pipe/senders/async.rb
index <HASH>..<HASH> 100644
--- a/lib/magic_pipe/senders/async.rb
+++ b/lib/magic_pipe/senders/async.rb
@@ -45,7 +45,7 @@ module MagicPipe
"args" => [
decomposed_object,
@topic,
- @time,
+ ... | pass the time to Sidekiq as an integer | tompave_magic_pipe | train |
7e45bb36548d48c4c1f6953f34bee934116948af | diff --git a/contao/config/config.php b/contao/config/config.php
index <HASH>..<HASH> 100644
--- a/contao/config/config.php
+++ b/contao/config/config.php
@@ -14,14 +14,9 @@
*/
/**
- * Hooks
+ * Lazy initialize dependency container.
*/
-if (version_compare(VERSION, '3.1', '>=')) {
- $GLOBALS['TL_HOOKS']['initial... | Switch hook based initialisation, into autoload based initialisation. | contao-community-alliance_dependency-container | train |
31d55dc9c0e21cda7e8ac52de99291e5f88a6d24 | diff --git a/src/widgets/combo/SourceCombo.php b/src/widgets/combo/SourceCombo.php
index <HASH>..<HASH> 100644
--- a/src/widgets/combo/SourceCombo.php
+++ b/src/widgets/combo/SourceCombo.php
@@ -29,4 +29,6 @@ class SourceCombo extends Combo
/** {@inheritdoc} */
public $_rename = ['text' => 'name'];
+
+ p... | Fix search by name in SourceCombo | hiqdev_hipanel-module-stock | train |
c6871df475b3fb0cb753e3cf039b2a9e10ed8504 | diff --git a/hydra_base/util/dataset_util.py b/hydra_base/util/dataset_util.py
index <HASH>..<HASH> 100644
--- a/hydra_base/util/dataset_util.py
+++ b/hydra_base/util/dataset_util.py
@@ -25,6 +25,8 @@ from ..exceptions import HydraError, ValidationError
import numpy as np
import pandas as pd
import re
+from functool... | Imported reduce to dataset conversion. How could it work before? | hydraplatform_hydra-base | train |
677703e638f250d4c9ef699b80df35ab63d7a858 | diff --git a/lib/wireprotocol/shared.js b/lib/wireprotocol/shared.js
index <HASH>..<HASH> 100644
--- a/lib/wireprotocol/shared.js
+++ b/lib/wireprotocol/shared.js
@@ -31,10 +31,14 @@ var getReadPreference = function(cmd, options) {
}
if (!(readPreference instanceof ReadPreference)) {
- throw new MongoError('... | style(wireprotocol): fix introduced linter errors | mongodb-js_mongodb-core | train |
6fa575229f64f164df5cd2f9d4bd48484ce9789c | diff --git a/mode/mathematica/mathematica.js b/mode/mathematica/mathematica.js
index <HASH>..<HASH> 100644
--- a/mode/mathematica/mathematica.js
+++ b/mode/mathematica/mathematica.js
@@ -126,6 +126,7 @@ CodeMirror.defineMode('mathematica', function(_config, _parserConfig) {
}
// everything else is an error
... | [mathematica mode] Fix stuck-stream error on unrecognized syntax | codemirror_CodeMirror | train |
f4425dc68825cf0dca15924b7cb606733d8bb774 | diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java
index <HASH>..<HASH> 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java
+... | GryoReader and GryoWriter now use InputStream and OutputStream. This allows HadoopGremlin tests to run in IntelliJ. | apache_tinkerpop | train |
dec1a4e15eb3e7532a8e3cc25a629bd422001d5d | diff --git a/src/main/java/com/urswolfer/intellij/plugin/gerrit/rest/bean/ChangeInfo.java b/src/main/java/com/urswolfer/intellij/plugin/gerrit/rest/bean/ChangeInfo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/urswolfer/intellij/plugin/gerrit/rest/bean/ChangeInfo.java
+++ b/src/main/java/com/urswolfer/intell... | show star icon for starred changes in list
Related to #<I> | uwolfer_gerrit-rest-java-client | train |
6e96f92b3db15a21eaa9d63b27a7928783dcf30e | diff --git a/src/Utility/Formatter.php b/src/Utility/Formatter.php
index <HASH>..<HASH> 100644
--- a/src/Utility/Formatter.php
+++ b/src/Utility/Formatter.php
@@ -30,7 +30,7 @@ class Formatter
* Prepares scalar value
* (adds quotes to the ends of the string, replaces booleans with literal true|false)
... | PhpDocs refactored | constant-null_backstubber | train |
1917ffc2a53685fce4f31ab24cb2cee04a20f98f | diff --git a/posttroll/logger.py b/posttroll/logger.py
index <HASH>..<HASH> 100644
--- a/posttroll/logger.py
+++ b/posttroll/logger.py
@@ -116,8 +116,7 @@ class Logger(object):
Contains a thread listening to incomming messages, and a thread logging.
"""
- def __init__(self,
- (nameserver_... | Remove tuple parameter unpacking which is not available in Py3 (PEP<I>) | pytroll_posttroll | train |
0cfcc59805c26d221e25a8c1b9cb122dc1a03b71 | diff --git a/js/contact_me.js b/js/contact_me.js
index <HASH>..<HASH> 100644
--- a/js/contact_me.js
+++ b/js/contact_me.js
@@ -17,6 +17,8 @@ $(function() {
if (firstName.indexOf(' ') >= 0) {
firstName = name.split(' ').slice(0, -1).join(' ');
}
+ $this = $("#sendMessageButton");
+ $this... | Disable Submit Message Button during AJAX call
Prevent duplicate messages | BlackrockDigital_startbootstrap-agency | train |
4c48cf46fa453e3e9e53ea8058de63304da43a8f | diff --git a/packages/react-admin/src/mui/input/NumberInput.js b/packages/react-admin/src/mui/input/NumberInput.js
index <HASH>..<HASH> 100644
--- a/packages/react-admin/src/mui/input/NumberInput.js
+++ b/packages/react-admin/src/mui/input/NumberInput.js
@@ -67,14 +67,10 @@ export class NumberInput extends Component {
... | Ensure important props are not overriden | marmelab_react-admin | train |
fddce8a9e21bf68f37054586deb0c8636a45f50b | diff --git a/packages/react-scripts/config/env.js b/packages/react-scripts/config/env.js
index <HASH>..<HASH> 100644
--- a/packages/react-scripts/config/env.js
+++ b/packages/react-scripts/config/env.js
@@ -94,8 +94,6 @@ function getClientEnvironment(publicUrl) {
WDS_SOCKET_PATH: process.env.WDS_SOCKET_PATH,
... | Remove outdated comments on react-refresh (#<I>) | facebook_create-react-app | train |
7e39144436c20cbc7e87e143ce20488dacc8e3e8 | diff --git a/models/forms/LoginForm.php b/models/forms/LoginForm.php
index <HASH>..<HASH> 100644
--- a/models/forms/LoginForm.php
+++ b/models/forms/LoginForm.php
@@ -72,6 +72,12 @@ class LoginForm extends Model
{
// check for ban status
$user = $this->getUser();
+
+ if (!$user)
+ {... | When user not found, validateUserStatus throws an exception. | amnah_yii2-user | train |
33a76840466610854c6fce5a0b6e92b6cdda66cb | diff --git a/tests/src/test/java/alluxio/master/MasterFaultToleranceIntegrationTest.java b/tests/src/test/java/alluxio/master/MasterFaultToleranceIntegrationTest.java
index <HASH>..<HASH> 100644
--- a/tests/src/test/java/alluxio/master/MasterFaultToleranceIntegrationTest.java
+++ b/tests/src/test/java/alluxio/master/Ma... | temporarily disable MasterFaultToleranceIntegrationTest for now | Alluxio_alluxio | train |
ff1bb0a61e5f2151e7359c336462e701982c37f9 | diff --git a/endnote.php b/endnote.php
index <HASH>..<HASH> 100644
--- a/endnote.php
+++ b/endnote.php
@@ -135,7 +135,7 @@ class PHPEndNote {
*/
function GetXML() {
$out = '<' . '?xml version="1.0" encoding="UTF-8"?' . '><xml><records>';
- $number = 0;
+ $number = 1;
foreach ($this->refs as $id => $ref) {
... | BUGFIX: Record numbers should start from 1 not 0 | hash-bang_RefLib | train |
a5749bebc9f4fd4072e500618015244dc3d4b34c | diff --git a/Resources/web/upgrade/libs.php b/Resources/web/upgrade/libs.php
index <HASH>..<HASH> 100644
--- a/Resources/web/upgrade/libs.php
+++ b/Resources/web/upgrade/libs.php
@@ -35,7 +35,7 @@ class Translator
'return' => 'Return',
'close' => 'Close',
'debug_mode' => 'Debug mo... | [CoreBundle] Minor improvements for the update tool. | claroline_Distribution | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.