hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
e4119a8a83833681b441019373e49e5d20beee75 | diff --git a/godbg.go b/godbg.go
index <HASH>..<HASH> 100644
--- a/godbg.go
+++ b/godbg.go
@@ -24,6 +24,7 @@ type Pdbg struct {
breaks []string
excludes []string
skips []string
+ global bool
}
// Out returns a writer for normal messages.
@@ -57,7 +58,12 @@ func (pdbg *Pdbg) Err() io.Writer {
}
// g... | WIP: goal is to replace os.Stdout and os.Stderr | VonC_godbg | train |
8f4f237c023403055e868c534d6f88328c8257d8 | diff --git a/lib/laser/runner.rb b/lib/laser/runner.rb
index <HASH>..<HASH> 100644
--- a/lib/laser/runner.rb
+++ b/lib/laser/runner.rb
@@ -152,7 +152,9 @@ module Laser
scanner.settings[:output_file] = scanner.settings[:stdin] ? STDOUT : File.open(file, 'w')
end
results = scanner.scan(data, ... | Added a few more built-in classes to flesh out. Added a spec proving that constant aliasing is resolved for superclasses (which means it should work
anywhere.) | michaeledgar_laser | train |
c4a10d843ced779fce542fa1816241536197a6fe | diff --git a/lucid/modelzoo/util.py b/lucid/modelzoo/util.py
index <HASH>..<HASH> 100644
--- a/lucid/modelzoo/util.py
+++ b/lucid/modelzoo/util.py
@@ -39,6 +39,8 @@ def load_graphdef(model_url, reset_device=True):
except DecodeError:
cache_path = local_cache_path(model_url)
log.error("Could not decode grap... | Re-raise exception when load_graphdef fails. | tensorflow_lucid | train |
8119cdf5a998fa5018f17ec5aa798100eacac677 | diff --git a/packages/redux-subspace/src/middleware/globalActions.js b/packages/redux-subspace/src/middleware/globalActions.js
index <HASH>..<HASH> 100644
--- a/packages/redux-subspace/src/middleware/globalActions.js
+++ b/packages/redux-subspace/src/middleware/globalActions.js
@@ -7,9 +7,18 @@
*/
import globalAct... | `globalActions` bug where string action types where treated as regex
Change `globalactions` middleware to dispatch back to the store | ioof-holdings_redux-subspace | train |
9cc04578ebc6d593450e9dbbcae07452bf7bec35 | diff --git a/wandb/sdk/data_types.py b/wandb/sdk/data_types.py
index <HASH>..<HASH> 100644
--- a/wandb/sdk/data_types.py
+++ b/wandb/sdk/data_types.py
@@ -4,6 +4,7 @@ import json
import logging
import numbers
import os
+import re
import shutil
import sys
@@ -2109,7 +2110,12 @@ def val_to_json(
#... | added key sanitation (#<I>) | wandb_client | train |
4ee07c3170337cd890a4edff319e5667d5ca048d | diff --git a/lib/resolvers/file.js b/lib/resolvers/file.js
index <HASH>..<HASH> 100644
--- a/lib/resolvers/file.js
+++ b/lib/resolvers/file.js
@@ -4,7 +4,9 @@ var fs = require('fs'),
module.exports = function () {
return function file(assetConfig, fromUrl, cb) {
- var pathname = assetConfig.url.replace(/... | resolvers.file: Strip CGI parameters and/or fragment idenfier from url before attempting to read an asset from disc. | assetgraph_assetgraph | train |
be2a52850312bfa3bef682323250589d91c8b8d5 | diff --git a/site/webpack/loader.config.js b/site/webpack/loader.config.js
index <HASH>..<HASH> 100644
--- a/site/webpack/loader.config.js
+++ b/site/webpack/loader.config.js
@@ -27,7 +27,7 @@ function getMarkdownLoaders(babelLoader) {
return [
babelLoader,
{
- loader: require.resolve('../../../react-... | dev: revert some dev changes | youzan_zent | train |
e8490c0daed79324229e0023c3106ca67813ce18 | diff --git a/flask_unchained/bundles/security/views/user_resource.py b/flask_unchained/bundles/security/views/user_resource.py
index <HASH>..<HASH> 100644
--- a/flask_unchained/bundles/security/views/user_resource.py
+++ b/flask_unchained/bundles/security/views/user_resource.py
@@ -1,9 +1,5 @@
-try:
- from flask_unc... | UserResource depends on the API bundle | briancappello_flask-unchained | train |
5ac5a446c7c148178c77983f493978cb0e0f15e1 | diff --git a/lib/models/name.rb b/lib/models/name.rb
index <HASH>..<HASH> 100644
--- a/lib/models/name.rb
+++ b/lib/models/name.rb
@@ -85,7 +85,7 @@ module Taxonifi
# TODO: Family group extension; ICZN specific
def index_rank
case rank
- when 'species', 'subspecies'
+ when 'species', 'subspe... | Fixes index rank for varieties. | SpeciesFileGroup_taxonifi | train |
218464a4a268a51f4ace994cfc94d3b2cb893c84 | diff --git a/source/api.js b/source/api.js
index <HASH>..<HASH> 100644
--- a/source/api.js
+++ b/source/api.js
@@ -33,15 +33,15 @@ function create_handler(endpoint, action, ajv) {
throw new Error("Lawn.create_handler argument ajv cannot be null when endpoints have validators.");
return function (req, res)... | Merged user changes and some other changes I guess I forgot. | vineyard-bloom_vineyard-lawn | train |
53e28a262fa3eafc3214f2f7ddb0a70eab99c5b3 | diff --git a/server_timing_test.go b/server_timing_test.go
index <HASH>..<HASH> 100644
--- a/server_timing_test.go
+++ b/server_timing_test.go
@@ -279,6 +279,9 @@ func benchmarkServerGet(b *testing.B, clientsCount, requestsPerConn int) {
b.Fatalf("Unexpected request method: %s", ctx.Request.Header.Method)
}
... | Set 'Connection: close' header for the 'one request per conn' case in server benchmarks | valyala_fasthttp | train |
18b9b7898e97b6a607bc8fbcb62978513540cc29 | diff --git a/aiorun.py b/aiorun.py
index <HASH>..<HASH> 100644
--- a/aiorun.py
+++ b/aiorun.py
@@ -191,7 +191,11 @@ def run(
"""See: https://docs.python.org/3/library/asyncio-eventloop.html#error-handling-api"""
nonlocal pending_exception_to_raise
pending_exception_to_raise = context.get("exc... | Log the message and exception when stopping the loop (#<I>) | cjrh_aiorun | train |
58027c3f3ed9957711e01f7ec035098ebde1d746 | diff --git a/src/main/java/org/parboiled/MatcherContext.java b/src/main/java/org/parboiled/MatcherContext.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/parboiled/MatcherContext.java
+++ b/src/main/java/org/parboiled/MatcherContext.java
@@ -43,6 +43,7 @@ import org.parboiled.support.Position;
import org.parb... | Greatly simplify subnodes collection in .getSubNodes()
The only trick was to collect all of them into a normal ArrayList which is
eventually reversed.
Much more simple than the previous code, more readable and faster. | fge_grappa | train |
bd2a774a58aa5c3b210a56b04d758f9d76a2b129 | diff --git a/modules/backend/behaviors/ImportExportController.php b/modules/backend/behaviors/ImportExportController.php
index <HASH>..<HASH> 100644
--- a/modules/backend/behaviors/ImportExportController.php
+++ b/modules/backend/behaviors/ImportExportController.php
@@ -619,6 +619,7 @@ class ImportExportController exte... | Add UTF-8 BOM when exporting with useList option (#<I>)
Same as #<I> but when using the list controller without an ExportModel (with `useList` in the export options) | octobercms_october | train |
ddb41f595a62d66b453527a8d184ba2dfbb6d449 | diff --git a/configuration/src/main/java/com/buschmais/jqassistant/core/configuration/api/PropertiesConfigBuilder.java b/configuration/src/main/java/com/buschmais/jqassistant/core/configuration/api/PropertiesConfigBuilder.java
index <HASH>..<HASH> 100644
--- a/configuration/src/main/java/com/buschmais/jqassistant/core/... | added null-checks for PropertiesConfigBuilder | buschmais_jqa-core-framework | train |
04b2cd2d8ca78ad1ee7ab7ae57e24a76cfdce5eb | diff --git a/src/app/n2n/io/managed/impl/engine/variation/FsThumbManager.php b/src/app/n2n/io/managed/impl/engine/variation/FsThumbManager.php
index <HASH>..<HASH> 100644
--- a/src/app/n2n/io/managed/impl/engine/variation/FsThumbManager.php
+++ b/src/app/n2n/io/managed/impl/engine/variation/FsThumbManager.php
@@ -177,7... | FileSource::clear() does not exist anymore. | n2n_n2n-io | train |
9201a336e4e1bb56f8f3526bae84987a59eea912 | diff --git a/test/suite.js b/test/suite.js
index <HASH>..<HASH> 100644
--- a/test/suite.js
+++ b/test/suite.js
@@ -2,7 +2,6 @@ var path = require('path');
var test = require('ava');
var postcss = require('postcss');
var colorblindPlugin = require('..');
-var colorTransformer = require('../src/color-transformer');
v... | Remove last reference to the color transformer from the tests. | btholt_postcss-colorblind | train |
98c91a19aafb64e1a5b609d97620dd32aecdd57b | diff --git a/meshio/vtk_io.py b/meshio/vtk_io.py
index <HASH>..<HASH> 100644
--- a/meshio/vtk_io.py
+++ b/meshio/vtk_io.py
@@ -71,6 +71,8 @@ vtk_to_numpy_dtype = {
'double': numpy.dtype('float64'),
}
+numpy_to_vtk_dtype = {v: k for k, v in vtk_to_numpy_dtype.items()}
+
def read(filetype, filename, is_lit... | vtk writer: share some code | nschloe_meshio | train |
bdae89cb577504e5edfddc68da9af4ac5b2d64ea | diff --git a/tests/Doctrine/Tests/DBAL/AllTests.php b/tests/Doctrine/Tests/DBAL/AllTests.php
index <HASH>..<HASH> 100644
--- a/tests/Doctrine/Tests/DBAL/AllTests.php
+++ b/tests/Doctrine/Tests/DBAL/AllTests.php
@@ -42,6 +42,13 @@ class AllTests
$suite->addTestSuite('Doctrine\Tests\DBAL\Types\SmallIntTest');
... | [<I>] - DDC-<I> - Added DropSchemaSql Visitor - Refactored Visitor package a bit, however its still not very appealing to have that much use statements cluttered in the code | doctrine_orm | train |
10059897ceb0755bab844011f11ea6c6af8794ae | diff --git a/sos/plugins/sapnw.py b/sos/plugins/sapnw.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/sapnw.py
+++ b/sos/plugins/sapnw.py
@@ -32,20 +32,16 @@ class sapnw(Plugin, RedHatPlugin):
files = ['/usr/sap']
- def setup(self):
-
+ def collect_list_instances(self):
# list installed instanc... | [sapnw] Add check if saphostctrl is not present
Split listing&collecting instances and dbs from lengthy setup().
Break execution when "inst_out = self.get_cmd_output_now" returns None.
db_out is already checked this way.
Resolves: #<I> | sosreport_sos | train |
fd109c5c2364fb7b94304bc91c9cc6ad8be7eeed | diff --git a/src/plugins/google_analytics/google_analytics.js b/src/plugins/google_analytics/google_analytics.js
index <HASH>..<HASH> 100644
--- a/src/plugins/google_analytics/google_analytics.js
+++ b/src/plugins/google_analytics/google_analytics.js
@@ -40,7 +40,6 @@ export default class GoogleAnalytics extends Contai... | Removing duplicate event listener from google_analytics plugin | clappr_clappr | train |
b94cb0b9e62ca02204c04a18a241649a3737f94a | diff --git a/src/org/opencms/ade/configuration/CmsConfigurationReader.java b/src/org/opencms/ade/configuration/CmsConfigurationReader.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/ade/configuration/CmsConfigurationReader.java
+++ b/src/org/opencms/ade/configuration/CmsConfigurationReader.java
@@ -385,7 +385,10... | Improved robustness of sitemap configuration reading w.r.t. missing
referenced formatters. | alkacon_opencms-core | train |
909be1d6ce8d4ae8acc2b37282dd0b58bb59c57d | diff --git a/src/Stagehand/TestRunner/Config.php b/src/Stagehand/TestRunner/Config.php
index <HASH>..<HASH> 100644
--- a/src/Stagehand/TestRunner/Config.php
+++ b/src/Stagehand/TestRunner/Config.php
@@ -131,15 +131,6 @@ class Stagehand_TestRunner_Config
{
return in_array(strtolower($class), $this->testing... | Removed the usesPHPUnitConfigFile() method. (Issue #<I>) | piece_stagehand-testrunner | train |
93f2c264040b30db65bf9a2c5e4e6d9a92a316b1 | diff --git a/lib/Widget/Upload.php b/lib/Widget/Upload.php
index <HASH>..<HASH> 100644
--- a/lib/Widget/Upload.php
+++ b/lib/Widget/Upload.php
@@ -156,45 +156,42 @@ class Upload extends Image
}
$uploadedFile = $uploadedFiles[$this->field];
+
+ if ($uploadedFile['error'] !== UPLOAD... | updated upload error detect, added more test for upload widget | twinh_wei | train |
97706ce5fdd4fbdf4f00a9d5e6da0b3090764d33 | diff --git a/scripts/generate/overrides.js b/scripts/generate/overrides.js
index <HASH>..<HASH> 100644
--- a/scripts/generate/overrides.js
+++ b/scripts/generate/overrides.js
@@ -2,7 +2,8 @@ module.exports = [
{
version: '*',
paramAsBody: {
- scroll: 'scrollId'
+ scroll: 'scrollId',
+ clearS... | send scrollId as body for clearScroll method | elastic_elasticsearch-js | train |
4264b64b8c4fbd46d9507cb99a75e3b60184d960 | diff --git a/src/sos/__main__.py b/src/sos/__main__.py
index <HASH>..<HASH> 100755
--- a/src/sos/__main__.py
+++ b/src/sos/__main__.py
@@ -893,6 +893,8 @@ def cmd_preview(args, unknown_args):
print('BINARY DATA of type {}'.format(', '.join(msg[1]['data'].keys())))
else:
... | Exit with code 1 if preview fails | vatlab_SoS | train |
8fe46e5a54cb9fd6bfc88592003c4bc465f73d64 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -80,10 +80,7 @@ VM.prototype.runCall = require('./runCall.js')
VM.prototype.runBlockchain = require('./runBlockchain.js')
VM.prototype.copy = function () {
- return new VM({
- state: this.trie.copy(),
-... | Introduce stateManager.copy() and use that in VM.copy() | ethereumjs_ethereumjs-vm | train |
c255e68a078b068ca0a53aa505095b7db36c9b20 | diff --git a/interfaces/file_resources.php b/interfaces/file_resources.php
index <HASH>..<HASH> 100644
--- a/interfaces/file_resources.php
+++ b/interfaces/file_resources.php
@@ -33,7 +33,7 @@ interface File_Resources
* @param mixed $data The data to write. String or single dimension array
* @param int $fl... | Updated File_Resources trait
* `filePutContents` now has `FILE_APPEND` set for `$flags`
* Added `fileGetCSV` & `filePutCSV` methods | shgysk8zer0_core_api | train |
018ff582a5aaa58d4bce7d634ecae80d107f8304 | diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/time_with_zone.rb
+++ b/activesupport/lib/active_support/time_with_zone.rb
@@ -286,8 +286,10 @@ module ActiveSupport
alias_method :... | Update the comments for TimeWithZone subtraction (#<I>)
* Update the comments for TimeWithZone subtraction
While reading the description/documentation comments for the subtraction method, it was confusing. While in practical usage, the returned values make sense. It seems as though the explanation could be a bit cl... | rails_rails | train |
6a0ccd1473746d969d141b3e07de5fe0dc0486ca | diff --git a/src/Http/Requests/ChecksDocuments.php b/src/Http/Requests/ChecksDocuments.php
index <HASH>..<HASH> 100644
--- a/src/Http/Requests/ChecksDocuments.php
+++ b/src/Http/Requests/ChecksDocuments.php
@@ -51,7 +51,7 @@ trait ChecksDocuments
$validator = $this->documentAcceptanceValidator($validators, $... | [Bugfix] Pass record into document validation
The record from the current request was not being passed into
document validation, which meant contextual validators within a
resource validator could not use the record during validation. | cloudcreativity_json-api | train |
8d063a074e2ecdc84270184ecced6bfd5eafef5f | diff --git a/lib/pyrite/dsl.rb b/lib/pyrite/dsl.rb
index <HASH>..<HASH> 100644
--- a/lib/pyrite/dsl.rb
+++ b/lib/pyrite/dsl.rb
@@ -82,6 +82,9 @@ module Pyrite
browser.get_confirmation
end
+ # drag an css selector to the center pixel of another, e.g.
+ # `drag_and_drop(:from => "li#element_#{my_ojec... | addded comment on how to use drag_and_drop | mintdigital_pyrite | train |
975a7ce4cda674f7d62c3e6848f063e4acd9122f | diff --git a/gosseract.go b/gosseract.go
index <HASH>..<HASH> 100644
--- a/gosseract.go
+++ b/gosseract.go
@@ -47,6 +47,8 @@ func Anyway(args AnywayArgs) string {
buf, _ := ioutil.ReadFile(f.Name())
out = string(buf)
+ _ = os.Remove(f.Name())
+
return out
}
@@ -106,6 +108,8 @@ func execute(source string,... | Tear down used file in /tmp | otiai10_gosseract | train |
abad7824df94b4ae8daf35b4f253c9c8b091137b | diff --git a/lib/cassava/document.rb b/lib/cassava/document.rb
index <HASH>..<HASH> 100644
--- a/lib/cassava/document.rb
+++ b/lib/cassava/document.rb
@@ -132,7 +132,7 @@ module Cassava
end
if tmp_file
tmp_file = "/tmp/cassava-#{$$}.csv"
- $stderr.puts " #{file} => #{tmp_file}"
+ #... | Does not really require a tmp file. | kstephens_cassava | train |
f168eb02655f9203f6437787eda670c75b192e09 | diff --git a/lib/page_rankr/ranks/google/checksum.rb b/lib/page_rankr/ranks/google/checksum.rb
index <HASH>..<HASH> 100644
--- a/lib/page_rankr/ranks/google/checksum.rb
+++ b/lib/page_rankr/ranks/google/checksum.rb
@@ -8,14 +8,10 @@ module PageRankr
length = bytes.length
a = b = 0x9E3779B9
... | Cleaned up checksum a bit. | blatyo_page_rankr | train |
0556de0515657de01da27e0cb787e97718db4ede | diff --git a/Repository/ContactRepository.php b/Repository/ContactRepository.php
index <HASH>..<HASH> 100755
--- a/Repository/ContactRepository.php
+++ b/Repository/ContactRepository.php
@@ -11,7 +11,7 @@
*/
namespace WellCommerce\Bundle\ContactBundle\Repository;
-use WellCommerce\Bundle\CoreBundle\Repository\Abst... | Moved Repository from CoreBundle to DoctrineBundle
(cherry picked from commit af<I>d7a6b<I>f0d8fb0b5f<I>d<I>e<I>d<I>e) | WellCommerce_CouponBundle | train |
589cb85fd80528303ffb7908069985c9c80d17f2 | diff --git a/src/JWadhams/JsonLogic.php b/src/JWadhams/JsonLogic.php
index <HASH>..<HASH> 100644
--- a/src/JWadhams/JsonLogic.php
+++ b/src/JWadhams/JsonLogic.php
@@ -24,7 +24,7 @@ class JsonLogic
return (
is_array($array)
and
- count($array) > 0
+ count($array) === 1
and
is_string( static::ge... | Adding support for all, none, and some, including a way to get 'whole data' | jwadhams_json-logic-php | train |
fa9f0dcc55b177c5ae187a4ea26026dfe528703a | diff --git a/services/managers/jabber_manager.py b/services/managers/jabber_manager.py
index <HASH>..<HASH> 100644
--- a/services/managers/jabber_manager.py
+++ b/services/managers/jabber_manager.py
@@ -86,7 +86,7 @@ class JabberManager:
api.delete_group(username,groups)
@staticmethod
- def send_broa... | Fixe bug with jabber broadcast | allianceauth_allianceauth | train |
a6bc008a9685e0c86ec015217be4cfb661ce256d | diff --git a/pythonforandroid/recipes/websocket-client/__init__.py b/pythonforandroid/recipes/websocket-client/__init__.py
index <HASH>..<HASH> 100644
--- a/pythonforandroid/recipes/websocket-client/__init__.py
+++ b/pythonforandroid/recipes/websocket-client/__init__.py
@@ -15,15 +15,13 @@ from pythonforandroid.toolcha... | Updates websocket-client recipe, fixes #<I>
- fixes hardcoded version in `url` string
- fixes link to original repo in `url` string
- ditches `kivy` dependency | kivy_python-for-android | train |
204294ab3c646909367d081bf6a0aa0eed82bc71 | diff --git a/lib/multirepo/commands/checkout-command.rb b/lib/multirepo/commands/checkout-command.rb
index <HASH>..<HASH> 100644
--- a/lib/multirepo/commands/checkout-command.rb
+++ b/lib/multirepo/commands/checkout-command.rb
@@ -78,30 +78,33 @@ module MultiRepo
raise MultiRepoException, "'#{e.path}' contains... | Refactored individual lock-entry-based checkout into a separate method in CheckoutCommand. | fortinmike_git-multirepo | train |
bbf8d0ab3ddd11a893f829898a352707e54c70d1 | diff --git a/salt/modules/rpm.py b/salt/modules/rpm.py
index <HASH>..<HASH> 100644
--- a/salt/modules/rpm.py
+++ b/salt/modules/rpm.py
@@ -435,9 +435,11 @@ def info(*packages):
# Locale needs to be en_US instead of C, because RPM otherwise will yank the timezone from the timestamps
call = __salt__['cmd.run_al... | rpm.py: Add epoch and architecture to lowpkg.info
Epoch is essential version information for rpm packages on RHEL and
Fedora.
Architecture is essential information on all RPM based distributions | saltstack_salt | train |
95bfd2078b0cff1e6994d3da44ae10e7d17c402b | diff --git a/lib/moodlelib.php b/lib/moodlelib.php
index <HASH>..<HASH> 100644
--- a/lib/moodlelib.php
+++ b/lib/moodlelib.php
@@ -109,6 +109,7 @@ define('PARAM_ALPHANUM', 0x0400); //numbers or letters only
define('PARAM_BOOL', 0x0800); //convert to value 1 or 0 using empty()
define('PARAM_CLEANHTML',0x1000); ... | merged from MOODLE_<I>_STABLE | moodle_moodle | train |
cf6ffac520920086a146699e1c9efd877c8ab165 | diff --git a/test/util/options.js b/test/util/options.js
index <HASH>..<HASH> 100644
--- a/test/util/options.js
+++ b/test/util/options.js
@@ -17,6 +17,7 @@
const aerospike = require('../../lib/aerospike')
const yargs = require('yargs')
const fs = require('fs')
+const path = require('path')
// *******************... | Use path.resolve() to determin base dir | aerospike_aerospike-client-nodejs | train |
56f7b1a605b22ce6ea0f7dfdb4b89ca7b4076a9f | diff --git a/jparsec/src/main/java/org/jparsec/Scanners.java b/jparsec/src/main/java/org/jparsec/Scanners.java
index <HASH>..<HASH> 100755
--- a/jparsec/src/main/java/org/jparsec/Scanners.java
+++ b/jparsec/src/main/java/org/jparsec/Scanners.java
@@ -94,14 +94,12 @@ public final class Scanners {
* Scanner with a pa... | Change DOUBLE_QUOTED_STRING away from regex() | jparsec_jparsec | train |
74d8e47143f66b321cc161606a0a63fc5d6b4bff | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -16,9 +16,12 @@ GitHub repository at https://github.com/openclimatedata/pymagicc.
"""
import versioneer
+import os
from setuptools import setup
from setuptools.command.test import test as TestCommand
+path = os.path.ab... | Use Readme as long description for PyPI
[skip ci] | openclimatedata_pymagicc | train |
941ca41084989593601ffe76edf9856edd17d699 | diff --git a/lib/ds/DataStore.js b/lib/ds/DataStore.js
index <HASH>..<HASH> 100644
--- a/lib/ds/DataStore.js
+++ b/lib/ds/DataStore.js
@@ -9,7 +9,6 @@ var CacheHandler = require('../cache/CacheHandler');
var InstanceResource = require('../resource/InstanceResource');
var NonceStore = require('./NonceStore');
var Req... | let a factory function pass all the way to `instantiate()` in ResourceFactory.js | stormpath_stormpath-sdk-node | train |
b9d6c9b95efc256df9ae80516463285281a55487 | diff --git a/asammdf/mdf_v4.py b/asammdf/mdf_v4.py
index <HASH>..<HASH> 100644
--- a/asammdf/mdf_v4.py
+++ b/asammdf/mdf_v4.py
@@ -1449,8 +1449,6 @@ class MDF4(object):
if sig.samples.dtype.kind in 'ui'
]
-
-
max_itemsize = 1
dtype_ = dtype(uint8)
@@ -1626,6 +... | fix error in appending range to text conversion | danielhrisca_asammdf | train |
2c0289ebddbc39483e43727d3b1f27f1b040b9a7 | diff --git a/seqmagick/subcommands/common.py b/seqmagick/subcommands/common.py
index <HASH>..<HASH> 100644
--- a/seqmagick/subcommands/common.py
+++ b/seqmagick/subcommands/common.py
@@ -28,17 +28,6 @@ def cut_range(string):
return slice(start, stop)
-def sequence_file(sequence_file):
- """
- A custom ar... | Adding preliminary stdio support via argparse. | fhcrc_seqmagick | train |
ce9e7228222873d1efaba42536fb653c78097cc0 | diff --git a/cli/lib/kontena/command.rb b/cli/lib/kontena/command.rb
index <HASH>..<HASH> 100644
--- a/cli/lib/kontena/command.rb
+++ b/cli/lib/kontena/command.rb
@@ -213,7 +213,7 @@ class Kontena::Command < Clamp::Command
end
rescue Kontena::Errors::StandardError => exc
raise exc if ENV['DEBUG']
- puts... | Fix CLI to output API errors to STDERR (#<I>)
* Client errors were not going to STDERR
* Unnecessary super | kontena_kontena | train |
645e1e08ae23dffb9ceea4358572d9331c6cd9c5 | diff --git a/src/Type/FileTypeMapper.php b/src/Type/FileTypeMapper.php
index <HASH>..<HASH> 100644
--- a/src/Type/FileTypeMapper.php
+++ b/src/Type/FileTypeMapper.php
@@ -31,7 +31,7 @@ class FileTypeMapper
public function getTypeMap(string $fileName): array
{
- $cacheKey = sprintf('%s-%d-v3', $fileName, filemtim... | FileTypeMapper - bump cache version because of change in StaticType and bugfixes | phpstan_phpstan | train |
cba1ab202e243ff889764241ceb337d718f08bd4 | diff --git a/sample/sample/urls.py b/sample/sample/urls.py
index <HASH>..<HASH> 100644
--- a/sample/sample/urls.py
+++ b/sample/sample/urls.py
@@ -7,6 +7,12 @@ urlpatterns = [
url(r'^', include('demo.urls', namespace='demo')),
url(r'^admin/', include(admin.site.urls)),
url(r'^renderer/', include('rendere... | no media serving outside of dev server | rouk1_django-image-renderer | train |
2a22c68ed8b416bc9a4da466c093e3929c6b8490 | diff --git a/Test/Unit/Model/Catalog/UrlFinderTest.php b/Test/Unit/Model/Catalog/UrlFinderTest.php
index <HASH>..<HASH> 100644
--- a/Test/Unit/Model/Catalog/UrlFinderTest.php
+++ b/Test/Unit/Model/Catalog/UrlFinderTest.php
@@ -5,6 +5,8 @@ namespace Dotdigitalgroup\Email\Test\Unit\Model\Catalog\UrlFinder;
use Dotdigita... | Merged PR <I>: Fix UrlFinderTest
Following the recent update to add product image URL functionality to the UrlFinder class, some unit tests were broken. This PR fixes those tests, and adds an additional one for `getProductImageUrl()` | dotmailer_dotmailer-magento2-extension | train |
8dc24c4f4cf4ccf774f2b0c15fc57550a3ba0af4 | diff --git a/packages/webdriverio/src/utils.js b/packages/webdriverio/src/utils.js
index <HASH>..<HASH> 100644
--- a/packages/webdriverio/src/utils.js
+++ b/packages/webdriverio/src/utils.js
@@ -11,7 +11,7 @@ import { ELEMENT_KEY, UNICODE_CHARACTERS } from './constants'
import { findStrategy } from './utils/findStrate... | webdriverio: throw INVALID_SELECTOR_ERROR in correct spot (#<I>) | webdriverio_webdriverio | train |
b38bdfc1c72dc72a9068a3e0a86fdf2e376f7ce6 | diff --git a/recordext/functions/set_record_documents.py b/recordext/functions/set_record_documents.py
index <HASH>..<HASH> 100644
--- a/recordext/functions/set_record_documents.py
+++ b/recordext/functions/set_record_documents.py
@@ -24,7 +24,7 @@ import os
from invenio.base.utils import toposort_depends
from inveni... | pidstore: removal of recid provider
* INCOMPATIBLE Removes recid provider, reserve recid function and
* datacite tasks as they were ported to invenio-records package.
(addresses inveniosoftware/invenio-records#6) | inveniosoftware-attic_invenio-documents | train |
04f431e6f04fb93af7a0f9abebdd784b6155623a | diff --git a/src/com/dtmilano/android/culebron.py b/src/com/dtmilano/android/culebron.py
index <HASH>..<HASH> 100644
--- a/src/com/dtmilano/android/culebron.py
+++ b/src/com/dtmilano/android/culebron.py
@@ -1216,7 +1216,7 @@ This is usually installed by python package. Check your distribution details.
"""
... | Add timestamp
- Fix helper swipe | dtmilano_AndroidViewClient | train |
1f9595478c6967fa289886f705d402d4af5ab329 | diff --git a/quad/dot/dot.go b/quad/dot/dot.go
index <HASH>..<HASH> 100644
--- a/quad/dot/dot.go
+++ b/quad/dot/dot.go
@@ -12,7 +12,7 @@ import (
func init() {
quad.RegisterFormat(quad.Format{
Name: "graphviz",
- Ext: []string{".gv"},
+ Ext: []string{".gv", ".dot"},
Writer: func(w io.Writer) quad.Wri... | dot: correctly escape slashes; additional file extension | cayleygraph_cayley | train |
09679daed01380c2c6b6f12db65674893ea71b6d | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -59,7 +59,7 @@ module.exports = function(filePath, opts) {
*/
module.exports.in = function(opts) {
- return (opts!=null && opts.in!=null) ? opts.in : 'scss'
+ return (opts!=null && opts.in!=null) ? opts.in... | Support for Rosid v6 | electerious_rosid-handler-sass | train |
c5a28390873fb3a4642e36cd16c13742907a8245 | diff --git a/syntax/charclass.go b/syntax/charclass.go
index <HASH>..<HASH> 100644
--- a/syntax/charclass.go
+++ b/syntax/charclass.go
@@ -423,15 +423,20 @@ func (c *CharSet) canonicalize() {
// Adds to the class any lowercase versions of characters already
// in the class. Used for case-insensitivity.
func (c *Char... | fix issue with range parsing while ignoring case and \u hex parsing | dlclark_regexp2 | train |
2cc7852c7ecac5137dc30bb8518e9cc61a4d09d1 | diff --git a/scapy/contrib/gtp.py b/scapy/contrib/gtp.py
index <HASH>..<HASH> 100644
--- a/scapy/contrib/gtp.py
+++ b/scapy/contrib/gtp.py
@@ -865,7 +865,7 @@ class GTPCreatePDPContextRequest(Packet):
# 3GPP TS 29.060 V9.1.0 (2009-12)
name = "GTP Create PDP Context Request"
fields_desc = [PacketListField... | GTP: ignore E<I> error of the folded line | secdev_scapy | train |
1681346e8e7a89e92204133cfb9732dba1c7f746 | diff --git a/findbugs/src/java/edu/umd/cs/findbugs/detect/FindHEmismatch.java b/findbugs/src/java/edu/umd/cs/findbugs/detect/FindHEmismatch.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/detect/FindHEmismatch.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/detect/FindHEmismatch.java
@@ -2... | Provide annotation of equals method. Although the bug is typically that there is a missing method (e.g., a hashCode() method), providing a pointer to the equals method gives a place to point to in the source code.
git-svn-id: <URL> | spotbugs_spotbugs | train |
3981d7e9da04a2ee8b6e58aff695503fd80e65ea | diff --git a/Pipfile.lock b/Pipfile.lock
index <HASH>..<HASH> 100644
--- a/Pipfile.lock
+++ b/Pipfile.lock
@@ -5,16 +5,16 @@
},
"host-environment-markers": {
"implementation_name": "cpython",
- "implementation_version": "3.6.2",
+ "implementation_version": "3.6.1",
... | Use pip resolver for version resolution
- Addresses conflicts between the PyPI api and pip
- Fixes #<I>
- Uses semantic versioning and PEP approved post-release naming | pypa_pipenv | train |
bce9200196d706b8f6798b69ea25edb2a807a979 | diff --git a/tests/test.py b/tests/test.py
index <HASH>..<HASH> 100644
--- a/tests/test.py
+++ b/tests/test.py
@@ -2,7 +2,6 @@ import os
import sys
import threading
import image_scraper
-import SimplePool
import glob
from nose.tools import eq_, ok_
from image_scraper.utils import * | Removed unused import SimplePool from tests. | sananth12_ImageScraper | train |
d26fd5c97b0c505f5cb36f719abd6ccc8130bdc9 | diff --git a/discovery/legacymanager/manager_test.go b/discovery/legacymanager/manager_test.go
index <HASH>..<HASH> 100644
--- a/discovery/legacymanager/manager_test.go
+++ b/discovery/legacymanager/manager_test.go
@@ -668,13 +668,16 @@ func TestTargetUpdatesOrder(t *testing.T) {
discoveryManager.updatert = 100 * t... | fix potential goroutine leaks (#<I>) | prometheus_prometheus | train |
ef0e585e58d93fde3b2453798f3081b2deb9e2d6 | diff --git a/spec/admin/service_broker/add_spec.rb b/spec/admin/service_broker/add_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/admin/service_broker/add_spec.rb
+++ b/spec/admin/service_broker/add_spec.rb
@@ -29,8 +29,8 @@ describe CFAdmin::ServiceBroker::Add do
it "creates a service broker when only the name is p... | Fix service broker add spec for capitalized prompts | cloudfoundry-attic_cf | train |
45f9c2c69c80711557c2189b57f174dafcf5186a | diff --git a/src/resources/views/modules/create.blade.php b/src/resources/views/modules/create.blade.php
index <HASH>..<HASH> 100755
--- a/src/resources/views/modules/create.blade.php
+++ b/src/resources/views/modules/create.blade.php
@@ -152,7 +152,7 @@
<div class="form-group">
... | Bug fix: fixed checkbox reliability issue where sometimes the value is not captured. | redooor_redminportal | train |
6beb4fb133dd8e7c18c2d90def7c5e19b699f1d1 | diff --git a/client/lib/url/support.js b/client/lib/url/support.js
index <HASH>..<HASH> 100644
--- a/client/lib/url/support.js
+++ b/client/lib/url/support.js
@@ -1,5 +1,4 @@
-const root = 'https://support.wordpress.com',
- jetpackRoot = 'https://jetpack.me';
+const root = 'https://support.wordpress.com';
export def... | Switch URLs for Jetpack support to wp.com support docs
Fixes #<I> | Automattic_wp-calypso | train |
d24cedc508d9184cbbfd1020cb7d552c27a7661c | diff --git a/galpy/df/isotropicHernquistdf.py b/galpy/df/isotropicHernquistdf.py
index <HASH>..<HASH> 100644
--- a/galpy/df/isotropicHernquistdf.py
+++ b/galpy/df/isotropicHernquistdf.py
@@ -14,31 +14,6 @@ class isotropicHernquistdf(eddingtondf):
self._GMa = self._psi0*self._pot.a**2.
self._fEnorm= 1.... | Move _call_internal to general isotropicsphericaldf, add some notes about sphericaldfs | jobovy_galpy | train |
5b6db755912ee4aeb094da795da398bc08a8124d | diff --git a/sftpman/cli.py b/sftpman/cli.py
index <HASH>..<HASH> 100644
--- a/sftpman/cli.py
+++ b/sftpman/cli.py
@@ -1,7 +1,7 @@
import sys
import getopt
-from exception import SftpException
+from exception import SftpException, SftpConfigException, SftpMountException
from model import EnvironmentModel, SystemMo... | Capturing sshfs errors during mounting now for easier troubleshooting. | spantaleev_sftpman | train |
d312d8e928e4c750f40291db7b85caefc1a62cfb | diff --git a/common-core-open/src/main/java/com/bbn/bue/common/strings/offsets/OffsetGroup.java b/common-core-open/src/main/java/com/bbn/bue/common/strings/offsets/OffsetGroup.java
index <HASH>..<HASH> 100755
--- a/common-core-open/src/main/java/com/bbn/bue/common/strings/offsets/OffsetGroup.java
+++ b/common-core-open... | Better bounds checking for OffsetGroup | BBN-E_bue-common-open | train |
9288899eb19e634737ffed1f2b546195ebd81cfa | diff --git a/lib/component/from-object.js b/lib/component/from-object.js
index <HASH>..<HASH> 100644
--- a/lib/component/from-object.js
+++ b/lib/component/from-object.js
@@ -39,7 +39,10 @@ function fromObject (obj, isRoot) {
}
if (children && children.length) {
- result += ',[' + mapChildren(childre... | Only put children in an array if more than one. | jhamlet_svg-react-loader | train |
383241f65c53490687b00c1c5163537fe891f9b0 | diff --git a/framework/CHANGELOG.md b/framework/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/framework/CHANGELOG.md
+++ b/framework/CHANGELOG.md
@@ -8,6 +8,7 @@ Yii Framework 2 Change Log
- Enh #18826: Add ability to turn the sorting off for a clicked column in GridView with multisort (ditibal)
- Bug #18646: Remove... | Fix #<I>: Fix `yii2/log/Logger` to set logger globally | yiisoft_yii2 | train |
ba3a442556e3c04e316f790335427e6d983db01d | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index <HASH>..<HASH> 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -4320,7 +4320,7 @@ class DataFrame(NDFrame):
return valid_indices[0] if len(valid_indices) else None
@Appender(_shared_docs['valid_index'] % {
- 'position'... | Documentation fix for method last_valid_index (#<I>) | pandas-dev_pandas | train |
c5798c98132ebcbebb5fa55620da511c0c2b0bc3 | diff --git a/lmj/tnn/flags.py b/lmj/tnn/flags.py
index <HASH>..<HASH> 100644
--- a/lmj/tnn/flags.py
+++ b/lmj/tnn/flags.py
@@ -35,7 +35,7 @@ g.add_option('', '--decode', type=int, default=1, metavar='N',
help='decode from the final N layers of the net (1)')
g.add_option('-n', '--layers', metavar='N0,N1,.... | Add rectified tanh activation. | lmjohns3_theanets | train |
71e7345890a859e47458e41eb131d15a7e012bd7 | diff --git a/org.eclipse.xtext/src/org/eclipse/xtext/resource/persistence/ResourceStorageLoadable.java b/org.eclipse.xtext/src/org/eclipse/xtext/resource/persistence/ResourceStorageLoadable.java
index <HASH>..<HASH> 100644
--- a/org.eclipse.xtext/src/org/eclipse/xtext/resource/persistence/ResourceStorageLoadable.java
+... | API cleanup after Xtend2Java | eclipse_xtext-core | train |
d60eeb1ffd55cb2c2a3ebc00945de5c089ebf096 | diff --git a/spikeextractors/extractors/nwbextractors/nwbextractors.py b/spikeextractors/extractors/nwbextractors/nwbextractors.py
index <HASH>..<HASH> 100644
--- a/spikeextractors/extractors/nwbextractors/nwbextractors.py
+++ b/spikeextractors/extractors/nwbextractors/nwbextractors.py
@@ -77,26 +77,26 @@ def find_all_... | - clean up code for `find_all_unit_property_names()` using set
- fix get_nspikes()
- fix write unit_spike_features to nwb file | SpikeInterface_spikeextractors | train |
077159f5b7ecd532bcfd17d72570033de7de86e8 | diff --git a/spaceship/lib/spaceship/tunes/tunes_client.rb b/spaceship/lib/spaceship/tunes/tunes_client.rb
index <HASH>..<HASH> 100644
--- a/spaceship/lib/spaceship/tunes/tunes_client.rb
+++ b/spaceship/lib/spaceship/tunes/tunes_client.rb
@@ -35,6 +35,7 @@ module Spaceship
'iphone6Plus' => [2208, 1242],
... | Add support for iPad <I> (#<I>)
`upload_trailer` method for device `ipad<I>` currently fails. Traced the console error back to this place, where the accepted resolution was simply missing. | fastlane_fastlane | train |
e3dcd10939610486b4449a4a7701cb6a57c565e0 | diff --git a/lib/smartguard/applications/smartkiosk/thin.rb b/lib/smartguard/applications/smartkiosk/thin.rb
index <HASH>..<HASH> 100644
--- a/lib/smartguard/applications/smartkiosk/thin.rb
+++ b/lib/smartguard/applications/smartkiosk/thin.rb
@@ -7,16 +7,23 @@ module Smartguard
Logging.logger.info "Startin... | Start thin on port <I> in development. | smartkiosk_smartguard | train |
2796a8fe5b0fbb9ec59a71a6e53a8517a6881e81 | diff --git a/auto_lens/test_analysis.py b/auto_lens/test_analysis.py
index <HASH>..<HASH> 100644
--- a/auto_lens/test_analysis.py
+++ b/auto_lens/test_analysis.py
@@ -809,17 +809,13 @@ class TestRegularizationMatrix(object):
regularization_weights = np.array([2.0, 4.0, 1.0])
- test_b_matrix = np.arr... | added another test to weighted regularization | Jammy2211_PyAutoLens | train |
12973609bf4b254b0c8764360ef689233d069055 | diff --git a/package.json b/package.json
index <HASH>..<HASH> 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "yasmini",
- "version": "0.2.14",
+ "version": "0.2.15",
"engines": {
"node": ">= 6.5"
},
diff --git a/spec/test2-spec.js b/spec/test2-spec.js
index <HASH>..<HASH> 100644... | added a test to eval() and a comment | paracamplus_Yasmini | train |
830090a4e1fef018959aac5feab52e32a8baa6a9 | diff --git a/test/integration/error-load-fail/test/index.test.js b/test/integration/error-load-fail/test/index.test.js
index <HASH>..<HASH> 100644
--- a/test/integration/error-load-fail/test/index.test.js
+++ b/test/integration/error-load-fail/test/index.test.js
@@ -2,13 +2,7 @@
/* global jasmine */
import path from ... | Update error-load-fail test to use check to handle reload taking longer on windows (#<I>)
* Update error-load-fail test to use check to handle reload taking longer on windows
* bump | zeit_next.js | train |
c23faf793274710e2292d018ef215c201d3e82e0 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -38,7 +38,7 @@ gulp.task('copy-partials', ['clean', 'copy'], function() {
// Compile Sass
gulp.task('sass', ['clean', 'copy'], function() {
return gulp.src('client/assets/scss/app.scss')
- .pipe(sass({ load... | Corrected gulp path solving issue #<I> | base-apps_angular-base-apps | train |
453ca72f968de2475827ed7dc9eb9b50ccf0fab6 | diff --git a/concept/type/ThingType.java b/concept/type/ThingType.java
index <HASH>..<HASH> 100644
--- a/concept/type/ThingType.java
+++ b/concept/type/ThingType.java
@@ -19,20 +19,16 @@
package hypergraph.concept.type;
import hypergraph.common.exception.HypergraphException;
-import hypergraph.common.iterator.Itera... | ThingTypes can set attribute, unset attribute, and get attributes | graknlabs_grakn | train |
fddf23f2346b5030b2df1d63f02e9a175ef168ef | diff --git a/backtrader/indicators/basicops.py b/backtrader/indicators/basicops.py
index <HASH>..<HASH> 100644
--- a/backtrader/indicators/basicops.py
+++ b/backtrader/indicators/basicops.py
@@ -242,7 +242,7 @@ class Accum(Indicator):
class Average(PeriodN):
'''
- Averages a given data arithmeticall over a p... | Corner minimum period calculation case covered in ExponentialSmoothingDynamic in which a passed line as a parameter is not being considered in any calculation because there is no line assignment in the indicator | backtrader_backtrader | train |
7d324d1ac47f027afc1a08f8c486e450e058d791 | diff --git a/client/gutenberg/extensions/markdown/editor.js b/client/gutenberg/extensions/markdown/editor.js
index <HASH>..<HASH> 100644
--- a/client/gutenberg/extensions/markdown/editor.js
+++ b/client/gutenberg/extensions/markdown/editor.js
@@ -54,6 +54,10 @@ export const settings = {
source: { type: 'string' },
... | Gutenberg: Disallow Markdown to be edited as HTML (#<I>) | Automattic_wp-calypso | train |
777c868b1223295d576384d79642f4809ec50be6 | diff --git a/src/ast/ExecutionPathOptions.js b/src/ast/ExecutionPathOptions.js
index <HASH>..<HASH> 100644
--- a/src/ast/ExecutionPathOptions.js
+++ b/src/ast/ExecutionPathOptions.js
@@ -133,21 +133,19 @@ export default class ExecutionPathOptions {
}
/**
- * @param {String[]} path
* @param {Node} node
* @r... | Simplify logic for infinite loop prevention in mutations and calls | rollup_rollup | train |
6351bab207032096bccfcf5b79c2b5d19a7ff1fe | diff --git a/spec/helper.rb b/spec/helper.rb
index <HASH>..<HASH> 100644
--- a/spec/helper.rb
+++ b/spec/helper.rb
@@ -1,2 +1,4 @@
require 'bacon'
Bacon.summary_on_exit
+
+require File.expand_path(File.join(File.dirname(__FILE__), '../lib/freeswitcher')) | Require freeswitcher in spec/helper | vangberg_librevox | train |
03742dba027dda690ab3681c0bc502a1a8121644 | diff --git a/tests/junit-functional/org/jgroups/protocols/SASLTest.java b/tests/junit-functional/org/jgroups/protocols/SASLTest.java
index <HASH>..<HASH> 100644
--- a/tests/junit-functional/org/jgroups/protocols/SASLTest.java
+++ b/tests/junit-functional/org/jgroups/protocols/SASLTest.java
@@ -31,7 +31,11 @@ public cla... | JGRP-<I> Use the JDK-specific SASL realm property so that it works with IBM | belaban_JGroups | train |
0235d8645eeaa2dafdae44a2ca027ce7e9f9d899 | diff --git a/functions.php b/functions.php
index <HASH>..<HASH> 100644
--- a/functions.php
+++ b/functions.php
@@ -40,10 +40,11 @@ call_user_func(function()
$builder->useAnnotations(true);
// Add our definitions from ```container.php```.
- $builder->addDefinitions(import(__DIR__.'/container.php'));
+ ... | Fixed bug that was introduced after swaping to import function. | fructify_theme | train |
3cb821e7913aee43377a3c1c70831173144311d3 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -18,6 +18,7 @@ This tutorial assumes that the plotly user credentials have already been configu
### Release Notes
### v0.6
+[See the IPython Notebook](http://nbviewer.ipython.org/gist/santosjorge/72665839a6f05a0567e0... | Support for iplot public charts | santosjorge_cufflinks | train |
a1b187e511f6c57107d99d0148df2329efeff0e9 | diff --git a/Bundle/QueryBundle/Helper/QueryHelper.php b/Bundle/QueryBundle/Helper/QueryHelper.php
index <HASH>..<HASH> 100644
--- a/Bundle/QueryBundle/Helper/QueryHelper.php
+++ b/Bundle/QueryBundle/Helper/QueryHelper.php
@@ -87,7 +87,8 @@ class QueryHelper
$itemsQueryBuilder = $em
->createQueryB... | filter available BusinessEntities by visibleOnFront too | Victoire_victoire | train |
c5be19406472d174a5d9b11b0549d28c9b19c457 | diff --git a/app/plugins/kalabox-plugin-pantheon/lib/pull.js b/app/plugins/kalabox-plugin-pantheon/lib/pull.js
index <HASH>..<HASH> 100644
--- a/app/plugins/kalabox-plugin-pantheon/lib/pull.js
+++ b/app/plugins/kalabox-plugin-pantheon/lib/pull.js
@@ -23,9 +23,9 @@ module.exports = function(kbox) {
// Grab delegate... | #<I>: Naming things correctly is good | kalabox_kalabox-app-pantheon | train |
7c79f3fbca2956fdaf86018be7797872837fb94f | diff --git a/build/docker/zap-baseline.py b/build/docker/zap-baseline.py
index <HASH>..<HASH> 100755
--- a/build/docker/zap-baseline.py
+++ b/build/docker/zap-baseline.py
@@ -292,11 +292,7 @@ def main(argv):
if res.startswith("ZAP Error"):
logging.error('Failed to load context file ' + con... | Refactor target access in docker scripts
Extract a function into zap_common.py that accesses the target URL and
tweak the error message (to be more clear that's ZAP that failed to
access the target).
Change zap-baseline.py and zap-full-scan.py to use the new function.
Related to #<I> - ZAP error messages when DNS is ... | zaproxy_zaproxy | train |
8d87fae5b6c91528d3a373f75b35c6c43b5e7a5d | diff --git a/pymatgen/io/vasp/tests/test_sets.py b/pymatgen/io/vasp/tests/test_sets.py
index <HASH>..<HASH> 100644
--- a/pymatgen/io/vasp/tests/test_sets.py
+++ b/pymatgen/io/vasp/tests/test_sets.py
@@ -463,7 +463,7 @@ class MPNonSCFSetTest(PymatgenTest):
prev_run = self.TEST_FILES_DIR / "relaxation"
... | Change optics test to reflect Uniform to Boltztrap mode rename | materialsproject_pymatgen | train |
4e5c13e24e6a9819ac6e3547a99dd5ce18ba6e47 | diff --git a/src/js/tubular/interceptors/auth.spec.js b/src/js/tubular/interceptors/auth.spec.js
index <HASH>..<HASH> 100644
--- a/src/js/tubular/interceptors/auth.spec.js
+++ b/src/js/tubular/interceptors/auth.spec.js
@@ -3,16 +3,17 @@
describe('Module: tubular.services', function () {
describe('Interceptor: A... | Added $digest() call to make $q work properly inside unit testing. | unosquare_tubular | train |
9d9eda716e881e098bd74f325509026e52a33208 | diff --git a/django_mobile_tests/settings.py b/django_mobile_tests/settings.py
index <HASH>..<HASH> 100644
--- a/django_mobile_tests/settings.py
+++ b/django_mobile_tests/settings.py
@@ -81,7 +81,6 @@ INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
- 'djan... | Fixing test runs for python setup.py test | gregmuellegger_django-mobile | train |
6e0107dafff9b3e0c0a10a185151299250cec08b | diff --git a/src/ui/tooltip/tooltip.directive.js b/src/ui/tooltip/tooltip.directive.js
index <HASH>..<HASH> 100644
--- a/src/ui/tooltip/tooltip.directive.js
+++ b/src/ui/tooltip/tooltip.directive.js
@@ -1,4 +1,4 @@
-gantt.directive('ganttTooltip', ['dateFilter', '$timeout', '$document', function (dateFilter, $timeout, ... | Added debounce to tooltip | angular-gantt_angular-gantt | train |
f1c46c3d65da702e0f2d3d14a9dc5393c7e3cbd3 | diff --git a/Controller/OrderController.php b/Controller/OrderController.php
index <HASH>..<HASH> 100644
--- a/Controller/OrderController.php
+++ b/Controller/OrderController.php
@@ -493,7 +493,7 @@ class OrderController extends BaseFrontController
if($pse->getQuantity() <=0 ) $flagQuantity = 1;
}
... | Correction At the time of paying if stock of the items = 0
At the time of paying if the stock of the article passes in 0
redirect to cart | thelia-modules_Front | train |
5d05e55a42a3c2c5811153fc1d4775ff7891d536 | diff --git a/scripts/command_helper.rb b/scripts/command_helper.rb
index <HASH>..<HASH> 100644
--- a/scripts/command_helper.rb
+++ b/scripts/command_helper.rb
@@ -1,3 +1,7 @@
+lib = File.expand_path('../lib', __FILE__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+require 'right_link/version'
+
module Righ... | acu<I> fix CLI tools issues | rightscale_right_link | train |
bfb886ccb725b8a0645e9d40d206f31327a92002 | diff --git a/src/main/java/org/whitesource/agent/dependency/resolver/ruby/RubyDependencyResolver.java b/src/main/java/org/whitesource/agent/dependency/resolver/ruby/RubyDependencyResolver.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/whitesource/agent/dependency/resolver/ruby/RubyDependencyResolver.java
+++ ... | WSE-<I> Ruby dependency resolver cause stack overflow
add sha1 to dependencyInfo, add it to partial dependency if only its child dependency | whitesource_fs-agent | train |
6249dd3c82696f124a12969b50222f1c18c3d94e | diff --git a/src/Codeception/Util/JsonArray.php b/src/Codeception/Util/JsonArray.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Util/JsonArray.php
+++ b/src/Codeception/Util/JsonArray.php
@@ -35,6 +35,10 @@ class JsonArray
json_last_error()
);
}
+
+ if (!is_array($th... | [REST] seeResponseContainsJson doesn't crash when json response is not array (#<I>)
* [PhpBrowserRestTest] converted arrays to short syntax
* [REST] seeResponseContainsJson don't crash when json response is not array #<I> | Codeception_Codeception | train |
9b764cf9e0c8cc223b437e9561bc2ca465c137d9 | diff --git a/lib/oneview-sdk/resource/api500/c7000/storage_pool.rb b/lib/oneview-sdk/resource/api500/c7000/storage_pool.rb
index <HASH>..<HASH> 100644
--- a/lib/oneview-sdk/resource/api500/c7000/storage_pool.rb
+++ b/lib/oneview-sdk/resource/api500/c7000/storage_pool.rb
@@ -17,6 +17,7 @@ module OneviewSDK
# Stor... | Changing the retrieve! method of StoragePool API<I> to be more clear | HewlettPackard_oneview-sdk-ruby | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.