diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/tilelive/batch.js b/lib/tilelive/batch.js
index <HASH>..<HASH> 100644
--- a/lib/tilelive/batch.js
+++ b/lib/tilelive/batch.js
@@ -169,7 +169,7 @@ TileBatch.prototype.renderChunk = function(callback) {
that.mbtiles.insertTiles(tiles, renders, that.options.compress, this);
},
... | Fix Step in renderChunk to ensure completion. |
diff --git a/js/viewport.js b/js/viewport.js
index <HASH>..<HASH> 100644
--- a/js/viewport.js
+++ b/js/viewport.js
@@ -502,14 +502,16 @@ var igv = (function (igv) {
const yScrollDelta = $(this.contentDiv).position().top;
const viewportBBox = this.$viewport.get(0).getBoundingClientRect();
- //... | SVG Render. Axis Rendered only for first panel in multi-locus. Git Issue <I>. (#<I>) |
diff --git a/test/backend/chain_test.rb b/test/backend/chain_test.rb
index <HASH>..<HASH> 100644
--- a/test/backend/chain_test.rb
+++ b/test/backend/chain_test.rb
@@ -78,7 +78,7 @@ class I18nBackendChainTest < I18n::TestCase
"Bah"], I18n.t([:formats, :plural_2, :bah], :default => 'Bah')
end
- test "store_t... | [TYPO] `transfering` -> `transferring` |
diff --git a/cmd.go b/cmd.go
index <HASH>..<HASH> 100644
--- a/cmd.go
+++ b/cmd.go
@@ -691,6 +691,7 @@ func (cmd commandRetr) Execute(conn *Conn, param string) {
path := conn.buildPath(param)
defer func() {
conn.lastFilePos = 0
+ conn.appendData = false
}()
bytes, data, err := conn.driver.GetFile(path, conn... | Make sure we reset the append flag on RETR (#<I>)
Before this change "REST" followed by "RETR" would leave the append
flag set which means subsequent "STOR" commands append data when they
shouldn't. |
diff --git a/javascript/dashboard-dialogs.js b/javascript/dashboard-dialogs.js
index <HASH>..<HASH> 100644
--- a/javascript/dashboard-dialogs.js
+++ b/javascript/dashboard-dialogs.js
@@ -67,7 +67,12 @@ window.SS = window.SS || {}
Dialog: { open: dialog, buttons: buttons }
});
- $(document).on('click', "[data-di... | Prevent opening of dialog if shift key is held down. Allows other functionality to hook if that's the case |
diff --git a/src/layouts/CollectionLayout.js b/src/layouts/CollectionLayout.js
index <HASH>..<HASH> 100644
--- a/src/layouts/CollectionLayout.js
+++ b/src/layouts/CollectionLayout.js
@@ -70,6 +70,7 @@ define(function(require, exports, module) {
var getItemSize;
var lineLength;
var lineNodes =... | Fixed small glitch in collection-layout |
diff --git a/riak/tests/test_comparison.py b/riak/tests/test_comparison.py
index <HASH>..<HASH> 100644
--- a/riak/tests/test_comparison.py
+++ b/riak/tests/test_comparison.py
@@ -49,6 +49,15 @@ class RiakObjectComparisonTest(unittest.TestCase):
self.assertEqual(hash(a), hash(b), 'same object has different hash... | Issue #<I>: Add unit tests to invalid object key issue |
diff --git a/insights/specs/sos_archive.py b/insights/specs/sos_archive.py
index <HASH>..<HASH> 100644
--- a/insights/specs/sos_archive.py
+++ b/insights/specs/sos_archive.py
@@ -295,6 +295,7 @@ class SosSpecs(Specs):
systemctl_show_all_services = simple_file("sos_commands/systemd/systemctl_show_service_--all")
... | Updating sos_archive to parse file for GSS rule (#<I>)
adding systemd_analyze_blame = simple_file("insights_commands/systemd-analyze_blame") in sos_archive.py |
diff --git a/example_formatter.py b/example_formatter.py
index <HASH>..<HASH> 100644
--- a/example_formatter.py
+++ b/example_formatter.py
@@ -37,3 +37,6 @@ if __name__ == '__main__':
log.warn('Low on fuel')
log.error('No fuel. Trying to glide.')
log.critical('Glide attempt failed. About to crash.')
+
+ ... | Updated example_formatter.py to include the extra bits |
diff --git a/quack.rb b/quack.rb
index <HASH>..<HASH> 100644
--- a/quack.rb
+++ b/quack.rb
@@ -3,16 +3,18 @@ require 'uri'
require 'pry-debugger'
class TinyServer
- attr_reader :server
+ attr_reader :server, :port
attr_accessor :socket, :request_line
DEFAULT_PORT = 4444
def initialize(options = {})
-... | [UPDATE] notify user of port when starting server |
diff --git a/psqlextra/manager/__init__.py b/psqlextra/manager/__init__.py
index <HASH>..<HASH> 100644
--- a/psqlextra/manager/__init__.py
+++ b/psqlextra/manager/__init__.py
@@ -1,8 +1,8 @@
-from .manager import QuerySet, PostgresManager
+from .manager import PostgresQuerySet, PostgresManager
from .materialized_view ... | 'QuerySet' should be 'PostgresQuerySet' |
diff --git a/lib/string/roman.rb b/lib/string/roman.rb
index <HASH>..<HASH> 100644
--- a/lib/string/roman.rb
+++ b/lib/string/roman.rb
@@ -1,7 +1,7 @@
module BBLib
- # Converts any integer up to 1000 to a roman numeral string_a
+ # Converts any integer up to 1000 to a roman numeral
def self.to_roman num
... | Removed weird extra word in comment. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -23,6 +23,10 @@ setup(
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
'Topi... | Update PyPI classifiers and test requirements |
diff --git a/pyatv/support/http.py b/pyatv/support/http.py
index <HASH>..<HASH> 100644
--- a/pyatv/support/http.py
+++ b/pyatv/support/http.py
@@ -90,14 +90,21 @@ def parse_message(response: bytes) -> Tuple[Optional[HttpResponse], bytes]:
protocol, version, code, message = match.groups()
resp_headers = CaseIn... | http: Ignore type mypy cannot find
Relates to #<I> |
diff --git a/salt/config.py b/salt/config.py
index <HASH>..<HASH> 100644
--- a/salt/config.py
+++ b/salt/config.py
@@ -661,7 +661,7 @@ def get_id():
try:
with salt.utils.fopen('/etc/hostname') as hfl:
name = hfl.read().strip()
- if re.search('\s', name):
+ if re.search(r'\s', na... | Use raw string in regex
This quiets pylint, as it complains when a regex contains a backslash
and the string is not a raw string. |
diff --git a/bin/delete.js b/bin/delete.js
index <HASH>..<HASH> 100755
--- a/bin/delete.js
+++ b/bin/delete.js
@@ -18,6 +18,10 @@ var argv = optimist
demand: true,
alias: 'n'
})
+ .options('headless', {
+ describe: 'Do not prompt',
+ alias: 'l'
+ })
.argv;
if (argv.hel... | Apply headless option to cfn-delete. |
diff --git a/server/src/main/java/com/networknt/server/DefaultConfigLoader.java b/server/src/main/java/com/networknt/server/DefaultConfigLoader.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/com/networknt/server/DefaultConfigLoader.java
+++ b/server/src/main/java/com/networknt/server/DefaultConfigLoader.ja... | fixes #<I> remove a logging statement in the DefaultConfigLoader as the binary file will break the JSON logging (#<I>) |
diff --git a/lib/rubyonacid/factories/combination.rb b/lib/rubyonacid/factories/combination.rb
index <HASH>..<HASH> 100644
--- a/lib/rubyonacid/factories/combination.rb
+++ b/lib/rubyonacid/factories/combination.rb
@@ -69,6 +69,8 @@ class CombinationFactory < Factory
end
when WRAP
return value ... | CombinationFactory now raises exception when invalid constant assigned. |
diff --git a/dash/test.py b/dash/test.py
index <HASH>..<HASH> 100644
--- a/dash/test.py
+++ b/dash/test.py
@@ -58,8 +58,14 @@ class DashTest(TestCase):
func = getattr(self.client, method)
response = func(url, data, **extra)
+
if isinstance(response, JsonResponse):
- response.json... | Tweak to test class to support Python 3 |
diff --git a/indra/util/aws.py b/indra/util/aws.py
index <HASH>..<HASH> 100644
--- a/indra/util/aws.py
+++ b/indra/util/aws.py
@@ -11,12 +11,13 @@ def kill_all(job_queue, reason='None given'):
# Cancel jobs
for job_id in job_ids:
batch.cancel_job(jobId=job_id, reason=reason)
- for stat... | Kill runnable jobs in kill all |
diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/executor/DepthFirstTraverseStep.java b/core/src/main/java/com/orientechnologies/orient/core/sql/executor/DepthFirstTraverseStep.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/orient/core/sql/executor/DepthFirstTravers... | Fix depth first traverse step pretty print |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os
-version = '0.3.10'
+version = '0.3.11'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.txt')).read(... | Increase to version <I> due to TG-dev requiring it for ming support |
diff --git a/src/server/pfs/cmds/cmds.go b/src/server/pfs/cmds/cmds.go
index <HASH>..<HASH> 100644
--- a/src/server/pfs/cmds/cmds.go
+++ b/src/server/pfs/cmds/cmds.go
@@ -373,7 +373,7 @@ Files can be read from finished commits with get-file.`,
// try parsing the filename as a url, if it is one do a PutFileURL
if ... | Trim the / prefix for url puts. |
diff --git a/build.go b/build.go
index <HASH>..<HASH> 100644
--- a/build.go
+++ b/build.go
@@ -801,8 +801,9 @@ func getBranchSuffix() string {
}
branch = parts[len(parts)-1]
- if branch == "master" {
- // master builds are the default.
+ switch branch {
+ case "master", "release":
+ // these are not special
... | build: Builds from "release" branch are not branch builds |
diff --git a/create.go b/create.go
index <HASH>..<HASH> 100644
--- a/create.go
+++ b/create.go
@@ -1,6 +1,7 @@
package main
import (
+ "fmt"
"os"
"github.com/urfave/cli"
@@ -56,12 +57,11 @@ command(s) that get executed on start, edit the args parameter of the spec. See
return err
}
status, err := st... | create, run: amend final errors
As the error may contain anything, it may not be clear to a user that
the whole (create or run) operation failed. Amend the errors.
Also, change the code flow in create to match that of run, so we don't
have to add the fake "return nil" at the end. |
diff --git a/src/jquery.maskMoney.js b/src/jquery.maskMoney.js
index <HASH>..<HASH> 100644
--- a/src/jquery.maskMoney.js
+++ b/src/jquery.maskMoney.js
@@ -493,9 +493,15 @@
newValue = buildIntegerPart(integerPart, negative, settings);
if (settings.precision > 0) {
- decimalPart = onlyNumbe... | New Bug
Bug when dealing with float. |
diff --git a/Integration/AbstractEnhancerIntegration.php b/Integration/AbstractEnhancerIntegration.php
index <HASH>..<HASH> 100644
--- a/Integration/AbstractEnhancerIntegration.php
+++ b/Integration/AbstractEnhancerIntegration.php
@@ -317,7 +317,7 @@ abstract class AbstractEnhancerIntegration extends AbstractIntegratio... | Corrections for Ledger events. |
diff --git a/lib/graphql.rb b/lib/graphql.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql.rb
+++ b/lib/graphql.rb
@@ -22,7 +22,11 @@ module GraphQL
def self.parse(string, as: nil)
parser = as ? GraphQL::PARSER.send(as) : GraphQL::PARSER
tree = parser.parse(string)
- GraphQL::TRANSFORM.apply(tree)
+ ... | refactor(.parse) check for a transformation failure |
diff --git a/src/components/line-chart/line-chart.js b/src/components/line-chart/line-chart.js
index <HASH>..<HASH> 100644
--- a/src/components/line-chart/line-chart.js
+++ b/src/components/line-chart/line-chart.js
@@ -334,7 +334,8 @@ define([
})
.attr("dy", ".35em")
.... | Shorten name in case its too long |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -63,13 +63,6 @@ class build_ext(_build_ext):
self.discount_configure_opts = DEFAULT_DISCOUNT_CONFIGURE_OPTS
def build_extension(self, ext):
-#TODO: put all the build_extension_discount here since this is discou... | Updated setup.py file. |
diff --git a/lib/Loop/UvDriver.php b/lib/Loop/UvDriver.php
index <HASH>..<HASH> 100644
--- a/lib/Loop/UvDriver.php
+++ b/lib/Loop/UvDriver.php
@@ -14,7 +14,7 @@ class UvDriver extends Driver {
/** @var resource[] */
private $events = [];
- /** @var \Amp\Loop\Watcher[]|\Amp\Loop\Watcher[][] */
+ /** @v... | Invoke watcher callback if events is 0 or 4
4 is UV_DISCONNECT |
diff --git a/salt/crypt.py b/salt/crypt.py
index <HASH>..<HASH> 100644
--- a/salt/crypt.py
+++ b/salt/crypt.py
@@ -227,7 +227,7 @@ def sign_message(privkey_path, message, passphrase=None):
return key.sign(digest)
else:
signer = PKCS1_v1_5.new(key)
- return signer.sign(SHA.new(message))
+ ... | salt.crypt: Ensure message is encoded before signing
Conflicts:
- salt/crypt.py |
diff --git a/packages/core/parcel/src/cli.js b/packages/core/parcel/src/cli.js
index <HASH>..<HASH> 100755
--- a/packages/core/parcel/src/cli.js
+++ b/packages/core/parcel/src/cli.js
@@ -179,11 +179,15 @@ async function run(entries: Array<string>, command: any) {
}
let Parcel = require('@parcel/core').default;
... | fix: use require.resolve when resolving default config (#<I>) |
diff --git a/tests/test_io.py b/tests/test_io.py
index <HASH>..<HASH> 100644
--- a/tests/test_io.py
+++ b/tests/test_io.py
@@ -12,6 +12,8 @@ from auditok.io import (
AudioIOError,
AudioParameterError,
BufferAudioSource,
+ RawAudioSource,
+ WaveAudioSource,
check_audio_data,
_guess_audio_f... | Add tests for from_file with large_file=True |
diff --git a/src/java/com/threerings/whirled/spot/client/SpotSceneDirector.java b/src/java/com/threerings/whirled/spot/client/SpotSceneDirector.java
index <HASH>..<HASH> 100644
--- a/src/java/com/threerings/whirled/spot/client/SpotSceneDirector.java
+++ b/src/java/com/threerings/whirled/spot/client/SpotSceneDirector.ja... | Don't request to change locations if we're already there.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1 |
diff --git a/resolwe/flow/executors/docker/run.py b/resolwe/flow/executors/docker/run.py
index <HASH>..<HASH> 100644
--- a/resolwe/flow/executors/docker/run.py
+++ b/resolwe/flow/executors/docker/run.py
@@ -312,7 +312,7 @@ class FlowExecutor(LocalFlowExecutor):
environment["LISTENER_IP"] = "host.docker.int... | Auto-remove finished docker containers |
diff --git a/core/src/test/java/org/kohsuke/stapler/framework/io/LargeTextTest.java b/core/src/test/java/org/kohsuke/stapler/framework/io/LargeTextTest.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/org/kohsuke/stapler/framework/io/LargeTextTest.java
+++ b/core/src/test/java/org/kohsuke/stapler/framework/io/... | remove @Ignore that should not have been added |
diff --git a/views/js/qtiItem/core/Container.js b/views/js/qtiItem/core/Container.js
index <HASH>..<HASH> 100755
--- a/views/js/qtiItem/core/Container.js
+++ b/views/js/qtiItem/core/Container.js
@@ -156,7 +156,7 @@ define(['taoQtiItem/qtiItem/core/Element', 'lodash', 'jquery', 'taoQtiItem/qtiIt
if(this.e... | fixed issue : interaction removal does not remove its response
git-svn-id: <URL> |
diff --git a/lib/anyplayer/players/itunes_mac.rb b/lib/anyplayer/players/itunes_mac.rb
index <HASH>..<HASH> 100644
--- a/lib/anyplayer/players/itunes_mac.rb
+++ b/lib/anyplayer/players/itunes_mac.rb
@@ -1,4 +1,12 @@
class Anyplayer::ItunesMac < Anyplayer::Player
+ def play
+ itunes 'play'
+ end
+
+ def pause
+ ... | iTunes Mac now can play or pause independently |
diff --git a/garlic.rb b/garlic.rb
index <HASH>..<HASH> 100644
--- a/garlic.rb
+++ b/garlic.rb
@@ -24,7 +24,7 @@ garlic do
run do
cd "vendor/plugins/response_for" do
- sh "rake spec:rcov:verify"
+ sh "rake spec"
end
end
end | Dropping coverage verification from garlic as it's different across the different targets (because of BC code) |
diff --git a/epylint.py b/epylint.py
index <HASH>..<HASH> 100755
--- a/epylint.py
+++ b/epylint.py
@@ -58,7 +58,7 @@ def lint(filename):
parentPath = os.path.dirname(parentPath)
# Start pylint
- process = Popen("pylint -f parseable -r n --disable=C,R,I '%s'" %
+ process = Popen('pylint -f parseabl... | apply patch provided by vijayendra bapte on the python projects list for using epylint under windows environment |
diff --git a/lib/any.js b/lib/any.js
index <HASH>..<HASH> 100644
--- a/lib/any.js
+++ b/lib/any.js
@@ -182,7 +182,7 @@ class Collector {
if (this.one) {
// Shouldn’t happen, safeguards performance problems.
/* c8 ignore next */
- if (this.found) throw new Error('Cannot collect multiple nodes')
+... | Fix exception on selector list in `select` |
diff --git a/src/org/opencms/ade/contenteditor/shared/CmsContentDefinition.java b/src/org/opencms/ade/contenteditor/shared/CmsContentDefinition.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/ade/contenteditor/shared/CmsContentDefinition.java
+++ b/src/org/opencms/ade/contenteditor/shared/CmsContentDefinition.ja... | Fixing issue where nested value could not be read by path. |
diff --git a/structr-core/src/main/java/org/structr/core/entity/Principal.java b/structr-core/src/main/java/org/structr/core/entity/Principal.java
index <HASH>..<HASH> 100644
--- a/structr-core/src/main/java/org/structr/core/entity/Principal.java
+++ b/structr-core/src/main/java/org/structr/core/entity/Principal.java
@... | Removes uniqueness constraint on name property of class Principal. |
diff --git a/lib/vagrant-vcloudair/driver/meta.rb b/lib/vagrant-vcloudair/driver/meta.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant-vcloudair/driver/meta.rb
+++ b/lib/vagrant-vcloudair/driver/meta.rb
@@ -124,10 +124,11 @@ module VagrantPlugins
# Instantiate the proper version driver for vCloud Air
... | Add API version <I> to driver map |
diff --git a/lib/utils/pathRegex.js b/lib/utils/pathRegex.js
index <HASH>..<HASH> 100644
--- a/lib/utils/pathRegex.js
+++ b/lib/utils/pathRegex.js
@@ -34,7 +34,12 @@ class PathRegexp {
};
let m = this.regexp.exec(path);
- if (!m) return result;
+ if (!m) {
+ if (path... | Fix bug in case of empty param in url ex: /api//test for /api/:name/test :name could be empty. |
diff --git a/plugins/snmppinfo/class.snmppinfo.inc.php b/plugins/snmppinfo/class.snmppinfo.inc.php
index <HASH>..<HASH> 100644
--- a/plugins/snmppinfo/class.snmppinfo.inc.php
+++ b/plugins/snmppinfo/class.snmppinfo.inc.php
@@ -81,7 +81,9 @@ class SNMPPInfo extends PSI_Plugin
}
... | reduce retry for offline printer to reduce load time and avoid timeout |
diff --git a/openquake/commonlib/calc.py b/openquake/commonlib/calc.py
index <HASH>..<HASH> 100644
--- a/openquake/commonlib/calc.py
+++ b/openquake/commonlib/calc.py
@@ -218,10 +218,9 @@ class PmapGetter(object):
if len(self.weights) == 1: # one realization
return self.get(self.sids, 0, grp)
... | Fixed get_mean to dynamically recompute the mean [skip hazardlib] |
diff --git a/nhlib/gsim/chiou_youngs_2008.py b/nhlib/gsim/chiou_youngs_2008.py
index <HASH>..<HASH> 100644
--- a/nhlib/gsim/chiou_youngs_2008.py
+++ b/nhlib/gsim/chiou_youngs_2008.py
@@ -74,7 +74,7 @@ class ChiouYoungs2008(GMPE):
stddev_types, component_type):
"""
See :me... | gsim/chiou_youngs_<I> [doc]: fixed a typo in get_mean_and_stddevs() |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ def get_readme():
setup(
name="docx2html",
- version="0.0.10",
+ version="0.1.0",
description="docx (OOXML) to html converter",
author="Jason Ward",
author_email="jason.louard.ward@g... | Bumped to version <I> |
diff --git a/Controller/Widget/SimpleTextController.php b/Controller/Widget/SimpleTextController.php
index <HASH>..<HASH> 100644
--- a/Controller/Widget/SimpleTextController.php
+++ b/Controller/Widget/SimpleTextController.php
@@ -31,12 +31,15 @@ class SimpleTextController extends Controller
$form->bind($this->... | Fixed bug when submitting empty content at the first config of SimpleText widget |
diff --git a/ext/psych/extconf.rb b/ext/psych/extconf.rb
index <HASH>..<HASH> 100644
--- a/ext/psych/extconf.rb
+++ b/ext/psych/extconf.rb
@@ -7,7 +7,7 @@ require 'fileutils'
dir_config 'libyaml'
-if enable_config("bundled-libyaml", false) || !(find_header('yaml.h') && find_library('yaml', 'yaml_get_version'))
+if... | Added condition for macOS homebrew |
diff --git a/checkers/classes.py b/checkers/classes.py
index <HASH>..<HASH> 100644
--- a/checkers/classes.py
+++ b/checkers/classes.py
@@ -585,6 +585,8 @@ a metaclass class method.'}
return
slots = klass.slots()
+ if slots is None:
+ return
# If any... | Check the return value of slots, it can be None. |
diff --git a/src/main/java/io/vlingo/actors/testkit/TestEnvironment.java b/src/main/java/io/vlingo/actors/testkit/TestEnvironment.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/vlingo/actors/testkit/TestEnvironment.java
+++ b/src/main/java/io/vlingo/actors/testkit/TestEnvironment.java
@@ -15,12 +15,12 @@ impor... | Refactored to make current TestWorld ThreadLocal to enable parallel tests. |
diff --git a/lib/views/cpu-view.js b/lib/views/cpu-view.js
index <HASH>..<HASH> 100644
--- a/lib/views/cpu-view.js
+++ b/lib/views/cpu-view.js
@@ -43,7 +43,7 @@ class CpuView {
}
onEvent(data) {
- this.line.setLabel(` cpu utilization (${data.cpu.utilization}%) `);
+ this.line.setLabel(` cpu utilization ($... | Round cpu percentage to nearest decimal. |
diff --git a/src/com/google/javascript/jscomp/Compiler.java b/src/com/google/javascript/jscomp/Compiler.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/Compiler.java
+++ b/src/com/google/javascript/jscomp/Compiler.java
@@ -560,7 +560,7 @@ public class Compiler extends AbstractCompiler implements... | Make the Compiler's initBasedOnOptions() method public in order to allow non-standard Compiler flows to use the applyInputSourceMaps option.
-------------
Created by MOE: <URL> |
diff --git a/tests/Routing/RouteTest.php b/tests/Routing/RouteTest.php
index <HASH>..<HASH> 100644
--- a/tests/Routing/RouteTest.php
+++ b/tests/Routing/RouteTest.php
@@ -419,7 +419,7 @@ class RouteTest extends TestCase
$responseProphecy = $this->prophesize(ResponseInterface::class);
$callableResolver... | Rename test callable to make it clear that Callable:toCall is not expected to be called |
diff --git a/ezp/Persistence/Content/CreateStruct.php b/ezp/Persistence/Content/CreateStruct.php
index <HASH>..<HASH> 100644
--- a/ezp/Persistence/Content/CreateStruct.php
+++ b/ezp/Persistence/Content/CreateStruct.php
@@ -67,8 +67,7 @@ class CreateStruct extends ValueObject
public $remoteId;
/**
- * T... | PHPDoc: Sync doc from Content to CreateStruct |
diff --git a/lib/boom/platform.rb b/lib/boom/platform.rb
index <HASH>..<HASH> 100644
--- a/lib/boom/platform.rb
+++ b/lib/boom/platform.rb
@@ -75,10 +75,12 @@ module Boom
#
# Returns the String value of the Item.
def copy(item)
+ value = item.value.gsub("\'","\\'")
unless windows?
-... | Percent signs should be escaped for `printf`
This is relevant to non-Windows environments. Closes #<I>. |
diff --git a/pysparkling/sql/casts.py b/pysparkling/sql/casts.py
index <HASH>..<HASH> 100644
--- a/pysparkling/sql/casts.py
+++ b/pysparkling/sql/casts.py
@@ -6,7 +6,8 @@ from functools import lru_cache
import pytz
from dateutil.tz import tzlocal
-from pysparkling.sql.types import TimestampType, DateType, StringTyp... | Implement a cast of nested types |
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/attribute_methods.rb
+++ b/activerecord/lib/active_record/attribute_methods.rb
@@ -8,7 +8,7 @@ module ActiveRecord
include ActiveMo... | initialize generated modules on inclusion and on inheritence |
diff --git a/lib/connection.js b/lib/connection.js
index <HASH>..<HASH> 100644
--- a/lib/connection.js
+++ b/lib/connection.js
@@ -44,7 +44,7 @@ function escapeCQL(val)
return 'NULL';
if (Buffer.isBuffer(val))
return val.toString('hex');
- if (isFinite(val))
+ if (typeof val == 'number' || ... | `escapeCQL`: Avoid serializing numeric strings as numbers. |
diff --git a/render/form/Foreignkey.php b/render/form/Foreignkey.php
index <HASH>..<HASH> 100644
--- a/render/form/Foreignkey.php
+++ b/render/form/Foreignkey.php
@@ -49,7 +49,7 @@ class Foreignkey extends Text
foreach ($parts as &$part) {
$part = ucfirst($part);
}
- $class = $name... | ehm, that should be an underscore, not a slash |
diff --git a/src/test/java/com/github/chen0040/gp/treegp/program/TerminalUnitTest.java b/src/test/java/com/github/chen0040/gp/treegp/program/TerminalUnitTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/github/chen0040/gp/treegp/program/TerminalUnitTest.java
+++ b/src/test/java/com/github/chen0040/gp/treegp... | Increase the code coverage for the terminal class |
diff --git a/pkg/datapath/linux/linux_defaults/linux_defaults.go b/pkg/datapath/linux/linux_defaults/linux_defaults.go
index <HASH>..<HASH> 100644
--- a/pkg/datapath/linux/linux_defaults/linux_defaults.go
+++ b/pkg/datapath/linux/linux_defaults/linux_defaults.go
@@ -23,6 +23,12 @@ const (
// RouteTableIPSec is the de... | linux_defaults: Add RouteTableInterfacesOffset
[ upstream commit e<I>b; forward-ported from <I> tree ]
This new value is the table ID for the per-ENI routing tables in the new
ENI datapath. Upcoming commits will use this value and implement the new
datapath.
See <URL> |
diff --git a/salt/modules/boto_vpc.py b/salt/modules/boto_vpc.py
index <HASH>..<HASH> 100644
--- a/salt/modules/boto_vpc.py
+++ b/salt/modules/boto_vpc.py
@@ -1421,11 +1421,11 @@ def delete_nat_gateway(nat_gateway_id,
# wait for deleting nat gateway to finish prior to attempt to release elastic ips
if... | fixed a bug in retry mechanism. |
diff --git a/.buildkite/pipeline.py b/.buildkite/pipeline.py
index <HASH>..<HASH> 100644
--- a/.buildkite/pipeline.py
+++ b/.buildkite/pipeline.py
@@ -18,7 +18,7 @@ TOX_MAP = {
}
# https://github.com/dagster-io/dagster/issues/1662
-DO_COVERAGE = True
+DO_COVERAGE = False
def wait_step(): | Turn off coveralls
Summary: It's down
Test Plan: BK
Reviewers: alangenfeld
Reviewed By: alangenfeld
Differential Revision: <URL> |
diff --git a/soupsieve/__meta__.py b/soupsieve/__meta__.py
index <HASH>..<HASH> 100644
--- a/soupsieve/__meta__.py
+++ b/soupsieve/__meta__.py
@@ -186,5 +186,5 @@ def parse_version(ver, pre=False):
return Version(major, minor, micro, release, pre, post, dev)
-__version_info__ = Version(1, 0, 2, "final")
+__ver... | Use dev version for dev branch |
diff --git a/server/src/main/java/org/uiautomation/ios/wkrdp/model/RemoteWebNativeBackedElement.java b/server/src/main/java/org/uiautomation/ios/wkrdp/model/RemoteWebNativeBackedElement.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/org/uiautomation/ios/wkrdp/model/RemoteWebNativeBackedElement.java
+++ b/s... | fix script error with extra paren left in |
diff --git a/underscore.util.operators.js b/underscore.util.operators.js
index <HASH>..<HASH> 100644
--- a/underscore.util.operators.js
+++ b/underscore.util.operators.js
@@ -29,14 +29,38 @@
mod: function(x, y) {
return x % y;
},
- inc: function(x, y) {
+ inc: function(x) {
return ++x;
... | added equality operators, some may be redundant since underscore supports deep equality. |
diff --git a/gntp/shim.py b/gntp/shim.py
index <HASH>..<HASH> 100644
--- a/gntp/shim.py
+++ b/gntp/shim.py
@@ -1,3 +1,10 @@
+"""
+Python2.5 and Python3.3 compatibility shim
+
+Heavily inspirted by the "six" library.
+https://pypi.python.org/pypi/six
+"""
+
import sys
PY3 = sys.version_info[0] == 3
@@ -13,9 +20,7 @@... | Cleanup and docs for our shim |
diff --git a/findbugsTestCases/src/java/npe/ErrorInFinallyClause.java b/findbugsTestCases/src/java/npe/ErrorInFinallyClause.java
index <HASH>..<HASH> 100644
--- a/findbugsTestCases/src/java/npe/ErrorInFinallyClause.java
+++ b/findbugsTestCases/src/java/npe/ErrorInFinallyClause.java
@@ -21,7 +21,7 @@ public class ErrorI... | actually, we should report medium priority NP warnings for both of these
git-svn-id: <URL> |
diff --git a/lib/ApiRequest.js b/lib/ApiRequest.js
index <HASH>..<HASH> 100644
--- a/lib/ApiRequest.js
+++ b/lib/ApiRequest.js
@@ -8,7 +8,7 @@ var rest = require('restling');
var nconf = require('nconf');
var Q = require('q');
-var API = 'https://api.uber.com/v1/';
+var API = 'https://sandbox-api.uber.com/v1/';
va... | Explicitly using application/json for POSTs. |
diff --git a/lib/rspec/requestable-examples.rb b/lib/rspec/requestable-examples.rb
index <HASH>..<HASH> 100644
--- a/lib/rspec/requestable-examples.rb
+++ b/lib/rspec/requestable-examples.rb
@@ -12,6 +12,10 @@ module RSpec
end
end
+ def examples_that_can_be_requested
+ @examples_that_can_be_re... | Adding #verify_requested_examples! which can be run at the end of any shared_examples block that uses requested examples. This will report any requested examples that do not exist (perhaps from typos or wording differences). |
diff --git a/components/auth/auth.js b/components/auth/auth.js
index <HASH>..<HASH> 100644
--- a/components/auth/auth.js
+++ b/components/auth/auth.js
@@ -569,12 +569,12 @@ export default class Auth {
* if user is logged in or log her in otherwise
*/
async login() {
- await this._checkBackendsStatusesIfEn... | RG-<I> RG-<I> check backend statuses only if logging in without window login enabled: otherwise it causes blocked popup |
diff --git a/lib/terraforming/cli.rb b/lib/terraforming/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/terraforming/cli.rb
+++ b/lib/terraforming/cli.rb
@@ -43,6 +43,11 @@ module Terraforming
execute(Terraforming::Resource::IAMGroup, options)
end
+ desc "iamgm", "IAM Group Membership"
+ def iamgm
+ ... | Define CLI command iamgm for IAM Group Membership |
diff --git a/lib/active_admin/views/components/active_admin_form.rb b/lib/active_admin/views/components/active_admin_form.rb
index <HASH>..<HASH> 100644
--- a/lib/active_admin/views/components/active_admin_form.rb
+++ b/lib/active_admin/views/components/active_admin_form.rb
@@ -78,7 +78,7 @@ module ActiveAdmin
e... | Delegate to `helpers` instead of relying on `method_missing` |
diff --git a/js/browser.js b/js/browser.js
index <HASH>..<HASH> 100755
--- a/js/browser.js
+++ b/js/browser.js
@@ -728,7 +728,7 @@ var igv = (function (igv) {
start = r[searchConfig.startField] - searchConfig.coords;
end = r[searchConfig.endField];
... | bug in call to "handleSearchResult" -- affects gtex |
diff --git a/source/test/common/test_data_ports.py b/source/test/common/test_data_ports.py
index <HASH>..<HASH> 100644
--- a/source/test/common/test_data_ports.py
+++ b/source/test/common/test_data_ports.py
@@ -87,6 +87,9 @@ def test_unique_port_names():
state.add_output_data_port("in", "int", 0)
state.add_in... | Extend tests to assert correct port count |
diff --git a/torchvision/transforms.py b/torchvision/transforms.py
index <HASH>..<HASH> 100644
--- a/torchvision/transforms.py
+++ b/torchvision/transforms.py
@@ -204,7 +204,7 @@ class CenterCrop(object):
Args:
size (sequence or int): Desired output size of the crop. If size is an
- int inste... | Fix docs for CenterCrop and RandomCrop (#<I>)
Wrong order of dimensions In transforms.CenterCrop and transforms.RandomCrop:
Documentation says it should be (w, h), but it actually is (h, w).
Fixing docs to match the code |
diff --git a/test/test_string.rb b/test/test_string.rb
index <HASH>..<HASH> 100644
--- a/test/test_string.rb
+++ b/test/test_string.rb
@@ -136,4 +136,9 @@ XML
CFPropertyList::List.parsers = orig_parsers
end
+ def test_data_string_is_blob
+ assert_equal parsed_binary('string_binary_data').class, CFProperty... | added a test for #<I>/#<I> |
diff --git a/src/Condition/In.php b/src/Condition/In.php
index <HASH>..<HASH> 100644
--- a/src/Condition/In.php
+++ b/src/Condition/In.php
@@ -43,7 +43,7 @@ class In extends AbstractSpecification
*
* @return string
*/
- protected function generateParameterName(QueryBuilder $queryBuilder)
+ priva... | method should be private because it is overriden |
diff --git a/tests/src/main/java/com/hazelcast/simulator/tests/icache/CreateDestroyICacheTest.java b/tests/src/main/java/com/hazelcast/simulator/tests/icache/CreateDestroyICacheTest.java
index <HASH>..<HASH> 100644
--- a/tests/src/main/java/com/hazelcast/simulator/tests/icache/CreateDestroyICacheTest.java
+++ b/tests/s... | Removed unused import in CreateDestroyICacheTest. |
diff --git a/types/options.go b/types/options.go
index <HASH>..<HASH> 100644
--- a/types/options.go
+++ b/types/options.go
@@ -230,7 +230,11 @@ func getRootlessStorageOpts(rootlessUID int, systemOpts StoreOptions) (StoreOpti
opts.GraphDriverName = overlayDriver
}
- if opts.GraphDriverName == overlayDriver {
+ //... | options: copy all options on explicit config file
when the configuration file was explicitly specified, all the graph
drivers options are copied, not only the ones allowed for rootless.
Closes: <URL> |
diff --git a/poseidon/tests/test_api.py b/poseidon/tests/test_api.py
index <HASH>..<HASH> 100644
--- a/poseidon/tests/test_api.py
+++ b/poseidon/tests/test_api.py
@@ -46,8 +46,9 @@ def test_regions(client):
assert hasattr(client, 'regions')
assert isinstance(client.regions, P.Regions)
regions = client.re... | TST: update unit test for new region NYC3 |
diff --git a/app/Statistics/Service/CountryService.php b/app/Statistics/Service/CountryService.php
index <HASH>..<HASH> 100644
--- a/app/Statistics/Service/CountryService.php
+++ b/app/Statistics/Service/CountryService.php
@@ -555,6 +555,7 @@ class CountryService
public function iso3166(): array
{
re... | Fix: GBR shown as England on distribution charts |
diff --git a/bolt/org_config.go b/bolt/org_config.go
index <HASH>..<HASH> 100644
--- a/bolt/org_config.go
+++ b/bolt/org_config.go
@@ -67,15 +67,15 @@ func (s *OrganizationConfigStore) FindOrCreate(ctx context.Context, orgID string
// Update replaces the OrganizationConfig in the store
func (s *OrganizationConfigSt... | Move nil config guard to helper update method |
diff --git a/src/main/java/com/github/uderscore/_.java b/src/main/java/com/github/uderscore/_.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/github/uderscore/_.java
+++ b/src/main/java/com/github/uderscore/_.java
@@ -414,8 +414,7 @@ public final class _ {
}
public static <E> List<E> shuffle(final ... | Added test for the shuffle |
diff --git a/deprecated.go b/deprecated.go
index <HASH>..<HASH> 100644
--- a/deprecated.go
+++ b/deprecated.go
@@ -15,7 +15,7 @@ import (
func (c *Context) BindWith(obj interface{}, b binding.Binding) error {
log.Println(`BindWith(\"interface{}, binding.Binding\") error is going to
be deprecated, please check issu... | fix typo (#<I>) |
diff --git a/lib/chore/cli.rb b/lib/chore/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/chore/cli.rb
+++ b/lib/chore/cli.rb
@@ -89,7 +89,7 @@ module Chore
register_option 'aws_secret_key', '--aws-secret-key KEY', 'Valid AWS Secret Key'
- register_option 'num_workers', '--concurrency NUM', 'Number of work... | Make sure we convert this to an integer, otherwise things don't work so
good. |
diff --git a/raja.js b/raja.js
index <HASH>..<HASH> 100644
--- a/raja.js
+++ b/raja.js
@@ -27,8 +27,9 @@ Raja.prototype.updateLink = function(resource, mtime) {
link = document.createElement('link');
link.rel = "resource";
link.href = resource.url;
- document.head.appendChild(link);
- document.head.appendChi... | Keep a newline after a <link> |
diff --git a/webapps/ui/cockpit/plugins/base/app/views/processInstance/jobRetryBulkDialog.js b/webapps/ui/cockpit/plugins/base/app/views/processInstance/jobRetryBulkDialog.js
index <HASH>..<HASH> 100644
--- a/webapps/ui/cockpit/plugins/base/app/views/processInstance/jobRetryBulkDialog.js
+++ b/webapps/ui/cockpit/plugin... | fix(cockpit): show error message in "Increment Number of Retries" modal dialog
related to CAM-<I> |
diff --git a/xwiki-commons-core/xwiki-commons-velocity/src/main/java/org/xwiki/velocity/tools/JSONTool.java b/xwiki-commons-core/xwiki-commons-velocity/src/main/java/org/xwiki/velocity/tools/JSONTool.java
index <HASH>..<HASH> 100644
--- a/xwiki-commons-core/xwiki-commons-velocity/src/main/java/org/xwiki/velocity/tools/... | [Misc] Fix error-reporting bug thanks to LGTM |
diff --git a/src/Behat/Gherkin/Dumper.php b/src/Behat/Gherkin/Dumper.php
index <HASH>..<HASH> 100644
--- a/src/Behat/Gherkin/Dumper.php
+++ b/src/Behat/Gherkin/Dumper.php
@@ -13,7 +13,7 @@ use Behat\Gherkin\Exception\Exception,
/*
* This file is part of the Behat Gherkin.
- * (c) 2011 Konstantin Kudryashov <ever.z... | copyrights, indent... |
diff --git a/client/js/util.js b/client/js/util.js
index <HASH>..<HASH> 100644
--- a/client/js/util.js
+++ b/client/js/util.js
@@ -1,4 +1,4 @@
-/*globals window, navigator, document, FormData, File, HTMLInputElement, XMLHttpRequest, Blob*/
+/*globals window, navigator, document, FormData, File, HTMLInputElement, XMLHtt... | fix(util.js): fix qq-each path detection for IE7 |
diff --git a/fusesoc/simulator/verilator.py b/fusesoc/simulator/verilator.py
index <HASH>..<HASH> 100644
--- a/fusesoc/simulator/verilator.py
+++ b/fusesoc/simulator/verilator.py
@@ -106,7 +106,7 @@ class Verilator(Simulator):
stdout = open(_s.format('out'),'w')).run()
def run(self, a... | verilator: Check for cli_parser in tool_options before using it |
diff --git a/saucelabs.karma.conf.js b/saucelabs.karma.conf.js
index <HASH>..<HASH> 100644
--- a/saucelabs.karma.conf.js
+++ b/saucelabs.karma.conf.js
@@ -65,7 +65,7 @@ module.exports = (config) => {
'libs/png_support/zlib.js',
'tests/utils/compare.js',
{
- pattern: 'tests/**/*.spec.js',
+ ... | Update saucelabs.karma.conf.js |
diff --git a/src/Support/helpers.php b/src/Support/helpers.php
index <HASH>..<HASH> 100644
--- a/src/Support/helpers.php
+++ b/src/Support/helpers.php
@@ -266,12 +266,12 @@ if (!function_exists('input')) {
function input($name = null, $default = null)
{
if ($name === null)
- return Input::... | Use Request facade instead of Input facade |
diff --git a/cgi-bin/speed.py b/cgi-bin/speed.py
index <HASH>..<HASH> 100644
--- a/cgi-bin/speed.py
+++ b/cgi-bin/speed.py
@@ -1,15 +1,17 @@
#!c:/python33/python.exe
# -*- coding: utf-8 -*-
-
+import os
import cgi
import time
print('Content-type: text/html\n\n')
-
-fs = cgi.FieldStorage()
-src = fs['src'].va... | Add test on REMOTE_ADDR in speed.py |
diff --git a/src/rejester/run.py b/src/rejester/run.py
index <HASH>..<HASH> 100644
--- a/src/rejester/run.py
+++ b/src/rejester/run.py
@@ -33,6 +33,8 @@ def getch():
capture one char from stdin for responding to Y/N prompt
'''
fd = sys.stdin.fileno()
+ if not os.isatty(fd):
+ return sys.stdin.r... | 'rejester delete' doesn't crash if run noninteractively |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.