diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/simuvex/storage/paged_memory.py b/simuvex/storage/paged_memory.py
index <HASH>..<HASH> 100644
--- a/simuvex/storage/paged_memory.py
+++ b/simuvex/storage/paged_memory.py
@@ -117,7 +117,7 @@ class Page(object):
self._storage[end] = last_mo
else:
# we need to find all t... | only fill in holes when it makes sense |
diff --git a/graylog2-web-interface/src/views/stores/SearchStore.js b/graylog2-web-interface/src/views/stores/SearchStore.js
index <HASH>..<HASH> 100644
--- a/graylog2-web-interface/src/views/stores/SearchStore.js
+++ b/graylog2-web-interface/src/views/stores/SearchStore.js
@@ -111,7 +111,7 @@ export const SearchStore ... | Actually check if we can cancel the promise before. |
diff --git a/contribs/gmf/src/directives/filterselector.js b/contribs/gmf/src/directives/filterselector.js
index <HASH>..<HASH> 100644
--- a/contribs/gmf/src/directives/filterselector.js
+++ b/contribs/gmf/src/directives/filterselector.js
@@ -1,4 +1,3 @@
-goog.provide('gmf.FilterselectorController');
goog.provide('gmf... | Filter - Remove filterselector controller's goog.require |
diff --git a/core/src/main/java/io/undertow/Undertow.java b/core/src/main/java/io/undertow/Undertow.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/undertow/Undertow.java
+++ b/core/src/main/java/io/undertow/Undertow.java
@@ -263,7 +263,12 @@ public final class Undertow {
* Only shutdown the work... | UNDERTOW-<I> Undertow does not shut down immediately on calling .stop() |
diff --git a/data/node.js b/data/node.js
index <HASH>..<HASH> 100644
--- a/data/node.js
+++ b/data/node.js
@@ -24,6 +24,8 @@ function Node( properties ) {
this.properties = _.extend({}, this.getDefaultProperties(), properties);
this.properties.type = this.constructor.static.name;
this.properties.id = this.prop... | Added a didInitialize hook for Nodes. |
diff --git a/SwatDB/SwatDBDataObject.php b/SwatDB/SwatDBDataObject.php
index <HASH>..<HASH> 100644
--- a/SwatDB/SwatDBDataObject.php
+++ b/SwatDB/SwatDBDataObject.php
@@ -53,6 +53,7 @@ class SwatDBDataObject extends SwatObject implements Serializable
protected $id_field = null;
// }}}
+
// {{{ public function ... | - serializing/serialization
- public before protected
svn commit r<I> |
diff --git a/src/FacebookServiceProvider.php b/src/FacebookServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/FacebookServiceProvider.php
+++ b/src/FacebookServiceProvider.php
@@ -43,7 +43,7 @@ class FacebookServiceProvider extends ServiceProvider
{
$source = realpath(__DIR__.'/../config/facebook.p... | Added extra check before registering publish command |
diff --git a/test/test.load.js b/test/test.load.js
index <HASH>..<HASH> 100644
--- a/test/test.load.js
+++ b/test/test.load.js
@@ -37,7 +37,7 @@ describe(".load([callback])", function () {
// blow away the stack trace. Hack for Mocha:
// https://github.com/visionmedia/mocha/issues/502
- beforeEach(function(don... | trivial - fixing linting errors in loading test |
diff --git a/lib/appsignal/cli/install.rb b/lib/appsignal/cli/install.rb
index <HASH>..<HASH> 100644
--- a/lib/appsignal/cli/install.rb
+++ b/lib/appsignal/cli/install.rb
@@ -85,7 +85,7 @@ module Appsignal
puts 'Installing for Sinatra'
config[:name] = required_input(' Enter application name: ')
... | Add development to environments for yml file
This makes this onboarding easier for people testing their first
requests in development mode. It also follows the Rails defaults. |
diff --git a/spyder/app/tests/test_mainwindow.py b/spyder/app/tests/test_mainwindow.py
index <HASH>..<HASH> 100644
--- a/spyder/app/tests/test_mainwindow.py
+++ b/spyder/app/tests/test_mainwindow.py
@@ -212,7 +212,7 @@ def test_run_cython_code(main_window, qtbot):
@flaky(max_runs=3)
-@pytest.mark.skipif(os.name ==... | Testing: Skip test_open_notebooks_from_project_explorer because it's timing out |
diff --git a/dist/zect.js b/dist/zect.js
index <HASH>..<HASH> 100644
--- a/dist/zect.js
+++ b/dist/zect.js
@@ -1,5 +1,5 @@
/**
-* Zect v1.0.4
+* Zect v1.0.5
* (c) 2015 guankaishe
* Released under the MIT License.
*/
diff --git a/dist/zect.min.js b/dist/zect.min.js
index <HASH>..<HASH> 100644
--- a/dist/zect.min.js
... | version is corrected to <I> |
diff --git a/src/core/Engine.js b/src/core/Engine.js
index <HASH>..<HASH> 100644
--- a/src/core/Engine.js
+++ b/src/core/Engine.js
@@ -286,6 +286,9 @@ var Engine = {};
* @param {vector} gravity
*/
var _bodiesApplyGravity = function(bodies, gravity) {
+ if (gravity.x === 0 && gravity.y === 0) {
+... | don't calculate gravity force if there is no actual gravity |
diff --git a/allaccess/models.py b/allaccess/models.py
index <HASH>..<HASH> 100644
--- a/allaccess/models.py
+++ b/allaccess/models.py
@@ -22,10 +22,10 @@ class Provider(models.Model):
"Configuration for OAuth provider."
name = models.CharField(max_length=50, unique=True)
- request_token_url = models.URL... | Changed Provider model to accept Microsoft Live urls |
diff --git a/visidata/path.py b/visidata/path.py
index <HASH>..<HASH> 100644
--- a/visidata/path.py
+++ b/visidata/path.py
@@ -20,6 +20,8 @@ def vstat(path, force=False):
def filesize(path):
if hasattr(path, 'filesize') and path.filesize is not None:
return path.filesize
+ if path.is_url():
+ r... | [path-] filesize of url is 0 |
diff --git a/voltdb/tests/conftest.py b/voltdb/tests/conftest.py
index <HASH>..<HASH> 100644
--- a/voltdb/tests/conftest.py
+++ b/voltdb/tests/conftest.py
@@ -46,7 +46,7 @@ def dd_environment(instance):
else:
e2e_metadata = {}
- with docker_run(compose_file, conditions=conditions, env_vars=env_vars, ... | Add attempts to voltdb environment (#<I>) |
diff --git a/lib/Teepee.js b/lib/Teepee.js
index <HASH>..<HASH> 100644
--- a/lib/Teepee.js
+++ b/lib/Teepee.js
@@ -485,12 +485,11 @@ Teepee.prototype.request = function (options, cb) {
currentRequest.end(body);
}
- var requestTimeoutId;
if (typeof timeout === 'number') {
... | Timeout handling: Rely exclusively on the request object emitting a 'timeout' event, and don't use window.setTimeout. |
diff --git a/google-cloud-storage/samples/storage_create_bucket_turbo_replication.rb b/google-cloud-storage/samples/storage_create_bucket_turbo_replication.rb
index <HASH>..<HASH> 100644
--- a/google-cloud-storage/samples/storage_create_bucket_turbo_replication.rb
+++ b/google-cloud-storage/samples/storage_create_bucke... | sample(google-cloud-storage): Update storage_create_bucket_turbo_replication.rb (#<I>) |
diff --git a/source/application/controllers/admin/vendor_main.php b/source/application/controllers/admin/vendor_main.php
index <HASH>..<HASH> 100644
--- a/source/application/controllers/admin/vendor_main.php
+++ b/source/application/controllers/admin/vendor_main.php
@@ -139,9 +139,9 @@ class Vendor_Main extends oxAdmin... | Fix checkstyle warnings of "Type NotAllowed" - Inline control structures are not allowed |
diff --git a/src/js/components/forms/inputs/SimpleInput.js b/src/js/components/forms/inputs/SimpleInput.js
index <HASH>..<HASH> 100644
--- a/src/js/components/forms/inputs/SimpleInput.js
+++ b/src/js/components/forms/inputs/SimpleInput.js
@@ -266,19 +266,13 @@ class SimpleInput extends InputBase {
}
... | SimpleInput redirect props from react displayType |
diff --git a/test/playback.spec.js b/test/playback.spec.js
index <HASH>..<HASH> 100644
--- a/test/playback.spec.js
+++ b/test/playback.spec.js
@@ -88,6 +88,10 @@ describe('Sono playback', function() {
});
});
+ // Firefox 35 and less has a bug where audio param ramping does not change the readable va... | exclude firefox from fade tests for now |
diff --git a/presto-hive/src/main/java/com/facebook/presto/hive/HiveClient.java b/presto-hive/src/main/java/com/facebook/presto/hive/HiveClient.java
index <HASH>..<HASH> 100644
--- a/presto-hive/src/main/java/com/facebook/presto/hive/HiveClient.java
+++ b/presto-hive/src/main/java/com/facebook/presto/hive/HiveClient.ja... | Fix listing columns from Presto views in Hive |
diff --git a/lib/active_scaffold/helpers/action_link_helpers.rb b/lib/active_scaffold/helpers/action_link_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/active_scaffold/helpers/action_link_helpers.rb
+++ b/lib/active_scaffold/helpers/action_link_helpers.rb
@@ -124,7 +124,7 @@ module ActiveScaffold
link.cru... | fix checking permission of singular association columns, column_link_authorized? return array of authorized and reason |
diff --git a/packages/babel-plugin-minify-dead-code-elimination/src/index.js b/packages/babel-plugin-minify-dead-code-elimination/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/babel-plugin-minify-dead-code-elimination/src/index.js
+++ b/packages/babel-plugin-minify-dead-code-elimination/src/index.js
@@ -699,6... | Fix dce - recompute path & scope before pass |
diff --git a/src/OpenTok/Util/Validators.php b/src/OpenTok/Util/Validators.php
index <HASH>..<HASH> 100644
--- a/src/OpenTok/Util/Validators.php
+++ b/src/OpenTok/Util/Validators.php
@@ -146,7 +146,7 @@ class Validators
}
public static function validateArchiveData($archiveData)
{
- if (!self::$sch... | Proposed fix for issue #<I> |
diff --git a/twstock/__init__.py b/twstock/__init__.py
index <HASH>..<HASH> 100644
--- a/twstock/__init__.py
+++ b/twstock/__init__.py
@@ -11,4 +11,4 @@ from twstock.codes import twse, tpex, codes
from twstock.stock import Stock
-__version__ = '0.1.2-dev'
+__version__ = '0.1.3-dev' | Bump up the version to <I>-dev |
diff --git a/core/src/test/java/io/cucumber/core/runner/TestHelper.java b/core/src/test/java/io/cucumber/core/runner/TestHelper.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/io/cucumber/core/runner/TestHelper.java
+++ b/core/src/test/java/io/cucumber/core/runner/TestHelper.java
@@ -77,6 +77,7 @@ public clas... | [Core] Deprecate TestHelper
The `TestHelper` is an overly complex way to run tests. Building a runtime
and stubbing the step definitions provides a much simpler and more reliable
way to test Cucumbers execution.
See the `JUnitFormatterTest` for implementation examples. |
diff --git a/src/core/services/theming/theming.js b/src/core/services/theming/theming.js
index <HASH>..<HASH> 100644
--- a/src/core/services/theming/theming.js
+++ b/src/core/services/theming/theming.js
@@ -45,7 +45,7 @@ var LIGHT_FOREGROUND = {
name: 'light',
'1': 'rgba(255,255,255,1.0)',
'2': 'rgba(255,255,2... | style(): raise opacity of foreground-3 by 5% |
diff --git a/lib/util/fileHelpers.js b/lib/util/fileHelpers.js
index <HASH>..<HASH> 100644
--- a/lib/util/fileHelpers.js
+++ b/lib/util/fileHelpers.js
@@ -21,6 +21,11 @@ module.exports = {
path.sep, filePath);
return JSON.parse(fs.readFileSync(fullPathToFile));
},
+ getFileAsString: function(filePath) {... | read plain text to String #<I> |
diff --git a/src/javascript/ZeroClipboard/position.js b/src/javascript/ZeroClipboard/position.js
index <HASH>..<HASH> 100644
--- a/src/javascript/ZeroClipboard/position.js
+++ b/src/javascript/ZeroClipboard/position.js
@@ -9,7 +9,7 @@ ZeroClipboard.getDOMObjectPosition = function (obj) {
};
// float just above ... | Typo, this should be obj |
diff --git a/app/scripts/tests/globals.js b/app/scripts/tests/globals.js
index <HASH>..<HASH> 100644
--- a/app/scripts/tests/globals.js
+++ b/app/scripts/tests/globals.js
@@ -1,8 +1,8 @@
var sandbox, xhr, requests
var wysihtml5 = {
- Editor() {
+ Editor: function() {
return {
- on() {}
+ on: function... | Changes globals.js to old syntax to try to fix travis |
diff --git a/repository/filepicker.js b/repository/filepicker.js
index <HASH>..<HASH> 100644
--- a/repository/filepicker.js
+++ b/repository/filepicker.js
@@ -434,7 +434,7 @@ M.core_filepicker.init = function(Y, options) {
draggable: true,
close: true,
underlay: 'none'... | "MDL-<I>, fixed zindex value for search dialog" |
diff --git a/lib/ohai/plugins/network_listeners.rb b/lib/ohai/plugins/network_listeners.rb
index <HASH>..<HASH> 100644
--- a/lib/ohai/plugins/network_listeners.rb
+++ b/lib/ohai/plugins/network_listeners.rb
@@ -16,8 +16,6 @@
# limitations under the License.
#
-require 'sigar'
-
Ohai.plugin(:NetworkListeners) do
... | rescue exceptions thrown collecting data
back out the require 'sigar' hack |
diff --git a/src/parser.js b/src/parser.js
index <HASH>..<HASH> 100644
--- a/src/parser.js
+++ b/src/parser.js
@@ -380,10 +380,30 @@ export default class Parser {
this.handleSwaggerMethod(resource, href, pathObjectParameters, methodValue, method);
});
+ this.handleSwaggerVendorExtensions(resource... | Translate Swagger path-info extensions to resource extensions |
diff --git a/tests/test_potential.py b/tests/test_potential.py
index <HASH>..<HASH> 100644
--- a/tests/test_potential.py
+++ b/tests/test_potential.py
@@ -160,7 +160,6 @@ def test_TwoPowerSphericalPotentialIntegerSelf():
def test_ZIsNone():
# TODO replace manual additions with an automatic method
# that chec... | retriggering codecov
I don’t believe the results. |
diff --git a/lib/gettext_i18n_rails/ruby_gettext_extractor.rb b/lib/gettext_i18n_rails/ruby_gettext_extractor.rb
index <HASH>..<HASH> 100644
--- a/lib/gettext_i18n_rails/ruby_gettext_extractor.rb
+++ b/lib/gettext_i18n_rails/ruby_gettext_extractor.rb
@@ -44,7 +44,11 @@ module RubyGettextExtractor
end
def ru... | Workaround for a problem in the ruby parser
A bug in the ruby parser can cause gettext:find to
hang. The workaround removes all \<I> from the input
before parsing.
See bug report:
<URL> |
diff --git a/admin/tool/generator/tests/maketestcourse_test.php b/admin/tool/generator/tests/maketestcourse_test.php
index <HASH>..<HASH> 100644
--- a/admin/tool/generator/tests/maketestcourse_test.php
+++ b/admin/tool/generator/tests/maketestcourse_test.php
@@ -112,7 +112,6 @@ class tool_generator_maketestcourse_testc... | MDL-<I> tool_generator: Removing unused vars |
diff --git a/lxd/devlxd_test.go b/lxd/devlxd_test.go
index <HASH>..<HASH> 100644
--- a/lxd/devlxd_test.go
+++ b/lxd/devlxd_test.go
@@ -11,6 +11,7 @@ import (
"testing"
"github.com/lxc/lxd/lxd/sys"
+ "github.com/lxc/lxd/lxd/ucred"
)
var testDir string
@@ -103,13 +104,13 @@ func TestCredsSendRecv(t *testing.T) ... | test: Updates devlxd tests to use ucred package |
diff --git a/src/bootstrap-table.js b/src/bootstrap-table.js
index <HASH>..<HASH> 100644
--- a/src/bootstrap-table.js
+++ b/src/bootstrap-table.js
@@ -956,8 +956,7 @@ class BootstrapTable {
return
}
- const s = this.searchText && (this.fromHtml ?
- Utils.escapeHTML(this.searchText) : this.... | Use the original search text instead of the (maybe) escaped one, to
prevent issues with tables based on html |
diff --git a/pygubudesigner/widgets/imageentry.py b/pygubudesigner/widgets/imageentry.py
index <HASH>..<HASH> 100644
--- a/pygubudesigner/widgets/imageentry.py
+++ b/pygubudesigner/widgets/imageentry.py
@@ -58,10 +58,11 @@ class ImagePropertyEditor(PropertyEditor):
fname = tk.filedialog.askopenfilename(**optio... | Register image before change event is generated. |
diff --git a/src/ol/interaction/draginteraction.js b/src/ol/interaction/draginteraction.js
index <HASH>..<HASH> 100644
--- a/src/ol/interaction/draginteraction.js
+++ b/src/ol/interaction/draginteraction.js
@@ -39,12 +39,12 @@ ol.interaction.Drag = function() {
/**
* @type {number}
*/
- this.offsetX = 0;
+ ... | Rename offset* attributes to delta* |
diff --git a/pipe_test.go b/pipe_test.go
index <HASH>..<HASH> 100644
--- a/pipe_test.go
+++ b/pipe_test.go
@@ -12,7 +12,10 @@ func TestPipe(t *testing.T) {
go func() {
for i := 0; i < 10; i++ {
- w.Write([]byte(fmt.Sprintf("%d", i)))
+ if _, err := w.Write([]byte(fmt.Sprintf("%d", i))); err != nil {
+ t.E... | Added break into test if Write fails |
diff --git a/lib/netsuite/actions/search.rb b/lib/netsuite/actions/search.rb
index <HASH>..<HASH> 100644
--- a/lib/netsuite/actions/search.rb
+++ b/lib/netsuite/actions/search.rb
@@ -120,14 +120,18 @@ module NetSuite
else
if condition[:value].is_a?(Array) && condition[:value].first.respond_t... | Handle anyOf searches outside the customFieldList and join context |
diff --git a/km3pipe/pumps/daq.py b/km3pipe/pumps/daq.py
index <HASH>..<HASH> 100644
--- a/km3pipe/pumps/daq.py
+++ b/km3pipe/pumps/daq.py
@@ -47,7 +47,10 @@ class DAQPump(Pump):
except struct.error:
raise StopIteration
- data_type = DATA_TYPES[preamble.data_type]
+ try:
+ ... | Handle exception if data type is unknown |
diff --git a/tests/ember_debug/object-inspector-test.js b/tests/ember_debug/object-inspector-test.js
index <HASH>..<HASH> 100644
--- a/tests/ember_debug/object-inspector-test.js
+++ b/tests/ember_debug/object-inspector-test.js
@@ -772,14 +772,8 @@ module('Ember Debug - Object Inspector', function (hooks) {
'Corr... | Update tests/ember_debug/object-inspector-test.js |
diff --git a/packages/create-razzle-app/templates/default/src/index.js b/packages/create-razzle-app/templates/default/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/create-razzle-app/templates/default/src/index.js
+++ b/packages/create-razzle-app/templates/default/src/index.js
@@ -19,7 +19,7 @@ if (module.hot)... | cleanup: remove .js extensions from require |
diff --git a/src/Routing/Route/Route.php b/src/Routing/Route/Route.php
index <HASH>..<HASH> 100644
--- a/src/Routing/Route/Route.php
+++ b/src/Routing/Route/Route.php
@@ -265,8 +265,6 @@ class Route
*/
public function parse($url)
{
- $request = Router::getRequest(true) ?: Request::createFromGloba... | Micro-optimization in route parsing.
Save a few function calls when parsing routes. Only fetch the request
when we actually need it. |
diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -29,6 +29,14 @@ var deep = {
}
};
+test('missing arguments', function (t) {
+ t.deepEqual(extend(undefined, { a: 1 }), { a: 1 }, 'missing first argument is second argument');
+ t.deepEqual(extend({ ... | Adding test cases for missing arguments. |
diff --git a/jquery.flot.js b/jquery.flot.js
index <HASH>..<HASH> 100644
--- a/jquery.flot.js
+++ b/jquery.flot.js
@@ -2544,13 +2544,8 @@ Licensed under the MIT license.
// fill the bar
if (fillStyleCallback) {
- c.beginPath();
- c.moveTo(left, bottom);
- ... | Draw bars using fillRect instead of paths.
This is up to 2x faster and appears to work around issues in Chrome's
canvas implementation that sometimes result in bars not being filled.
Resolves #<I>. |
diff --git a/trace/agent.js b/trace/agent.js
index <HASH>..<HASH> 100644
--- a/trace/agent.js
+++ b/trace/agent.js
@@ -139,7 +139,7 @@ Agent.prototype.setupNewSpan = function setupNewSpan(options) {
parentSpan = self.getCurrentSpan();
} else {
parentSpan = options.parentSpan;
- if (options... | trace: allowing parentSpan warning to be ignored |
diff --git a/src/System/SysProperties.php b/src/System/SysProperties.php
index <HASH>..<HASH> 100644
--- a/src/System/SysProperties.php
+++ b/src/System/SysProperties.php
@@ -82,4 +82,15 @@ class SysProperties {
}
return $ini;
}
+
+ /**
+ * @return int
+ * @throws FileNotFoundException... | size method in SysProperties |
diff --git a/scripts/babel-relay-plugin/src/GraphQLPrinter.js b/scripts/babel-relay-plugin/src/GraphQLPrinter.js
index <HASH>..<HASH> 100644
--- a/scripts/babel-relay-plugin/src/GraphQLPrinter.js
+++ b/scripts/babel-relay-plugin/src/GraphQLPrinter.js
@@ -10,12 +10,12 @@ var util = require('util');
* This is part of t... | Rename GraphQLPrinter internal functions |
diff --git a/components/Migrate-Packages/ui/wizard.php b/components/Migrate-Packages/ui/wizard.php
index <HASH>..<HASH> 100644
--- a/components/Migrate-Packages/ui/wizard.php
+++ b/components/Migrate-Packages/ui/wizard.php
@@ -12,7 +12,7 @@
<?php echo PodsForm::field( '_wpnonce', wp_create_nonce( 'pods-com... | Tweak heading text for new Packages component |
diff --git a/library/src/main/java/com/github/clans/fab/FloatingActionMenu.java b/library/src/main/java/com/github/clans/fab/FloatingActionMenu.java
index <HASH>..<HASH> 100755
--- a/library/src/main/java/com/github/clans/fab/FloatingActionMenu.java
+++ b/library/src/main/java/com/github/clans/fab/FloatingActionMenu.ja... | Added option to add button to the menu at position. Closes #<I>. |
diff --git a/pysle/isletool.py b/pysle/isletool.py
index <HASH>..<HASH> 100644
--- a/pysle/isletool.py
+++ b/pysle/isletool.py
@@ -202,9 +202,9 @@ def _prepRESearchStr(matchStr, wordInitial='ok', wordFinal='ok',
matchStr = matchStr.replace(charB, charA)
# Replace special characters
- replDict = {"D":... | BUGFIX: Dental and Stop special keys don't match multichar sounds like tʃ
So 't' will be matched but not 'tʃ' |
diff --git a/lib/Cake/Controller/ComponentCollection.php b/lib/Cake/Controller/ComponentCollection.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Controller/ComponentCollection.php
+++ b/lib/Cake/Controller/ComponentCollection.php
@@ -55,6 +55,16 @@ class ComponentCollection extends ObjectCollection implements CakeEven... | Make sure ComponentCollection has the controller dependency.
Add setter method as changing ComponentCollection's constructor now is
not possible. This fixes issues where components that rely on
Collection->getController() in their constructor can work properly.
Fixes #<I> |
diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb
index <HASH>..<HASH> 100644
--- a/spec/dummy/config/application.rb
+++ b/spec/dummy/config/application.rb
@@ -6,6 +6,9 @@ Bundler.require(*Rails.groups)
# require the engine being tested. In a non-dummy app this would be handled by the e... | Add the proper engine requires to the dummy app
MSP-<I> |
diff --git a/jsonschema/cli.py b/jsonschema/cli.py
index <HASH>..<HASH> 100644
--- a/jsonschema/cli.py
+++ b/jsonschema/cli.py
@@ -77,7 +77,7 @@ def main(args=sys.argv[1:]):
def run(arguments, stdout=sys.stdout, stderr=sys.stderr, stdin=sys.stdin):
- error_delimiter = "———|ERROR|—————————————————————————\n"
+ ... | [CLI] Remove incompatible character, replaced by '=' |
diff --git a/code/SubsitesVirtualPage.php b/code/SubsitesVirtualPage.php
index <HASH>..<HASH> 100644
--- a/code/SubsitesVirtualPage.php
+++ b/code/SubsitesVirtualPage.php
@@ -11,6 +11,7 @@ class SubsitesVirtualPage extends VirtualPage {
$fields = parent::getCMSFields();
$subsites = DataObject::get('Subsite');... | MINOR: Don't throw an error if no subsites are defined. (from r<I>) |
diff --git a/subnuker.py b/subnuker.py
index <HASH>..<HASH> 100644
--- a/subnuker.py
+++ b/subnuker.py
@@ -12,7 +12,7 @@ Python package.
"""
__program__ = 'subnuker'
-__version__ = '0.3'
+__version__ = '0.4'
# --- BEGIN CODE --- # | Bump up to version <I> (so that the changes can be uploaded to PyPi) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -53,7 +53,7 @@ setup(
"fabric>=1.8.0,<1.11.0",
"PyYAML<4.0.0",
"requests-futures>0.9.0",
- "kafka-python==1.3.2",
+ "kafka-python>=1.3.2,<1.4.0",
"requests<3.0.0",
're... | Update kafka-python requirement in kafka utils
Let's not pin it down to an exact version so it is compatible with post version from our kafka-python fork |
diff --git a/lib/weary/resource.rb b/lib/weary/resource.rb
index <HASH>..<HASH> 100644
--- a/lib/weary/resource.rb
+++ b/lib/weary/resource.rb
@@ -9,11 +9,11 @@ module Weary
def initialize(method, uri)
@method = method
- @uri = Addressable::Template.new(uri)
+ self.url uri
end
def ur... | Allow Sinatra-style url variables in resource paths |
diff --git a/lib/librarian/resolver/implementation.rb b/lib/librarian/resolver/implementation.rb
index <HASH>..<HASH> 100644
--- a/lib/librarian/resolver/implementation.rb
+++ b/lib/librarian/resolver/implementation.rb
@@ -65,8 +65,7 @@ module Librarian
dependencies << dependency
scope_resolving_depen... | Move some scope work into a helper method in the resolver impl. |
diff --git a/ontrack-web/src/app/view/view.search.js b/ontrack-web/src/app/view/view.search.js
index <HASH>..<HASH> 100644
--- a/ontrack-web/src/app/view/view.search.js
+++ b/ontrack-web/src/app/view/view.search.js
@@ -9,7 +9,7 @@ angular.module('ot.view.search', [
controller: 'SearchCtrl'
});
... | Search: redirect to the page in case of only one result |
diff --git a/rpcserver.go b/rpcserver.go
index <HASH>..<HASH> 100644
--- a/rpcserver.go
+++ b/rpcserver.go
@@ -718,10 +718,8 @@ func (r *rpcServer) ListChannels(ctx context.Context,
// With the channel point known, retrieve the network channel
// ID from the database.
- chanID, err := graph.ChannelID(chanPoint... | rpcserver: don't error out in ListChannels if unable to retrieve chanID |
diff --git a/kmip/__init__.py b/kmip/__init__.py
index <HASH>..<HASH> 100644
--- a/kmip/__init__.py
+++ b/kmip/__init__.py
@@ -17,6 +17,7 @@ import logging.config
import os
import re
import sys
+import warnings
# Dynamically set __version__
version_path = os.path.join(os.path.dirname(
@@ -63,3 +64,11 @@ else:
... | Adding pending deprecation warning for Python<I>
This change add a simple warning that is triggered whenever Python
<I> is used with PyKMIP. It simply advises the user to use a newer
version of Python. For now, Python <I> can still be used with
PyKMIP. |
diff --git a/lib/adminable/resource.rb b/lib/adminable/resource.rb
index <HASH>..<HASH> 100644
--- a/lib/adminable/resource.rb
+++ b/lib/adminable/resource.rb
@@ -28,7 +28,7 @@ module Adminable
end
def ==(other)
- name == other.name
+ other.is_a?(Adminable::Resource) && name == other.name
end... | Add check for class for resource == method |
diff --git a/admin/langdoc.php b/admin/langdoc.php
index <HASH>..<HASH> 100755
--- a/admin/langdoc.php
+++ b/admin/langdoc.php
@@ -33,6 +33,9 @@
admin_externalpage_print_header();
+ notify('NOTICE: This interface is obsolete now and will be removed. You should use
+ improved <a href="lang.php?mode=h... | MDL-<I> Merged from stable. Print an obsolete message. |
diff --git a/packer/rpc/muxconn.go b/packer/rpc/muxconn.go
index <HASH>..<HASH> 100644
--- a/packer/rpc/muxconn.go
+++ b/packer/rpc/muxconn.go
@@ -146,6 +146,8 @@ func (m *MuxConn) Accept(id uint32) (io.ReadWriteCloser, error) {
// Dial opens a connection to the remote end using the given stream ID.
// An Accept on t... | packer/rpc: a little more logging |
diff --git a/pkg/bgpv1/gobgp/workdiff.go b/pkg/bgpv1/gobgp/workdiff.go
index <HASH>..<HASH> 100644
--- a/pkg/bgpv1/gobgp/workdiff.go
+++ b/pkg/bgpv1/gobgp/workdiff.go
@@ -88,9 +88,9 @@ func (wd *reconcileDiff) empty() bool {
// since registerOrReconcileDiff populates the `seen` field of a diff, this method should alwa... | bgp-cp: fix taking address of of loop variable
this commit fixes a bug in computing a work diff when reconciliating BGP
virtual routers.
this bug would take an address of the loop variable and store this
which is not the correct reference when utilized later.
to fix this, just take the address of the slice's index. |
diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -324,7 +324,7 @@ func (c *Client) doRequest(req *http.Request, emptyResponse bool) (interface{},
var values []interface{}
for {
values = append(values, responsePaginated.Values...)
- if responsePaginated.Pagel... | Don't reuse response struct for multiple requests (#<I>)
A fix was added in <URL>).
The actual problem was that the `responsePaginated` variable was being reused in the loop, and the json decoder doesn't overwrite fields that aren't present in the response, so it was the `Next` field would end up with the value fro... |
diff --git a/src/Database/Rules.php b/src/Database/Rules.php
index <HASH>..<HASH> 100644
--- a/src/Database/Rules.php
+++ b/src/Database/Rules.php
@@ -54,6 +54,9 @@ class Rules
{
if (array_key_exists($k, $rules))
{
+ // (Re)set rule variable
+ $rule = null;
+
if (is_callable($rules[$k]))
{
... | Reset rule var to prevent false positives when looping |
diff --git a/aiortc/contrib/media.py b/aiortc/contrib/media.py
index <HASH>..<HASH> 100644
--- a/aiortc/contrib/media.py
+++ b/aiortc/contrib/media.py
@@ -12,6 +12,29 @@ from ..mediastreams import AUDIO_PTIME, MediaStreamError, MediaStreamTrack
logger = logging.getLogger('media')
+REAL_TIME_FORMATS = [
+ 'alsa'... | [media player] list more real-time acquisition sources |
diff --git a/go/libkb/check_tracking.go b/go/libkb/check_tracking.go
index <HASH>..<HASH> 100644
--- a/go/libkb/check_tracking.go
+++ b/go/libkb/check_tracking.go
@@ -4,9 +4,12 @@
package libkb
func CheckTracking(g *GlobalContext) error {
- // LoadUser automatically fires off UserChanged notifications when it
- // ... | use UPAK loads in hourly check tracking (#<I>)
* use UPAK loads in hourly check tracking
* fix it |
diff --git a/src/util/browser.js b/src/util/browser.js
index <HASH>..<HASH> 100644
--- a/src/util/browser.js
+++ b/src/util/browser.js
@@ -17,7 +17,7 @@ export let safari = /Apple Computer/.test(navigator.vendor)
export let mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(userAgent)
export let phantom = /Phan... | Try to refine iPadOS/iOS detection
Issue #<I> |
diff --git a/Kwc/Form/Component.php b/Kwc/Form/Component.php
index <HASH>..<HASH> 100644
--- a/Kwc/Form/Component.php
+++ b/Kwc/Form/Component.php
@@ -137,7 +137,7 @@ class Kwc_Form_Component extends Kwc_Abstract_Composite_Component
$this->_postData = $postData;
if (isset($postData[$this->getData()->c... | Move logic to get error-messages from separate function
This way it's possible to generate error-messages in Kwc_Form_Component |
diff --git a/test/eth/Cdp.spec.js b/test/eth/Cdp.spec.js
index <HASH>..<HASH> 100644
--- a/test/eth/Cdp.spec.js
+++ b/test/eth/Cdp.spec.js
@@ -225,7 +225,7 @@ const sharedTests = (openCdp, proxy = false) => {
await promiseWait(1100);
await cdpService._drip(); //drip() updates _rhi and thus all cdp... | Fix side effects in non-proxy tests |
diff --git a/lib/aruba/platforms/announcer.rb b/lib/aruba/platforms/announcer.rb
index <HASH>..<HASH> 100644
--- a/lib/aruba/platforms/announcer.rb
+++ b/lib/aruba/platforms/announcer.rb
@@ -196,37 +196,6 @@ module Aruba
nil
end
-
- # @deprecated
- def stdout(content)
- warn('The anno... | Remove deprecated method from Announcer |
diff --git a/tests/test_transformer.py b/tests/test_transformer.py
index <HASH>..<HASH> 100644
--- a/tests/test_transformer.py
+++ b/tests/test_transformer.py
@@ -180,4 +180,4 @@ class TransformerTest(TestCase):
)
with patcher:
response = CustomProxyView.as_view(html5=True)(request, '/')
... | Updated html5 transform test to support python3 |
diff --git a/lib/roxml/xml.rb b/lib/roxml/xml.rb
index <HASH>..<HASH> 100644
--- a/lib/roxml/xml.rb
+++ b/lib/roxml/xml.rb
@@ -200,7 +200,7 @@ module ROXML
value.each do |v|
xml.child_add(v.to_xml(name))
end
- elsif value.respond_to? :tag_refs
+ elsif value.is_a?(ROXML)
x... | Cleaner way of differentiating between ROXML and self-defined #to_xml types |
diff --git a/napalm_junos/junos.py b/napalm_junos/junos.py
index <HASH>..<HASH> 100644
--- a/napalm_junos/junos.py
+++ b/napalm_junos/junos.py
@@ -535,7 +535,7 @@ class JunOSDriver(NetworkDriver):
if 'router_id' not in bgp_neighbor_data[instance_name]:
# we only need to set this on... | FIXES #<I>, no exception for missing local_id key |
diff --git a/src/lib/server/index.js b/src/lib/server/index.js
index <HASH>..<HASH> 100644
--- a/src/lib/server/index.js
+++ b/src/lib/server/index.js
@@ -21,7 +21,7 @@ app.use(compression());
addProxies(app, config.proxies);
if (isProduction) {
- app.use("/assets", express.static("build"));
+ app.use("/assets", ... | update max age now that we include file hashes |
diff --git a/src/diagrams/class/classDb.js b/src/diagrams/class/classDb.js
index <HASH>..<HASH> 100644
--- a/src/diagrams/class/classDb.js
+++ b/src/diagrams/class/classDb.js
@@ -163,7 +163,7 @@ export const cleanupLabel = function (label) {
if (label.substring(0, 1) === ':') {
return common.sanitizeText(label.... | fix: one more sanitization |
diff --git a/photutils/segmentation/deblend.py b/photutils/segmentation/deblend.py
index <HASH>..<HASH> 100644
--- a/photutils/segmentation/deblend.py
+++ b/photutils/segmentation/deblend.py
@@ -224,11 +224,8 @@ def _deblend_source(data, segment_img, npixels, nlevels=32, contrast=0.001,
raise ValueError('Inval... | Use the new mask keyword for detect_sources |
diff --git a/lib/hatchet/logger.rb b/lib/hatchet/logger.rb
index <HASH>..<HASH> 100644
--- a/lib/hatchet/logger.rb
+++ b/lib/hatchet/logger.rb
@@ -5,14 +5,13 @@ module Hatchet
# Internal: Class that handles logging calls and distributes them to all its
# appenders.
#
- # Each logger has 6 methods. Those are, ... | Removed additional mentions of a trace level |
diff --git a/src/django_future/models.py b/src/django_future/models.py
index <HASH>..<HASH> 100644
--- a/src/django_future/models.py
+++ b/src/django_future/models.py
@@ -54,8 +54,8 @@ class ScheduledJob(models.Model):
def run(self):
# TODO: logging?
- args = self.args
- kwargs = self.kwar... | Make sure args and kwargs passed to the callable are correctly typed (as list and dict). |
diff --git a/squad/frontend/views.py b/squad/frontend/views.py
index <HASH>..<HASH> 100644
--- a/squad/frontend/views.py
+++ b/squad/frontend/views.py
@@ -1,8 +1,9 @@
+from django.http import HttpResponse
from django.shortcuts import render
def home(request):
- pass
+ return HttpResponse('hello world')
... | /: provide an empty but successful response |
diff --git a/activemodel/lib/active_model/validations/numericality.rb b/activemodel/lib/active_model/validations/numericality.rb
index <HASH>..<HASH> 100644
--- a/activemodel/lib/active_model/validations/numericality.rb
+++ b/activemodel/lib/active_model/validations/numericality.rb
@@ -26,8 +26,6 @@ module ActiveModel
... | validate_each in NumericalityValidator is never called in this case.
NumericalityValidator#validate_each is never called when allow_nil is true and
the value is nil because it is already skipped in EachValidator#validate. |
diff --git a/lib/addressable/template.rb b/lib/addressable/template.rb
index <HASH>..<HASH> 100644
--- a/lib/addressable/template.rb
+++ b/lib/addressable/template.rb
@@ -649,7 +649,7 @@ module Addressable
private
def ordered_variable_defaults
- @ordered_variable_defaults ||= (
+ @ordered_variable_d... | This should be a begin..end block. |
diff --git a/src/com/google/javascript/jscomp/JSDocInfoPrinter.java b/src/com/google/javascript/jscomp/JSDocInfoPrinter.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/JSDocInfoPrinter.java
+++ b/src/com/google/javascript/jscomp/JSDocInfoPrinter.java
@@ -168,7 +168,7 @@ public final class JSDocI... | Joiners can join on arrays directly, so remove the extra conversion.
-------------
Created by MOE: <URL> |
diff --git a/core/src/main/java/org/acegisecurity/ui/switchuser/SwitchUserProcessingFilter.java b/core/src/main/java/org/acegisecurity/ui/switchuser/SwitchUserProcessingFilter.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/acegisecurity/ui/switchuser/SwitchUserProcessingFilter.java
+++ b/core/src/main/ja... | when extracting the original user, fix by referencing by the interface (UserDetail) rather than the concrete class (User) |
diff --git a/lib/grade/grade_category.php b/lib/grade/grade_category.php
index <HASH>..<HASH> 100644
--- a/lib/grade/grade_category.php
+++ b/lib/grade/grade_category.php
@@ -1098,6 +1098,10 @@ class grade_category extends grade_object {
* @return object grade_category instance for course grade
*/
func... | add debug code for missing course id when getting course grading category; merged from MOODLE_<I>_STABLE |
diff --git a/src/guake.py b/src/guake.py
index <HASH>..<HASH> 100644
--- a/src/guake.py
+++ b/src/guake.py
@@ -912,7 +912,6 @@ class Guake(SimpleGladeApp):
box.terminal.connect('child-exited', self.on_terminal_exited, box)
box.show()
- pagenum = self.notebook.page_num(box)
last_added... | Fixing a scope problem
Caused by a "fix" made by me in a patch... |
diff --git a/protocol/signalfx/signalfxforwarder.go b/protocol/signalfx/signalfxforwarder.go
index <HASH>..<HASH> 100644
--- a/protocol/signalfx/signalfxforwarder.go
+++ b/protocol/signalfx/signalfxforwarder.go
@@ -103,12 +103,14 @@ func NewSignalfxJSONForwarer(url string, timeout time.Duration,
defaultAuthToken stri... | Support HTTP_PROXY env variable for proxy use with metricproxy |
diff --git a/cobra/core/Model.py b/cobra/core/Model.py
index <HASH>..<HASH> 100644
--- a/cobra/core/Model.py
+++ b/cobra/core/Model.py
@@ -207,7 +207,9 @@ class Model(Object):
except Exception: # pragma: no cover
new._solver = copy(self.solver) # pragma: no cover
- new.solution = deepco... | feat: do not deepcopy solution object in model.copy() (HT @cdiener) |
diff --git a/jks/jks.py b/jks/jks.py
index <HASH>..<HASH> 100644
--- a/jks/jks.py
+++ b/jks/jks.py
@@ -44,7 +44,7 @@ try:
except ImportError:
from io import BytesIO # python3
-__version_info__ = (17, 0, 1, 'dev')
+__version_info__ = (17, 1, 0, '')
__version__ = ".".join(str(x) for x in __version_info__ if str... | bumping version for <I> release |
diff --git a/block.go b/block.go
index <HASH>..<HASH> 100644
--- a/block.go
+++ b/block.go
@@ -171,11 +171,13 @@ func (b *block) write(revision uint64, w io.Writer) error {
if err := writeString(w, columnType); err != nil {
return err
}
- if err := b.offsetBuffers[i].writeTo(w); err != nil {
- return err
-... | fix: index out of renge when close tx without data |
diff --git a/lib/activeuuid/uuid.rb b/lib/activeuuid/uuid.rb
index <HASH>..<HASH> 100644
--- a/lib/activeuuid/uuid.rb
+++ b/lib/activeuuid/uuid.rb
@@ -71,7 +71,7 @@ module ActiveUUID
def uuids(*attributes)
attributes.each do |attribute|
- serialize "#{attribute}_id".intern, ActiveUUID::UUIDSer... | API Breaking Change. #uuids directive must now be explicit. this allows us to have uuid attributes that don't end in _id |
diff --git a/lib/beaker-hostgenerator/data/vmpooler.rb b/lib/beaker-hostgenerator/data/vmpooler.rb
index <HASH>..<HASH> 100644
--- a/lib/beaker-hostgenerator/data/vmpooler.rb
+++ b/lib/beaker-hostgenerator/data/vmpooler.rb
@@ -2,7 +2,7 @@ module BeakerHostGenerator
module Data
module Vmpooler
- OSINFO_BG... | (QENG-<I>) Actually, don't change the original datastructure name. |
diff --git a/plugins/spf.js b/plugins/spf.js
index <HASH>..<HASH> 100644
--- a/plugins/spf.js
+++ b/plugins/spf.js
@@ -114,9 +114,10 @@ exports.hook_helo = exports.hook_ehlo = function (next, connection, helo) {
exports.hook_mail = function (next, connection, params) {
var plugin = this;
- // For inbound mes... | Skip SPF check for outbound mail when context is not 'myself' (#<I>)
Fixes #<I> |
diff --git a/lib/Doctrine/ORM/Tools/SchemaValidator.php b/lib/Doctrine/ORM/Tools/SchemaValidator.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/ORM/Tools/SchemaValidator.php
+++ b/lib/Doctrine/ORM/Tools/SchemaValidator.php
@@ -117,7 +117,8 @@ class SchemaValidator
"field " . $assoc-... | DDC-<I> - Fixed a notice occuring in certain scenarios of the new Validate Schema Tool |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.