diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/ghtorrent/retriever.rb b/lib/ghtorrent/retriever.rb
index <HASH>..<HASH> 100644
--- a/lib/ghtorrent/retriever.rb
+++ b/lib/ghtorrent/retriever.rb
@@ -203,7 +203,7 @@ module GHTorrent
persister.store(:commit_comments, x)
end
}
- persister.find(:commit_comments, {'commit_i... | Ensure that a commit comment is correctly retrieved |
diff --git a/lib/formslib.php b/lib/formslib.php
index <HASH>..<HASH> 100644
--- a/lib/formslib.php
+++ b/lib/formslib.php
@@ -1339,7 +1339,9 @@ function validate_' . $this->_formName . '(frm) {
return true;
}
/**
- * This function also removes all previously defined rules.
+ * Hard freeze al... | added more phpdoc comments for hardFreezeAllVisibleExcept |
diff --git a/src/main/java/me/xhsun/guildwars2wrapper/AsynchronousRequest.java b/src/main/java/me/xhsun/guildwars2wrapper/AsynchronousRequest.java
index <HASH>..<HASH> 100644
--- a/src/main/java/me/xhsun/guildwars2wrapper/AsynchronousRequest.java
+++ b/src/main/java/me/xhsun/guildwars2wrapper/AsynchronousRequest.java
@... | done all game build asynchronous api |
diff --git a/tests/query/netinfo/test_hostbyaddr.py b/tests/query/netinfo/test_hostbyaddr.py
index <HASH>..<HASH> 100644
--- a/tests/query/netinfo/test_hostbyaddr.py
+++ b/tests/query/netinfo/test_hostbyaddr.py
@@ -26,7 +26,7 @@ Project link:
https://github.com/funilrys/PyFunceble
Project documentation:
- ht... | fixup! Introduction of the tests of the hosts by addr query tool. |
diff --git a/js/lib/mediawiki.DOMPostProcessor.js b/js/lib/mediawiki.DOMPostProcessor.js
index <HASH>..<HASH> 100644
--- a/js/lib/mediawiki.DOMPostProcessor.js
+++ b/js/lib/mediawiki.DOMPostProcessor.js
@@ -2645,7 +2645,11 @@ function unpackDOMFragments(env, node) {
}
var dsr = node.data.parsoid.dsr;
- // F... | Disable debug print for missing DSR
From investigating a few cases from the logs it looks like the main case
without a DSR is a DOMFragment inside extension or transclusion content.
Document this and disable the debug print, as this case is actually pretty
common.
Change-Id: Ibf<I>dd<I>e<I>fba8a<I>fa<I>e<I>b8e4d7cae<... |
diff --git a/client-js/SqlpadTauChart.js b/client-js/SqlpadTauChart.js
index <HASH>..<HASH> 100644
--- a/client-js/SqlpadTauChart.js
+++ b/client-js/SqlpadTauChart.js
@@ -212,7 +212,7 @@ var SqlpadTauChart = React.createClass({
var runResultNotification = () => {
if (this.props.isRunning) {
return ... | background while running to white with partial opacity |
diff --git a/env/xml-config/src/main/java/org/eobjects/analyzer/job/JaxbJobReader.java b/env/xml-config/src/main/java/org/eobjects/analyzer/job/JaxbJobReader.java
index <HASH>..<HASH> 100644
--- a/env/xml-config/src/main/java/org/eobjects/analyzer/job/JaxbJobReader.java
+++ b/env/xml-config/src/main/java/org/eobjects/a... | Prevented crashing when column type in XML is not found in MetaModel's ColumnType enum |
diff --git a/src/Sulu/Bundle/TestBundle/Testing/PhpcrTestCase.php b/src/Sulu/Bundle/TestBundle/Testing/PhpcrTestCase.php
index <HASH>..<HASH> 100644
--- a/src/Sulu/Bundle/TestBundle/Testing/PhpcrTestCase.php
+++ b/src/Sulu/Bundle/TestBundle/Testing/PhpcrTestCase.php
@@ -167,8 +167,8 @@ class PhpcrTestCase extends \PHPU... | changed order in content mapper constructor |
diff --git a/src/Contracts/Hydrator/HydratorInterface.php b/src/Contracts/Hydrator/HydratorInterface.php
index <HASH>..<HASH> 100644
--- a/src/Contracts/Hydrator/HydratorInterface.php
+++ b/src/Contracts/Hydrator/HydratorInterface.php
@@ -63,6 +63,15 @@ interface HydratorInterface
public function update(ResourceOb... | [Feature-WIP] Add delete method to the hydrator interface |
diff --git a/Block/PageWideContent.php b/Block/PageWideContent.php
index <HASH>..<HASH> 100644
--- a/Block/PageWideContent.php
+++ b/Block/PageWideContent.php
@@ -1,5 +1,8 @@
<?php
+
+/* Remark : this is now deprecated -> when using the most recent version of theme-frontend-optimus -> you can select a 1 'column wide... | MASE2OT-<I> : added comment to old block PageWide about depecrated status |
diff --git a/sqlauth/__init__.py b/sqlauth/__init__.py
index <HASH>..<HASH> 100644
--- a/sqlauth/__init__.py
+++ b/sqlauth/__init__.py
@@ -16,4 +16,4 @@
##
###############################################################################
-__version__ = "0.1.146"
+__version__ = "0.1.147"
diff --git a/sqlauth/scripts/s... | sync with pypi version: <I> |
diff --git a/ospd/vts.py b/ospd/vts.py
index <HASH>..<HASH> 100644
--- a/ospd/vts.py
+++ b/ospd/vts.py
@@ -23,7 +23,7 @@ import multiprocessing
import re
from copy import deepcopy
-from typing import Dict, Any, Tuple, Type
+from typing import Dict, Any, Tuple, Type, Iterator
from ospd.errors import OspdError
@... | Add support for the iterable protocol to Vts class
Allow to iterate over a vts instance by implementing the iterable
proctocol method (__iter__) which retuns an iterator. |
diff --git a/lib/purge.js b/lib/purge.js
index <HASH>..<HASH> 100644
--- a/lib/purge.js
+++ b/lib/purge.js
@@ -132,6 +132,21 @@ function AkamaiPurgeRequestBody(urls, options) {
}
function AkamaiPurgeResponse(rawBody, callback) {
+ var body, keys;
+
+ Object.defineProperties(this, {
+ '_body': {
+ enumerab... | made purge body and keys properties innumerable |
diff --git a/parsl/executors/base.py b/parsl/executors/base.py
index <HASH>..<HASH> 100644
--- a/parsl/executors/base.py
+++ b/parsl/executors/base.py
@@ -44,7 +44,7 @@ class ParslExecutor(metaclass=ABCMeta):
pass
@abstractmethod
- def scale_in(self, count):
+ def scale_in(self, blocks):
... | Make scale_in parameter name consistent in all executor classes (#<I>)
This is needed in the now-less-obscure case of calling scale_in with
named parameters - the base class previously said that scale_in could be
called with (count=1) as a parameter but no subclasses accepted that.
The terminology now pretty much... |
diff --git a/locales/ka/validation.php b/locales/ka/validation.php
index <HASH>..<HASH> 100644
--- a/locales/ka/validation.php
+++ b/locales/ka/validation.php
@@ -37,7 +37,7 @@ return [
'date_format' => ':attribute არ ემთხვევა თარიღის ფორმატს: :format.',
'different' => ':attribute და :othe... | Incorrect word update
Updated incorrect word |
diff --git a/lib/librarian/helpers/debug.rb b/lib/librarian/helpers/debug.rb
index <HASH>..<HASH> 100644
--- a/lib/librarian/helpers/debug.rb
+++ b/lib/librarian/helpers/debug.rb
@@ -6,6 +6,8 @@ module Librarian
include Support::AbstractMethod
+ LIBRARIAN_PATH = Pathname.new('../../../../').expand_path(... | Strip the location where librarian is installed from debugging output. |
diff --git a/src/Rap2hpoutre/LaravelLogViewer/LaravelLogViewer.php b/src/Rap2hpoutre/LaravelLogViewer/LaravelLogViewer.php
index <HASH>..<HASH> 100644
--- a/src/Rap2hpoutre/LaravelLogViewer/LaravelLogViewer.php
+++ b/src/Rap2hpoutre/LaravelLogViewer/LaravelLogViewer.php
@@ -28,7 +28,7 @@ class LaravelLogViewer
}
... | Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on <URL> |
diff --git a/mlogmerge.py b/mlogmerge.py
index <HASH>..<HASH> 100755
--- a/mlogmerge.py
+++ b/mlogmerge.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
-from util import extractDateTime
+from mutil import extractDateTime
from datetime import datetime, MINYEAR, MAXYEAR
import argparse, re
diff --git a/mplotqueries.py b/mplo... | adapted to new name "mutil.py". |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -222,8 +222,6 @@ Crypt.prototype.maybe_encrypt = function (arg_encrypt,
{
if (get_key !== undefined)
{
- get_key_data.unshift(data);
-
get_key_data.push(function (err, key)
... | Pass get_key callback as last argument. |
diff --git a/test/99close.js b/test/99close.js
index <HASH>..<HASH> 100644
--- a/test/99close.js
+++ b/test/99close.js
@@ -1,6 +1,7 @@
'use strict';
-after(function () {
+after(function (done) {
+ done();
setTimeout(function () {
process.exit();
}, 500); | Added done call to make travis happy |
diff --git a/src/main/java/com/googlecode/mp4parser/boxes/apple/AppleCoverBox.java b/src/main/java/com/googlecode/mp4parser/boxes/apple/AppleCoverBox.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/googlecode/mp4parser/boxes/apple/AppleCoverBox.java
+++ b/src/main/java/com/googlecode/mp4parser/boxes/apple/Appl... | add accessor to data as sugested by Alden Torres. Thank you, Alden!
git-svn-id: <URL> |
diff --git a/packages/ra-core/src/CoreAdminRouter.js b/packages/ra-core/src/CoreAdminRouter.js
index <HASH>..<HASH> 100644
--- a/packages/ra-core/src/CoreAdminRouter.js
+++ b/packages/ra-core/src/CoreAdminRouter.js
@@ -100,7 +100,11 @@ export class CoreAdminRouter extends Component {
title,
} = th... | Fix welcome mesage appears in production
Closes #<I> |
diff --git a/public/js/chrome/save.js b/public/js/chrome/save.js
index <HASH>..<HASH> 100644
--- a/public/js/chrome/save.js
+++ b/public/js/chrome/save.js
@@ -150,7 +150,7 @@ if (!jsbin.saveDisabled) {
}
},
error: function () {
- console && console.log('update error');
+ ... | Warning in console when save fails, fix #<I> |
diff --git a/spec/reek/configuration/excluded_paths_spec.rb b/spec/reek/configuration/excluded_paths_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/reek/configuration/excluded_paths_spec.rb
+++ b/spec/reek/configuration/excluded_paths_spec.rb
@@ -17,7 +17,7 @@ RSpec.describe Reek::Configuration::ExcludedPaths do
... | Fix for #<I> to support Glob patterns in exclude_paths with match_array for rspec |
diff --git a/coinop/bit/multiwallet.py b/coinop/bit/multiwallet.py
index <HASH>..<HASH> 100644
--- a/coinop/bit/multiwallet.py
+++ b/coinop/bit/multiwallet.py
@@ -42,12 +42,11 @@ class MultiWallet(object):
if entropy:
secrets = {}
for name in names:
- (secrets[name], tr... | store node objects instead of serialized wallets |
diff --git a/src/reducers/form-actions-reducer.js b/src/reducers/form-actions-reducer.js
index <HASH>..<HASH> 100644
--- a/src/reducers/form-actions-reducer.js
+++ b/src/reducers/form-actions-reducer.js
@@ -368,9 +368,11 @@ export function createFormActionsReducer(options) {
// If the form is invalid (due to... | Preventing Object.keys from being called on a boolean |
diff --git a/code/model/entity/abstract.php b/code/model/entity/abstract.php
index <HASH>..<HASH> 100644
--- a/code/model/entity/abstract.php
+++ b/code/model/entity/abstract.php
@@ -196,7 +196,7 @@ abstract class KModelEntityAbstract extends KObjectArray implements KModelEntity
public function getProperty($name)
... | re #<I> - Also check if a computed property exists. |
diff --git a/pycbc/inference/sampler_base.py b/pycbc/inference/sampler_base.py
index <HASH>..<HASH> 100644
--- a/pycbc/inference/sampler_base.py
+++ b/pycbc/inference/sampler_base.py
@@ -458,7 +458,7 @@ class BaseMCMCSampler(_BaseSampler):
parameters = samples.fieldnames
if samples is None:
... | Ensure that write float to HDF file for likelihood_stats. (#<I>) |
diff --git a/src/in/srain/cube/views/GridViewWithHeaderAndFooter.java b/src/in/srain/cube/views/GridViewWithHeaderAndFooter.java
index <HASH>..<HASH> 100644
--- a/src/in/srain/cube/views/GridViewWithHeaderAndFooter.java
+++ b/src/in/srain/cube/views/GridViewWithHeaderAndFooter.java
@@ -261,7 +261,7 @@ public class Grid... | issue #<I>: fetch the proper class |
diff --git a/test/test_kohlschuetter.py b/test/test_kohlschuetter.py
index <HASH>..<HASH> 100644
--- a/test/test_kohlschuetter.py
+++ b/test/test_kohlschuetter.py
@@ -48,7 +48,6 @@ class TestBlockifier(KohlschuetterUnitBase):
also handles case where lxml returns None for the tree"""
# this raises an... | Remove newly failing lxml assertion |
diff --git a/image_scraper/utils.py b/image_scraper/utils.py
index <HASH>..<HASH> 100644
--- a/image_scraper/utils.py
+++ b/image_scraper/utils.py
@@ -99,7 +99,7 @@ class ImageScraper(object):
startLength = self.proxyUrl.find("://") + 3
print("Using proxy: " + self.proxyUrl[:startLengt... | :racehorse: Added proxy support |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3
-from setuptools import setup
+from setuptools import setup, find_packages
setup(
name="dev-pipeline-git",
@@ -8,7 +8,7 @@ setup(
package_dir={
"": "lib"
},
- pa... | Use find_packages instead of being explicit |
diff --git a/gcsproxy/listing_proxy_test.go b/gcsproxy/listing_proxy_test.go
index <HASH>..<HASH> 100644
--- a/gcsproxy/listing_proxy_test.go
+++ b/gcsproxy/listing_proxy_test.go
@@ -166,7 +166,24 @@ func (t *ListingProxyTest) List_BucketReturnsIllegalObjectName() {
}
func (t *ListingProxyTest) List_BucketReturnsIl... | ListingProxyTest.List_BucketReturnsIllegalDirectoryName |
diff --git a/src/transformers/integrations.py b/src/transformers/integrations.py
index <HASH>..<HASH> 100644
--- a/src/transformers/integrations.py
+++ b/src/transformers/integrations.py
@@ -124,8 +124,7 @@ def run_hp_search_ray(trainer, n_trials: int, direction: str, **kwargs) -> BestR
metrics = trainer.e... | Report Tune metrics in final evaluation (#<I>) |
diff --git a/lib/unexpected-sinon.js b/lib/unexpected-sinon.js
index <HASH>..<HASH> 100644
--- a/lib/unexpected-sinon.js
+++ b/lib/unexpected-sinon.js
@@ -133,7 +133,9 @@
var onCall = spy.onCall && spy.onCall(spy.behaviors.length);
return onCall;
};
- for (var propertyName in spy) {
+ ... | Don't rely on spy/stub/... properties being enumerable
They aren't as of sinonjs/sinon#<I>, which landed in sinon <I>
Fixes #<I> |
diff --git a/lib/rubocop/node_pattern.rb b/lib/rubocop/node_pattern.rb
index <HASH>..<HASH> 100644
--- a/lib/rubocop/node_pattern.rb
+++ b/lib/rubocop/node_pattern.rb
@@ -135,9 +135,11 @@ module RuboCop
end
def run(node_var)
- tokens = @string.scan(TOKEN)
- tokens.reject! { |token| token =... | Drop support for extra commas in node patterns (part 2)
Work started in #<I>. However, node patterns would still allow commas,
due to another hard coded instance of the regexp that is now extracted
into `NodePattern::Compiler::SEPARATORS`. |
diff --git a/public/app/core/services/backend_srv.js b/public/app/core/services/backend_srv.js
index <HASH>..<HASH> 100644
--- a/public/app/core/services/backend_srv.js
+++ b/public/app/core/services/backend_srv.js
@@ -105,6 +105,13 @@ function (angular, _, coreModule, config) {
});
}
+ //p... | feat(backendsrv): improves error response handling
datasourceRequests that could not reach the destination threw
invalid errors due to missing property. This fixes gives the user
a better error message.
closes #<I> |
diff --git a/lib/6to5/transformation/transformers/es6/classes.js b/lib/6to5/transformation/transformers/es6/classes.js
index <HASH>..<HASH> 100644
--- a/lib/6to5/transformation/transformers/es6/classes.js
+++ b/lib/6to5/transformation/transformers/es6/classes.js
@@ -207,7 +207,7 @@ ClassTransformer.prototype.buildBody ... | Use the posessive form of "its", not a contraction of "it is". |
diff --git a/src/test/java/com/treetank/cache/TransactionLogCacheTest.java b/src/test/java/com/treetank/cache/TransactionLogCacheTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/treetank/cache/TransactionLogCacheTest.java
+++ b/src/test/java/com/treetank/cache/TransactionLogCacheTest.java
@@ -3,6 +3,7 @@ p... | fixed bug in transactionlogtest, wrong annotation was set
git-svn-id: <URL> |
diff --git a/lib/ansiblelint/__init__.py b/lib/ansiblelint/__init__.py
index <HASH>..<HASH> 100644
--- a/lib/ansiblelint/__init__.py
+++ b/lib/ansiblelint/__init__.py
@@ -125,7 +125,7 @@ class RulesCollection(object):
return matches
for rule in self.rules:
- if not tags or not set(rul... | Fix tags set creation in certain cases
In some circumstances the rule id can't be added to the list.
By using union on sets, this problem is avoided |
diff --git a/scenarios/kubernetes_e2e.py b/scenarios/kubernetes_e2e.py
index <HASH>..<HASH> 100755
--- a/scenarios/kubernetes_e2e.py
+++ b/scenarios/kubernetes_e2e.py
@@ -398,7 +398,7 @@ def create_parser():
parser.add_argument(
'--soak-test', action='store_true', help='If the test is a soak test job')
... | Update kubetest to <I>-bb<I>b0 |
diff --git a/hawtio-system/src/main/java/io/hawt/system/Authenticator.java b/hawtio-system/src/main/java/io/hawt/system/Authenticator.java
index <HASH>..<HASH> 100644
--- a/hawtio-system/src/main/java/io/hawt/system/Authenticator.java
+++ b/hawtio-system/src/main/java/io/hawt/system/Authenticator.java
@@ -194,7 +194,7 ... | This log doesn't need to be at the WARN level |
diff --git a/treenode/admin.py b/treenode/admin.py
index <HASH>..<HASH> 100644
--- a/treenode/admin.py
+++ b/treenode/admin.py
@@ -58,6 +58,11 @@ class TreeNodeModelAdmin(admin.ModelAdmin):
return base_list_display
+ def get_queryset(self, request):
+ qs = super(TreeNodeModelAdmin, self).get_quer... | Reduced admin list display queries count. |
diff --git a/folder.go b/folder.go
index <HASH>..<HASH> 100644
--- a/folder.go
+++ b/folder.go
@@ -32,7 +32,7 @@ func (f Folder) Reference() types.ManagedObjectReference {
func (f Folder) Children(c *Client) ([]Reference, error) {
var mf mo.Folder
- err := c.Properties(f.Reference(), []string{"childType", "childEn... | Retrieve only childEntity property for folder |
diff --git a/lib/codemirror.js b/lib/codemirror.js
index <HASH>..<HASH> 100644
--- a/lib/codemirror.js
+++ b/lib/codemirror.js
@@ -5392,7 +5392,7 @@
for (var i = newBreaks.length - 1; i >= 0; i--)
replaceRange(cm.doc, val, newBreaks[i], Pos(newBreaks[i].line, newBreaks[i].ch + val.length))
});
- option(... | Include all ASCII control codes in specialChars
* \x1a-\x1f were missing though it looks like the intention was to cover all below \x<I> (space)
* added \x7f which is usually considered non-printable
* removed \t which was already covered in \x<I>-\x<I> as \x<I> |
diff --git a/SoftLayer/managers/storage_utils.py b/SoftLayer/managers/storage_utils.py
index <HASH>..<HASH> 100644
--- a/SoftLayer/managers/storage_utils.py
+++ b/SoftLayer/managers/storage_utils.py
@@ -660,14 +660,14 @@ def prepare_replicant_order_object(manager, snapshot_schedule, location,
"""
# Ensure the... | <I> Fix checking against literal empty string |
diff --git a/lib/berkshelf/locations/hg.rb b/lib/berkshelf/locations/hg.rb
index <HASH>..<HASH> 100644
--- a/lib/berkshelf/locations/hg.rb
+++ b/lib/berkshelf/locations/hg.rb
@@ -51,9 +51,8 @@ module Berkshelf
# Download the cookbook from the remote hg repository
#
- # @return [CachedCookbook]
+ #... | Silly josh with his extraneous newlines |
diff --git a/models/lobby/lobby_requirement.go b/models/lobby/lobby_requirement.go
index <HASH>..<HASH> 100644
--- a/models/lobby/lobby_requirement.go
+++ b/models/lobby/lobby_requirement.go
@@ -70,7 +70,6 @@ func (l *Lobby) FitsRequirements(player *player.Player, slot int) (bool, error)
//update player info only i... | FitsRequirements: Don't save player on UpdatePlayerInfo |
diff --git a/src/matchArray.js b/src/matchArray.js
index <HASH>..<HASH> 100644
--- a/src/matchArray.js
+++ b/src/matchArray.js
@@ -17,7 +17,7 @@ module.exports = (currentMatch, subjectToMatch) => {
.slice(0, matchArgs.length - 1)
.every((arg, index) => matchOnSubArg(arg, subjectToMatch[index]))
- if ... | Flip args on match array validation
It's better to check first the value that already was evaluated. |
diff --git a/src/dct.js b/src/dct.js
index <HASH>..<HASH> 100644
--- a/src/dct.js
+++ b/src/dct.js
@@ -7,7 +7,7 @@
* tool to understand the Mel-scale and its related coefficients used in
* human speech analysis.
\*===========================================================================*/
-cosMap = null;
+var co... | Assign cosMap as undefined variables in strict mode (and ES6) throw errors |
diff --git a/src/Project.php b/src/Project.php
index <HASH>..<HASH> 100644
--- a/src/Project.php
+++ b/src/Project.php
@@ -39,19 +39,32 @@ class Project
/**
*
+ * The Composer 'installed' data.
+ *
+ * @var array
+ *
+ */
+ protected $installed;
+
+ /**
+ *
* Constru... | retain Composer 'installed' data in the project info |
diff --git a/packages/card/index.js b/packages/card/index.js
index <HASH>..<HASH> 100644
--- a/packages/card/index.js
+++ b/packages/card/index.js
@@ -1,3 +1,5 @@
-const React = require('./dist/react')
+const css = require('./css')
+const react = require('./react')
+const vars = require('./vars')
-module.exports = { ... | refactor(card): remember to update index for new css/vars imports |
diff --git a/presto-hive/src/main/java/com/facebook/presto/hive/metastore/CachingHiveMetastore.java b/presto-hive/src/main/java/com/facebook/presto/hive/metastore/CachingHiveMetastore.java
index <HASH>..<HASH> 100644
--- a/presto-hive/src/main/java/com/facebook/presto/hive/metastore/CachingHiveMetastore.java
+++ b/pres... | Use expireAfterWrite in Hive metastore cache
The original code was using expireAfterAccess, which was a typo and was
introduced in the PR that added per-transaction cache for Hive metastore. |
diff --git a/spec/module_spec.rb b/spec/module_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/module_spec.rb
+++ b/spec/module_spec.rb
@@ -223,10 +223,7 @@ describe EtOrbi do
current = EtOrbi.get_tzone(:local)
- class ::Time
- alias _original_zone zone
- def zone; "中国标准时间"; end
- ... | Inject arbitrary zone name at spec_helper.rb level |
diff --git a/lib/chef/knife/azure_base.rb b/lib/chef/knife/azure_base.rb
index <HASH>..<HASH> 100755
--- a/lib/chef/knife/azure_base.rb
+++ b/lib/chef/knife/azure_base.rb
@@ -74,7 +74,7 @@ class Chef
:azure_host_name => locate_config_value(:azure_host_name),
:ve... | Better hints for the user incase of a missing param |
diff --git a/TYPO3.Flow/Scripts/flow.php b/TYPO3.Flow/Scripts/flow.php
index <HASH>..<HASH> 100644
--- a/TYPO3.Flow/Scripts/flow.php
+++ b/TYPO3.Flow/Scripts/flow.php
@@ -23,6 +23,12 @@ if (isset($argv[1]) && ($argv[1] === 'typo3.flow:core:setfilepermissions' || $ar
if (DIRECTORY_SEPARATOR !== '/') {
exit... | [TASK] Add permissions check for setfilepermissions.sh
Using the setfilepermissions.sh script fails due to wrong file permissions left by the composer installation (missing executable bit). Added the checking of the file's permissions, and correcting the file's permissions if needed. Mode <I> is set as the setfileperm... |
diff --git a/src/styles/points/points.js b/src/styles/points/points.js
index <HASH>..<HASH> 100755
--- a/src/styles/points/points.js
+++ b/src/styles/points/points.js
@@ -192,7 +192,7 @@ Object.assign(Points, {
quad: [ Utils.scaleInt16(size[0], 256), Utils.scaleInt16(size[1], 256) ],
q... | point angle is degrees in scene file, radians in internal label calc |
diff --git a/src/providers/discord.js b/src/providers/discord.js
index <HASH>..<HASH> 100644
--- a/src/providers/discord.js
+++ b/src/providers/discord.js
@@ -8,7 +8,7 @@ export default (options) => {
params: { grant_type: 'authorization_code' },
accessTokenUrl: 'https://discord.com/api/oauth2/token',
au... | Set Discord to Prompt = None (#<I>)
* Update discord.js
* Migrating from discordapp.com to discord.com |
diff --git a/validator/testcases/jetpack.py b/validator/testcases/jetpack.py
index <HASH>..<HASH> 100644
--- a/validator/testcases/jetpack.py
+++ b/validator/testcases/jetpack.py
@@ -53,6 +53,8 @@ def inspect_jetpack(err, xpi_package, allow_old_sdk=False):
err.save_resource('pretested_files', [])
if is_... | Ignore cfx compat test during bulk validation |
diff --git a/flask_slither/resources.py b/flask_slither/resources.py
index <HASH>..<HASH> 100644
--- a/flask_slither/resources.py
+++ b/flask_slither/resources.py
@@ -168,13 +168,13 @@ class BaseResource(MethodView):
final.update(projection)
return None if final == {} else final
- def _get_collec... | get_collection is passed **kwargs as it should |
diff --git a/payment/src/main/java/org/killbill/billing/payment/core/sm/control/OperationControlCallback.java b/payment/src/main/java/org/killbill/billing/payment/core/sm/control/OperationControlCallback.java
index <HASH>..<HASH> 100644
--- a/payment/src/main/java/org/killbill/billing/payment/core/sm/control/OperationC... | payment: fix logging message in OperationControlCallback |
diff --git a/routes/admin/not-authenticated/account-login/page.js b/routes/admin/not-authenticated/account-login/page.js
index <HASH>..<HASH> 100644
--- a/routes/admin/not-authenticated/account-login/page.js
+++ b/routes/admin/not-authenticated/account-login/page.js
@@ -108,20 +108,6 @@ class LoginPage extends Componen... | feature(login): Remove from login page register link |
diff --git a/examples/Clock/ClockDS.py b/examples/Clock/ClockDS.py
index <HASH>..<HASH> 100644
--- a/examples/Clock/ClockDS.py
+++ b/examples/Clock/ClockDS.py
@@ -39,8 +39,7 @@ class Clock(Device):
@attribute(dtype='DevEnum', enum_labels=get_enum_labels(Noon))
def noon(self):
time_struct = time.gmtim... | Remove casting in ClockDS enum example
The enum can be used directly - no need to cast it to an int before
returning. |
diff --git a/src/deep-security/lib/Token.js b/src/deep-security/lib/Token.js
index <HASH>..<HASH> 100644
--- a/src/deep-security/lib/Token.js
+++ b/src/deep-security/lib/Token.js
@@ -147,13 +147,11 @@ export class Token {
this._credentials = new AWS.CognitoIdentityCredentials(cognitoParams);
- AWS.config.cr... | #<I> - Fix credentials assignment to AWS.config.credentials |
diff --git a/lib/i18n/backend/cache.rb b/lib/i18n/backend/cache.rb
index <HASH>..<HASH> 100644
--- a/lib/i18n/backend/cache.rb
+++ b/lib/i18n/backend/cache.rb
@@ -68,7 +68,7 @@ module I18n
# Also, in Ruby < 1.8.7 {}.hash != {}.hash
# (see http://paulbarry.com/articles/2009/09/14/why-rails-3-will-r... | For those using < <I>, prevent the key becoming too large (for example for memcached) by tasking the hash of inspect string. |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -2,7 +2,7 @@ var lib = require('./mappersmith')
var _process, defaultGateway
// Prevents webpack to load the nodejs processs polyfill
-try { _process = eval('typeof process === "object" ? process : null') }... | Switch null with undefined on process evaluation |
diff --git a/externs/html5.js b/externs/html5.js
index <HASH>..<HASH> 100644
--- a/externs/html5.js
+++ b/externs/html5.js
@@ -1192,6 +1192,7 @@ HTMLInputElement.prototype.stepUp = function(opt_n) {};
/**
* @constructor
* @extends {HTMLElement}
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaEle... | Add some documentation for properties in HTMLMediaElement.
In particular, clarify that times are in seconds, not milliseconds.
-------------
Created by MOE: <URL> |
diff --git a/ue4cli/UnrealManagerBase.py b/ue4cli/UnrealManagerBase.py
index <HASH>..<HASH> 100644
--- a/ue4cli/UnrealManagerBase.py
+++ b/ue4cli/UnrealManagerBase.py
@@ -150,7 +150,7 @@ class UnrealManagerBase(object):
try:
return self.getPluginDescriptor(dir)
except:
- raise UnrealManagerException('co... | Report directory path when descriptor detection fails |
diff --git a/gshell-io/src/main/java/org/sonatype/gshell/io/InputPipe.java b/gshell-io/src/main/java/org/sonatype/gshell/io/InputPipe.java
index <HASH>..<HASH> 100644
--- a/gshell-io/src/main/java/org/sonatype/gshell/io/InputPipe.java
+++ b/gshell-io/src/main/java/org/sonatype/gshell/io/InputPipe.java
@@ -100,27 +100,3... | Handle cases that show up when CTRL-Z is used to suspend the shell, causing the pipe to fail. Also need to reset the terminal. |
diff --git a/server/storage/mvcc/index.go b/server/storage/mvcc/index.go
index <HASH>..<HASH> 100644
--- a/server/storage/mvcc/index.go
+++ b/server/storage/mvcc/index.go
@@ -257,8 +257,14 @@ func (ti *treeIndex) Equal(bi index) bool {
equal := true
ti.tree.Ascend(func(item btree.Item) bool {
- aki := item.(*key... | server/storage/mvcc: fix oss-fuzz issue <I> |
diff --git a/fireplace/game.py b/fireplace/game.py
index <HASH>..<HASH> 100644
--- a/fireplace/game.py
+++ b/fireplace/game.py
@@ -164,13 +164,13 @@ class Game(Entity):
return ret
- def toss_coin(self):
- outcome = random.randint(0, 1)
- # player who wins the outcome is the index
- winner = self.players[outco... | Simplify Game.toss_coin() logic and rename it to pick_first_player() |
diff --git a/lib/active_record/connection_adapters/oracle_enhanced_adapter.rb b/lib/active_record/connection_adapters/oracle_enhanced_adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/connection_adapters/oracle_enhanced_adapter.rb
+++ b/lib/active_record/connection_adapters/oracle_enhanced_adapter.rb
@@ -1... | Remove call to deprecated `serialized_attributes`.
According to <URL>
it should be no longer necessary to check whether the attribute is serialized.
Note: this change is probably incompatible with rails prior <I>. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -8,6 +8,25 @@ from setuptools import setup
from setuptools.command.install import install as orig_install
+try:
+ from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
+
+ class bdist_wheel(_bdist_wheel):
+
+ ... | dumb-init is not a pure python package |
diff --git a/stats/cloud/client.go b/stats/cloud/client.go
index <HASH>..<HASH> 100644
--- a/stats/cloud/client.go
+++ b/stats/cloud/client.go
@@ -117,7 +117,9 @@ func (c *Client) Do(req *http.Request, v interface{}) error {
func (c *Client) do(req *http.Request, v interface{}, attempt int) (retry bool, err error) {... | Fix: anonymous users running the `cloud` collector will not send the `Authorization` header |
diff --git a/presto-jdbc/src/main/java/com/facebook/presto/jdbc/PrestoConnection.java b/presto-jdbc/src/main/java/com/facebook/presto/jdbc/PrestoConnection.java
index <HASH>..<HASH> 100644
--- a/presto-jdbc/src/main/java/com/facebook/presto/jdbc/PrestoConnection.java
+++ b/presto-jdbc/src/main/java/com/facebook/presto/... | Implement PrestoConnection.getTransactionIsolation
Resolves #<I> |
diff --git a/src/components/multiselect/MultiSelect.js b/src/components/multiselect/MultiSelect.js
index <HASH>..<HASH> 100644
--- a/src/components/multiselect/MultiSelect.js
+++ b/src/components/multiselect/MultiSelect.js
@@ -396,12 +396,11 @@ export class MultiSelect extends Component {
callback && callback(... | Fixed #<I> - MultiSelect with transitionOptions property throws an exception |
diff --git a/lib/WebDriverTargetLocator.php b/lib/WebDriverTargetLocator.php
index <HASH>..<HASH> 100644
--- a/lib/WebDriverTargetLocator.php
+++ b/lib/WebDriverTargetLocator.php
@@ -41,10 +41,18 @@ class WebDriverTargetLocator {
/**
* Switch to the iframe by its id or name.
*
+ * @param WebDriverElement|s... | [switchTo] switch to frame by WebDriverElement
Allow switching to a frame by the WebDriverElement.
Sample:
$frame_element = $driver->findElement($by);
$driver->switchTo()->frame($frame_element); |
diff --git a/src/resource.php b/src/resource.php
index <HASH>..<HASH> 100644
--- a/src/resource.php
+++ b/src/resource.php
@@ -204,6 +204,10 @@ public function fill_data($values) {
* @todo allow to add collections as well
*/
public function add_relation($key, $relation, $skip_include=false) {
+ if (isset($this->pr... | modify add_relation method for handle multi same relation |
diff --git a/test/entity_test.rb b/test/entity_test.rb
index <HASH>..<HASH> 100644
--- a/test/entity_test.rb
+++ b/test/entity_test.rb
@@ -91,6 +91,13 @@ module XCDM
"Author", inverseName: "article", inverseEntity: "Author" }], e.relationships
end
+ def test_has_one_should_not_plural
+ ... | Added test for entities that end 's' and has_one
The reason for this test is that release <I> has a bug where if you an
entity with the name 'Address' and another entity 'has_one :address',
the relationship is not properly handled.
In other words, if you run this test for verson <I>, it fails. On
master, it succeeds... |
diff --git a/tests/google/requests/storage/bucket_tests.rb b/tests/google/requests/storage/bucket_tests.rb
index <HASH>..<HASH> 100644
--- a/tests/google/requests/storage/bucket_tests.rb
+++ b/tests/google/requests/storage/bucket_tests.rb
@@ -16,8 +16,7 @@ Shindo.tests('Fog::Storage[:google] | bucket requests', ["googl... | [google|storage] update expected format to remove StorageClass |
diff --git a/bot/api/api.py b/bot/api/api.py
index <HASH>..<HASH> 100644
--- a/bot/api/api.py
+++ b/bot/api/api.py
@@ -11,7 +11,7 @@ class Api:
def send_message(self, message: Message, **params):
message_params = message.data.copy()
message_params.update(params)
- return self.telegram_api.... | Remove direct access to telegram_api from api.py to pass through hook |
diff --git a/command/node_status.go b/command/node_status.go
index <HASH>..<HASH> 100644
--- a/command/node_status.go
+++ b/command/node_status.go
@@ -12,7 +12,7 @@ type NodeStatusCommand struct {
func (c *NodeStatusCommand) Help() string {
helpText := `
-Usage: nomad node-status [options] [node]
+Usage: nomad nod... | standardize on <> for required flags |
diff --git a/test/com/google/javascript/jscomp/SymbolTableTest.java b/test/com/google/javascript/jscomp/SymbolTableTest.java
index <HASH>..<HASH> 100644
--- a/test/com/google/javascript/jscomp/SymbolTableTest.java
+++ b/test/com/google/javascript/jscomp/SymbolTableTest.java
@@ -1421,7 +1421,7 @@ public final class Symb... | Fix flakiness of SymbolTableTest.
The flakiness caused by window.foo; being declared both in externs and main code and compiler doesn't know which one is declaration and which one is "usage" and depending on the order of processing they both might be used as declaration.
By changing test to use "window.foo = 1;" the ... |
diff --git a/instaloader/structures.py b/instaloader/structures.py
index <HASH>..<HASH> 100644
--- a/instaloader/structures.py
+++ b/instaloader/structures.py
@@ -134,6 +134,12 @@ class Post:
pic_json = self._context.get_json("p/{0}/".format(self.shortcode), params={})
self._full_metadata_dict... | Alleviate #<I> by catching bad metadata response
Instead of ungracefully failing with a TypeError, the Post is now skipped with
an error message containing the invalid JSON. |
diff --git a/deltas/__init__.py b/deltas/__init__.py
index <HASH>..<HASH> 100644
--- a/deltas/__init__.py
+++ b/deltas/__init__.py
@@ -8,7 +8,7 @@ from .tokenizers import (Token, Tokenizer, RegexTokenizer, text_split,
from .segmenters import (Segmenter, Segment, MatchableSegment,
ParagraphsSe... | Increments version to <I> |
diff --git a/tests/Platform/Domains/Addon/Features/UninstallAddonTest.php b/tests/Platform/Domains/Addon/Features/UninstallAddonTest.php
index <HASH>..<HASH> 100644
--- a/tests/Platform/Domains/Addon/Features/UninstallAddonTest.php
+++ b/tests/Platform/Domains/Addon/Features/UninstallAddonTest.php
@@ -18,4 +18,14 @@ cl... | Add test to check rolling back migrations |
diff --git a/quantecon/tests/test_lqcontrol.py b/quantecon/tests/test_lqcontrol.py
index <HASH>..<HASH> 100644
--- a/quantecon/tests/test_lqcontrol.py
+++ b/quantecon/tests/test_lqcontrol.py
@@ -68,8 +68,8 @@ class TestLQControl(unittest.TestCase):
x_seq, u_seq, w_seq = lq_mat.compute_sequence(x0)
- ... | TEST: Lower tolerance on the compute stationary matrices. |
diff --git a/system_tests/pubsub.py b/system_tests/pubsub.py
index <HASH>..<HASH> 100644
--- a/system_tests/pubsub.py
+++ b/system_tests/pubsub.py
@@ -267,7 +267,8 @@ class TestPubsub(unittest.TestCase):
def _no_topic(instance):
return instance.topic is None
- retry = RetryInstanceState(_... | Wait even longer for orphaned subscr topic to clear.
See #<I>. |
diff --git a/server/index.js b/server/index.js
index <HASH>..<HASH> 100644
--- a/server/index.js
+++ b/server/index.js
@@ -152,11 +152,11 @@ function staticFn(req, res) {
function execute(socket, command, cwd) {
const cmd = command.cmd;
- const env = command.env;
+ const env = Object.assign({}, command.en... | fix(index) execute: old env variables droped by new ones |
diff --git a/lib/Cake/Event/CakeEventManager.php b/lib/Cake/Event/CakeEventManager.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Event/CakeEventManager.php
+++ b/lib/Cake/Event/CakeEventManager.php
@@ -222,7 +222,7 @@ class CakeEventManager {
* Dispatches a new event to all configured listeners
*
* @param string... | Make dispatch return CakeEvent - resolves #<I> |
diff --git a/lib/fs_utils/generate.js b/lib/fs_utils/generate.js
index <HASH>..<HASH> 100644
--- a/lib/fs_utils/generate.js
+++ b/lib/fs_utils/generate.js
@@ -192,12 +192,15 @@ const generate = (path, sourceFiles, config, optimizers) => {
return Promise.reject(error);
})
.then(data => {
- common.w... | We have to return the 'write' promise, else the callbacks are called before the files are actually written |
diff --git a/app/controllers/rails_i18nterface/translate_controller.rb b/app/controllers/rails_i18nterface/translate_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/rails_i18nterface/translate_controller.rb
+++ b/app/controllers/rails_i18nterface/translate_controller.rb
@@ -22,8 +22,8 @@ module RailsI18... | export ALL translations, even from old yaml |
diff --git a/spectrum.js b/spectrum.js
index <HASH>..<HASH> 100644
--- a/spectrum.js
+++ b/spectrum.js
@@ -249,7 +249,7 @@
if (opts.palette) {
palette = opts.palette.slice(0);
- paletteArray = $.isArray(palette[0]) ? palette : [palette];
+ paletteArray = Arr... | Replace deprecated jQuery methods
Fixes these warnings from jquery-migrate:
JQMIGRATE: jQuery.isArray is deprecated; use Array.isArray
JQMIGRATE: jQuery.fn.click() event shorthand is deprecated
JQMIGRATE: jQuery.fn.change() event shorthand is deprecated
JQMIGRATE: jQuery.fn.keydown() event shorthand is deprecated |
diff --git a/cmsplugin_cascade/generic/mixins.py b/cmsplugin_cascade/generic/mixins.py
index <HASH>..<HASH> 100644
--- a/cmsplugin_cascade/generic/mixins.py
+++ b/cmsplugin_cascade/generic/mixins.py
@@ -40,14 +40,14 @@ class SectionModelMixin(object):
if id_attr:
return '{bookmark_prefix}{0}'.form... | bypass args and kwargs |
diff --git a/src/hamster/lib/__init__.py b/src/hamster/lib/__init__.py
index <HASH>..<HASH> 100644
--- a/src/hamster/lib/__init__.py
+++ b/src/hamster/lib/__init__.py
@@ -264,7 +264,7 @@ def parse_fact(text, phase=None, res=None, date=None):
date = dt.datetime.strptime(fragment, DATE_FMT).date()
... | take the current hamster day as default date |
diff --git a/command/state/state.go b/command/state/state.go
index <HASH>..<HASH> 100644
--- a/command/state/state.go
+++ b/command/state/state.go
@@ -16,7 +16,7 @@ import (
)
const (
- LockThreshold = 250 * time.Millisecond
+ LockThreshold = 400 * time.Millisecond
LockMessage = "Acquiring state lock. This may ... | command/state: up the threshold for showing lock info |
diff --git a/network/stats.go b/network/stats.go
index <HASH>..<HASH> 100644
--- a/network/stats.go
+++ b/network/stats.go
@@ -44,11 +44,8 @@ func GetStats(networkState *NetworkState) (NetworkStats, error) {
func readSysfsNetworkStats(ethInterface string) (map[string]uint64, error) {
out := make(map[string]uint64)
... | Further refactoring.
Docker-DCO-<I>- |
diff --git a/salt/fileserver/__init__.py b/salt/fileserver/__init__.py
index <HASH>..<HASH> 100644
--- a/salt/fileserver/__init__.py
+++ b/salt/fileserver/__init__.py
@@ -532,3 +532,26 @@ class Fileserver(object):
(x, y) for x, y in ret.items() if x.startswith(prefix)
])
return re... | Add initial FSChan object
This object will allow us to replace a channel in the file client
with a local channel that just uses the file server class |
diff --git a/src/GameQ/Filters/Stripcolors.php b/src/GameQ/Filters/Stripcolors.php
index <HASH>..<HASH> 100644
--- a/src/GameQ/Filters/Stripcolors.php
+++ b/src/GameQ/Filters/Stripcolors.php
@@ -33,6 +33,8 @@ class Stripcolors extends Base
/**
* Apply this filter
*
+ * @SuppressWarnings(PHPMD.Cyclo... | Source based games support (#<I>)
* Source based games support
Remove HTML tags.
Example:
Before - [RU/EU] <color=#ffe<I>>HURTWORLD ❷</color>
After - [RU/EU] HURTWORLD ❷
* Change line endings
* PHPMD being annoying. |
diff --git a/entry_types/scrolled/package/spec/support/stories.js b/entry_types/scrolled/package/spec/support/stories.js
index <HASH>..<HASH> 100644
--- a/entry_types/scrolled/package/spec/support/stories.js
+++ b/entry_types/scrolled/package/spec/support/stories.js
@@ -268,7 +268,7 @@ export function examplePositioned... | Use empty inline images in appearance stories
Prevent big images from loading to slowly and thus not showing up in
snapshots causing false positives on Percy.
REDMINE-<I> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.