diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/src/unique.js b/src/unique.js
index <HASH>..<HASH> 100644
--- a/src/unique.js
+++ b/src/unique.js
@@ -1,5 +1,5 @@
import _ from 'lodash'
-const unique = Symbol('lacona-unique-key')
+const unique = Symbol.for('lacona-unique-key')
export default unique | Use symbol.for for node environments with potentially multiple loads |
diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php
+++ b/src/Symfony/Bundle/FrameworkBundle/DependencyI... | [Messenger] fix broken key normalization |
diff --git a/tapeforms/fieldsets.py b/tapeforms/fieldsets.py
index <HASH>..<HASH> 100644
--- a/tapeforms/fieldsets.py
+++ b/tapeforms/fieldsets.py
@@ -147,7 +147,7 @@ class TapeformFieldsetsMixin:
fieldsets = fieldsets or self.fieldsets
if not fieldsets:
- raise StopIteration
+ ... | Replace StopIteration raising by return |
diff --git a/docs/_component/editor.client.js b/docs/_component/editor.client.js
index <HASH>..<HASH> 100644
--- a/docs/_component/editor.client.js
+++ b/docs/_component/editor.client.js
@@ -119,6 +119,15 @@ export const Editor = ({children}) => {
)
const stats = state.file ? statistics(state.file) : {}
+ // C... | Fix playground exceptions (#<I>)
Closes GH-<I>. |
diff --git a/th_evernote/tests.py b/th_evernote/tests.py
index <HASH>..<HASH> 100644
--- a/th_evernote/tests.py
+++ b/th_evernote/tests.py
@@ -17,7 +17,7 @@ except ImportError:
import mock
-cache = caches['th_evernote']
+cache = caches['django_th']
class EvernoteTest(MainTest):
@@ -138,9 +138,6 @@ class S... | Dropped get config cache and replaced variable
REPLACED:
cache = caches['th_<service>']
With
cache = caches['django_th']
REMOVED:
def test_get_config_th_cache(self):
self.assertIn('th_rss', settings.CACHES) |
diff --git a/test/instrumentation/modules/pg/knex.js b/test/instrumentation/modules/pg/knex.js
index <HASH>..<HASH> 100644
--- a/test/instrumentation/modules/pg/knex.js
+++ b/test/instrumentation/modules/pg/knex.js
@@ -13,6 +13,11 @@ var agent = require('../../../..').start({
var knexVersion = require('knex/package').... | fix(tests): skip testing knex >=<I> with node v8 (#<I>)
Fixes #<I> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
setup(
name='psamm',
version='0.7',
- description='PSAMM metabolic modelrm -ing tools',
+ description='PSAMM metabolic modeling tools',
maintainer=... | Fix accidental typo in setup.py |
diff --git a/webpack/test.js b/webpack/test.js
index <HASH>..<HASH> 100644
--- a/webpack/test.js
+++ b/webpack/test.js
@@ -15,7 +15,7 @@ const config = merge.smart(baseConfig, {
},
{
test: /targets\/.*\.js$/,
- loader: 'null',
+ loader: 'babel?presets[]=es2015',
},
],
... | chore(targets): allow es6 for targets code |
diff --git a/src/Bootstrap/Drupal.php b/src/Bootstrap/Drupal.php
index <HASH>..<HASH> 100644
--- a/src/Bootstrap/Drupal.php
+++ b/src/Bootstrap/Drupal.php
@@ -257,7 +257,8 @@ class Drupal implements DrupalInterface
{
$drupal = new DrupalConsoleCore(
$this->drupalFinder->getComposerRoot(),
- ... | "[console] Pass DrupalFinder to DrupalConsoleCore." (#<I>)
* [console] Show message only on list command.
* [console] Pass DrupalFinder to DrupalConsoleCore. |
diff --git a/lib/operations/collection_ops.js b/lib/operations/collection_ops.js
index <HASH>..<HASH> 100644
--- a/lib/operations/collection_ops.js
+++ b/lib/operations/collection_ops.js
@@ -233,7 +233,7 @@ function countDocuments(coll, query, options, callback) {
coll.aggregate(pipeline, options, (err, result) => {... | fix(count-documents): return callback on error case
otherwise the scucess handler is called, which results into further missleading errors (e.g. length is not defined) |
diff --git a/httpcache4j-api/src/main/java/org/codehaus/httpcache4j/MIMEType.java b/httpcache4j-api/src/main/java/org/codehaus/httpcache4j/MIMEType.java
index <HASH>..<HASH> 100644
--- a/httpcache4j-api/src/main/java/org/codehaus/httpcache4j/MIMEType.java
+++ b/httpcache4j-api/src/main/java/org/codehaus/httpcache4j/MIM... | - hashcodebuilder expected first number to be odd
git-svn-id: file:///home/projects/httpcache4j/tmp/scm-svn-tmp/trunk@<I> aeef7db8-<I>a-<I>-b<I>-bac<I>ff<I>f6 |
diff --git a/lib/jekyll/post.rb b/lib/jekyll/post.rb
index <HASH>..<HASH> 100644
--- a/lib/jekyll/post.rb
+++ b/lib/jekyll/post.rb
@@ -63,7 +63,7 @@ module Jekyll
#
# Returns <String>
def dir
- path = @categories ? '/' + @categories.join('/') : ''
+ path = (@categories && !@categories.empty?) ?... | fix double slash caused by empty categories |
diff --git a/provider/azure/azure_discover.go b/provider/azure/azure_discover.go
index <HASH>..<HASH> 100644
--- a/provider/azure/azure_discover.go
+++ b/provider/azure/azure_discover.go
@@ -117,6 +117,8 @@ func fetchAddrsWithTags(tagName string, tagValue string, vmnet network.Interface
var id string
if v.ID != n... | better message in case id is nil |
diff --git a/src/shared/js/ch.Validation.js b/src/shared/js/ch.Validation.js
index <HASH>..<HASH> 100644
--- a/src/shared/js/ch.Validation.js
+++ b/src/shared/js/ch.Validation.js
@@ -180,7 +180,7 @@
this.error = null;
this
- .on('exists', function (data) {
+ .on('exist', functi... | #<I> Factory: rename exists with exist |
diff --git a/lib/jsonapi/resource.rb b/lib/jsonapi/resource.rb
index <HASH>..<HASH> 100644
--- a/lib/jsonapi/resource.rb
+++ b/lib/jsonapi/resource.rb
@@ -537,6 +537,7 @@ module JSONAPI
associations = _lookup_association_chain([records.model.to_s, *model_names])
joins_query = _build_joins(... | Add comment for order by query and fix typo |
diff --git a/test/extended/images/layers.go b/test/extended/images/layers.go
index <HASH>..<HASH> 100644
--- a/test/extended/images/layers.go
+++ b/test/extended/images/layers.go
@@ -66,8 +66,7 @@ var _ = g.Describe("[Feature:ImageLayers] Image layer subresource", func() {
if !ok {
return false, nil
}
- ... | ImageLayers test should loop until image is missing
In the event we do fill the cache |
diff --git a/harpoon/overview.py b/harpoon/overview.py
index <HASH>..<HASH> 100644
--- a/harpoon/overview.py
+++ b/harpoon/overview.py
@@ -176,7 +176,10 @@ class Harpoon(object):
configuration.converters.done(path, meta.result)
for key, v in val.items(ignore_converters=True):
+ ... | Make sure converter doesn't trip over itself |
diff --git a/examples/i18n/I18n.php b/examples/i18n/I18n.php
index <HASH>..<HASH> 100644
--- a/examples/i18n/I18n.php
+++ b/examples/i18n/I18n.php
@@ -9,12 +9,12 @@ class I18n extends Mustache {
public $__ = array(__CLASS__, '__trans');
// A *very* small i18n dictionary :)
- private $dictionary = array(
... | Fix E_STRICT failure in i<I>n example. |
diff --git a/micrometer-core/src/main/java/io/micrometer/core/instrument/binder/cache/JCacheMetrics.java b/micrometer-core/src/main/java/io/micrometer/core/instrument/binder/cache/JCacheMetrics.java
index <HASH>..<HASH> 100644
--- a/micrometer-core/src/main/java/io/micrometer/core/instrument/binder/cache/JCacheMetrics.... | Nit - fix JCache put gauge description |
diff --git a/pandas/tests/groupby/test_apply.py b/pandas/tests/groupby/test_apply.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/groupby/test_apply.py
+++ b/pandas/tests/groupby/test_apply.py
@@ -1177,3 +1177,25 @@ def test_apply_empty_string_nan_coerce_bug():
index=MultiIndex.from_tuples([(1, ""), (2, "")]... | TST: group by - apply Key Error (#<I>)
* Test for Group By - Apply Key Error
* Paramaters change |
diff --git a/lib/completionlib.php b/lib/completionlib.php
index <HASH>..<HASH> 100644
--- a/lib/completionlib.php
+++ b/lib/completionlib.php
@@ -652,7 +652,7 @@ WHERE
return $result;
}
- public function inform_grade_changed($cm, &$item, &$grade, $deleted) {
+ public function inform_grade_changed... | MDL-<I> & operator is often not needed in PHP5 in method definition |
diff --git a/generators/server/index.js b/generators/server/index.js
index <HASH>..<HASH> 100644
--- a/generators/server/index.js
+++ b/generators/server/index.js
@@ -635,7 +635,7 @@ module.exports = class JHipsterServerGenerator extends BaseBlueprintGenerator {
'java:docker:dev': 'npm run java:docker -- -Pd... | variabilize container reuse flag on testcontainers and set it to false on CI |
diff --git a/lib/bson/binary.rb b/lib/bson/binary.rb
index <HASH>..<HASH> 100644
--- a/lib/bson/binary.rb
+++ b/lib/bson/binary.rb
@@ -134,7 +134,7 @@ module BSON
encode_binary_data_with_placeholder(encoded) do |encoded|
encoded << SUBTYPES.fetch(type)
encoded << data.bytesize.to_bson if type =... | Encode to UTF-8 before forcing BINARY encoding in Binary#to_bson |
diff --git a/lib/less/environments/browser.js b/lib/less/environments/browser.js
index <HASH>..<HASH> 100644
--- a/lib/less/environments/browser.js
+++ b/lib/less/environments/browser.js
@@ -172,15 +172,6 @@ less.Parser.environment = {
var hrefParts = this.extractUrlParts(filename, window.location.href);
... | remove commented out code now implemented in parser |
diff --git a/src/main/java/org/zeroturnaround/zip/ZipUtil.java b/src/main/java/org/zeroturnaround/zip/ZipUtil.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/zeroturnaround/zip/ZipUtil.java
+++ b/src/main/java/org/zeroturnaround/zip/ZipUtil.java
@@ -357,6 +357,9 @@ public final class ZipUtil {
try {
... | Breaking from the iterate method with an exception |
diff --git a/core-bundle/src/EventListener/InitializeSystemListener.php b/core-bundle/src/EventListener/InitializeSystemListener.php
index <HASH>..<HASH> 100644
--- a/core-bundle/src/EventListener/InitializeSystemListener.php
+++ b/core-bundle/src/EventListener/InitializeSystemListener.php
@@ -42,6 +42,11 @@ class Init... | [Core] do not boot Contao's Framework twice |
diff --git a/lib/rufus/decision/hashes.rb b/lib/rufus/decision/hashes.rb
index <HASH>..<HASH> 100644
--- a/lib/rufus/decision/hashes.rb
+++ b/lib/rufus/decision/hashes.rb
@@ -203,11 +203,18 @@ module Decision
#
def self.check_and_eval(ruby_code, bndng=binding())
- TREECHECKER.check(ruby_code)
-
+ begin
+ ... | wrap some potential exception points for ruby_eval with more info |
diff --git a/pymatgen/core/tests/test_lattice.py b/pymatgen/core/tests/test_lattice.py
index <HASH>..<HASH> 100644
--- a/pymatgen/core/tests/test_lattice.py
+++ b/pymatgen/core/tests/test_lattice.py
@@ -476,7 +476,7 @@ class LatticeTestCase(PymatgenTest):
s1 = np.array([0.5, -1.5, 3])
s2 = np.array([0... | TST: Fix typo in Lattice tests |
diff --git a/shoebot/__init__.py b/shoebot/__init__.py
index <HASH>..<HASH> 100644
--- a/shoebot/__init__.py
+++ b/shoebot/__init__.py
@@ -82,6 +82,9 @@ class Bot:
self.WIDTH = Bot.DEFAULT_WIDTH
self.HEIGHT = Bot.DEFAULT_HEIGHT
+
+ if self.gtkmode:
+ import gtkexcepthook
... | fixed a minor error with gtkexcepthook that prevented to redirect some exceptions |
diff --git a/signalk-on-delta.js b/signalk-on-delta.js
index <HASH>..<HASH> 100644
--- a/signalk-on-delta.js
+++ b/signalk-on-delta.js
@@ -5,9 +5,26 @@ module.exports = function(RED) {
var node = this;
var signalk = node.context().global.get('signalk')
+ var app = node.context().global.get('app')
... | feature: filter out meta deltas and deltas from node red |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -70,7 +70,8 @@ function checkDirectory(dir, ignoreDirs, deps, devDeps, options) {
});
finder.on("file", function (filename) {
- if (path.extname(filename) === ".js") {
+ var ext = path.extname(filename);
+ if ... | Accept the extensions argument passed from options. |
diff --git a/lib/codemirror.js b/lib/codemirror.js
index <HASH>..<HASH> 100644
--- a/lib/codemirror.js
+++ b/lib/codemirror.js
@@ -20,7 +20,7 @@ var CodeMirror = (function() {
// This mess creates the base DOM structure for the editor.
wrapper.innerHTML =
'<div style="overflow: hidden; position: relati... | Make hidden textarea wide again
This fixes (mostly) vertical cursor movement in IE |
diff --git a/domains/toolabstraction/maven/src/test/java/org/openengsb/maven/common/test/unit/TestMavenConnector.java b/domains/toolabstraction/maven/src/test/java/org/openengsb/maven/common/test/unit/TestMavenConnector.java
index <HASH>..<HASH> 100755
--- a/domains/toolabstraction/maven/src/test/java/org/openengsb/mav... | Set toolabstraction tests to ignore because they do not work on hudson. |
diff --git a/templates/includes/footer.php b/templates/includes/footer.php
index <HASH>..<HASH> 100644
--- a/templates/includes/footer.php
+++ b/templates/includes/footer.php
@@ -16,7 +16,7 @@ if(!empty($this->data['htmlinject']['htmlContentPost'])) {
<hr />
<img src="/<?php echo $this->data['baseurlpath']; ?>r... | Update copyright year in footer. |
diff --git a/src/Crate/PDO/ArtaxExt/ClientInterface.php b/src/Crate/PDO/ArtaxExt/ClientInterface.php
index <HASH>..<HASH> 100644
--- a/src/Crate/PDO/ArtaxExt/ClientInterface.php
+++ b/src/Crate/PDO/ArtaxExt/ClientInterface.php
@@ -27,6 +27,24 @@ use Artax\Response;
interface ClientInterface
{
/**
+ * Set the... | Reverted the removal of the methods in the ClientInterface because they broke a test |
diff --git a/ryu/tests/integrated/common/docker_base.py b/ryu/tests/integrated/common/docker_base.py
index <HASH>..<HASH> 100644
--- a/ryu/tests/integrated/common/docker_base.py
+++ b/ryu/tests/integrated/common/docker_base.py
@@ -133,7 +133,7 @@ class Command(object):
if out.returncode == 0:
... | scenario test: Fix the wrong retry check in command execution |
diff --git a/src/main/java/org/spout/nbt/stream/NBTInputStream.java b/src/main/java/org/spout/nbt/stream/NBTInputStream.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/spout/nbt/stream/NBTInputStream.java
+++ b/src/main/java/org/spout/nbt/stream/NBTInputStream.java
@@ -190,7 +190,7 @@ public final class NBTInp... | Pre-sizes the arraylist for list tag to the given length |
diff --git a/lib/active-profiling/ruby_profiler.rb b/lib/active-profiling/ruby_profiler.rb
index <HASH>..<HASH> 100644
--- a/lib/active-profiling/ruby_profiler.rb
+++ b/lib/active-profiling/ruby_profiler.rb
@@ -14,7 +14,7 @@ module ActiveProfiling
# * :disable_gc - temporarily disable the garbage collector for the... | Return an Array even when we don't have RubyProf available. |
diff --git a/lib/fb_graph/connections/settings.rb b/lib/fb_graph/connections/settings.rb
index <HASH>..<HASH> 100644
--- a/lib/fb_graph/connections/settings.rb
+++ b/lib/fb_graph/connections/settings.rb
@@ -51,6 +51,7 @@ module FbGraph
:connection => :settings
)
if succeeded
+ @set... | @settings can be nil here |
diff --git a/lib/gem_footprint_analyzer/require_spy.rb b/lib/gem_footprint_analyzer/require_spy.rb
index <HASH>..<HASH> 100644
--- a/lib/gem_footprint_analyzer/require_spy.rb
+++ b/lib/gem_footprint_analyzer/require_spy.rb
@@ -102,9 +102,10 @@ module GemFootprintAnalyzer
# we're redirecting :require_relative t... | Fix the spied version of require_relative
So that it returns early when passed an absolute
directory as a name. |
diff --git a/resource_aws_s3_bucket_test.go b/resource_aws_s3_bucket_test.go
index <HASH>..<HASH> 100644
--- a/resource_aws_s3_bucket_test.go
+++ b/resource_aws_s3_bucket_test.go
@@ -645,14 +645,20 @@ func testAccCheckAWSS3BucketPolicy(n string, policy string) resource.TestCheckFu
Bucket: aws.String(rs.Primary.ID),... | provider/aws: Fix s3_bucket test for empty policy |
diff --git a/params/version.go b/params/version.go
index <HASH>..<HASH> 100644
--- a/params/version.go
+++ b/params/version.go
@@ -21,10 +21,10 @@ import (
)
const (
- VersionMajor = 1 // Major version component of the current release
- VersionMinor = 10 // Minor version component of the current releas... | params: begin <I> release cycle |
diff --git a/docs/src/Iconography.js b/docs/src/Iconography.js
index <HASH>..<HASH> 100644
--- a/docs/src/Iconography.js
+++ b/docs/src/Iconography.js
@@ -37,7 +37,7 @@ const IconList = props =>
hoverColor="blue"
>
<Flex mb={2} align="center" justify="center">
- <Icon name={icon} size=... | Only show new icons in docs |
diff --git a/src/Framework/BaseWebApplication.php b/src/Framework/BaseWebApplication.php
index <HASH>..<HASH> 100644
--- a/src/Framework/BaseWebApplication.php
+++ b/src/Framework/BaseWebApplication.php
@@ -723,6 +723,7 @@ abstract class BaseWebApplication extends BaseConsoleApplication implements Fram
... | Set current_user in request attributes (to detach from application) |
diff --git a/modules/page/html/render/message.js b/modules/page/html/render/message.js
index <HASH>..<HASH> 100644
--- a/modules/page/html/render/message.js
+++ b/modules/page/html/render/message.js
@@ -68,7 +68,7 @@ exports.create = function (api) {
var rootMessage = {key: id, value}
- // what happens ... | add comment about deriving recps on private message replies |
diff --git a/cfgstack/cfgstack.py b/cfgstack/cfgstack.py
index <HASH>..<HASH> 100644
--- a/cfgstack/cfgstack.py
+++ b/cfgstack/cfgstack.py
@@ -77,7 +77,8 @@ class CfgStack (object):
if isinstance (include, list):
for f in include:
for k, v in CfgStack (
- f, no_defaults = True).d... | Pass search path when recursing |
diff --git a/lib/__internal/utils.js b/lib/__internal/utils.js
index <HASH>..<HASH> 100644
--- a/lib/__internal/utils.js
+++ b/lib/__internal/utils.js
@@ -165,7 +165,7 @@ const serializeVariable = ({ key, typedValue }) => {
}
if (type === "date" && value instanceof Date) {
- value = value.toISOString().repla... | fix(serialization): adjust Date format
related to CAM-<I> |
diff --git a/leaflet-providers.js b/leaflet-providers.js
index <HASH>..<HASH> 100644
--- a/leaflet-providers.js
+++ b/leaflet-providers.js
@@ -205,7 +205,7 @@
}
},
Stamen: {
- url: 'http://{s}.tile.stamen.com/{variant}/{z}/{x}/{y}.{ext}',
+ url: '//stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}.p... | https for Stamen (#<I> without the merge commit) |
diff --git a/src/Common/Traits/TransientMutator.php b/src/Common/Traits/TransientMutator.php
index <HASH>..<HASH> 100644
--- a/src/Common/Traits/TransientMutator.php
+++ b/src/Common/Traits/TransientMutator.php
@@ -8,7 +8,7 @@
* @license Apache 2.0
*/
-namespace Chemem\Bingo\Functional\Common\Applicatives;
+names... | Replaced common/applicatives with common/traits |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -1,12 +1,8 @@
#!/usr/bin/env python
from os.path import exists
-try:
- from setuptools import setup
-except ImportError:
- from distutils.core import setup
+from setuptools import setup, find_packages
-from setupto... | Updating setup.py to use setuptools exclusively (as per recent seed changes) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
from setuptools import setup
-from codecs import open
from os import path
+from io import open
here = path.abspath(path.dirname(__file__))
@@ -11,8 +11,8 @@ with open(path.join(he... | Make setup.py compatible with python 3 |
diff --git a/daemon.go b/daemon.go
index <HASH>..<HASH> 100644
--- a/daemon.go
+++ b/daemon.go
@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
/*
-Package daemon 0.1.2 for use with Go (golang) services.
+Package daemon 0.1.3 for use with Go (golang) services.
Package daemon provides primitives ... | Bumped version number to <I> |
diff --git a/app/controllers/katello/api/v2/systems_controller.rb b/app/controllers/katello/api/v2/systems_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/katello/api/v2/systems_controller.rb
+++ b/app/controllers/katello/api/v2/systems_controller.rb
@@ -158,6 +158,7 @@ class Api::V2::SystemsController ... | Reload system after orchestration is finished |
diff --git a/lib/vagrant/machine_index.rb b/lib/vagrant/machine_index.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/machine_index.rb
+++ b/lib/vagrant/machine_index.rb
@@ -43,7 +43,7 @@ module Vagrant
def initialize(data_dir)
@data_dir = data_dir
@index_file = data_dir.join("index")
- @lock... | MachineIndex lock is a monitor to allow recursion |
diff --git a/lxd/container_test.go b/lxd/container_test.go
index <HASH>..<HASH> 100644
--- a/lxd/container_test.go
+++ b/lxd/container_test.go
@@ -138,7 +138,10 @@ func (suite *containerTestSuite) TestContainer_LoadFromDB() {
suite.Req.Nil(err)
// When loading from DB, we won't have a full LXC config
+ c.(*contai... | lxd/containers: Don't diff go-lxc structs |
diff --git a/openquake/calculators/extract.py b/openquake/calculators/extract.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/extract.py
+++ b/openquake/calculators/extract.py
@@ -202,13 +202,16 @@ def extract_realizations(dstore, dummy):
@extract.add('tagcollection')
def extract_tagcollection(dstore, what... | While extracting the tagcollection, also extract loss categories
Former-commit-id: <I>e6ff5f<I>f9d<I>c4ef9ffa<I>ab9b<I>eea9 |
diff --git a/pylp/lib/dest.py b/pylp/lib/dest.py
index <HASH>..<HASH> 100644
--- a/pylp/lib/dest.py
+++ b/pylp/lib/dest.py
@@ -14,9 +14,9 @@ from pylp.lib.transformer import Transformer
-def dest(path, **options):
- return FileWriter(path, **options)
+def dest(path, cwd = None):
"""Return a transformer that wri... | Make second argument of 'pylp.dest' more explicit |
diff --git a/app/models/ping.rb b/app/models/ping.rb
index <HASH>..<HASH> 100644
--- a/app/models/ping.rb
+++ b/app/models/ping.rb
@@ -18,6 +18,14 @@ class Ping
class << self
OK_RETURN_CODE = 'ok'
+ PACKAGES = ["katello",
+ "candlepin",
+ "pulp",
+ "thumbslug",
... | Add elasticsearch package to ping information |
diff --git a/gphoto2cffi/gphoto2.py b/gphoto2cffi/gphoto2.py
index <HASH>..<HASH> 100644
--- a/gphoto2cffi/gphoto2.py
+++ b/gphoto2cffi/gphoto2.py
@@ -391,7 +391,7 @@ class File(object):
lib.gp_camera_file_get_info(
self._cam._cam, self.directory.path.encode(),
... | Fix bug that arose when quering a File for its size |
diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -1448,6 +1448,8 @@ another:
}
func (me *Client) sendChunk(t *torrent, c *connection, r request) error {
+ // Count the chunk being sent, even if it isn't.
+ c.chunksSent++
b := make([]byte, r.Length)
tp := t.Pieces... | Count failed chunk sends against a connection |
diff --git a/spec/ascii_plist/reader_spec.rb b/spec/ascii_plist/reader_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/ascii_plist/reader_spec.rb
+++ b/spec/ascii_plist/reader_spec.rb
@@ -46,6 +46,21 @@ module AsciiPlist
end
end
+ describe 'reading annotations' do
+ let(:string) { '{a /*annotation*... | Add failing spec for reading annotations |
diff --git a/proctl/proctl_linux_amd64.go b/proctl/proctl_linux_amd64.go
index <HASH>..<HASH> 100644
--- a/proctl/proctl_linux_amd64.go
+++ b/proctl/proctl_linux_amd64.go
@@ -279,7 +279,7 @@ func (dbp *DebuggedProcess) Next() error {
pc--
}
- f, l, _ := dbp.GoSymTable.PCToLine(pc)
+ _, l, fn := dbp.GoSymTable.PC... | Improve 'in current fn' check for Next impl |
diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py
index <HASH>..<HASH> 100644
--- a/toot/tui/timeline.py
+++ b/toot/tui/timeline.py
@@ -171,6 +171,13 @@ class StatusDetails(urwid.Pile):
yield ("pack", urwid.Divider())
yield ("pack", self.build_linebox(self.card_generator(card)))
+ ... | Add reply, reblog and favourite counters |
diff --git a/src/adapters/lokijs/worker/executor.js b/src/adapters/lokijs/worker/executor.js
index <HASH>..<HASH> 100644
--- a/src/adapters/lokijs/worker/executor.js
+++ b/src/adapters/lokijs/worker/executor.js
@@ -58,11 +58,7 @@ export default class LokiExecutor {
isCached(table: TableName<any>, id: RecordId): bo... | Inline `isCached` implementation |
diff --git a/allennlp/semparse/domain_languages/nlvr_language.py b/allennlp/semparse/domain_languages/nlvr_language.py
index <HASH>..<HASH> 100644
--- a/allennlp/semparse/domain_languages/nlvr_language.py
+++ b/allennlp/semparse/domain_languages/nlvr_language.py
@@ -117,7 +117,7 @@ class NlvrLanguage(DomainLanguage):
... | Use f-string (#<I>) |
diff --git a/lib/git/trifle.rb b/lib/git/trifle.rb
index <HASH>..<HASH> 100644
--- a/lib/git/trifle.rb
+++ b/lib/git/trifle.rb
@@ -29,8 +29,8 @@ module Git
# needless to do more than this for the following methods
# very neat BTW
DELEGATORS = %W|
- add_remote add branch branches
- current_branc... | now trifle forwards apply and diff |
diff --git a/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js b/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js
+++ b/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js
@@ -2033,6 +2033,14 @@ sap.ui.define([
// Turn of the cycling... | [INTERNAL] sap.m.SinglePlanningCalendarGrid: Default browser keyboard navigation is fixed
- The default browser keyboard navigation with Alt + Left Arrow/Right Arrow is fixed
Change-Id: I<I>f<I>cb<I>c<I>fcf<I>ff<I>ab9f8fc<I>a9cb5d |
diff --git a/js/base/Exchange.js b/js/base/Exchange.js
index <HASH>..<HASH> 100644
--- a/js/base/Exchange.js
+++ b/js/base/Exchange.js
@@ -1385,7 +1385,7 @@ module.exports = class Exchange {
const parts = marketId.split (delimiter)
if (parts.length === 2) {
const b... | safeMarket handle spot delimiter #<I> |
diff --git a/mod/glossary/sql.php b/mod/glossary/sql.php
index <HASH>..<HASH> 100644
--- a/mod/glossary/sql.php
+++ b/mod/glossary/sql.php
@@ -109,7 +109,7 @@
$where = '';
}
- $sqlselect = "SELECT ge.id, $usernamefield $as pivot, u.id uid, ge.*";
+ $sqlselect = "SELECT ge.id, $us... | Merged from MOODLE_<I>_STABLE: Fix for postgres-invalid-sql (must have AS between field and alias) |
diff --git a/packages/site/pages/components/badge.js b/packages/site/pages/components/badge.js
index <HASH>..<HASH> 100644
--- a/packages/site/pages/components/badge.js
+++ b/packages/site/pages/components/badge.js
@@ -59,10 +59,8 @@ export default withServerProps(_ => (
<P>In either solid or stroked styles.</P>... | fix(site): remove duplicate badge appearance example |
diff --git a/src/core.js b/src/core.js
index <HASH>..<HASH> 100644
--- a/src/core.js
+++ b/src/core.js
@@ -34,15 +34,15 @@ void function (root) { var __old, black
return target
}
- // Unpacks all modules in source. Utils go in `target` or the global obj
- function unpack_all(kind, source, target) ... | Uses `this` to search for modules to unpack. |
diff --git a/keychain/derivation.go b/keychain/derivation.go
index <HASH>..<HASH> 100644
--- a/keychain/derivation.go
+++ b/keychain/derivation.go
@@ -96,6 +96,13 @@ const (
// session keys are limited to the lifetime of the session and are used
// to increase privacy in the watchtower protocol.
KeyFamilyTowerSes... | keychain/derivation: add KeyFamilyTowerKey distinct from NodeID |
diff --git a/test/test_Exceptions.py b/test/test_Exceptions.py
index <HASH>..<HASH> 100644
--- a/test/test_Exceptions.py
+++ b/test/test_Exceptions.py
@@ -57,6 +57,14 @@ class TestUtil(unittest.TestCase):
text = str(exc)
self.assertEqual(text, "")
+ def test_hresult(self):
+ hresult, hcont... | test_SCardGetErrorMessage: check the value of SCARD_E_UNKNOWN_READER
macOS and Linux does not define the return type of PC/SC function the
same way. So we check the returned value correspond to what PySCard has
defined. |
diff --git a/pyontutils/integration_test_helper.py b/pyontutils/integration_test_helper.py
index <HASH>..<HASH> 100644
--- a/pyontutils/integration_test_helper.py
+++ b/pyontutils/integration_test_helper.py
@@ -222,7 +222,7 @@ class _TestScriptsBase(unittest.TestCase):
' cannot test main, s... | int test helper fixes and more informative names
we were testing whether a string was not equal to a module, which was
always going to return true, so now compare to the last element in the
module path
now also include argv in the generated test names, it makes the names
annoyingly long in some cases, but if somethin... |
diff --git a/lib/rubocop/cop/cop.rb b/lib/rubocop/cop/cop.rb
index <HASH>..<HASH> 100644
--- a/lib/rubocop/cop/cop.rb
+++ b/lib/rubocop/cop/cop.rb
@@ -57,13 +57,15 @@ module Rubocop
sexp.each do |elem|
if Array === elem
if elem[0] == sym
- parents << sexp
+ par... | Added elements to array only if they're not already in there instead of calling uniq afterwards. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -129,7 +129,12 @@ Tree.prototype.list = function (name, opts, cb) {
}
Tree.prototype._list = function (head, seq, names, opts, cb) {
- var headIndex = this._inflate(seq, head.paths)
+ var headIndex
+ try {
+ headInde... | Catch _inflate errors and send them to the cb |
diff --git a/client/src/main/java/com/orientechnologies/orient/enterprise/channel/binary/OChannelBinaryClientAbstract.java b/client/src/main/java/com/orientechnologies/orient/enterprise/channel/binary/OChannelBinaryClientAbstract.java
index <HASH>..<HASH> 100755
--- a/client/src/main/java/com/orientechnologies/orient/e... | fixed wrong retry in case of not found serialized exception in the client. |
diff --git a/src/main/java/net/jodah/typetools/TypeResolver.java b/src/main/java/net/jodah/typetools/TypeResolver.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/jodah/typetools/TypeResolver.java
+++ b/src/main/java/net/jodah/typetools/TypeResolver.java
@@ -109,7 +109,7 @@ public final class TypeResolver {
... | use invokeWithArguments instead of invoke to support Java <I>
Java <I> changed the way the JVM handles varargs internally, meaning that
new Object[] {...} can't be used as a substitute for varargs on Java 6
source level anymore. However, invokeWithArguments explicitly wants an
Object[], so it still works. |
diff --git a/spec/attr_enumerable/reduce_attr_spec.rb b/spec/attr_enumerable/reduce_attr_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/attr_enumerable/reduce_attr_spec.rb
+++ b/spec/attr_enumerable/reduce_attr_spec.rb
@@ -36,7 +36,7 @@ describe AttrEnumerable do
),
method: :reduce_name,
bloc... | Fix rubocop warning 'TrailingComma' in reduce_attr_spec.rb |
diff --git a/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php b/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php
index <HASH>..<HASH> 100644
--- a/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php
+++ b/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php
@@ -472,7 +472,7 @@ class Plugin
}
}... | Fix issue #<I> - Use realpath() for contao root to always have absolute pathes. |
diff --git a/lib/lita/mailgun_dropped_rate_repository.rb b/lib/lita/mailgun_dropped_rate_repository.rb
index <HASH>..<HASH> 100644
--- a/lib/lita/mailgun_dropped_rate_repository.rb
+++ b/lib/lita/mailgun_dropped_rate_repository.rb
@@ -29,8 +29,8 @@ module Lita
@mutex.synchronize do
@store[domain] ||= []... | reduce history stored for each domain to <I> events
* <I> should be plenty to decide if there's an issue or not
* It's also low enough that low-volume domains that have an issue
resolved should move into the green zone quicker |
diff --git a/classes/VideoDownload.php b/classes/VideoDownload.php
index <HASH>..<HASH> 100644
--- a/classes/VideoDownload.php
+++ b/classes/VideoDownload.php
@@ -110,12 +110,13 @@ class VideoDownload
$process->run();
if (!$process->isSuccessful()) {
$errorOutput = trim($process->getError... | feat: Add youtube-dl exit code to the exceptions |
diff --git a/lib/shopify_app/webhooks_manager.rb b/lib/shopify_app/webhooks_manager.rb
index <HASH>..<HASH> 100644
--- a/lib/shopify_app/webhooks_manager.rb
+++ b/lib/shopify_app/webhooks_manager.rb
@@ -30,7 +30,7 @@ module ShopifyApp
end
def destroy_webhooks
- ShopifyAPI::Webhook.all.each do |webhook|... | sometimes the shopify api can return a nil to us. so lets make sure we dont try to call #each on nil |
diff --git a/src/tools/bubblechart/bubblechart-trail.js b/src/tools/bubblechart/bubblechart-trail.js
index <HASH>..<HASH> 100644
--- a/src/tools/bubblechart/bubblechart-trail.js
+++ b/src/tools/bubblechart/bubblechart-trail.js
@@ -208,6 +208,15 @@ export default Class.extend({
},
+
+ _remove: function(trail, du... | Turn off trails: _context._trails[("_" + action)] is not a function (#<I>) |
diff --git a/test/plugin/test_in_gc_stat.rb b/test/plugin/test_in_gc_stat.rb
index <HASH>..<HASH> 100644
--- a/test/plugin/test_in_gc_stat.rb
+++ b/test/plugin/test_in_gc_stat.rb
@@ -27,13 +27,18 @@ class GCStatInputTest < Test::Unit::TestCase
stub(GC).stat { stat }
d = create_driver
+ d.end_if do
+ ... | Use new end_if stop condition block |
diff --git a/lib/nexmo/config.rb b/lib/nexmo/config.rb
index <HASH>..<HASH> 100644
--- a/lib/nexmo/config.rb
+++ b/lib/nexmo/config.rb
@@ -8,9 +8,9 @@ module Nexmo
self.api_host = 'api.nexmo.com'
self.api_key = ENV['NEXMO_API_KEY']
self.api_secret = ENV['NEXMO_API_SECRET']
- self.application_i... | Add support for additional environment variables
* `ENV['NEXMO_APPLICATION_ID']`
* `ENV['NEXMO_PRIVATE_KEY']`
* `ENV['NEXMO_PRIVATE_KEY_PATH']` |
diff --git a/pycm/pycm_obj.py b/pycm/pycm_obj.py
index <HASH>..<HASH> 100644
--- a/pycm/pycm_obj.py
+++ b/pycm/pycm_obj.py
@@ -400,7 +400,7 @@ class ConfusionMatrix():
matrix = self.table
if normalize:
matrix = self.normalized_table
- csv_matrix_file... | fix : minor bugs fixed. (encoding utf-8 added) |
diff --git a/python/ray/tests/test_multi_node.py b/python/ray/tests/test_multi_node.py
index <HASH>..<HASH> 100644
--- a/python/ray/tests/test_multi_node.py
+++ b/python/ray/tests/test_multi_node.py
@@ -638,6 +638,13 @@ def test_multi_driver_logging(ray_start_regular):
driver2_wait = Semaphore.options(name="driver... | Fix bug that `test_multi_node.py::test_multi_driver_logging` hangs when GCS actor management is turned on (#<I>) |
diff --git a/osmdroid-android/src/org/osmdroid/tileprovider/MapTileProviderArray.java b/osmdroid-android/src/org/osmdroid/tileprovider/MapTileProviderArray.java
index <HASH>..<HASH> 100644
--- a/osmdroid-android/src/org/osmdroid/tileprovider/MapTileProviderArray.java
+++ b/osmdroid-android/src/org/osmdroid/tileprovider... | put back a log message that I didn't intend to delete |
diff --git a/java/client/src/org/openqa/selenium/android/library/AndroidWebDriver.java b/java/client/src/org/openqa/selenium/android/library/AndroidWebDriver.java
index <HASH>..<HASH> 100644
--- a/java/client/src/org/openqa/selenium/android/library/AndroidWebDriver.java
+++ b/java/client/src/org/openqa/selenium/android... | DouniaBerrada: Increasing the response timeout for android. This is useful for executing lonnnnnng js scripts.
r<I> |
diff --git a/hazelcast/src/main/java/com/hazelcast/spi/impl/operationparker/impl/OperationParkerImpl.java b/hazelcast/src/main/java/com/hazelcast/spi/impl/operationparker/impl/OperationParkerImpl.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/spi/impl/operationparker/impl/OperationParkerIm... | Call shutdownNow while closing OperationParkerImpl (#<I>) |
diff --git a/src/inscriptis/html_properties.py b/src/inscriptis/html_properties.py
index <HASH>..<HASH> 100644
--- a/src/inscriptis/html_properties.py
+++ b/src/inscriptis/html_properties.py
@@ -72,4 +72,4 @@ class Line(object):
'\n' * self.margin_after))
def __str__(self):
- retu... | fix: python<I> issue. |
diff --git a/src/DataTable/utils/queryParams.js b/src/DataTable/utils/queryParams.js
index <HASH>..<HASH> 100644
--- a/src/DataTable/utils/queryParams.js
+++ b/src/DataTable/utils/queryParams.js
@@ -702,7 +702,7 @@ export function getQueryParams({
qb.whereAll(
getQueries(andFilters, qb, ccFields),
... | or filters are now ored properly |
diff --git a/pdfconduit/__init__.py b/pdfconduit/__init__.py
index <HASH>..<HASH> 100644
--- a/pdfconduit/__init__.py
+++ b/pdfconduit/__init__.py
@@ -5,7 +5,7 @@ from pdf.conduit import *
try:
from pdf.gui.gui import GUI
GUI_INSTALLED = True
- __all__.extend("GUI")
+ __all__.append("GUI")
except Impo... | Changed extend to append for non-lists |
diff --git a/lib/bbcloud/servers.rb b/lib/bbcloud/servers.rb
index <HASH>..<HASH> 100644
--- a/lib/bbcloud/servers.rb
+++ b/lib/bbcloud/servers.rb
@@ -6,11 +6,11 @@ module Brightbox
end
def server_type
- @server_type ||= Type.new(flavor_id)
+ @server_type ||= (Type.new(flavor_id) if flavor_id)
... | servers#list fix display of deleted servers. Fixes #<I> |
diff --git a/js/tests/unit/carousel.spec.js b/js/tests/unit/carousel.spec.js
index <HASH>..<HASH> 100644
--- a/js/tests/unit/carousel.spec.js
+++ b/js/tests/unit/carousel.spec.js
@@ -905,7 +905,7 @@ describe('Carousel', () => {
})
describe('to', () => {
- it('should go directement to the provided index', don... | test(carousel): french word in the wild (#<I>) |
diff --git a/lib/Thulium/Db/ModelQueryBuilder.php b/lib/Thulium/Db/ModelQueryBuilder.php
index <HASH>..<HASH> 100644
--- a/lib/Thulium/Db/ModelQueryBuilder.php
+++ b/lib/Thulium/Db/ModelQueryBuilder.php
@@ -127,4 +127,14 @@ class ModelQueryBuilder
return $this;
}
+ function __clone()
+ {
+ ... | ModelQueryBuilder: added method 'copy' |
diff --git a/libraries/lithium/data/Connections.php b/libraries/lithium/data/Connections.php
index <HASH>..<HASH> 100644
--- a/libraries/lithium/data/Connections.php
+++ b/libraries/lithium/data/Connections.php
@@ -188,10 +188,12 @@ class Connections extends \lithium\core\StaticObject {
$class = Libraries::locate("... | removed newline at end of file and fixed an extra long line |
diff --git a/pyof/v0x04/common/flow_match.py b/pyof/v0x04/common/flow_match.py
index <HASH>..<HASH> 100644
--- a/pyof/v0x04/common/flow_match.py
+++ b/pyof/v0x04/common/flow_match.py
@@ -393,6 +393,25 @@ class Match(GenericStruct):
self._unpack_attribute('oxm_match_fields', type(self).oxm_match_fields,
... | [v0x<I>] Add Match.get_field method
This method allows us to easily get the value for Match fields without the need
to loop over them manually. |
diff --git a/src/instrumentTest/java/com/couchbase/lite/ApiTest.java b/src/instrumentTest/java/com/couchbase/lite/ApiTest.java
index <HASH>..<HASH> 100644
--- a/src/instrumentTest/java/com/couchbase/lite/ApiTest.java
+++ b/src/instrumentTest/java/com/couchbase/lite/ApiTest.java
@@ -305,10 +305,7 @@ public class ApiTest... | Remove another test assertion that did not make sense.
<URL> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.