diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/cherrypy/lib/static.py b/cherrypy/lib/static.py
index <HASH>..<HASH> 100644
--- a/cherrypy/lib/static.py
+++ b/cherrypy/lib/static.py
@@ -148,6 +148,10 @@ def serve_file(path, contentType=None, disposition=None, name=None):
response.body = bodyfile
return response.body
+def serve_download(p... | New static.serve_download function (sugar for serve_file with application/x-download attachment). |
diff --git a/sources/scalac/symtab/Symbol.java b/sources/scalac/symtab/Symbol.java
index <HASH>..<HASH> 100644
--- a/sources/scalac/symtab/Symbol.java
+++ b/sources/scalac/symtab/Symbol.java
@@ -1143,7 +1143,7 @@ public class ClassSymbol extends TypeSymbol {
other.constructor.setInfo(constructor.info());
other.mang... | - bug fix: cloneSymbol in ClassSymbol correctly...
- bug fix: cloneSymbol in ClassSymbol correctly sets thisSym for the new
symbol |
diff --git a/addon/components/bs-switch.js b/addon/components/bs-switch.js
index <HASH>..<HASH> 100755
--- a/addon/components/bs-switch.js
+++ b/addon/components/bs-switch.js
@@ -24,7 +24,7 @@ var bsSwitchComponent = Ember.Component.extend({
var that = this;
// Ensure bootstrap-switch is loaded...
- Embe... | Fix the issue of Ember <I> compatibility. |
diff --git a/src/application/application.js b/src/application/application.js
index <HASH>..<HASH> 100644
--- a/src/application/application.js
+++ b/src/application/application.js
@@ -95,7 +95,7 @@ class Application {
*/
reset() {
// point to the current active stage "default" camera
- var cur... | use `get()` for better code clarity |
diff --git a/lib/telegram_bot/version.rb b/lib/telegram_bot/version.rb
index <HASH>..<HASH> 100644
--- a/lib/telegram_bot/version.rb
+++ b/lib/telegram_bot/version.rb
@@ -1,3 +1,3 @@
module TelegramBot
- VERSION = "0.0.1"
+ VERSION = "0.0.2"
end | bumped version to <I> |
diff --git a/gohll.go b/gohll.go
index <HASH>..<HASH> 100644
--- a/gohll.go
+++ b/gohll.go
@@ -117,17 +117,18 @@ func NewHLL(p uint8) (*HLL, error) {
// Hasher function
func (h *HLL) Add(value string) {
hash := h.Hasher(value)
- switch h.format {
- case NORMAL:
- h.addNormal(hash)
- case SPARSE:
- h.addSparse(has... | Added AddHash method to resolve #7 |
diff --git a/spec/functional/mongoid/safety_spec.rb b/spec/functional/mongoid/safety_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/functional/mongoid/safety_spec.rb
+++ b/spec/functional/mongoid/safety_spec.rb
@@ -137,6 +137,10 @@ describe Mongoid::Safety do
Mongoid.persist_in_safe_mode = true
end
... | Don't polute other tests with persist_in_safe_mode setting. |
diff --git a/client/my-sites/themes/index.node.js b/client/my-sites/themes/index.node.js
index <HASH>..<HASH> 100644
--- a/client/my-sites/themes/index.node.js
+++ b/client/my-sites/themes/index.node.js
@@ -12,5 +12,6 @@ export default function( router ) {
if ( config.isEnabled( 'manage/themes' ) ) {
router( '/des... | Themes: Add catch-all route to avoid <I> for single-site view |
diff --git a/topydo/lib/PrettyPrinterFilter.py b/topydo/lib/PrettyPrinterFilter.py
index <HASH>..<HASH> 100644
--- a/topydo/lib/PrettyPrinterFilter.py
+++ b/topydo/lib/PrettyPrinterFilter.py
@@ -71,7 +71,7 @@ class PrettyPrinterColorFilter(PrettyPrinterFilter):
p_todo_str)
# tags
- ... | Highlight tags when the value is one character long.
Tags with a value of length 1 were not highlighted with the metadata color.
Compare:
<URL> |
diff --git a/picoweb/__init__.py b/picoweb/__init__.py
index <HASH>..<HASH> 100644
--- a/picoweb/__init__.py
+++ b/picoweb/__init__.py
@@ -17,11 +17,12 @@ def get_mime_type(fname):
return "text/plain"
def sendstream(writer, f):
+ buf = bytearray(64)
while True:
- buf = f.read(512)
- if not... | picoweb: sendstream: Use readinto/3-arg awrite.
Also, optimize buffer size for low-heap systems like esp<I> (need to
make adaptive in the future). |
diff --git a/src/DateTime.php b/src/DateTime.php
index <HASH>..<HASH> 100644
--- a/src/DateTime.php
+++ b/src/DateTime.php
@@ -44,7 +44,13 @@ class DateTime extends DT implements JsonSerializable
switch (gettype($time)) {
case 'object':
if ($time instanceof \DateTimeInterface) {
- parent::__construct($t... | Fixed constructor handling of DateTime object. |
diff --git a/test/rql_test/drivers/driver.js b/test/rql_test/drivers/driver.js
index <HASH>..<HASH> 100644
--- a/test/rql_test/drivers/driver.js
+++ b/test/rql_test/drivers/driver.js
@@ -543,7 +543,7 @@ function err_regex(err_name, err_pat, err_frames) {
err_frames, err_name + "(\""+err_pat+"\")");
}
-funct... | Make function not have the same name as its parameter. |
diff --git a/pygubudesigner/previewer.py b/pygubudesigner/previewer.py
index <HASH>..<HASH> 100644
--- a/pygubudesigner/previewer.py
+++ b/pygubudesigner/previewer.py
@@ -157,8 +157,8 @@ class Preview:
self.canvas.itemconfigure(self.shapes['window'], window=canvas_window)
canvas_window.update_idletask... | Set correct width and height of widget preview. |
diff --git a/src/components/UrlRule.php b/src/components/UrlRule.php
index <HASH>..<HASH> 100644
--- a/src/components/UrlRule.php
+++ b/src/components/UrlRule.php
@@ -42,9 +42,10 @@ class UrlRule extends \luya\base\UrlRule
$composition = new \luya\collection\PrefixComposition();
$composition->set($com... | added the yii app language during luya urlrule "boot". |
diff --git a/eac.rb b/eac.rb
index <HASH>..<HASH> 100644
--- a/eac.rb
+++ b/eac.rb
@@ -6,9 +6,8 @@ module EAC
class << self
def parse(content)
xml_doc = Nokogiri::XML(content)
- namespaces = xml_doc.collect_namespaces
entity_types = xml_doc.xpath("//ns:cpfDescription/ns:identity/ns:entityType... | explicit namespace, since it is referred to in the schema |
diff --git a/pyinfra/cli.py b/pyinfra/cli.py
index <HASH>..<HASH> 100644
--- a/pyinfra/cli.py
+++ b/pyinfra/cli.py
@@ -142,7 +142,7 @@ def setup_logging(log_level):
def print_facts_list():
- print(json.dumps(list(get_fact_names()), indent=4))
+ print(json.dumps(list(get_fact_names()), indent=4, default=json_... | Only accept data attributes which are lowercase and don't start `_`. |
diff --git a/Console/Command/AssetCompressShell.php b/Console/Command/AssetCompressShell.php
index <HASH>..<HASH> 100644
--- a/Console/Command/AssetCompressShell.php
+++ b/Console/Command/AssetCompressShell.php
@@ -113,11 +113,25 @@ class AssetCompressShell extends AppShell {
$this->err('No ' . $ext . ' build files... | Have console tool clear new temporary cache files too.
The clear command should clear all the temp files too. Its only polite
really. |
diff --git a/src/Internal/ErrorHandler.php b/src/Internal/ErrorHandler.php
index <HASH>..<HASH> 100644
--- a/src/Internal/ErrorHandler.php
+++ b/src/Internal/ErrorHandler.php
@@ -99,7 +99,7 @@ class ErrorHandler
}
$addContent('Message', $message, true, true);
$addContent('Simple t... | Added full trace to the detailed error log. |
diff --git a/src/com/opera/core/systems/scope/services/ums/OperaExec.java b/src/com/opera/core/systems/scope/services/ums/OperaExec.java
index <HASH>..<HASH> 100644
--- a/src/com/opera/core/systems/scope/services/ums/OperaExec.java
+++ b/src/com/opera/core/systems/scope/services/ums/OperaExec.java
@@ -231,17 +231,9 @@ ... | Remove check for pressing already pressed key.
There are no adverse effects, isn't required by the Se test suite, and
will make some future changes easier. |
diff --git a/js/southxchange.js b/js/southxchange.js
index <HASH>..<HASH> 100644
--- a/js/southxchange.js
+++ b/js/southxchange.js
@@ -8,7 +8,6 @@ let { ExchangeError } = require ('./base/errors');
// ---------------------------------------------------------------------------
module.exports = class southxchange ex... | southxchange: linting |
diff --git a/h2o-py/h2o/group_by.py b/h2o-py/h2o/group_by.py
index <HASH>..<HASH> 100644
--- a/h2o-py/h2o/group_by.py
+++ b/h2o-py/h2o/group_by.py
@@ -2,7 +2,7 @@ from __future__ import print_function
from __future__ import absolute_import
from past.builtins import basestring
from .expr import ExprNode
-from . impor... | stupid relative imports don't work in py2 |
diff --git a/lib/espresso-runner.js b/lib/espresso-runner.js
index <HASH>..<HASH> 100644
--- a/lib/espresso-runner.js
+++ b/lib/espresso-runner.js
@@ -143,11 +143,18 @@ class EspressoRunner {
async buildNewModServer () {
let buildConfiguration = {};
if (this.espressoBuildConfig) {
- logger.info(`Using... | feat: Make it possible to provide a build config directly from capabilities (#<I>) |
diff --git a/pkg/hubble/relay/pool/manager.go b/pkg/hubble/relay/pool/manager.go
index <HASH>..<HASH> 100644
--- a/pkg/hubble/relay/pool/manager.go
+++ b/pkg/hubble/relay/pool/manager.go
@@ -200,7 +200,6 @@ func (m *Manager) manageConnections() {
}
m.mu.Unlock()
for _, p := range retry {
- m.disconnect(p... | hubble/relay: do not call disconnect before connection attempt
This is not necessary as the connect function closes pre-existing
connections. |
diff --git a/jest/base.config.js b/jest/base.config.js
index <HASH>..<HASH> 100644
--- a/jest/base.config.js
+++ b/jest/base.config.js
@@ -1,6 +1,9 @@
const path = require('path')
module.exports = {
+ collectCoverage: true,
+ coverageDirectory: '<rootDir>/coverage',
+ coverageReporters: ['lcov'],
modulePathIg... | feat: test coverage output; just because |
diff --git a/daemon/daemon.go b/daemon/daemon.go
index <HASH>..<HASH> 100644
--- a/daemon/daemon.go
+++ b/daemon/daemon.go
@@ -520,8 +520,6 @@ func (d *Daemon) compileBase() error {
args[initArgMode] = mode
args[initArgDevice] = option.Config.Device
-
- args = append(args, option.Config.Device)
} else {
i... | daemon: Remove unnecessary and unsafe arg append for init.sh
The append was adding Device beyond initArgMax which was not used
by init.sh |
diff --git a/devil/devil/android/device_utils.py b/devil/devil/android/device_utils.py
index <HASH>..<HASH> 100644
--- a/devil/devil/android/device_utils.py
+++ b/devil/devil/android/device_utils.py
@@ -3045,7 +3045,11 @@ class DeviceUtils(object):
Raises:
CommandTimeoutError on timeout.
"""
- retur... | Filter empty strings out of the list returned by GetSupportedABIs.
Bug: chromium:<I>
Change-Id: Ie<I>b<I>c<I>c8c<I>b<I>dbbf7
Reviewed-on: <URL> |
diff --git a/src/java/net/jpountz/lz4/LZ4FrameOutputStream.java b/src/java/net/jpountz/lz4/LZ4FrameOutputStream.java
index <HASH>..<HASH> 100644
--- a/src/java/net/jpountz/lz4/LZ4FrameOutputStream.java
+++ b/src/java/net/jpountz/lz4/LZ4FrameOutputStream.java
@@ -43,8 +43,8 @@ import java.util.Locale;
*/
public class... | Change the accessibility of INTEGER_BYTES, LONG_BYTES, and FrameInfo to package, because external classes do not need them |
diff --git a/biodata-tools/src/main/java/org/opencb/biodata/tools/variant/converter/VariantContextToVariantConverter.java b/biodata-tools/src/main/java/org/opencb/biodata/tools/variant/converter/VariantContextToVariantConverter.java
index <HASH>..<HASH> 100644
--- a/biodata-tools/src/main/java/org/opencb/biodata/tools/... | tools: Bugfix while parsing INFO column.
Htsjdk adds brackets to fields that are read as lists when they are
obtained with getAttributeAsString. |
diff --git a/test/has_scope_test.rb b/test/has_scope_test.rb
index <HASH>..<HASH> 100644
--- a/test/has_scope_test.rb
+++ b/test/has_scope_test.rb
@@ -44,6 +44,16 @@ class TreesController < ApplicationController
alias :edit :show
protected
+ # Silence deprecations in the test suite, except for the actual dep... | Silence deprecations temporarily in the test suite
They are very noisy in all other methods that don't need it. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -5,15 +5,13 @@
from setuptools import setup, find_packages
-with open('README.md') as readme_file:
+with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
... | changed the Readme back to .rst |
diff --git a/spyderlib/utils/external/path.py b/spyderlib/utils/external/path.py
index <HASH>..<HASH> 100644
--- a/spyderlib/utils/external/path.py
+++ b/spyderlib/utils/external/path.py
@@ -62,7 +62,6 @@ _base = str
_getcwd = os.getcwd
try:
if os.path.supports_unicode_filenames:
- import locale
_bas... | External path library: Remove unneeded import which was causing a crash after last update |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -38,9 +38,11 @@ def delete_generated_files test_case, example=nil
Dir.chdir(dir) do
[
"#{test_case}.c", "#{test_case}.so", "Makefile",
- "extconf.rb" , "#{test... | allow support for .bundle files and .dll files teardown in specs |
diff --git a/spec/actv/asset_spec.rb b/spec/actv/asset_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/actv/asset_spec.rb
+++ b/spec/actv/asset_spec.rb
@@ -1,5 +1,4 @@
require 'spec_helper'
-require 'pry'
describe ACTV::Asset do | Removes pry from asset spec |
diff --git a/spec/functional/chef/source/git_spec.rb b/spec/functional/chef/source/git_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/functional/chef/source/git_spec.rb
+++ b/spec/functional/chef/source/git_spec.rb
@@ -263,11 +263,11 @@ module Librarian
end
context "if the path option is right" ... | Use double-quoted string literals by convention. |
diff --git a/tests/test_bot_get.py b/tests/test_bot_get.py
index <HASH>..<HASH> 100644
--- a/tests/test_bot_get.py
+++ b/tests/test_bot_get.py
@@ -16,7 +16,8 @@ from .test_bot import TestBot
from .test_variables import (TEST_CAPTION_ITEM, TEST_COMMENT_ITEM,
TEST_PHOTO_ITEM, TEST_SEARCH_US... | Added TEST_MEDIA_LIKER |
diff --git a/lib/twitter4j4r/client.rb b/lib/twitter4j4r/client.rb
index <HASH>..<HASH> 100644
--- a/lib/twitter4j4r/client.rb
+++ b/lib/twitter4j4r/client.rb
@@ -1,5 +1,3 @@
-require 'jruby/core_ext'
-
require 'jar/twitter4j-core-2.2.6.jar'
require 'jar/twitter4j-stream-2.2.6.jar'
require 'jar/twitter4j-async-2.2.6... | Move the become_java! call to listener.rb |
diff --git a/src/suggestions.js b/src/suggestions.js
index <HASH>..<HASH> 100644
--- a/src/suggestions.js
+++ b/src/suggestions.js
@@ -19,7 +19,7 @@ function makeSuggestion(queryName, element, content, {variant, name}) {
let warning = ''
const queryOptions = {}
const queryArgs = [
- queryName === 'Role' || ... | chore: Update suggestions.js (#<I>) |
diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -81,7 +81,6 @@ describe("phantom html to pdf", function () {
fs.unlinkSync(filePath);
} catch (e) {
}
- ;
}
}
... | Adding empty endline to test file |
diff --git a/src/you_get/processor/ffmpeg.py b/src/you_get/processor/ffmpeg.py
index <HASH>..<HASH> 100644
--- a/src/you_get/processor/ffmpeg.py
+++ b/src/you_get/processor/ffmpeg.py
@@ -18,11 +18,7 @@ def get_usable_ffmpeg(cmd):
except:
return None
-get_usable_ffmpeg_result = get_usable_ffmpeg('ffmpeg'... | set FFMPEG and FFMPEG_VERSION gracefully |
diff --git a/examples/s3/presignedpostpolicy.go b/examples/s3/presignedpostpolicy.go
index <HASH>..<HASH> 100644
--- a/examples/s3/presignedpostpolicy.go
+++ b/examples/s3/presignedpostpolicy.go
@@ -51,5 +51,4 @@ func main() {
fmt.Printf("-F %s=%s ", k, v)
}
fmt.Printf("-F file=@/etc/passwd ")
- fmt.Printf(confi... | Update presignedpostpolicy.go |
diff --git a/public/suite.js b/public/suite.js
index <HASH>..<HASH> 100644
--- a/public/suite.js
+++ b/public/suite.js
@@ -120,6 +120,7 @@
out.sourceURL = err.sourceURL
out.message = err.message
out.assertion = err.assertion
+ out.elapsed = err.elapsed
} else {
out = {pass:true}
... | making require.js-based errors a little bit more parse-able |
diff --git a/package/cloudshell/cp/vcenter/common/utilites/savers/linked_clone_artifact_saver.py b/package/cloudshell/cp/vcenter/common/utilites/savers/linked_clone_artifact_saver.py
index <HASH>..<HASH> 100644
--- a/package/cloudshell/cp/vcenter/common/utilites/savers/linked_clone_artifact_saver.py
+++ b/package/cloud... | dont fail delete saved if folder not found |
diff --git a/Controller/Toolkit.php b/Controller/Toolkit.php
index <HASH>..<HASH> 100644
--- a/Controller/Toolkit.php
+++ b/Controller/Toolkit.php
@@ -256,7 +256,8 @@ class sb_Controller_Toolkit extends sb_Controller{
$protocol = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443 ? 'https' : 'http';... | only defines sbBase if not defined already |
diff --git a/lib/datalib.php b/lib/datalib.php
index <HASH>..<HASH> 100644
--- a/lib/datalib.php
+++ b/lib/datalib.php
@@ -771,13 +771,6 @@ function get_records_sql($sql) {
foreach ($records as $key => $record) {
$objects[$key] = (object) $record;
}
- // log perform... | Backed out unrelated block from last commit |
diff --git a/nexl-client/public/util-functions/nexl-ui.js b/nexl-client/public/util-functions/nexl-ui.js
index <HASH>..<HASH> 100644
--- a/nexl-client/public/util-functions/nexl-ui.js
+++ b/nexl-client/public/util-functions/nexl-ui.js
@@ -82,7 +82,7 @@ var module = (function (module) {
function putDataIntoOutputAre... | - output become formatted in nexl-client; |
diff --git a/payment/src/main/java/org/killbill/billing/payment/invoice/InvoicePaymentControlPluginApi.java b/payment/src/main/java/org/killbill/billing/payment/invoice/InvoicePaymentControlPluginApi.java
index <HASH>..<HASH> 100644
--- a/payment/src/main/java/org/killbill/billing/payment/invoice/InvoicePaymentControlP... | payment: Optimize priorCall to avoid unnecessary logic and limit # invoice queries. See #<I> |
diff --git a/libs/verysimple/Phreeze/CriteriaFilter.php b/libs/verysimple/Phreeze/CriteriaFilter.php
index <HASH>..<HASH> 100644
--- a/libs/verysimple/Phreeze/CriteriaFilter.php
+++ b/libs/verysimple/Phreeze/CriteriaFilter.php
@@ -51,7 +51,7 @@ class CriteriaFilter
foreach ($propertyNames as $propName)
{
$dbf... | criteria filter now sql escapes column/property names |
diff --git a/lib/commands/touch.js b/lib/commands/touch.js
index <HASH>..<HASH> 100644
--- a/lib/commands/touch.js
+++ b/lib/commands/touch.js
@@ -27,7 +27,7 @@ commands.performActions = async function (actions) {
}
} : {}));
this.log.debug(`Preprocessed actions: ${JSON.stringify(preprocessedActions, nul... | fix: wrong parameter in performActions (#<I>)
ActionChains in selenium have a PointerInput whose kind(pointerType) is
"mouse".
We should change this to "touch" for android devices to work properly.
(I confired "mouse" doesn't work and "touch" works.)
There is code for converting "mouse" to "touch" ("preprocessedAc... |
diff --git a/pyramid_multiauth/__init__.py b/pyramid_multiauth/__init__.py
index <HASH>..<HASH> 100644
--- a/pyramid_multiauth/__init__.py
+++ b/pyramid_multiauth/__init__.py
@@ -261,9 +261,19 @@ def policy_factory_from_module(config, module):
# Find the most recent IAuthenticationPolicy action, and grab
# ou... | Compatability with Pyramid <I>.
Pyramid <I> changes the API of the internal ActionState object, which
pyramid_multiauth uses for deep introspection. This patch tries the
<I> API first and falls back to the previous API if that fails. |
diff --git a/lib/actions/field-trip.js b/lib/actions/field-trip.js
index <HASH>..<HASH> 100644
--- a/lib/actions/field-trip.js
+++ b/lib/actions/field-trip.js
@@ -234,7 +234,7 @@ export function addFieldTripNote(request, note, intl) {
}
/**
- * Updates a particular field/set of fields of a given field trip request.... | refactor(actions/field-trip): Tweak comment. |
diff --git a/src/main/java/net/fortuna/ical4j/validate/DefaultCalendarValidatorFactory.java b/src/main/java/net/fortuna/ical4j/validate/DefaultCalendarValidatorFactory.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/fortuna/ical4j/validate/DefaultCalendarValidatorFactory.java
+++ b/src/main/java/net/fortuna/ic... | Extract constant rules in DefaultCalendarValidatorFactory
Reduces memory footprint & garbage collection.
gh-<I> |
diff --git a/elasticsearch-extensions/lib/elasticsearch/extensions/ansi/response.rb b/elasticsearch-extensions/lib/elasticsearch/extensions/ansi/response.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-extensions/lib/elasticsearch/extensions/ansi/response.rb
+++ b/elasticsearch-extensions/lib/elasticsearch/extension... | [EXT] Added, that ANSI extension uses the `awesome_print` gem for "unknown" handlers |
diff --git a/distutils/tests/test_msvccompiler.py b/distutils/tests/test_msvccompiler.py
index <HASH>..<HASH> 100644
--- a/distutils/tests/test_msvccompiler.py
+++ b/distutils/tests/test_msvccompiler.py
@@ -110,6 +110,26 @@ class TestSpawn(unittest.TestCase):
thread.join()
assert all(threads)
+ ... | Add test capturing failed expectation. Ref pypa/distutils#<I>. |
diff --git a/patreon/schemas/goal_spec.py b/patreon/schemas/goal_spec.py
index <HASH>..<HASH> 100644
--- a/patreon/schemas/goal_spec.py
+++ b/patreon/schemas/goal_spec.py
@@ -26,9 +26,7 @@ def test_schema_attributes_are_properly_formatted(attributes):
def test_schema_relationships_are_properly_formatted(relationsh... | Modify goal spec to check for empty list since that's what we have. |
diff --git a/lib/stripe/util.rb b/lib/stripe/util.rb
index <HASH>..<HASH> 100644
--- a/lib/stripe/util.rb
+++ b/lib/stripe/util.rb
@@ -124,7 +124,7 @@ module Stripe
when NilClass
{}
when String
- {api_key: opts}
+ {:api_key => opts}
when Hash
opts.clone
else | Fix use of <I>-style hashes |
diff --git a/models/classes/class.TestsService.php b/models/classes/class.TestsService.php
index <HASH>..<HASH> 100644
--- a/models/classes/class.TestsService.php
+++ b/models/classes/class.TestsService.php
@@ -91,7 +91,7 @@ class taoTests_models_classes_TestsService
* @author Joel Bout, <joel@taotesting.com>
... | TAO-<I> - The GetRootclass renamed to GetRootClass |
diff --git a/src/frontend/org/voltdb/export/ExportGeneration.java b/src/frontend/org/voltdb/export/ExportGeneration.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/export/ExportGeneration.java
+++ b/src/frontend/org/voltdb/export/ExportGeneration.java
@@ -115,6 +115,7 @@ public class ExportGeneration imp... | ENG-<I>-<I>: Add comments |
diff --git a/jsoncmd.go b/jsoncmd.go
index <HASH>..<HASH> 100644
--- a/jsoncmd.go
+++ b/jsoncmd.go
@@ -5960,7 +5960,7 @@ func (cmd *SignMessageCmd) UnmarshalJSON(b []byte) error {
// RawTxInput models the data needed for a raw tx input.
type RawTxInput struct {
Txid string `json:"txid"`
- Vout int ... | Change RawTxInput.Vout to uint<I> as well.
This was missed by the previous commit. |
diff --git a/molgenis-data/src/main/java/org/molgenis/data/support/QueryImpl.java b/molgenis-data/src/main/java/org/molgenis/data/support/QueryImpl.java
index <HASH>..<HASH> 100644
--- a/molgenis-data/src/main/java/org/molgenis/data/support/QueryImpl.java
+++ b/molgenis-data/src/main/java/org/molgenis/data/support/Quer... | [REFACTOR] Make QueryImpl EQ, IN and query methods generic. |
diff --git a/pkg_resources/extern/__init__.py b/pkg_resources/extern/__init__.py
index <HASH>..<HASH> 100644
--- a/pkg_resources/extern/__init__.py
+++ b/pkg_resources/extern/__init__.py
@@ -29,7 +29,10 @@ class VendorImporter:
for prefix in self.search_path:
try:
__import__(prefi... | Based on experimentation, the canonical module name needs to be in sys.modules on Python prior to <I>, but must be omitted on Python <I> and later.
--HG--
branch : feature/issue-<I> |
diff --git a/source/org/jasig/portal/security/md5passwd.java b/source/org/jasig/portal/security/md5passwd.java
index <HASH>..<HASH> 100644
--- a/source/org/jasig/portal/security/md5passwd.java
+++ b/source/org/jasig/portal/security/md5passwd.java
@@ -4,7 +4,7 @@
* Redistribution and use in source and binary forms, wi... | Made some minor adjustments so that md5passwd can be run from Ant.
git-svn-id: <URL> |
diff --git a/lib/beaker-vagrant/version.rb b/lib/beaker-vagrant/version.rb
index <HASH>..<HASH> 100644
--- a/lib/beaker-vagrant/version.rb
+++ b/lib/beaker-vagrant/version.rb
@@ -1,3 +1,3 @@
module BeakerVagrant
- VERSION = '0.6.4'
+ VERSION = '0.6.5'
end | (GEM) update beaker-vagrant version to <I> |
diff --git a/app/controllers/effective/regions_controller.rb b/app/controllers/effective/regions_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/effective/regions_controller.rb
+++ b/app/controllers/effective/regions_controller.rb
@@ -4,6 +4,8 @@ module Effective
layout false
before_filter :... | skip_log_page_views if EffectiveLogging is installed. Version <I> |
diff --git a/packages/lingui-react/src/I18nProvider.js b/packages/lingui-react/src/I18nProvider.js
index <HASH>..<HASH> 100644
--- a/packages/lingui-react/src/I18nProvider.js
+++ b/packages/lingui-react/src/I18nProvider.js
@@ -28,9 +28,13 @@ class I18nManager {
development?: Object,
i18n?: I18n
}) {
- t... | fix: Load messages after dev data are setup |
diff --git a/raiden/transfer/mediated_transfer/initiator.py b/raiden/transfer/mediated_transfer/initiator.py
index <HASH>..<HASH> 100644
--- a/raiden/transfer/mediated_transfer/initiator.py
+++ b/raiden/transfer/mediated_transfer/initiator.py
@@ -273,7 +273,7 @@ def send_lockedtransfer(
# amount, as a guarantee to... | Fix fee calculation in `send_lockedtransfer` |
diff --git a/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb b/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb
+++ b/app/controllers/katello/concern... | Fixes #<I> - Global Registration fails when host not found (#<I>)
Fix for case, when the host is already registered by
subscription-manager, but does not exists in Foreman. |
diff --git a/src/Composer/Installer/LibraryInstaller.php b/src/Composer/Installer/LibraryInstaller.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Installer/LibraryInstaller.php
+++ b/src/Composer/Installer/LibraryInstaller.php
@@ -268,7 +268,7 @@ class LibraryInstaller implements InstallerInterface
}
... | Ensure the bin directory exists before checking empty
Line <I> has similar logic so avoided doing the check withiin `isDirEmpty()` |
diff --git a/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php b/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php
index <HASH>..<HASH> 100644
--- a/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php
+++ b/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php
@@ -94,7 ... | DDC-<I> - renaming test case for clarity |
diff --git a/lib/array_logic/version.rb b/lib/array_logic/version.rb
index <HASH>..<HASH> 100644
--- a/lib/array_logic/version.rb
+++ b/lib/array_logic/version.rb
@@ -1,3 +1,3 @@
module ArrayLogic
- VERSION = "0.0.6"
+ VERSION = "0.1.0"
end | Moved to beta version <I> |
diff --git a/src/geo/leaflet/leaflet.js b/src/geo/leaflet/leaflet.js
index <HASH>..<HASH> 100644
--- a/src/geo/leaflet/leaflet.js
+++ b/src/geo/leaflet/leaflet.js
@@ -271,7 +271,14 @@
},
invalidateSize: function() {
- this.map_leaflet.invalidateSize({ pan: false});
+ // there is a race condition i... | fixed problem resizing leaflet layers CDB-<I> |
diff --git a/lxd/events/events.go b/lxd/events/events.go
index <HASH>..<HASH> 100644
--- a/lxd/events/events.go
+++ b/lxd/events/events.go
@@ -46,13 +46,13 @@ func (s *Server) AddListener(projectName string, allProjects bool, connection *w
listenerCommon: listenerCommon{
Conn: connection,
messageType... | lxd/events/events: Server |
diff --git a/canvas_renderer.js b/canvas_renderer.js
index <HASH>..<HASH> 100644
--- a/canvas_renderer.js
+++ b/canvas_renderer.js
@@ -12,6 +12,9 @@ CanvasRenderer.prototype.init = function CanvasRendererInit ()
this.selection_info.setAttribute('class', 'label');
this.selection_info.style.display = 'none';
... | fix canvas renderer to work with locally scaled (0-<I>) tiles |
diff --git a/sigar_windows.go b/sigar_windows.go
index <HASH>..<HASH> 100644
--- a/sigar_windows.go
+++ b/sigar_windows.go
@@ -181,7 +181,7 @@ func (fs *FileSystemUsage) Get(path string) error {
return fmt.Errorf("FileSystemUsage (%s): %s", path, err)
}
- m := uint64(SectorsPerCluster * BytesPerSector)
+ m := ui... | windows should return disk stats in KB not bytes
- matches linux behavior
[#<I>] |
diff --git a/lavalink/__init__.py b/lavalink/__init__.py
index <HASH>..<HASH> 100644
--- a/lavalink/__init__.py
+++ b/lavalink/__init__.py
@@ -11,4 +11,4 @@ from .enums import NodeState, PlayerState, TrackEndReason, LavalinkEvents
from .rest_api import Track
from . import utils
-__version__ = "0.7.0"
+__version__ =... | Fix a `TypeError` on incomplete state dict (#<I>) |
diff --git a/benchmarks/index.js b/benchmarks/index.js
index <HASH>..<HASH> 100644
--- a/benchmarks/index.js
+++ b/benchmarks/index.js
@@ -234,7 +234,7 @@ function startRelay(type) {
'--benchRelayPort', String(self.ports.relayServerPort),
'--traceRelayPort', String(self.ports.relayTraceServerPort),
... | multi_bench: do not set multiple instances for trace server |
diff --git a/functional/mock_tests.js b/functional/mock_tests.js
index <HASH>..<HASH> 100644
--- a/functional/mock_tests.js
+++ b/functional/mock_tests.js
@@ -6,6 +6,7 @@ var co = require('co'),
exports['Should correctly perform a simple server connection using mock'] = {
metadata: {
requires: {
+ generat... | Added test support to handle generators test exclusion when runtime does not support them |
diff --git a/config.go b/config.go
index <HASH>..<HASH> 100644
--- a/config.go
+++ b/config.go
@@ -56,7 +56,7 @@ func (b *ggrBrowsers) find(browser, version string, platform string, excludedHos
platform = b.DefaultPlatform
}
for _, v := range b.Versions {
- if strings.HasPrefix(v.Number, version) && str... | Fixed issue with not matched version if XML platform is empty |
diff --git a/module/__init__.py b/module/__init__.py
index <HASH>..<HASH> 100644
--- a/module/__init__.py
+++ b/module/__init__.py
@@ -489,8 +489,8 @@ class Connection(object):
buf = Unpacker(e)
return event(buf)
- @ensure_connected
def send_request(self, flags, xcb_parts, xcb_req):
+ ... | Don't use the decorator to wrap send_request |
diff --git a/packages/core/types/index.js b/packages/core/types/index.js
index <HASH>..<HASH> 100644
--- a/packages/core/types/index.js
+++ b/packages/core/types/index.js
@@ -1600,11 +1600,11 @@ export type Optimizer<ConfigType> = {|
*/
export type Compressor = {|
compress({|
- stream: stream$Readable,
+ st... | Use imported Readable flow type instead of global (#<I>) |
diff --git a/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java b/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java
index <HASH>..<HASH> 100644
--- a/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java
+++ b/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java
@@ -4... | Remove unused variables in LocalTachyonMaster |
diff --git a/lib/modules/core/index.js b/lib/modules/core/index.js
index <HASH>..<HASH> 100644
--- a/lib/modules/core/index.js
+++ b/lib/modules/core/index.js
@@ -61,6 +61,10 @@ Archiver.prototype._normalizeSource = function(source) {
return source;
};
+Archiver.prototype._onModuleError = function(err) {
+ this.... | core: catch module errors and bubble them up the chain. |
diff --git a/inputrules.js b/inputrules.js
index <HASH>..<HASH> 100644
--- a/inputrules.js
+++ b/inputrules.js
@@ -94,13 +94,13 @@ class InputRules {
function getContext(doc, pos) {
let parent = doc.path(pos.path)
- let isPlain = parent.type.plainText
+ let isCode = parent.type.isCode
let textBefore = ""
... | Don't test for code style by name when deciding whether to apply input rules |
diff --git a/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBus.java b/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBus.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBus.java
+++ b/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBu... | uniquely name each msg bus dispatcher thread |
diff --git a/termbox_inputfield.go b/termbox_inputfield.go
index <HASH>..<HASH> 100644
--- a/termbox_inputfield.go
+++ b/termbox_inputfield.go
@@ -141,7 +141,7 @@ func (i *InputField) HandleEvent(event termbox.Event) bool {
}
} else if event.Key == termbox.KeyCtrlU {
// Ctrl+U Clears the Input (before the curso... | Fix Ctrl+U Behavior (Delete line before cursor) |
diff --git a/spec/controller/catch_all_spec.rb b/spec/controller/catch_all_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/controller/catch_all_spec.rb
+++ b/spec/controller/catch_all_spec.rb
@@ -94,6 +94,23 @@ describe "Stealth::Controller::CatchAll" do
expect($redis.get(controller.current_session.session_key)).... | Release the locks after running the catch_all |
diff --git a/benchexec/tools/symbiotic3.py b/benchexec/tools/symbiotic3.py
index <HASH>..<HASH> 100644
--- a/benchexec/tools/symbiotic3.py
+++ b/benchexec/tools/symbiotic3.py
@@ -82,13 +82,13 @@ class Tool(benchexec.tools.template.BaseTool):
return result.RESULT_TRUE_PROP
elif line == 'UNKNOWN':... | symbiotic3.py: fix parsing of result
we can have some more info after the result
(which acts like a garbagge in this case),
so check only for the beginning of the string |
diff --git a/py/nupic/support/configuration_base.py b/py/nupic/support/configuration_base.py
index <HASH>..<HASH> 100644
--- a/py/nupic/support/configuration_base.py
+++ b/py/nupic/support/configuration_base.py
@@ -389,11 +389,13 @@ class Configuration(object):
configVar = os.environ['NTA_CONF_DIR']
#... | Rearrange configuration defaults to match unit tests. |
diff --git a/src/stratum/stratum-messages.js b/src/stratum/stratum-messages.js
index <HASH>..<HASH> 100644
--- a/src/stratum/stratum-messages.js
+++ b/src/stratum/stratum-messages.js
@@ -248,3 +248,22 @@ export function broadcastTx (
onFail
}
}
+
+export function fetchEstimateFee (
+ blocksToBeIncludedIn: str... | added fetchEstimateFee to get fallback fees |
diff --git a/pybib/formatters.py b/pybib/formatters.py
index <HASH>..<HASH> 100644
--- a/pybib/formatters.py
+++ b/pybib/formatters.py
@@ -34,7 +34,10 @@ def get_common_parts(r):
"""Gets citation parts which are common to all types of citation"""
def format_title(title):
- return title[0]
+ tr... | Ensure that title absence is handled gracefully |
diff --git a/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php b/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php
index <HASH>..<HASH> 100644
--- a/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php
+++ b/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php
@@ -2,7 +2,7 ... | Updated class name in test as it was causing fatal error due to case sensitivity |
diff --git a/lib/art-decomp/fsm.rb b/lib/art-decomp/fsm.rb
index <HASH>..<HASH> 100644
--- a/lib/art-decomp/fsm.rb
+++ b/lib/art-decomp/fsm.rb
@@ -41,12 +41,11 @@ module ArtDecomp class FSM
end
def to_kiss
- ins = @inputs.transpose
- outs = @outputs.transpose
st = @state.map { |e| e == DontCa... | refactor FSM#to_kiss |
diff --git a/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/scoping/XbaseScopeProvider.java b/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/scoping/XbaseScopeProvider.java
index <HASH>..<HASH> 100644
--- a/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/scoping/XbaseScopeProvider.... | [xbase] Extended constructor call scope |
diff --git a/kafka/client.py b/kafka/client.py
index <HASH>..<HASH> 100644
--- a/kafka/client.py
+++ b/kafka/client.py
@@ -404,7 +404,7 @@ class SimpleClient(object):
return [responses[tp] for tp in original_ordering]
def __repr__(self):
- return '<KafkaClient client_id=%s>' % (self.client_id)
+ ... | Update string representation of SimpleClient |
diff --git a/src/preloadjs/LoadQueue.js b/src/preloadjs/LoadQueue.js
index <HASH>..<HASH> 100644
--- a/src/preloadjs/LoadQueue.js
+++ b/src/preloadjs/LoadQueue.js
@@ -790,6 +790,13 @@ this.createjs = this.createjs || {};
* object will contain that value as a property.
*/
+ /**
+ * Although it extends {{#crossL... | Documentation: Updated LoadQueue.initialize event to show it is not dispatched (thanks @marvin) |
diff --git a/src/base/base_object.js b/src/base/base_object.js
index <HASH>..<HASH> 100644
--- a/src/base/base_object.js
+++ b/src/base/base_object.js
@@ -2,21 +2,22 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-var _ = require('underscore');
-var extend... | base object: change to es6 syntax |
diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -463,7 +463,7 @@ func (me *Client) connectionLoop(t *torrent, c *connection) error {
err = errors.New("received unexpected bitfield")
break
}
- c.PeerPieces = msg.Bitfield[:len(t.NumPieces())]
+ c.PeerPie... | Trivial fix for one of the last commits |
diff --git a/lib/rest-core/client.rb b/lib/rest-core/client.rb
index <HASH>..<HASH> 100644
--- a/lib/rest-core/client.rb
+++ b/lib/rest-core/client.rb
@@ -60,8 +60,8 @@ module RestCore::Client
end
def inspect
- "#<struct #{self.class.name} #{attributes.map{ |k, v|
- "#{k}=#{v.inspect}" }.join(', ')}>"
+... | client.rb: fix inspect if there's no fields at all |
diff --git a/csp.py b/csp.py
index <HASH>..<HASH> 100644
--- a/csp.py
+++ b/csp.py
@@ -106,8 +106,8 @@ class CSP(search.Problem):
var = find_if(lambda v: v not in assignment, self.vars)
result = []
for val in self.domains[var]:
- if self.nconflicts(self, var, val, a... | Fixed a bug pylint pointed out in unused code. Still untested. |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -62,6 +62,15 @@ class PublicationServer {
}
/**
+ * Broadcast a message to all connected clients.
+ *
+ * @param {Object} msg The message to send to all connected clients.
+ */
+ broadcast(msg)... | Add ability to broadcast messages to all clients |
diff --git a/src/Utility/Rsync.php b/src/Utility/Rsync.php
index <HASH>..<HASH> 100644
--- a/src/Utility/Rsync.php
+++ b/src/Utility/Rsync.php
@@ -32,6 +32,7 @@ class Rsync
* Start rsync process.
*
* @param string|string[] $source
+ * @phpstan-param array{flags?: string, options?: array, timeout?:... | upload(): add more precise phpdocs (#<I>)
* upload(): add more precise phpdocs
* Update Rsync.php
* Update Rsync.php
* Update functions.php |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.