diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/spec/support/database_helper.rb b/spec/support/database_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/support/database_helper.rb
+++ b/spec/support/database_helper.rb
@@ -17,7 +17,7 @@ module DatabaseHelper
require "sqlite3"
end
- path = Tempfile.new("baza_test").path
+ ... | Only remove file if test didn't already. Ensure correct extension on temp db |
diff --git a/spec/unit/object_properties_spec.rb b/spec/unit/object_properties_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/object_properties_spec.rb
+++ b/spec/unit/object_properties_spec.rb
@@ -144,7 +144,7 @@ describe RestfulObjects::ObjectProperties do
@object.bool_prop.should eq true
@object.de... | fixed test with encoding problem for ruby <I> |
diff --git a/lib/sinon-doublist-fs/index.js b/lib/sinon-doublist-fs/index.js
index <HASH>..<HASH> 100644
--- a/lib/sinon-doublist-fs/index.js
+++ b/lib/sinon-doublist-fs/index.js
@@ -45,6 +45,8 @@ function sinonDoublistFs(test) {
nodeConsole = requireNative('codeactual-node-console').create();
log = nodeConso... | fix(tracing): Wrap customFsStub, mixin methods |
diff --git a/sark/code/function.py b/sark/code/function.py
index <HASH>..<HASH> 100644
--- a/sark/code/function.py
+++ b/sark/code/function.py
@@ -84,6 +84,9 @@ class Function(object):
raise ValueError("`None` is not a valid address. To use the current screen ea, "
"use `Funct... | Function objects can now be created from line objects. Closes #<I>. |
diff --git a/coconut/constants.py b/coconut/constants.py
index <HASH>..<HASH> 100644
--- a/coconut/constants.py
+++ b/coconut/constants.py
@@ -115,7 +115,7 @@ all_reqs = {
min_versions = {
"pyparsing": (2, 2, 0),
"cPyparsing": (2, 2, 0, 1, 1),
- "pre-commit": (0, 15, 0),
+ "pre-commit": (0, 15, 2),
... | Switch to new pre-commit version |
diff --git a/dashbuilder-backend/dashbuilder-dataset-core/src/main/java/org/dashbuilder/dataprovider/StaticDataSetProvider.java b/dashbuilder-backend/dashbuilder-dataset-core/src/main/java/org/dashbuilder/dataprovider/StaticDataSetProvider.java
index <HASH>..<HASH> 100644
--- a/dashbuilder-backend/dashbuilder-dataset-c... | Add missing non-args constructor (required by some CDI impls) |
diff --git a/command/stack/deploy_bundlefile.go b/command/stack/deploy_bundlefile.go
index <HASH>..<HASH> 100644
--- a/command/stack/deploy_bundlefile.go
+++ b/command/stack/deploy_bundlefile.go
@@ -54,7 +54,7 @@ func deployBundle(ctx context.Context, dockerCli *command.DockerCli, opts deploy
for _, networkName := r... | Set the alias to the service name instead of the network name
This makes it work a little closer to compose part and it is more
correct 👼 |
diff --git a/lib/ProMotion/screen/screen_module.rb b/lib/ProMotion/screen/screen_module.rb
index <HASH>..<HASH> 100644
--- a/lib/ProMotion/screen/screen_module.rb
+++ b/lib/ProMotion/screen/screen_module.rb
@@ -5,7 +5,7 @@ module ProMotion
include ProMotion::Styling
include ProMotion::NavBarModule
includ... | Fixed another location where `ProMotion::SplitScreen` should be included on iPhones with iOS 8. |
diff --git a/asciimatics/widgets/layout.py b/asciimatics/widgets/layout.py
index <HASH>..<HASH> 100644
--- a/asciimatics/widgets/layout.py
+++ b/asciimatics/widgets/layout.py
@@ -108,6 +108,8 @@ class Layout(object):
if widget.name in self._frame.data:
widget.value = self._frame.data[widget.name]
... | Add "return widget" to Layout's add_widget() method to make chaining
easier |
diff --git a/platform/nativescript/backend.js b/platform/nativescript/backend.js
index <HASH>..<HASH> 100644
--- a/platform/nativescript/backend.js
+++ b/platform/nativescript/backend.js
@@ -97,6 +97,10 @@ exports.init = function(ctx) {
page = nativeContext
ctx.element = new Element(ctx, parentLayout)
+
+ log('pa... | moved page initialisation stuff into .init() again |
diff --git a/internal/qtls/go117.go b/internal/qtls/go117.go
index <HASH>..<HASH> 100644
--- a/internal/qtls/go117.go
+++ b/internal/qtls/go117.go
@@ -93,7 +93,7 @@ type cipherSuiteTLS13 struct {
Hash crypto.Hash
}
-//go:linkname cipherSuiteTLS13ByID github.com/marten-seemann/qtls-go1-16.cipherSuiteTLS13ByID
+//... | fix relocation target for cipherSuiteTLS<I>ByID in Go <I> |
diff --git a/server.js b/server.js
index <HASH>..<HASH> 100644
--- a/server.js
+++ b/server.js
@@ -36,9 +36,6 @@ function Server (opts) {
EventEmitter.call(self)
opts = opts || {}
- if (opts.http === false && opts.udp === false)
- throw new Error('must start at least one type of server (http or udp)')
-
... | server: rm check for http/udp option
my use-case brings its own http server, i just use onHttpRequest() |
diff --git a/src/SupervisorOptions.php b/src/SupervisorOptions.php
index <HASH>..<HASH> 100644
--- a/src/SupervisorOptions.php
+++ b/src/SupervisorOptions.php
@@ -137,7 +137,6 @@ class SupervisorOptions
*/
public $force;
-
/**
* Create a new worker options instance.
* | Apply fixes from StyleCI (#<I>) |
diff --git a/lib/utils.js b/lib/utils.js
index <HASH>..<HASH> 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -157,7 +157,7 @@ DomUtils.removeElement = function(elem){
if(elem.next) elem.next.prev = elem.prev;
if(elem.parent){
- elem.parent.children.splice(elem.parent.children.indexOf(elem), 1);
+ elem.parent.c... | call Array#lastIndexOf in .removeElement
leads to a speedup in `cornet` and doesn't hurt performance elsewhere |
diff --git a/openquake/risklib/riskmodels.py b/openquake/risklib/riskmodels.py
index <HASH>..<HASH> 100644
--- a/openquake/risklib/riskmodels.py
+++ b/openquake/risklib/riskmodels.py
@@ -331,7 +331,7 @@ class RiskModel(object):
for i, asset in enumerate(assets)]
return list(zip(eal_original, eal_r... | Renamed scenario_risk -> event_based_risk in the RiskModel |
diff --git a/lib/chef/provider/package.rb b/lib/chef/provider/package.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/provider/package.rb
+++ b/lib/chef/provider/package.rb
@@ -25,8 +25,6 @@ require 'chef/platform'
class Chef
class Provider
class Package < Chef::Provider
- provides :package
-
include... | Remove generic provides :package and provides :service from base classes |
diff --git a/php/commands/plugin.php b/php/commands/plugin.php
index <HASH>..<HASH> 100644
--- a/php/commands/plugin.php
+++ b/php/commands/plugin.php
@@ -568,9 +568,16 @@ class Plugin_Command extends \WP_CLI\CommandWithUpgrade {
if ( '.' == $plugin_dir )
$plugin_dir = $plugin->file;
- $command = 'rm -rf ' . ... | Fix wp plugin delete on Windows |
diff --git a/embeddedassets/services/EmbeddedAssetsService.php b/embeddedassets/services/EmbeddedAssetsService.php
index <HASH>..<HASH> 100644
--- a/embeddedassets/services/EmbeddedAssetsService.php
+++ b/embeddedassets/services/EmbeddedAssetsService.php
@@ -35,6 +35,8 @@ class EmbeddedAssetsService extends BaseApplica... | #9 Fixed fatal issue with non-ASCII characters in entry slugs |
diff --git a/source/php/BulkImport.php b/source/php/BulkImport.php
index <HASH>..<HASH> 100644
--- a/source/php/BulkImport.php
+++ b/source/php/BulkImport.php
@@ -164,7 +164,13 @@ class BulkImport
//Sanity check, many users to remove?
$maxDeleteLimit = (int) isset($_GET['maxDeletelimit']) ? $_GET['max... | Only send email on first blog.
Better mail details too. |
diff --git a/autolens/model/profiles/mass_profiles.py b/autolens/model/profiles/mass_profiles.py
index <HASH>..<HASH> 100644
--- a/autolens/model/profiles/mass_profiles.py
+++ b/autolens/model/profiles/mass_profiles.py
@@ -702,7 +702,7 @@ class AbstractEllipticalGeneralizedNFW(EllipticalMassProfile, MassProfile):
... | Fixed visualization bug where plotting a mask leads the image to
have white buffer surrounding it. |
diff --git a/mythril/analysis/solver.py b/mythril/analysis/solver.py
index <HASH>..<HASH> 100644
--- a/mythril/analysis/solver.py
+++ b/mythril/analysis/solver.py
@@ -103,7 +103,7 @@ def get_transaction_sequence(global_state, constraints):
concrete_transactions[tx_id]["calldata"] = "0x" + "".join(
... | mythril/analysis/solver: Refactor to support changes in calldata |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -22,7 +22,11 @@ let AlexandriaCore = (function(){
config: {
Addresses: {
Swarm: [
- '/ip4/163.172.37.165/tcp/4001/ipfs/QmRvfRjoCCwVLbVAiYWqJJCiQKqGqSuKckv4eDKEHZXxZu'
+ '/ip4/163.172.37.165/tcp/4001/ip... | Add more Swarm servers to IPFS |
diff --git a/bigchaindb/version.py b/bigchaindb/version.py
index <HASH>..<HASH> 100644
--- a/bigchaindb/version.py
+++ b/bigchaindb/version.py
@@ -1,2 +1,2 @@
-__version__ = '0.5.1'
-__short_version__ = '0.5'
+__version__ = '0.6.0'
+__short_version__ = '0.6' | Bumped the version number to <I> in version.py |
diff --git a/java/server/test/org/openqa/selenium/grid/node/config/NodeOptionsTest.java b/java/server/test/org/openqa/selenium/grid/node/config/NodeOptionsTest.java
index <HASH>..<HASH> 100644
--- a/java/server/test/org/openqa/selenium/grid/node/config/NodeOptionsTest.java
+++ b/java/server/test/org/openqa/selenium/gri... | [java] Oh, I've mixed up system properties with env variables... |
diff --git a/src/module/Tree.js b/src/module/Tree.js
index <HASH>..<HASH> 100644
--- a/src/module/Tree.js
+++ b/src/module/Tree.js
@@ -109,10 +109,6 @@ class Tree extends Component {
this.setCollapsible = this.setCollapsible.bind(this);
this.populateData = this.populateData.bind(this);
this.populateError... | Translate the tree one very property change.
This makes it possible to re-render the tree without remounting
the component, which is required for embedding the application
in a react application. |
diff --git a/subliminal/services/bierdopje.py b/subliminal/services/bierdopje.py
index <HASH>..<HASH> 100644
--- a/subliminal/services/bierdopje.py
+++ b/subliminal/services/bierdopje.py
@@ -19,7 +19,7 @@ from . import ServiceBase
from ..cache import cachedmethod
from ..exceptions import ServiceError
from ..language... | Fix subtitle release name in BierDopje
Matching confidence could not be computed because of the
missing extension |
diff --git a/ReText/window.py b/ReText/window.py
index <HASH>..<HASH> 100644
--- a/ReText/window.py
+++ b/ReText/window.py
@@ -261,9 +261,9 @@ class ReTextWindow(QMainWindow):
self.symbolBox.activated.connect(self.insertSymbol)
self.updateStyleSheet()
menubar = self.menuBar()
- menuFile = menubar.addMenu(self... | Underline character mnemonics.
In order to indicate keyboard shortcuts for items in the menu bar. |
diff --git a/spec/unit/compiler/text_processor_spec.rb b/spec/unit/compiler/text_processor_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/compiler/text_processor_spec.rb
+++ b/spec/unit/compiler/text_processor_spec.rb
@@ -234,6 +234,20 @@ module Epuber
XHTMLProcessor.resolved_link_to_file('', nil, 'ro... | [Spec] add one test to text_processor_spec |
diff --git a/Log/Logger.php b/Log/Logger.php
index <HASH>..<HASH> 100644
--- a/Log/Logger.php
+++ b/Log/Logger.php
@@ -36,11 +36,11 @@ class Logger implements LoggerInterface
$logMessage->setLevel($level);
if ($context) {
- if (isset($context['request'])) {
+ if (!empty($contex... | Check context response/request existence before logging it (#<I>) |
diff --git a/src/Signature.php b/src/Signature.php
index <HASH>..<HASH> 100644
--- a/src/Signature.php
+++ b/src/Signature.php
@@ -268,7 +268,12 @@ final class Signature
* A signature is valid if r is congruent to x1 (mod n)
* or in other words, if r - x1 is an integer multiple of n.
... | Added exception to Verify() function |
diff --git a/lib/resources/setup.js b/lib/resources/setup.js
index <HASH>..<HASH> 100644
--- a/lib/resources/setup.js
+++ b/lib/resources/setup.js
@@ -55,7 +55,7 @@ function tableCreation(req, res, next) {
oncomplete: function(err) {
if(err) return next(err);
- res.end();
+ res.end('data: ' + JS... | Send done message when all tables are created |
diff --git a/common/src/main/java/tachyon/security/authentication/AuthenticationUtils.java b/common/src/main/java/tachyon/security/authentication/AuthenticationUtils.java
index <HASH>..<HASH> 100644
--- a/common/src/main/java/tachyon/security/authentication/AuthenticationUtils.java
+++ b/common/src/main/java/tachyon/se... | Use timeout for thrift RPCs |
diff --git a/src/graph/Plot.java b/src/graph/Plot.java
index <HASH>..<HASH> 100644
--- a/src/graph/Plot.java
+++ b/src/graph/Plot.java
@@ -199,7 +199,7 @@ public final class Plot {
final PrintWriter datafile = new PrintWriter(datafiles[i]);
try {
for (final DataPoint d : datapoints.get(i)) {
- ... | Modify Plot to convert the ms timestamps back to seconds |
diff --git a/handler.go b/handler.go
index <HASH>..<HASH> 100644
--- a/handler.go
+++ b/handler.go
@@ -47,7 +47,7 @@ func HandlerLoggerRouter(fn Handler) httprouter.Handle {
}
func handlerLogger(fn Handler, w http.ResponseWriter, r *http.Request, p httprouter.Params) {
- l := newHandlerLogEntry(r)
+ l := NewHandler... | Exported NewHandlerLogEntry. |
diff --git a/lib/danger/danger_core/dangerfile.rb b/lib/danger/danger_core/dangerfile.rb
index <HASH>..<HASH> 100644
--- a/lib/danger/danger_core/dangerfile.rb
+++ b/lib/danger/danger_core/dangerfile.rb
@@ -250,7 +250,7 @@ module Danger
danger_id: danger_id
}
- if env.request_source.respond_to?... | Prevent message aggregation unless DANGER_MESSAGE_AGGREGATION environment variable is set |
diff --git a/pydbus/bus.py b/pydbus/bus.py
index <HASH>..<HASH> 100644
--- a/pydbus/bus.py
+++ b/pydbus/bus.py
@@ -53,15 +53,6 @@ class Bus(OwnMixin, WatchMixin):
return self
def __exit__(self, exc_type, exc_value, traceback):
- if self.con:
- self.close()
-
- def __del__(self):
- if self.con:
- self.close... | Drop bus.close(), as it does an unexpected thing.
In __init__ we obtain a reference to a singleton object,
and do not create it. Therefore we shouldn't close it on exit. |
diff --git a/features/eolearn/features/interpolation.py b/features/eolearn/features/interpolation.py
index <HASH>..<HASH> 100644
--- a/features/eolearn/features/interpolation.py
+++ b/features/eolearn/features/interpolation.py
@@ -128,7 +128,8 @@ class InterpolationTask(EOTask):
if self.feature_name not in eop... | minor fixes
* copy data array when setting invalid data to nans
* adding bbox to newly created eopatch |
diff --git a/tests/GeometryTest.php b/tests/GeometryTest.php
index <HASH>..<HASH> 100644
--- a/tests/GeometryTest.php
+++ b/tests/GeometryTest.php
@@ -319,7 +319,7 @@ class GeometryTest extends AbstractTestCase
* @param string $geometry The WKT of the geometry to test.
* @param string $envelope The WKT of t... | Fix test not running due to incorrect method name |
diff --git a/lib/ruby-lint/definitions/core/env.rb b/lib/ruby-lint/definitions/core/env.rb
index <HASH>..<HASH> 100644
--- a/lib/ruby-lint/definitions/core/env.rb
+++ b/lib/ruby-lint/definitions/core/env.rb
@@ -4,6 +4,7 @@
# Platform: rbx 2.0.0.rc1
#
RubyLint::GlobalScope.definitions.define_constant('ENV') do |klass... | ENV should inherit from Hash.
Although technically not true the class of ENV is "undefined" between Ruby
implementations. Since it behaves like a Hash this the closest and easiest
solution. |
diff --git a/example/rcnn/rcnn/dataset/pascal_voc_eval.py b/example/rcnn/rcnn/dataset/pascal_voc_eval.py
index <HASH>..<HASH> 100644
--- a/example/rcnn/rcnn/dataset/pascal_voc_eval.py
+++ b/example/rcnn/rcnn/dataset/pascal_voc_eval.py
@@ -48,8 +48,8 @@ def voc_ap(rec, prec, use_07_metric=False):
ap += p / ... | Fix voc_ap issue in rcnn test path. (#<I>)
* Fixes mxnet additonal deps: python-matplotlib is an apt package, not a pip package, and the pip package for scimage is scikit-image
* Fixes issue in voc_ap where np.concatenate expects a tuple. |
diff --git a/src/frontend/org/voltdb/dbmonitor/js/voltdb.sqlquery.ui.js b/src/frontend/org/voltdb/dbmonitor/js/voltdb.sqlquery.ui.js
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/dbmonitor/js/voltdb.sqlquery.ui.js
+++ b/src/frontend/org/voltdb/dbmonitor/js/voltdb.sqlquery.ui.js
@@ -1,5 +1,13 @@
$(document... | Modified code to use 'F6' key to execute query in studio in case of Safari browser. |
diff --git a/qingstor/sdk/unpack.py b/qingstor/sdk/unpack.py
index <HASH>..<HASH> 100644
--- a/qingstor/sdk/unpack.py
+++ b/qingstor/sdk/unpack.py
@@ -51,7 +51,7 @@ class Unpacker(dict):
# In other situations, body should not be unpacked for possibly large memory usage
if not (
self.r... | Fix key error while delete not return content-type |
diff --git a/addon/utils/first-load-offline-objects.js b/addon/utils/first-load-offline-objects.js
index <HASH>..<HASH> 100644
--- a/addon/utils/first-load-offline-objects.js
+++ b/addon/utils/first-load-offline-objects.js
@@ -57,7 +57,9 @@ export function firstLoadOfflineObjects(dexieDB, odataPath, functionName, model... | Add rejected model to firstLoadOfflineObjects function |
diff --git a/stream.js b/stream.js
index <HASH>..<HASH> 100644
--- a/stream.js
+++ b/stream.js
@@ -35,6 +35,8 @@ Stream.prototype._ready = function () {
else
this.cursor = ltgt.lowerBound(this.opts, 0)
+ if(this.cursor < 0) this.cursor = 0
+
var self = this
this.blocks.getBlock(~~(this.cursor/self.bloc... | accept -1 as a lower bound, compat with flumelog |
diff --git a/lib/celluloid/zmq.rb b/lib/celluloid/zmq.rb
index <HASH>..<HASH> 100644
--- a/lib/celluloid/zmq.rb
+++ b/lib/celluloid/zmq.rb
@@ -6,6 +6,8 @@ require 'celluloid/zmq/reactor'
module Celluloid
# Actors which run alongside 0MQ operations
+ # This is a temporary hack (hopefully) until ffi-rzmq exposes I... | A note on Celluloid::ZMQ's hopefully ephemeral nature |
diff --git a/keyring/backend.py b/keyring/backend.py
index <HASH>..<HASH> 100644
--- a/keyring/backend.py
+++ b/keyring/backend.py
@@ -232,9 +232,9 @@ class SchemeSelectable:
KeypassXC=dict(username='UserName', service='Title'),
)
- def _query(self, service, username):
+ def _query(self, service, ... | Allow _query to include other keys |
diff --git a/sprd/model/Order.js b/sprd/model/Order.js
index <HASH>..<HASH> 100644
--- a/sprd/model/Order.js
+++ b/sprd/model/Order.js
@@ -20,7 +20,11 @@ define(["sprd/data/SprdModel", "sprd/model/Shop", "sprd/model/OrderItem", "js/da
billing: Delivery.Billing,
shipping: Shipping,
... | DEV-<I> - added user into Order model |
diff --git a/src/js/ripple/remote.js b/src/js/ripple/remote.js
index <HASH>..<HASH> 100644
--- a/src/js/ripple/remote.js
+++ b/src/js/ripple/remote.js
@@ -2036,7 +2036,7 @@ Remote.prepareCurrencies = function(currency) {
}
if (currency.hasOwnProperty('currency')) {
- newCurrency.currency = Currency.json_rewr... | [FIX] Cannot use demmurage currencies in path_find
Use hex format instead of json for currencies. |
diff --git a/packages/react-bootstrap-table2/src/bootstrap-table.js b/packages/react-bootstrap-table2/src/bootstrap-table.js
index <HASH>..<HASH> 100644
--- a/packages/react-bootstrap-table2/src/bootstrap-table.js
+++ b/packages/react-bootstrap-table2/src/bootstrap-table.js
@@ -170,7 +170,7 @@ BootstrapTable.propTypes ... | fix Warning: Failed prop type: Invalid prop of type supplied to , expected |
diff --git a/addon/models/user.js b/addon/models/user.js
index <HASH>..<HASH> 100644
--- a/addon/models/user.js
+++ b/addon/models/user.js
@@ -3,10 +3,10 @@ import DS from 'ember-data';
import OsfModel from 'ember-osf/models/base';
export default OsfModel.extend({
- full_name: DS.attr('string'),
- given_name:... | CamelCase user model fields |
diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py
index <HASH>..<HASH> 100644
--- a/python/ccxt/async_support/base/exchange.py
+++ b/python/ccxt/async_support/base/exchange.py
@@ -74,12 +74,8 @@ class Exchange(BaseExchange):
def open(self):
if self.own_... | async_support/base/exchange.py minor simplifications #<I> |
diff --git a/pyramid_webassets/tests/test_webassets.py b/pyramid_webassets/tests/test_webassets.py
index <HASH>..<HASH> 100644
--- a/pyramid_webassets/tests/test_webassets.py
+++ b/pyramid_webassets/tests/test_webassets.py
@@ -776,7 +776,13 @@ class TestBaseUrlBehavior(object):
# Work a bit the resolve outp... | Test package root asset spec base directory |
diff --git a/taskcluster/aio/asyncclient.py b/taskcluster/aio/asyncclient.py
index <HASH>..<HASH> 100644
--- a/taskcluster/aio/asyncclient.py
+++ b/taskcluster/aio/asyncclient.py
@@ -221,7 +221,7 @@ class AsyncBaseClient(BaseClient):
try:
await response.release()
return aw... | The exception raised by async .json() call has changed. |
diff --git a/packages/cozy-client/src/models/accounts.js b/packages/cozy-client/src/models/accounts.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-client/src/models/accounts.js
+++ b/packages/cozy-client/src/models/accounts.js
@@ -5,7 +5,7 @@ import get from 'lodash/get'
*
* @param {object} account io.cozy.acco... | Update packages/cozy-client/src/models/accounts.js |
diff --git a/circuits.js b/circuits.js
index <HASH>..<HASH> 100644
--- a/circuits.js
+++ b/circuits.js
@@ -165,12 +165,12 @@ Circuits.prototype.handleRequest = function handleRequest(req, buildRes, nextHan
var arg1 = String(req.arg1);
var circuit = self.getCircuit(callerName, serviceName, arg1);
- if (ci... | Circuits: normalize declined path in #handleRequest |
diff --git a/src/js/modules/metrics.js b/src/js/modules/metrics.js
index <HASH>..<HASH> 100644
--- a/src/js/modules/metrics.js
+++ b/src/js/modules/metrics.js
@@ -1,6 +1,6 @@
import {apiUri} from '../../../config'
-import {checkFetchStatus} from './utilities'
import fetch from 'isomorphic-fetch'
+import {checkFetchSt... | Closes #<I>. Fixed user session issue |
diff --git a/addon/components/sl-chart.js b/addon/components/sl-chart.js
index <HASH>..<HASH> 100755
--- a/addon/components/sl-chart.js
+++ b/addon/components/sl-chart.js
@@ -162,8 +162,6 @@ export default Ember.Component.extend({
function() {
const chartStyle = {
fontFamily: [
- ... | Remove font family entries in sl-chart |
diff --git a/src/main/groovy/util/logging/Log4j2.java b/src/main/groovy/util/logging/Log4j2.java
index <HASH>..<HASH> 100644
--- a/src/main/groovy/util/logging/Log4j2.java
+++ b/src/main/groovy/util/logging/Log4j2.java
@@ -53,7 +53,7 @@ import org.objectweb.asm.Opcodes;
* If the expression exp is a constant or only a... | set since version to <I> |
diff --git a/spec/swagger_v2/api_swagger_v2_format-content_type_spec.rb b/spec/swagger_v2/api_swagger_v2_format-content_type_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/swagger_v2/api_swagger_v2_format-content_type_spec.rb
+++ b/spec/swagger_v2/api_swagger_v2_format-content_type_spec.rb
@@ -41,7 +41,7 @@ describe 'f... | Spec: rename an it clause to match test
- this text edit fixes #<I> |
diff --git a/js/huobipro.js b/js/huobipro.js
index <HASH>..<HASH> 100644
--- a/js/huobipro.js
+++ b/js/huobipro.js
@@ -791,9 +791,9 @@ module.exports = class huobipro extends Exchange {
await this.loadMarkets ();
await this.loadAccounts ();
const market = this.market (symbol);
-
- let ... | fix the huobipro market buy order amount issue |
diff --git a/src/main/java/au/com/southsky/jfreesane/FrameInputStream.java b/src/main/java/au/com/southsky/jfreesane/FrameInputStream.java
index <HASH>..<HASH> 100644
--- a/src/main/java/au/com/southsky/jfreesane/FrameInputStream.java
+++ b/src/main/java/au/com/southsky/jfreesane/FrameInputStream.java
@@ -46,12 +46,11 ... | Write a byte array rather than individual bytes |
diff --git a/jwcrypto/jwa.py b/jwcrypto/jwa.py
index <HASH>..<HASH> 100644
--- a/jwcrypto/jwa.py
+++ b/jwcrypto/jwa.py
@@ -828,7 +828,7 @@ class _EcdhEsAes192Kw(_EcdhEs):
class _EcdhEsAes256Kw(_EcdhEs):
name = 'ECDH-ES+A256KW'
- description = 'ECDH-ES using Concat KDF and "A128KW" wrapping'
+ description ... | Fixing "A<I>KW" under "_EcdhEsAes<I>Kw"
There was a typo in the "_EcdhEsAes<I>Kw" class. I have changed "A<I>KW" in the description for the class to become "A<I>KW" in accordance with the algorithm. |
diff --git a/pusher/sync.py b/pusher/sync.py
index <HASH>..<HASH> 100644
--- a/pusher/sync.py
+++ b/pusher/sync.py
@@ -19,9 +19,6 @@ class SynchronousBackend(object):
self.config = config
self.timeout = timeout
if config.ssl:
- if sys.version_info < (3,4):
- raise No... | Remove artificial restriction on sync+SSL |
diff --git a/OpenSSL/test/test_crypto.py b/OpenSSL/test/test_crypto.py
index <HASH>..<HASH> 100644
--- a/OpenSSL/test/test_crypto.py
+++ b/OpenSSL/test/test_crypto.py
@@ -2603,7 +2603,7 @@ class CRLTests(TestCase):
def test_export_invalid(self):
"""
If :py:obj:`CRL.export` is used with an uniniti... | Fix an incorrect exception name in a test method docstring. |
diff --git a/lib/svtplay_dl/service/dplay.py b/lib/svtplay_dl/service/dplay.py
index <HASH>..<HASH> 100644
--- a/lib/svtplay_dl/service/dplay.py
+++ b/lib/svtplay_dl/service/dplay.py
@@ -17,7 +17,7 @@ from svtplay_dl.utils import filenamify
from svtplay_dl.log import log
class Dplay(Service):
- supported_domains... | dplay: support for dplay.dk and it.dplay.com |
diff --git a/src/requirementslib/models/utils.py b/src/requirementslib/models/utils.py
index <HASH>..<HASH> 100644
--- a/src/requirementslib/models/utils.py
+++ b/src/requirementslib/models/utils.py
@@ -120,7 +120,6 @@ def validate_vcs(instance, attr_, value):
def validate_path(instance, attr_, value):
- return... | Fix a bug related to ramdisks and pathlib resolve |
diff --git a/tests/CarbonPeriod/SettersTest.php b/tests/CarbonPeriod/SettersTest.php
index <HASH>..<HASH> 100644
--- a/tests/CarbonPeriod/SettersTest.php
+++ b/tests/CarbonPeriod/SettersTest.php
@@ -460,13 +460,13 @@ class SettersTest extends AbstractTestCase
$this->assertSame('2018-03-25 12:00 Europe/Oslo', $... | Avoid DST as it change in PHP <I> |
diff --git a/widgets/SimpleNav.php b/widgets/SimpleNav.php
index <HASH>..<HASH> 100644
--- a/widgets/SimpleNav.php
+++ b/widgets/SimpleNav.php
@@ -66,7 +66,7 @@ class SimpleNav extends \yii\bootstrap\Widget
Html::addCssClass($this->options, 'nav');
//activate parents if desired
- if ($this->activateParents) {
... | bugfix with using old varname in SimpleNav-widget |
diff --git a/lib/Widget/Validator.php b/lib/Widget/Validator.php
index <HASH>..<HASH> 100644
--- a/lib/Widget/Validator.php
+++ b/lib/Widget/Validator.php
@@ -9,6 +9,7 @@
namespace Widget;
use Widget\Validator\AbstractValidator;
+use Widget\Validator\ValidatorInterface;
/**
* Validator
@@ -172,7 +173,7 @@ clas... | used interface for instanceof instead of abstract class |
diff --git a/server/src/main/java/io/atomix/copycat/server/state/ServerSessionContext.java b/server/src/main/java/io/atomix/copycat/server/state/ServerSessionContext.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/io/atomix/copycat/server/state/ServerSessionContext.java
+++ b/server/src/main/java/io/atomix/... | Ensure EventHolder previousIndex is >= completeIndex |
diff --git a/php/test/test.php b/php/test/test.php
index <HASH>..<HASH> 100644
--- a/php/test/test.php
+++ b/php/test/test.php
@@ -114,7 +114,7 @@ function test_trades($exchange, $symbol) {
function test_symbol($exchange, $symbol) {
test_ticker($exchange, $symbol);
- if ('coinmarketcap' == $exchange->id) {
+... | test.php l-val ←→ r-val in `if` clauses |
diff --git a/src/main/java/azkaban/utils/PropsUtils.java b/src/main/java/azkaban/utils/PropsUtils.java
index <HASH>..<HASH> 100644
--- a/src/main/java/azkaban/utils/PropsUtils.java
+++ b/src/main/java/azkaban/utils/PropsUtils.java
@@ -269,7 +269,6 @@ public class PropsUtils {
}
String newValue = value.substri... | Removing errant Sys out statement |
diff --git a/src/model/specials/GlobalModel.js b/src/model/specials/GlobalModel.js
index <HASH>..<HASH> 100644
--- a/src/model/specials/GlobalModel.js
+++ b/src/model/specials/GlobalModel.js
@@ -10,6 +10,10 @@ class GlobalModel extends Model {
this.adaptors = [];
this.changes = {};
}
+
+ getKeypath() {
+ retur... | return appropriate keypath for ractive and global special models |
diff --git a/lib/ore/versions/version_constant.rb b/lib/ore/versions/version_constant.rb
index <HASH>..<HASH> 100644
--- a/lib/ore/versions/version_constant.rb
+++ b/lib/ore/versions/version_constant.rb
@@ -52,7 +52,9 @@ module Ore
file.each_line do |line|
unless line =~ /^\s*#/ # skip commented... | Be more careful when extracting version constants. |
diff --git a/rest_registration/__init__.py b/rest_registration/__init__.py
index <HASH>..<HASH> 100644
--- a/rest_registration/__init__.py
+++ b/rest_registration/__init__.py
@@ -1,2 +1,2 @@
-__version__ = "0.5.3"
+__version__ = "0.5.4"
default_app_config = 'rest_registration.apps.RestRegistrationConfig' | Version <I>
Changes:
* Re-enable Django <I> and DRF <I> support (issue #<I>)
* Put the code for sending the register verification email in separate
`send_register_verification_email_notification` (issue #<I>) |
diff --git a/src/ocrmypdf/leptonica.py b/src/ocrmypdf/leptonica.py
index <HASH>..<HASH> 100644
--- a/src/ocrmypdf/leptonica.py
+++ b/src/ocrmypdf/leptonica.py
@@ -24,6 +24,7 @@ import argparse
import sys
import os
import logging
+import warnings
from tempfile import TemporaryFile
from ctypes.util import find_libra... | Deprecate Pix.read() behaving as an open function |
diff --git a/lib/rbgccxml/node_cache.rb b/lib/rbgccxml/node_cache.rb
index <HASH>..<HASH> 100644
--- a/lib/rbgccxml/node_cache.rb
+++ b/lib/rbgccxml/node_cache.rb
@@ -29,11 +29,16 @@ module RbGCCXML
@index_list[id]
end
+ # Given an array of ids return an array of nodes that match
+ def find_... | Can find a set of nodes given a set of ids |
diff --git a/src/Co.php b/src/Co.php
index <HASH>..<HASH> 100644
--- a/src/Co.php
+++ b/src/Co.php
@@ -8,7 +8,6 @@ use Swoole\Coroutine;
/**
* Class Co
* @since 2.0
- * @package Swoft
*/
class Co
{
@@ -59,11 +58,11 @@ class Co
{
$tid = self::tid();
- // return coroutine ID for created.... | update some logic for ws server |
diff --git a/user/index.php b/user/index.php
index <HASH>..<HASH> 100644
--- a/user/index.php
+++ b/user/index.php
@@ -68,6 +68,9 @@
foreach ($students as $student) {
print_user($student, $course, $string);
}
+ } else if ($numstudents > $USER_HUGE_CLASS) {
+ ... | For very large classes don't even try to show all the participants |
diff --git a/alerta/app/webhooks/views.py b/alerta/app/webhooks/views.py
index <HASH>..<HASH> 100644
--- a/alerta/app/webhooks/views.py
+++ b/alerta/app/webhooks/views.py
@@ -372,16 +372,19 @@ def parse_stackdriver(notification):
try:
alert = db.get_alerts(query={'attributes.incidentId': incident[... | Add create time and catch unknown incident IDs |
diff --git a/Exedra/Application/Map/Convenient/Group.php b/Exedra/Application/Map/Convenient/Group.php
index <HASH>..<HASH> 100644
--- a/Exedra/Application/Map/Convenient/Group.php
+++ b/Exedra/Application/Map/Convenient/Group.php
@@ -11,7 +11,9 @@ class Group extends \Exedra\Application\Map\Level
*/
public functi... | Convenient Routing : empty uri on passed default
- and added setName on Map\Route for renaming capability
- ltrim / from each uri on validation |
diff --git a/i3ipc/aio/connection.py b/i3ipc/aio/connection.py
index <HASH>..<HASH> 100644
--- a/i3ipc/aio/connection.py
+++ b/i3ipc/aio/connection.py
@@ -459,7 +459,16 @@ class Connection:
assert magic == _MAGIC
try:
- message = await self._loop.sock_recv(self._cmd_socket, message_length... | aio: Read all message_length bytes from message response
`sock_recv` reads up to the specified amount of bytes, and can in some
situations return less than the requested amount. Make sure we read all
`message_length` bytes of the response before returning. |
diff --git a/Classes/Backend/LayoutSetup.php b/Classes/Backend/LayoutSetup.php
index <HASH>..<HASH> 100644
--- a/Classes/Backend/LayoutSetup.php
+++ b/Classes/Backend/LayoutSetup.php
@@ -74,6 +74,10 @@ class LayoutSetup
$this->setDatabaseConnection($GLOBALS['TYPO3_DB']);
$this->setLanguageService($GLO... | [BUGFIX] Get correct PID since negative IDs point to content records
Change-Id: Ide<I>a<I>e4af<I>d<I>a<I>f<I>df<I>
Resolves: #<I>
Releases: master, 7-0
Reviewed-on: <URL> |
diff --git a/spec/RequestSpec.php b/spec/RequestSpec.php
index <HASH>..<HASH> 100644
--- a/spec/RequestSpec.php
+++ b/spec/RequestSpec.php
@@ -87,6 +87,13 @@ class RequestSpec extends ObjectBehavior
$request->getPaginationType()->shouldReturn(Request::CURSOR_PAGINATION);
}
+ public function it_can_se... | Add ability to set included resources immutably |
diff --git a/lib/commands/travis-visual-acceptance.js b/lib/commands/travis-visual-acceptance.js
index <HASH>..<HASH> 100644
--- a/lib/commands/travis-visual-acceptance.js
+++ b/lib/commands/travis-visual-acceptance.js
@@ -101,13 +101,11 @@ module.exports = {
var prNumber = process.env.TRAVIS_PULL_REQUEST
- ... | Wrap the creation of the repo with condition |
diff --git a/Testing/Fakes/EventFake.php b/Testing/Fakes/EventFake.php
index <HASH>..<HASH> 100644
--- a/Testing/Fakes/EventFake.php
+++ b/Testing/Fakes/EventFake.php
@@ -135,7 +135,7 @@ class EventFake implements Dispatcher
*/
public function listen($events, $listener)
{
- //
+ $this->dis... | Non faked events should be properly dispatched (#<I>) |
diff --git a/lib/flapjack/utility.rb b/lib/flapjack/utility.rb
index <HASH>..<HASH> 100644
--- a/lib/flapjack/utility.rb
+++ b/lib/flapjack/utility.rb
@@ -7,10 +7,10 @@ module Flapjack
period_mm, period_ss = period.divmod(60)
period_hh, period_mm = period_mm.divmod(60)
period_dd, period_hh = per... | don't pluralise singular time periods |
diff --git a/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php b/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php
index <HASH>..<HASH> 100644
--- a/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php
+++ b/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php
@@ -61,6 ... | Pass charsetChanged() call to the safeEncoder |
diff --git a/server/src/main/java/io/druid/query/lookup/LookupModule.java b/server/src/main/java/io/druid/query/lookup/LookupModule.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/io/druid/query/lookup/LookupModule.java
+++ b/server/src/main/java/io/druid/query/lookup/LookupModule.java
@@ -118,7 +118,8 @@ c... | Make lookups more idempotent on update requests. (#<I>)
* No longer fails if an update fails but it shouldn't have replaced it |
diff --git a/build/populate.js b/build/populate.js
index <HASH>..<HASH> 100644
--- a/build/populate.js
+++ b/build/populate.js
@@ -26,7 +26,9 @@ var populateBin = function (ownerBin, done) {
if (err) return done(err);
ownerBin.summary = utils.titleForBin(sandboxBin);
- ownerBin.date = ownerBin.last_updat... | Fixed Tom's code. Duh |
diff --git a/mlbgame/game.py b/mlbgame/game.py
index <HASH>..<HASH> 100644
--- a/mlbgame/game.py
+++ b/mlbgame/game.py
@@ -252,4 +252,35 @@ def get_stats(game_id):
elif not home:
away_batting.append(stats)
output = {'home_pitching':home_pitching, 'away_pitching':away_pitching, 'home_b... | Better printing and store numbers as ints |
diff --git a/indra/preassembler/grounding_mapper.py b/indra/preassembler/grounding_mapper.py
index <HASH>..<HASH> 100644
--- a/indra/preassembler/grounding_mapper.py
+++ b/indra/preassembler/grounding_mapper.py
@@ -53,7 +53,7 @@ class GroundingMapper(object):
up_id = map_db_refs.get('UP')
... | Don't force web fallback for gene name lookup |
diff --git a/src/main/java/com/samskivert/net/MailUtil.java b/src/main/java/com/samskivert/net/MailUtil.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/samskivert/net/MailUtil.java
+++ b/src/main/java/com/samskivert/net/MailUtil.java
@@ -136,7 +136,7 @@ public class MailUtil
}
message... | Protect from stupid null usage by javax.mail.
If you add no addresses to a message, getting the recipient array
returns null rather than an empty array. So fucking dumb. |
diff --git a/spec/rails_best_practices/reviews/remove_unused_methods_in_controllers_review_spec.rb b/spec/rails_best_practices/reviews/remove_unused_methods_in_controllers_review_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/rails_best_practices/reviews/remove_unused_methods_in_controllers_review_spec.rb
+++ b/spec/ra... | remove unused method in controllers if it is a helper method but not called |
diff --git a/b2handle/tests/main_test_script.py b/b2handle/tests/main_test_script.py
index <HASH>..<HASH> 100644
--- a/b2handle/tests/main_test_script.py
+++ b/b2handle/tests/main_test_script.py
@@ -90,9 +90,9 @@ if __name__ == '__main__':
numtests += n
print 'Number of tests for client (no access req... | Bugfix: Changed name of test file. |
diff --git a/src/loader/loader.js b/src/loader/loader.js
index <HASH>..<HASH> 100644
--- a/src/loader/loader.js
+++ b/src/loader/loader.js
@@ -195,7 +195,7 @@
var httpReq = new XMLHttpRequest();
// load our file
- httpReq.open("GET", data.src + obj.nocache, false);
+ httpReq.open("GET", data.src + obj.noc... | set binary load to async, and removed the usage of dataType |
diff --git a/core/common/src/main/java/alluxio/RuntimeConstants.java b/core/common/src/main/java/alluxio/RuntimeConstants.java
index <HASH>..<HASH> 100644
--- a/core/common/src/main/java/alluxio/RuntimeConstants.java
+++ b/core/common/src/main/java/alluxio/RuntimeConstants.java
@@ -19,11 +19,12 @@ import javax.annotati... | Do not get the same property value repeatedly in the same block. |
diff --git a/CachedImage.js b/CachedImage.js
index <HASH>..<HASH> 100644
--- a/CachedImage.js
+++ b/CachedImage.js
@@ -87,7 +87,7 @@ const CachedImage = React.createClass({
componentWillMount() {
this._isMounted = true;
- NetInfo.isConnected.addEventListener('change', this.handleConnectivityChang... | Listen NetInfo connectionChange event (change deprecated) |
diff --git a/pysat/constellations/single_test.py b/pysat/constellations/single_test.py
index <HASH>..<HASH> 100644
--- a/pysat/constellations/single_test.py
+++ b/pysat/constellations/single_test.py
@@ -1,5 +1,11 @@
"""
Create a constellation with one testing instrument
+
+Attributes
+----------
+instruments : list
+... | DOC: updated docstrings
Updated constellation testing docstrings. |
diff --git a/bucky/statsd.py b/bucky/statsd.py
index <HASH>..<HASH> 100644
--- a/bucky/statsd.py
+++ b/bucky/statsd.py
@@ -91,7 +91,6 @@ class StatsDHandler(threading.Thread):
for k, v in self.gauges.iteritems():
stat = "stats.gauges.%s" % k
self.enqueue(stat, v, stime)
- s... | Gauges are constant until overwritten, and not reset at flush time. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.