diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -75,10 +75,14 @@ module.exports = function(service, dcPath, app) {
* last, and that allows us to override everything:
*/
- addFileIfExists('docker-compose.yml', command);
- addFileIfExists('docker-compose.d... | [#<I>] use map for list of files to try to load |
diff --git a/tests/calculators/hazard/classical/post_processing_test.py b/tests/calculators/hazard/classical/post_processing_test.py
index <HASH>..<HASH> 100644
--- a/tests/calculators/hazard/classical/post_processing_test.py
+++ b/tests/calculators/hazard/classical/post_processing_test.py
@@ -31,8 +31,10 @@ import num... | tests/calcs/hazard/classical/post_processing_test:
Stubbed the basic test run for exercising hazard map creation.
The hazard maps are created, but we still test the output values.
Former-commit-id: c8b1e<I>fceb4f<I>ca<I>aa4bbb0dd4c<I>c3c |
diff --git a/Tone/source/PulseOscillator.js b/Tone/source/PulseOscillator.js
index <HASH>..<HASH> 100644
--- a/Tone/source/PulseOscillator.js
+++ b/Tone/source/PulseOscillator.js
@@ -34,7 +34,7 @@ define(["../core/Tone", "../source/Source", "../source/Oscillator",
* @type {Tone.Gain}
* @private
*/
- this... | setting gain to 0 initially keeps it from popping |
diff --git a/src/Console/Command/Task/PluginTask.php b/src/Console/Command/Task/PluginTask.php
index <HASH>..<HASH> 100644
--- a/src/Console/Command/Task/PluginTask.php
+++ b/src/Console/Command/Task/PluginTask.php
@@ -47,7 +47,7 @@ class PluginTask extends BakeTask {
*/
public function initialize() {
$this->pat... | Fix bootstrap file path in PluginTask. |
diff --git a/src/Post_Meta_Command.php b/src/Post_Meta_Command.php
index <HASH>..<HASH> 100644
--- a/src/Post_Meta_Command.php
+++ b/src/Post_Meta_Command.php
@@ -1,7 +1,7 @@
<?php
/**
- * Manage post custom fields.
+ * Adds, updates, deletes, and lists post custom fields.
*
* ## EXAMPLES
* | Use a more descriptive base summary for what actions are possible for post meta subcommands. |
diff --git a/lib/resque/errors.rb b/lib/resque/errors.rb
index <HASH>..<HASH> 100644
--- a/lib/resque/errors.rb
+++ b/lib/resque/errors.rb
@@ -4,4 +4,7 @@ module Resque
# Raised when trying to create a job without a class
class NoClassError < RuntimeError; end
+
+ # Raised when a worker was killed while proc... | Ensure a terminated worker's job is put in the error queue. |
diff --git a/src/Shortcodes/FileLink.php b/src/Shortcodes/FileLink.php
index <HASH>..<HASH> 100644
--- a/src/Shortcodes/FileLink.php
+++ b/src/Shortcodes/FileLink.php
@@ -27,4 +27,12 @@ class FileLink extends DataObject
'Parent' => DataObject::class,
'Linked' => File::class,
];
+
+ /**
+ *... | Do not display records with `hide_in_campaigns` config set to `true` in the `Used On` table of files |
diff --git a/holoviews/core/__init__.py b/holoviews/core/__init__.py
index <HASH>..<HASH> 100644
--- a/holoviews/core/__init__.py
+++ b/holoviews/core/__init__.py
@@ -14,6 +14,6 @@ def public(obj):
return any([issubclass(obj, bc) for bc in baseclasses])
_public = list(set([_k for _k, _v in locals().items() if p... | Removed import of core.holoview |
diff --git a/kerncraft/iaca.py b/kerncraft/iaca.py
index <HASH>..<HASH> 100755
--- a/kerncraft/iaca.py
+++ b/kerncraft/iaca.py
@@ -77,7 +77,7 @@ def find_asm_blocks(asm_lines):
m.group('idx'),
int(m.group('scale')) if m.group('scale') else 1))
- if re.match(r"^[v]?(mul|add|sub... | added support for FMA in block stats |
diff --git a/napalm_base/utils/string_parsers.py b/napalm_base/utils/string_parsers.py
index <HASH>..<HASH> 100644
--- a/napalm_base/utils/string_parsers.py
+++ b/napalm_base/utils/string_parsers.py
@@ -94,7 +94,7 @@ def convert_uptime_string_seconds(uptime):
uptime_seconds = 0
for unit, value in uptime_dic... | Fixing minor pylama issue |
diff --git a/spyder/plugins/console/plugin.py b/spyder/plugins/console/plugin.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/console/plugin.py
+++ b/spyder/plugins/console/plugin.py
@@ -216,6 +216,7 @@ class Console(SpyderPluginWidget):
if is_pyls_error:
title = "Internal Python Lang... | Error dialog: Disable title when reporting PyLS errors |
diff --git a/salt/grains/core.py b/salt/grains/core.py
index <HASH>..<HASH> 100644
--- a/salt/grains/core.py
+++ b/salt/grains/core.py
@@ -165,7 +165,7 @@ def _linux_gpu_data():
devs = []
try:
- lspci_out = __salt__['cmd.run']('lspci -vmm')
+ lspci_out = __salt__['cmd.run']('{0} -vmm'.format(l... | Use path found by salt.utils.which
I ran into this problem running `salt-ssh '*' test.ping` with a
XenServer <I> node as the target. Even though the `lspci` and
`dmidecode` (after I installed it) commands are found by
`salt.utils.which`, because they're not actually in the `$PATH`, they
fail to execute. |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -79,7 +79,7 @@ master_doc = 'index'
# General information about the project.
project = u'cookiecutter'
-copyright = u'2013-2015, Audrey Roy'
+copyright = u'2013-2016, Audrey Roy'
# The version info for t... | Updated copyright on docs from <I>-<I> to <I>-<I> per #<I>. |
diff --git a/code/Calendar.php b/code/Calendar.php
index <HASH>..<HASH> 100755
--- a/code/Calendar.php
+++ b/code/Calendar.php
@@ -661,7 +661,8 @@ class Calendar_Controller extends Page_Controller {
$xml = trim($xml);
HTTP::add_cache_headers();
$this->getResponse()->addHeader('Content-Type', 'application/rss+x... | Set headers correctly on RSS feed
In order for the headers to be set correctly, the response needs to be returned from the function rather than the raw content. |
diff --git a/tools/repl.js b/tools/repl.js
index <HASH>..<HASH> 100644
--- a/tools/repl.js
+++ b/tools/repl.js
@@ -17,6 +17,7 @@ var RapydScript = (typeof create_rapydscript_compiler === 'function') ? create_r
function create_ctx(baselib, show_js, console) {
var ctx = vm.createContext({'console':console, 'show_js... | Fix default __repr__ not working in REPL |
diff --git a/wffweb/src/main/java/com/webfirmframework/wffweb/server/page/js/WffJsFile.java b/wffweb/src/main/java/com/webfirmframework/wffweb/server/page/js/WffJsFile.java
index <HASH>..<HASH> 100644
--- a/wffweb/src/main/java/com/webfirmframework/wffweb/server/page/js/WffJsFile.java
+++ b/wffweb/src/main/java/com/web... | Minor optimizations
-- Improved js minification |
diff --git a/lxd/storage/drivers/utils.go b/lxd/storage/drivers/utils.go
index <HASH>..<HASH> 100644
--- a/lxd/storage/drivers/utils.go
+++ b/lxd/storage/drivers/utils.go
@@ -295,17 +295,12 @@ func deleteParentSnapshotDirIfEmpty(poolName string, volType VolumeType, volName
// ensureSparseFile creates a sparse empty fi... | lxd/storage: Fix regression in truncate handling |
diff --git a/lib/roo/open_office.rb b/lib/roo/open_office.rb
index <HASH>..<HASH> 100644
--- a/lib/roo/open_office.rb
+++ b/lib/roo/open_office.rb
@@ -13,9 +13,7 @@ class Roo::OpenOffice < Roo::Base
def process_zipfile(tmpdir, zip, path='')
if zip.file.file? path
if path == "content.xml"
- ... | Write the OpenOffice content file in one call. |
diff --git a/handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java b/handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java
index <HASH>..<HASH> 100644
--- a/handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java
+++ b/handler/src/main/java/io/netty/... | Correct merge error from f7b3caeddc5bb1da<I>aaafa4a<I>dec<I>ed<I>d<I> |
diff --git a/ara/clients/offline.py b/ara/clients/offline.py
index <HASH>..<HASH> 100644
--- a/ara/clients/offline.py
+++ b/ara/clients/offline.py
@@ -27,10 +27,10 @@ from django.core.management import execute_from_command_line
from django.test import Client
-class OfflineClient(object):
+class AraOfflineClient(ob... | Rename offline client class and fix django bootstrap
Wrong method name was used when bootstrapping django.
Change-Id: Iee<I>e<I>daaa7e<I>fb<I>f4da<I>a8 |
diff --git a/plexapi/playlist.py b/plexapi/playlist.py
index <HASH>..<HASH> 100644
--- a/plexapi/playlist.py
+++ b/plexapi/playlist.py
@@ -253,15 +253,13 @@ class Playlist(PlexPartialObject, Playable, ArtMixin, PosterMixin):
return cls(server, data, initpath=key)
def copyToUser(self, user):
- """... | Update Playlist.copyToUser with switchUser |
diff --git a/commands/command_pre_push.go b/commands/command_pre_push.go
index <HASH>..<HASH> 100644
--- a/commands/command_pre_push.go
+++ b/commands/command_pre_push.go
@@ -7,6 +7,7 @@ import (
"github.com/github/git-lfs/git"
"github.com/github/git-lfs/lfs"
+ "github.com/rubyist/tracerx"
"github.com/spf13/cob... | trace the refs and shas given to pre-push |
diff --git a/lib/synvert/core/node_ext.rb b/lib/synvert/core/node_ext.rb
index <HASH>..<HASH> 100644
--- a/lib/synvert/core/node_ext.rb
+++ b/lib/synvert/core/node_ext.rb
@@ -387,7 +387,9 @@ module Parser::AST
end
when String
if Parser::AST::Node === actual
- actual.to_source == expect... | fix match_value between symbol and string |
diff --git a/activesupport/test/core_ext/enumerable_test.rb b/activesupport/test/core_ext/enumerable_test.rb
index <HASH>..<HASH> 100644
--- a/activesupport/test/core_ext/enumerable_test.rb
+++ b/activesupport/test/core_ext/enumerable_test.rb
@@ -24,7 +24,7 @@ class EnumerableTests < ActiveSupport::TestCase
def test... | Removed unused comma after loop variable |
diff --git a/shinken/modules/livestatus_broker/mapping.py b/shinken/modules/livestatus_broker/mapping.py
index <HASH>..<HASH> 100644
--- a/shinken/modules/livestatus_broker/mapping.py
+++ b/shinken/modules/livestatus_broker/mapping.py
@@ -1557,7 +1557,7 @@ livestatus_attribute_map = {
},
'alias': {
... | Remove the servicegroup alias workaround in livestatus |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -31,6 +31,7 @@ MOCK_MODULES = [
'larcc.MAP', 'PyQt4', 'PyQt4.QtCore', 'PyQt4.QtGui', 'web', 'lar2psm',
'scipy.ndimage.measurements', 'lar', 'extern.lar', 'splines',
'scipy.sparse', 'skimage.filt... | mock skimage.filters |
diff --git a/lib/sanford/version.rb b/lib/sanford/version.rb
index <HASH>..<HASH> 100644
--- a/lib/sanford/version.rb
+++ b/lib/sanford/version.rb
@@ -1,3 +1,3 @@
module Sanford
- VERSION = "0.6.4"
+ VERSION = "0.6.5"
end | <I>
* Don't re-daemonize the process when restarting (#<I>) |
diff --git a/Resources/Public/JavaScript/Libs/jquery.responsiveimages.js b/Resources/Public/JavaScript/Libs/jquery.responsiveimages.js
index <HASH>..<HASH> 100644
--- a/Resources/Public/JavaScript/Libs/jquery.responsiveimages.js
+++ b/Resources/Public/JavaScript/Libs/jquery.responsiveimages.js
@@ -14,6 +14,7 @@
this... | Update jquery.responsiveimages.js
Use loaded flag to call unveil only when realy needed.
Fix container option no more needed. |
diff --git a/src/remote.js b/src/remote.js
index <HASH>..<HASH> 100644
--- a/src/remote.js
+++ b/src/remote.js
@@ -65,8 +65,8 @@ module.exports = {
r.lambda = userResults[0].data.lambda;
r.Eg2 = n.rep([firstUserResult.numFeatures], 0);
r.EdW = n.rep([firstUserResult.numFeatures], 0);
- r.rho =... | fix rho/eps for convergence |
diff --git a/packages/server/lib/modes/run.js b/packages/server/lib/modes/run.js
index <HASH>..<HASH> 100644
--- a/packages/server/lib/modes/run.js
+++ b/packages/server/lib/modes/run.js
@@ -660,6 +660,7 @@ const getVideoRecordingDelay = function (startedVideoCapture) {
const maybeStartVideoRecording = Promise.method(... | Add more debug logs around whether they have video recording disabled (#<I>)
* Add more debug logs around whether they have video recording disabled
* clean up debug log :P |
diff --git a/lib/oauth2server.js b/lib/oauth2server.js
index <HASH>..<HASH> 100644
--- a/lib/oauth2server.js
+++ b/lib/oauth2server.js
@@ -48,7 +48,6 @@ function OAuth2Server (config) {
this.refreshTokenLifetime = config.refreshTokenLifetime !== undefined ?
config.refreshTokenLifetime : 1209600;
this.authCodeLif... | Fix expiration checking. (follows 9baf<I> in <I>) |
diff --git a/src/Auth/Manager.php b/src/Auth/Manager.php
index <HASH>..<HASH> 100644
--- a/src/Auth/Manager.php
+++ b/src/Auth/Manager.php
@@ -33,6 +33,8 @@ class Manager extends Module {
* @var \Phalcon\Security
*/
protected $security;
+
+ protected $tokenElement;
# attributes - aparently to be ... | fixed minor bug where it was possible to reference an undefined property |
diff --git a/src/flask_rq2/cli.py b/src/flask_rq2/cli.py
index <HASH>..<HASH> 100644
--- a/src/flask_rq2/cli.py
+++ b/src/flask_rq2/cli.py
@@ -14,7 +14,7 @@ from rq.cli import cli as rq_cli
try:
from flask.cli import AppGroup, ScriptInfo
-except ImportError:
+except ImportError: # pragma: no cover
try:
... | Ignore the ImportError of flask.cli in test coverage. |
diff --git a/tests/test_file_configuration.py b/tests/test_file_configuration.py
index <HASH>..<HASH> 100644
--- a/tests/test_file_configuration.py
+++ b/tests/test_file_configuration.py
@@ -39,6 +39,24 @@ def test_file_configuration_from_string_local_variables_take_precedence(
assert fconf.config['mark'] == 'just... | Added a test to check that GLOBAL variables are no more replaces in file configuration |
diff --git a/src/lib/widget/default.js b/src/lib/widget/default.js
index <HASH>..<HASH> 100644
--- a/src/lib/widget/default.js
+++ b/src/lib/widget/default.js
@@ -75,6 +75,10 @@ define(['../util', '../assets', '../i18n'], function(util, assets, i18n) {
var widgetOptions = {};
+ function escape(s) {
+ return ... | fixed error trace in widget error-state |
diff --git a/waterboy/api/model_config.py b/waterboy/api/model_config.py
index <HASH>..<HASH> 100644
--- a/waterboy/api/model_config.py
+++ b/waterboy/api/model_config.py
@@ -76,6 +76,10 @@ class ModelConfig:
""" Return data directory for given dataset """
return self.project_config.project_toplevel_d... | Add OpenAI logging directory to the model config. |
diff --git a/pylint/checkers/strings.py b/pylint/checkers/strings.py
index <HASH>..<HASH> 100644
--- a/pylint/checkers/strings.py
+++ b/pylint/checkers/strings.py
@@ -341,9 +341,7 @@ class StringFormatChecker(BaseChecker):
format_type)):
... | Remove extraneous comment and fix the style |
diff --git a/sqlg-core/src/main/java/org/umlg/sqlg/step/SqlgVertexStep.java b/sqlg-core/src/main/java/org/umlg/sqlg/step/SqlgVertexStep.java
index <HASH>..<HASH> 100644
--- a/sqlg-core/src/main/java/org/umlg/sqlg/step/SqlgVertexStep.java
+++ b/sqlg-core/src/main/java/org/umlg/sqlg/step/SqlgVertexStep.java
@@ -200,7 +20... | remove not needed maybeAddLabelToLeafNode. It is already added in the
VertexStrategy |
diff --git a/lib/hippo/api/handlers/tenant.rb b/lib/hippo/api/handlers/tenant.rb
index <HASH>..<HASH> 100644
--- a/lib/hippo/api/handlers/tenant.rb
+++ b/lib/hippo/api/handlers/tenant.rb
@@ -8,7 +8,7 @@ module Hippo::API::Handlers
def update
tenant = Hippo::Tenant.current
- tenant.ass... | fix path to PUBLIC_ATTRS |
diff --git a/lib/elasticsearch/drain/autoscaling.rb b/lib/elasticsearch/drain/autoscaling.rb
index <HASH>..<HASH> 100644
--- a/lib/elasticsearch/drain/autoscaling.rb
+++ b/lib/elasticsearch/drain/autoscaling.rb
@@ -85,7 +85,7 @@ module Elasticsearch
auto_scaling_group_name: asg,
min_size: count
... | Fixes resizing asg min_size
This fixes resizing when we are not draining a whole asg. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
import sys, os
-from distutils.core import setup, Extension
+from setuptools import setup, Extension
from subprocess import Popen, PIPE, check_output
def call(*cmd): | setup.py: switch from distutils to setuptools
In Python <I>, distutils is deprecated and slated for removal in Python
<I>. It also prevents 'setup.py bdist_wheel' from building a wheel. |
diff --git a/contractcourt/channel_arbitrator.go b/contractcourt/channel_arbitrator.go
index <HASH>..<HASH> 100644
--- a/contractcourt/channel_arbitrator.go
+++ b/contractcourt/channel_arbitrator.go
@@ -305,8 +305,6 @@ func (c *ChannelArbitrator) Stop() error {
close(c.quit)
c.wg.Wait()
- c.cfg.BlockEpochs.Cancel... | contractcourt/channel_arbitrator: stop block epoch on channel attendant exit |
diff --git a/influx-line-format.go b/influx-line-format.go
index <HASH>..<HASH> 100644
--- a/influx-line-format.go
+++ b/influx-line-format.go
@@ -1,7 +1,9 @@
package csv
import (
+ "fmt"
"io"
+ "os"
"sort"
"strconv"
"time"
@@ -33,7 +35,9 @@ func (p *InfluxLineFormatProcess) Run(reader Reader, out io.Writer... | be noisy if we drop a point because it has no values. |
diff --git a/apollo/client.py b/apollo/client.py
index <HASH>..<HASH> 100644
--- a/apollo/client.py
+++ b/apollo/client.py
@@ -3,12 +3,10 @@
import json
import requests
import logging
-
try:
from shlex import quote
except ImportError:
from pipes import quote
-
log = logging.getLogger() | Fix support for python <I> (2) |
diff --git a/util/configv3/config.go b/util/configv3/config.go
index <HASH>..<HASH> 100644
--- a/util/configv3/config.go
+++ b/util/configv3/config.go
@@ -233,15 +233,15 @@ func WriteConfig(c *Config) error {
if err != nil {
return err
}
+ tempConfigFile.Close()
+ tempConfigFileName := tempConfigFile.Name()
- ... | close the file right away to prevent windows race conditions |
diff --git a/owner/src/main/java/org/aeonbits/owner/loaders/XMLLoader.java b/owner/src/main/java/org/aeonbits/owner/loaders/XMLLoader.java
index <HASH>..<HASH> 100644
--- a/owner/src/main/java/org/aeonbits/owner/loaders/XMLLoader.java
+++ b/owner/src/main/java/org/aeonbits/owner/loaders/XMLLoader.java
@@ -33,7 +33,7 @@... | fixing serialization issue happening with some jdks |
diff --git a/pyfritzhome/errors.py b/pyfritzhome/errors.py
index <HASH>..<HASH> 100644
--- a/pyfritzhome/errors.py
+++ b/pyfritzhome/errors.py
@@ -7,6 +7,3 @@ class LoginError(Exception):
class InvalidError(Exception):
pass
-
-class NotImplemented(Exception):
- pass | remove redfine of built-in exception |
diff --git a/lib/request.js b/lib/request.js
index <HASH>..<HASH> 100644
--- a/lib/request.js
+++ b/lib/request.js
@@ -3,6 +3,7 @@ const { XMLHttpRequest } = require('xmlhttprequest');
function Response (request, sourceUrl) {
this.request = request;
+ this.status = request.status;
this.content = request... | Response.status added from request.status XHR obj |
diff --git a/vraptor-core/src/main/java/br/com/caelum/vraptor/ioc/cdi/ListProducer.java b/vraptor-core/src/main/java/br/com/caelum/vraptor/ioc/cdi/ListProducer.java
index <HASH>..<HASH> 100644
--- a/vraptor-core/src/main/java/br/com/caelum/vraptor/ioc/cdi/ListProducer.java
+++ b/vraptor-core/src/main/java/br/com/caelum... | deprecating ListProducer for now |
diff --git a/site/assets/js/search.js b/site/assets/js/search.js
index <HASH>..<HASH> 100644
--- a/site/assets/js/search.js
+++ b/site/assets/js/search.js
@@ -40,7 +40,7 @@
// When in production, return the result as is,
// otherwise remove our url from it.
// eslint-disable-next-line no-nega... | site/assets/js/search.js: ignore the LGTM alert (#<I>) |
diff --git a/packages/lib/test/application/management/PackagedAppManager.test.js b/packages/lib/test/application/management/PackagedAppManager.test.js
index <HASH>..<HASH> 100644
--- a/packages/lib/test/application/management/PackagedAppManager.test.js
+++ b/packages/lib/test/application/management/PackagedAppManager.t... | tests: add test for PackagedAppManager with null address |
diff --git a/js/bootstrap-select.js b/js/bootstrap-select.js
index <HASH>..<HASH> 100644
--- a/js/bootstrap-select.js
+++ b/js/bootstrap-select.js
@@ -2548,6 +2548,10 @@
)
) {
that.$button.trigger('click.bs.dropdown.data-api');
+
+ if (that.options.liveSearch) {
+ return;
+ ... | auto-fill live search when button is focused and a character is typed (fixes regression introduced in <I>) (#<I>) |
diff --git a/src/core.js b/src/core.js
index <HASH>..<HASH> 100644
--- a/src/core.js
+++ b/src/core.js
@@ -229,7 +229,7 @@ $.fn.powerTip.showHide = function(element, event) {
* @param {jQuery.Event=} event jQuery event.
*/
$.fn.powerTip.show = function(element, event) {
- if (event.pageX) {
+ if (typeof event.page... | Changed mouse-event check to use typeof.
Although unlikely in the real world, it is possible for event.pageX to
be 0. Related to pull request #<I>. |
diff --git a/salt/cache/__init__.py b/salt/cache/__init__.py
index <HASH>..<HASH> 100644
--- a/salt/cache/__init__.py
+++ b/salt/cache/__init__.py
@@ -2,12 +2,15 @@
'''
Loader mechanism for caching data, with data expirations, etc.
-.. versionadded:: carbon
+.. versionadded:: Carbon
'''
+
+# Import Python libs
fr... | Clean up imports in salt/cache/__init__.py
the 'os' import is not used, and splitting them out into python vs. salt
imports makes them easier to read and more consistent with other salt files |
diff --git a/werkzeug/http.py b/werkzeug/http.py
index <HASH>..<HASH> 100644
--- a/werkzeug/http.py
+++ b/werkzeug/http.py
@@ -91,6 +91,8 @@ def quote_header_value(value, extra_chars='', allow_token=True):
:param allow_token: if this is enabled token values are returned
unchanged.
"""... | ensure cookie dumping works on py3 |
diff --git a/apigateway.go b/apigateway.go
index <HASH>..<HASH> 100644
--- a/apigateway.go
+++ b/apigateway.go
@@ -758,6 +758,12 @@ func (resource *Resource) NewMethod(httpMethod string,
defaultHTTPStatusCode int,
possibleHTTPStatusCodeResponses ...int) (*Method, error) {
+ if OptionsGlobal.Logger != nil && len(p... | Add log message about not needing to supply all the status codes. |
diff --git a/lib/onebox/engine/youtube_onebox.rb b/lib/onebox/engine/youtube_onebox.rb
index <HASH>..<HASH> 100644
--- a/lib/onebox/engine/youtube_onebox.rb
+++ b/lib/onebox/engine/youtube_onebox.rb
@@ -28,6 +28,8 @@ module Onebox
end
nil
+ rescue
+ return nil
end
def pla... | Make sure that no URI parsing exceptions are leaked |
diff --git a/de.tudarmstadt.ukp.wikipedia.api/src/test/java/de/tudarmstadt/ukp/wikipedia/api/PageTest.java b/de.tudarmstadt.ukp.wikipedia.api/src/test/java/de/tudarmstadt/ukp/wikipedia/api/PageTest.java
index <HASH>..<HASH> 100644
--- a/de.tudarmstadt.ukp.wikipedia.api/src/test/java/de/tudarmstadt/ukp/wikipedia/api/Pag... | Fixed testPlainText to work system independently (no line.separator property in assertions) |
diff --git a/bakery/management/commands/publish.py b/bakery/management/commands/publish.py
index <HASH>..<HASH> 100644
--- a/bakery/management/commands/publish.py
+++ b/bakery/management/commands/publish.py
@@ -156,7 +156,7 @@ in settings.py or provide it with --aws-bucket-name"
return files_list
- def ... | great way to delete all files is to never call the sync_s3 command |
diff --git a/src/stateManagement/imageIdSpecificStateManager.js b/src/stateManagement/imageIdSpecificStateManager.js
index <HASH>..<HASH> 100755
--- a/src/stateManagement/imageIdSpecificStateManager.js
+++ b/src/stateManagement/imageIdSpecificStateManager.js
@@ -36,12 +36,14 @@ function newImageIdSpecificToolStateManag... | re-implements the imageIdSpecificStateManager.add bugfix |
diff --git a/tests.py b/tests.py
index <HASH>..<HASH> 100644
--- a/tests.py
+++ b/tests.py
@@ -1292,6 +1292,14 @@ class TestCheckManifest(unittest.TestCase):
self.assertEqual(str(cm.exception),
"This is not a Python project (no setup.py).")
+ def test_forgot_to_git_add_anything(s... | Test coverage for empty VCS repo case |
diff --git a/reana_commons/snakemake.py b/reana_commons/snakemake.py
index <HASH>..<HASH> 100644
--- a/reana_commons/snakemake.py
+++ b/reana_commons/snakemake.py
@@ -73,6 +73,7 @@ def snakemake_load(workflow_file, **kwargs):
"environment": rule._container_img.replace("docker://", ""),
... | snakemake: include outputs in workflow representation
closes reanahub/reana-client#<I> |
diff --git a/tests/test_tokenizer.py b/tests/test_tokenizer.py
index <HASH>..<HASH> 100644
--- a/tests/test_tokenizer.py
+++ b/tests/test_tokenizer.py
@@ -119,6 +119,13 @@ def test_bracket_period(EN):
tokens = EN(text)
assert tokens[len(tokens) - 1].orth_ == u'.'
+
+def test_ie(EN):
+ text = u"It's medio... | * Upd tokenizer with i.e. tests |
diff --git a/public/js/utils/source-map-worker.js b/public/js/utils/source-map-worker.js
index <HASH>..<HASH> 100644
--- a/public/js/utils/source-map-worker.js
+++ b/public/js/utils/source-map-worker.js
@@ -82,7 +82,7 @@ function getOriginalTexts(generatedSource, generatedText) {
function getOriginalSourcePosition(gen... | its to it's in source-map-worker.js comment |
diff --git a/sos/plugins/logrotate.py b/sos/plugins/logrotate.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/logrotate.py
+++ b/sos/plugins/logrotate.py
@@ -24,6 +24,7 @@ class LogRotate(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
self.add_copy_spec([
"/etc/logrotate*",
"/var... | [logrotate] fix path for logrotate.status in RHEL7/CentOS7
In RHEL7/CentOS7 logrotate.status is placed in /var/lib/logrotate
rather then directly in /var/lib.
Resolves: #<I> |
diff --git a/presto-main/src/main/java/com/facebook/presto/operator/repartition/OptimizedPartitionedOutputOperator.java b/presto-main/src/main/java/com/facebook/presto/operator/repartition/OptimizedPartitionedOutputOperator.java
index <HASH>..<HASH> 100644
--- a/presto-main/src/main/java/com/facebook/presto/operator/re... | Harden blockEncodingBuffers in OptimizedPartitionedOutputOperator |
diff --git a/pkg/node/manager.go b/pkg/node/manager.go
index <HASH>..<HASH> 100644
--- a/pkg/node/manager.go
+++ b/pkg/node/manager.go
@@ -25,6 +25,7 @@ import (
"github.com/cilium/cilium/pkg/logging"
"github.com/cilium/cilium/pkg/logging/logfields"
"github.com/cilium/cilium/pkg/maps/tunnel"
+ "github.com/cilium/... | node: Configure route MTUs depending on destination
Configure MTU for routes such that routes to local destinations will
have MTU <I>, whereas routes to other nodes use the tunnel MTU. |
diff --git a/lib/librarian/chef/source/site.rb b/lib/librarian/chef/source/site.rb
index <HASH>..<HASH> 100644
--- a/lib/librarian/chef/source/site.rb
+++ b/lib/librarian/chef/source/site.rb
@@ -207,9 +207,15 @@ module Librarian
dependency_cache_path.mkpath
metadata_cache_path = metadata_cache_pat... | A little bit of handling in case the chef site source can't find a dependency. |
diff --git a/cloudvolume/datasource/graphene/mesh/sharded.py b/cloudvolume/datasource/graphene/mesh/sharded.py
index <HASH>..<HASH> 100644
--- a/cloudvolume/datasource/graphene/mesh/sharded.py
+++ b/cloudvolume/datasource/graphene/mesh/sharded.py
@@ -149,13 +149,9 @@ class GrapheneShardedMeshSource(GrapheneUnshardedMes... | fix: incompatibility between inital and dynamic meshes (#<I>) |
diff --git a/src/main/java/com/sonymobile/tools/gerrit/gerritevents/dto/events/RefReplicated.java b/src/main/java/com/sonymobile/tools/gerrit/gerritevents/dto/events/RefReplicated.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/sonymobile/tools/gerrit/gerritevents/dto/events/RefReplicated.java
+++ b/src/main/j... | Added lost RefReplicated constants |
diff --git a/lib/proinsias/version.rb b/lib/proinsias/version.rb
index <HASH>..<HASH> 100644
--- a/lib/proinsias/version.rb
+++ b/lib/proinsias/version.rb
@@ -1,3 +1,3 @@
module Proinsias
- VERSION = "0.5.0"
+ VERSION = "0.6.0"
end | Bump proinsias to <I> |
diff --git a/benchmark/benchmark.rb b/benchmark/benchmark.rb
index <HASH>..<HASH> 100755
--- a/benchmark/benchmark.rb
+++ b/benchmark/benchmark.rb
@@ -18,7 +18,7 @@ def compare_scrub_methods
puts Loofah.scrub_fragment(snip, :escape).to_s
puts "--"
puts HTMLFilter.new.filter(snip)
- puts Loofah::Helpers.saniti... | fixing trans's commit to work with the current gem class names. |
diff --git a/pylast/__init__.py b/pylast/__init__.py
index <HASH>..<HASH> 100644
--- a/pylast/__init__.py
+++ b/pylast/__init__.py
@@ -98,12 +98,11 @@ DOMAIN_RUSSIAN = 9
DOMAIN_JAPANESE = 10
DOMAIN_CHINESE = 11
-# COVER_X is deprecated since 2.1.0 and will be removed in a future version
-SIZE_SMALL = COVER_SMALL = ... | Remove deprecated COVER_X constants |
diff --git a/src/Graviton/RestBundle/Listener/ValidationRequestListener.php b/src/Graviton/RestBundle/Listener/ValidationRequestListener.php
index <HASH>..<HASH> 100644
--- a/src/Graviton/RestBundle/Listener/ValidationRequestListener.php
+++ b/src/Graviton/RestBundle/Listener/ValidationRequestListener.php
@@ -54,7 +54,... | Smallish php<I> refactor
This one also make the code a bit more concise so I'm happy with it. There are probably other cases where I'll be to lazy to touch anything. |
diff --git a/blockservice/blockservice.go b/blockservice/blockservice.go
index <HASH>..<HASH> 100644
--- a/blockservice/blockservice.go
+++ b/blockservice/blockservice.go
@@ -78,6 +78,8 @@ func (bs *blockService) Exchange() exchange.Interface {
return bs.exchange
}
+// NewSession creates a bitswap session that all... | bitswap: add few method comments
License: MIT |
diff --git a/config/projects/chefdk.rb b/config/projects/chefdk.rb
index <HASH>..<HASH> 100644
--- a/config/projects/chefdk.rb
+++ b/config/projects/chefdk.rb
@@ -34,6 +34,18 @@ else
install_dir "#{default_root}/#{name}"
end
+# As of 27 October 2014, the newest CA cert bundle does not work with AWS's
+# root cert... | Use an older version of CA certs to fix S3 cert checks
AWS Certificate cannot be verified by the latest version of the CA
bundle, lock to an older one that works until either AWS or the CA
bundle fixes the issue. |
diff --git a/lib/calculated_attributes.rb b/lib/calculated_attributes.rb
index <HASH>..<HASH> 100644
--- a/lib/calculated_attributes.rb
+++ b/lib/calculated_attributes.rb
@@ -6,9 +6,10 @@ require 'calculated_attributes/rails_patches'
require 'calculated_attributes/arel_patches'
raise "Unsupported ActiveRecord version... | Update to support <I>
The change was back ported to <I>
<URL> |
diff --git a/bcloud/CloudPage.py b/bcloud/CloudPage.py
index <HASH>..<HASH> 100644
--- a/bcloud/CloudPage.py
+++ b/bcloud/CloudPage.py
@@ -237,6 +237,7 @@ class CloudPage(Gtk.Box):
def add_local_bt_task(self):
'''从本地上传种子到服务器, 再创建离线下载任务'''
self.check_first()
+ print('Local BT task not suppo... | Show file chooser dialog when downloading magnet files |
diff --git a/jquery.geocomplete.js b/jquery.geocomplete.js
index <HASH>..<HASH> 100644
--- a/jquery.geocomplete.js
+++ b/jquery.geocomplete.js
@@ -116,6 +116,12 @@
'click',
$.proxy(this.mapClicked, this)
);
+
+ google.maps.event.addListener(
+ this.map,
+ 'zoom_changed',
+ ... | zoom_changed event support
listen on zoom_changed event and trigger geocoder:zoom with the new zoom
level |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,12 @@ class build_ext(_build_ext):
# see http://stackoverflow.com/q/19919905 for explanation
def finalize_options(self):
_build_ext.finalize_options(self)
- __builtins__.__NUMPY_SETUP__ = Fa... | handle setup.py edge case where it's not run as __main__
<URL> |
diff --git a/src/test/java/org/jooq/lambda/SeqTest.java b/src/test/java/org/jooq/lambda/SeqTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/org/jooq/lambda/SeqTest.java
+++ b/src/test/java/org/jooq/lambda/SeqTest.java
@@ -20,8 +20,8 @@ import static java.util.Comparator.comparing;
import static java.util.stre... | [#<I>] Rename test of the "grouped" category |
diff --git a/lib/ach/records/file_header.rb b/lib/ach/records/file_header.rb
index <HASH>..<HASH> 100644
--- a/lib/ach/records/file_header.rb
+++ b/lib/ach/records/file_header.rb
@@ -5,7 +5,7 @@ module ACH::Records
const_field :record_type, '1'
const_field :priority_code, '01'
field :immediate_destinatio... | IMS-<I> allow appending space to immediate origin |
diff --git a/code/cms/DMSUploadField.php b/code/cms/DMSUploadField.php
index <HASH>..<HASH> 100644
--- a/code/cms/DMSUploadField.php
+++ b/code/cms/DMSUploadField.php
@@ -57,6 +57,15 @@ class DMSUploadField extends UploadField {
return true;
}
+
+ public function isDisabled() {
+ return (parent::isDisabled() ||... | FIX Don't show the upload field when inappropriate
This fix is quite ugly, but in theory, it's fine. By ugly,
I mean the interface is kind of weird without it.
Because <I> allows uploading when a DataObject doesn't exist,
we need to override the new defaults to not allow such if
the DO isn't saved yet. |
diff --git a/src/Commands/RsyncCommand.php b/src/Commands/RsyncCommand.php
index <HASH>..<HASH> 100644
--- a/src/Commands/RsyncCommand.php
+++ b/src/Commands/RsyncCommand.php
@@ -93,7 +93,7 @@ class RsyncCommand extends TerminusCommand implements SiteAwareInterface
}
$this->log()->notice('Running {c... | put paths in quotes to preserve spaces etc |
diff --git a/client/views/panels/manager.js b/client/views/panels/manager.js
index <HASH>..<HASH> 100644
--- a/client/views/panels/manager.js
+++ b/client/views/panels/manager.js
@@ -26,6 +26,7 @@ define([
tabMenu: false,
newTab: false,
draggable: false,
+ ... | Fix keyboard shortcuts in tabs of lateral panels |
diff --git a/resource_arm_managed_disk.go b/resource_arm_managed_disk.go
index <HASH>..<HASH> 100644
--- a/resource_arm_managed_disk.go
+++ b/resource_arm_managed_disk.go
@@ -2,12 +2,13 @@ package azurerm
import (
"fmt"
- "github.com/Azure/azure-sdk-for-go/arm/disk"
- "github.com/hashicorp/terraform/helper/schema"... | Adding support for 4TB disks |
diff --git a/mpldatacursor.py b/mpldatacursor.py
index <HASH>..<HASH> 100644
--- a/mpldatacursor.py
+++ b/mpldatacursor.py
@@ -75,14 +75,15 @@ def datacursor(artists=None, axes=None, tolerance=5, formatter=None,
+ ax.images
return artists
- if not cbook.iterable(axes):
- axes = [ax... | Bugfix for "datacursor" when no artists or axes are specified |
diff --git a/modules/clipboard.js b/modules/clipboard.js
index <HASH>..<HASH> 100644
--- a/modules/clipboard.js
+++ b/modules/clipboard.js
@@ -107,8 +107,8 @@ class Clipboard extends Module {
this.container.focus();
this.quill.selection.update(Quill.sources.SILENT);
setTimeout(() => {
- this.quill.s... | onPaste might shift scrolling so run after |
diff --git a/gremlin-python/src/main/jython/setup.py b/gremlin-python/src/main/jython/setup.py
index <HASH>..<HASH> 100644
--- a/gremlin-python/src/main/jython/setup.py
+++ b/gremlin-python/src/main/jython/setup.py
@@ -51,9 +51,12 @@ install_requires = [
'isodate>=0.6.0,<1.0.0'
]
-if sys.version_info < (3,2):
+... | Pinned pyparsing to versions prior to <I>
<I> doesn't seem to support earlier version of python anymore CTR |
diff --git a/extended-template-parts.php b/extended-template-parts.php
index <HASH>..<HASH> 100644
--- a/extended-template-parts.php
+++ b/extended-template-parts.php
@@ -40,6 +40,9 @@
*/
function get_extended_template_part( $slug, $name = '', array $vars = [], array $args = [] ) {
$template = new Extended_Templat... | Fire the same `get_template_part_{$slug}` action that WordPress core does when loading a template part. |
diff --git a/modelx/core/system.py b/modelx/core/system.py
index <HASH>..<HASH> 100644
--- a/modelx/core/system.py
+++ b/modelx/core/system.py
@@ -124,14 +124,18 @@ class System:
return
from ipykernel.kernelapp import IPKernelApp
+ self.shell = IPKernelApp.instance().shell # None in PyC... | FIX: setup_ipython to get shell from get_ipython() |
diff --git a/src/main/java/water/exec/ASTOp.java b/src/main/java/water/exec/ASTOp.java
index <HASH>..<HASH> 100644
--- a/src/main/java/water/exec/ASTOp.java
+++ b/src/main/java/water/exec/ASTOp.java
@@ -718,8 +718,8 @@ abstract class ASTBinOp extends ASTOp {
if(chks[i].isNA0(r)) { n.addNum(Double.NaN... | missed the RHS double in the ASTBinOp |
diff --git a/features/step_definitions/cli_steps.rb b/features/step_definitions/cli_steps.rb
index <HASH>..<HASH> 100644
--- a/features/step_definitions/cli_steps.rb
+++ b/features/step_definitions/cli_steps.rb
@@ -22,16 +22,6 @@ When /^I wait (\d+) seconds?$/ do |arg1|
sleep arg1.to_i
end
-# TODO: Remove after p... | [CS] Remove step definitions duplicated from Aruba |
diff --git a/websocket.py b/websocket.py
index <HASH>..<HASH> 100644
--- a/websocket.py
+++ b/websocket.py
@@ -162,8 +162,8 @@ def create_connection(url, timeout=None, **options):
If you set "header" dict object, you can set your own custom header.
>>> conn = create_connection("ws://echo.websocket.org/",
- ... | header argument is sequence insted of dict |
diff --git a/dht.go b/dht.go
index <HASH>..<HASH> 100644
--- a/dht.go
+++ b/dht.go
@@ -53,7 +53,6 @@ type IpfsDHT struct {
providers *providers.ProviderManager
birth time.Time // When this peer started up
- diaglock sync.Mutex // lock to make diagnostics work better
Validator record.Validator // record... | Remove diaglock as per #<I> |
diff --git a/lib/virtualbox/dvd.rb b/lib/virtualbox/dvd.rb
index <HASH>..<HASH> 100644
--- a/lib/virtualbox/dvd.rb
+++ b/lib/virtualbox/dvd.rb
@@ -7,5 +7,12 @@ module VirtualBox
parse_raw(raw)
end
end
+
+ # Deletes the DVD from VBox managed list, but not actually from
+ # disk itself.
+ ... | HardDrive and DVD images can now be destroyed |
diff --git a/kernel/classes/datatypes/ezdatetime/ezdatetimetype.php b/kernel/classes/datatypes/ezdatetime/ezdatetimetype.php
index <HASH>..<HASH> 100644
--- a/kernel/classes/datatypes/ezdatetime/ezdatetimetype.php
+++ b/kernel/classes/datatypes/ezdatetime/ezdatetimetype.php
@@ -625,7 +625,7 @@ class eZDateTimeType exte... | Fix EZP-<I>: ezdatetime with no default value causes class edit to fail
According to the other datatypes I have checked, it should return an empty array in this case. |
diff --git a/storage/metric/memory.go b/storage/metric/memory.go
index <HASH>..<HASH> 100644
--- a/storage/metric/memory.go
+++ b/storage/metric/memory.go
@@ -348,8 +348,20 @@ func (s memorySeriesStorage) Close() (err error) {
return
}
-func (s memorySeriesStorage) GetAllMetricNames() ([]string, error) {
- panic("... | Implement GetAllMetricNames() for memory storage. |
diff --git a/code/actions/BetterButtonCustomAction.php b/code/actions/BetterButtonCustomAction.php
index <HASH>..<HASH> 100755
--- a/code/actions/BetterButtonCustomAction.php
+++ b/code/actions/BetterButtonCustomAction.php
@@ -42,12 +42,6 @@ class BetterButtonCustomAction extends BetterButtonAction {
protected $re... | API CHANGE: Remove successMessage from BetterButtonCustomAction |
diff --git a/kie-remote/kie-remote-services/src/test/java/org/kie/remote/services/rest/query/RemoteServicesQueryDataTest.java b/kie-remote/kie-remote-services/src/test/java/org/kie/remote/services/rest/query/RemoteServicesQueryDataTest.java
index <HASH>..<HASH> 100644
--- a/kie-remote/kie-remote-services/src/test/java/... | added missing correct license header
closes #<I> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.