diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/hancock-client.rb b/lib/hancock-client.rb
index <HASH>..<HASH> 100644
--- a/lib/hancock-client.rb
+++ b/lib/hancock-client.rb
@@ -13,13 +13,9 @@ module Hancock
module Client
class Default < ::Sinatra::Default
enable :sessions
- cattr_accessor :sso_url
+ set :sso_url, nil
... | move from a cattr_accessor to the built in sinatra configuration options |
diff --git a/msm/util.py b/msm/util.py
index <HASH>..<HASH> 100644
--- a/msm/util.py
+++ b/msm/util.py
@@ -97,7 +97,7 @@ class cached_property(object):
return self
def __get__(self, inst, owner):
- now = time.time()
+ now = time.monotonic()
try:
value, last_update = i... | changed cached property recipe to use time.monotonic instead of time.time |
diff --git a/lib/natural/classifiers/classifier.js b/lib/natural/classifiers/classifier.js
index <HASH>..<HASH> 100644
--- a/lib/natural/classifiers/classifier.js
+++ b/lib/natural/classifiers/classifier.js
@@ -34,6 +34,15 @@ var Classifier = function(classifier, stemmer) {
};
function addDocument(text, classificat... | Checked for undefined and blank spaces in label
Added check for undefined and blank spaces at in string (beginning and end) in classification label |
diff --git a/productmd/composeinfo.py b/productmd/composeinfo.py
index <HASH>..<HASH> 100644
--- a/productmd/composeinfo.py
+++ b/productmd/composeinfo.py
@@ -22,6 +22,12 @@
This module provides classes for manipulating composeinfo.json files.
composeinfo.json files provide details about composes which includes
prod... | composeinfo: add docs for Compose class
Document what the composeinfo.Compose class is and how to use it. |
diff --git a/kafka/protocol/types.py b/kafka/protocol/types.py
index <HASH>..<HASH> 100644
--- a/kafka/protocol/types.py
+++ b/kafka/protocol/types.py
@@ -155,6 +155,8 @@ class Array(AbstractType):
raise ValueError('Array instantiated with no array_of type')
def encode(self, items):
+ if item... | Add protocol support for null Arrays |
diff --git a/core/Version.php b/core/Version.php
index <HASH>..<HASH> 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -21,5 +21,5 @@ final class Version
* The current Piwik version.
* @var string
*/
- const VERSION = '2.8.2';
+ const VERSION = '2.8.3';
} | <I> - so much progress |
diff --git a/py/setup.py b/py/setup.py
index <HASH>..<HASH> 100755
--- a/py/setup.py
+++ b/py/setup.py
@@ -32,7 +32,7 @@ setup_args = {
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
'url': 'https://github.com/SeleniumHQ/sel... | [py] Fix flake8 error on setup.py |
diff --git a/cerberus/platform.py b/cerberus/platform.py
index <HASH>..<HASH> 100644
--- a/cerberus/platform.py
+++ b/cerberus/platform.py
@@ -3,9 +3,9 @@
import sys
-if sys.version_info[0] == 3:
- _str_type = str
- _int_types = (int,)
-else:
+if sys.version_info[0] == 2:
_str_type = basestring # noqa
... | Makes the software ready for Python 4 |
diff --git a/lib/Buzz/Message/FormUpload.php b/lib/Buzz/Message/FormUpload.php
index <HASH>..<HASH> 100644
--- a/lib/Buzz/Message/FormUpload.php
+++ b/lib/Buzz/Message/FormUpload.php
@@ -105,6 +105,10 @@ class FormUpload extends AbstractMessage
private function detectContentType()
{
+ if (!class_exis... | Added a check as fileinfo is not enabled by default on Windows |
diff --git a/src/app/panels/graph/graph.js b/src/app/panels/graph/graph.js
index <HASH>..<HASH> 100755
--- a/src/app/panels/graph/graph.js
+++ b/src/app/panels/graph/graph.js
@@ -115,7 +115,12 @@ function (angular, $, kbn, moment, _, GraphTooltip) {
var series = data[i];
var axis = yaxis[serie... | Graph: improved decimal precision in legend and graph hover when graph ticks use single decimal point, now graph legend and tooltip always use one more decimal precision than axis ticks (if axis ticks has decimals), Fixes #<I> |
diff --git a/app/models/content.rb b/app/models/content.rb
index <HASH>..<HASH> 100644
--- a/app/models/content.rb
+++ b/app/models/content.rb
@@ -360,6 +360,7 @@ class Object
end
class ContentTextHelpers
+ include ActionView::Helpers::UrlHelper
include ActionView::Helpers::TagHelper
include ActionView::Help... | after upgrading a Typo <I> blog to <I>.x the blog was "getting ActionView::TemplateError: undefined method `mail_to' for ContentTextHelpers" errors for any rss request, mail_to is in ActionView::Helpers::UrlHelper |
diff --git a/demo/src/demos/SMAADemo.js b/demo/src/demos/SMAADemo.js
index <HASH>..<HASH> 100644
--- a/demo/src/demos/SMAADemo.js
+++ b/demo/src/demos/SMAADemo.js
@@ -244,11 +244,11 @@ export class SMAADemo extends Demo {
controls.settings.translation.enabled = false;
controls.settings.sensitivity.zoom = 1.0;
... | Fixed a minor control state issue. |
diff --git a/src/nwmatcher.js b/src/nwmatcher.js
index <HASH>..<HASH> 100644
--- a/src/nwmatcher.js
+++ b/src/nwmatcher.js
@@ -482,7 +482,7 @@ NW.Dom = (function(global) {
var i = -1, element, elements, node;
from || (from = doc);
id = id.replace(/\\/g, '');
- if (from.getElementById) {
+ ... | avoid querying XML documents by id also if they seems to exposes an usable GEBID method |
diff --git a/cellpy/cli.py b/cellpy/cli.py
index <HASH>..<HASH> 100644
--- a/cellpy/cli.py
+++ b/cellpy/cli.py
@@ -352,6 +352,7 @@ def _check_import_pyodbc():
print(" checking existence of mdb-export")
import subprocess
sub_process_path = "mdb-export"
+
try:
x = subproce... | Travis did not like my check - so surrounded it with a try except clause |
diff --git a/lib/ui/dropdown/dropdown.js b/lib/ui/dropdown/dropdown.js
index <HASH>..<HASH> 100644
--- a/lib/ui/dropdown/dropdown.js
+++ b/lib/ui/dropdown/dropdown.js
@@ -113,7 +113,10 @@
return result.id;
};
+ // Wrapper around the query function for Select2. When the promise resolves
+ // the cal... | more docs for select2 remote data integration |
diff --git a/lib/fog/google/requests/storage/get_bucket_acl.rb b/lib/fog/google/requests/storage/get_bucket_acl.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/google/requests/storage/get_bucket_acl.rb
+++ b/lib/fog/google/requests/storage/get_bucket_acl.rb
@@ -1,6 +1,6 @@
module Fog
- module Google
- class Storage
+... | fix get_bucket_acl request method in Google Cloud Storage |
diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb
index <HASH>..<HASH> 100644
--- a/lib/linguist/generated.rb
+++ b/lib/linguist/generated.rb
@@ -302,7 +302,7 @@ module Linguist
return false unless extname == '.go'
return false unless lines.count > 1
- return lines.first(10).any? {... | Bump line limit for generated_go (#<I>)
In some cases (e.g. the Cilium project) the `Code generated by` comment
appears after a license header. This header might be longer than <I>
lines which generated_go currently searches for this comment.
Bump the limit to <I> lines (roughly corresponding to the length of the... |
diff --git a/packages/dai-plugin-governance/src/GovQueryApiService.js b/packages/dai-plugin-governance/src/GovQueryApiService.js
index <HASH>..<HASH> 100644
--- a/packages/dai-plugin-governance/src/GovQueryApiService.js
+++ b/packages/dai-plugin-governance/src/GovQueryApiService.js
@@ -119,8 +119,8 @@ export default cl... | check currentVoteRankedChoice in current vote ranked choice response |
diff --git a/hazelcast/src/main/java/com/hazelcast/map/mapstore/writebehind/SynchronizedWriteBehindQueue.java b/hazelcast/src/main/java/com/hazelcast/map/mapstore/writebehind/SynchronizedWriteBehindQueue.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/map/mapstore/writebehind/SynchronizedWr... | fix javadoc to clarify thread safe access guarantees to wrapped write-behind-queue |
diff --git a/script/publish-to-npm.js b/script/publish-to-npm.js
index <HASH>..<HASH> 100644
--- a/script/publish-to-npm.js
+++ b/script/publish-to-npm.js
@@ -121,8 +121,8 @@ new Promise((resolve, reject) => {
}
const currentJson = JSON.stringify(fs.readFileSync(path.join(tempDir, 'package.json'), 'utf8... | chore: @electron/nightly => electron-nightly (#<I>) |
diff --git a/metricdef/metricdef_es.go b/metricdef/metricdef_es.go
index <HASH>..<HASH> 100644
--- a/metricdef/metricdef_es.go
+++ b/metricdef/metricdef_es.go
@@ -200,7 +200,7 @@ func (d *DefsEs) processEsResponse(body []byte) error {
return err
}
if response.Errors {
- log.Warn("ES: Bulk Insertion: some operat... | only need to see this in debug mode. we have metrics to report these
- very common - types of issues |
diff --git a/sportsreference/nfl/schedule.py b/sportsreference/nfl/schedule.py
index <HASH>..<HASH> 100644
--- a/sportsreference/nfl/schedule.py
+++ b/sportsreference/nfl/schedule.py
@@ -104,8 +104,9 @@ class Game(object):
The boxscore is embedded within the HTML tag and needs a special
parsing scheme... | Fix issue parsing NFL boxscores |
diff --git a/sklearn_porter/utils/Environment.py b/sklearn_porter/utils/Environment.py
index <HASH>..<HASH> 100644
--- a/sklearn_porter/utils/Environment.py
+++ b/sklearn_porter/utils/Environment.py
@@ -58,8 +58,13 @@ class Environment(object):
"""Get information from the system and local environment."""
@s... | release/<I>: Move 'read_python_version' to Environment class |
diff --git a/blocks/recent_activity/block_recent_activity.php b/blocks/recent_activity/block_recent_activity.php
index <HASH>..<HASH> 100644
--- a/blocks/recent_activity/block_recent_activity.php
+++ b/blocks/recent_activity/block_recent_activity.php
@@ -31,6 +31,10 @@ class block_recent_activity extends block_base {
... | Recent activity block shouldn't go into my moode |
diff --git a/samplers/parser.go b/samplers/parser.go
index <HASH>..<HASH> 100644
--- a/samplers/parser.go
+++ b/samplers/parser.go
@@ -162,16 +162,14 @@ func ParseMetricSSF(metric *ssf.SSFSample) (UDPMetric, error) {
tempTags := make([]string, 0)
for key, value := range metric.Tags {
if key == "veneurlocalonly" ... | In translating tags, don't break on veneur meta tags
This should make veneur not truncate the list of tags translated from
SSF samples as soon as it hits (at some arbitrary point) the tags
"veneurglobalonly" and "veneurlocalonly". |
diff --git a/src/main/java/org/takes/facets/hamcrest/AbstractHmTextBody.java b/src/main/java/org/takes/facets/hamcrest/AbstractHmTextBody.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/takes/facets/hamcrest/AbstractHmTextBody.java
+++ b/src/main/java/org/takes/facets/hamcrest/AbstractHmTextBody.java
@@ -43,8 ... | #<I> Modify puzzle to update the describeTo as well |
diff --git a/plugins/Goals/Archiver.php b/plugins/Goals/Archiver.php
index <HASH>..<HASH> 100644
--- a/plugins/Goals/Archiver.php
+++ b/plugins/Goals/Archiver.php
@@ -13,6 +13,7 @@ use Piwik\DataAccess\LogAggregator;
use Piwik\DataArray;
use Piwik\DataTable;
use Piwik\Metrics;
+use Piwik\Plugin\Manager;
use Piwik\T... | Archive ecommerce items only if Ecommerce plugin is enabled (#<I>) |
diff --git a/gems/__init__.py b/gems/__init__.py
index <HASH>..<HASH> 100644
--- a/gems/__init__.py
+++ b/gems/__init__.py
@@ -2,7 +2,7 @@
__author__ = 'Blake Printy'
__email__ = 'bprinty@gmail.com'
-__version__ = '0.3.2'
+__version__ = '0.3.3'
from .datatypes import composite | incremented patch version for new methods |
diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php
index <HASH>..<HASH> 100644
--- a/DependencyInjection/Configuration.php
+++ b/DependencyInjection/Configuration.php
@@ -34,7 +34,7 @@ class Configuration implements ConfigurationInterface
->ifNotInArray(array... | fixed typo - MailChimp vs. mailchimp |
diff --git a/udiskie/mount.py b/udiskie/mount.py
index <HASH>..<HASH> 100644
--- a/udiskie/mount.py
+++ b/udiskie/mount.py
@@ -727,7 +727,8 @@ class DeviceActions(object):
"""Return an iterable over all available methods the device has."""
if device.is_filesystem:
if device.is_mounted:
- ... | Don't report 'browse' action if unavailable
This influences the tray icon and can potentially fix the behaviour of
shown actions in the device_added notification. |
diff --git a/examples/index.js b/examples/index.js
index <HASH>..<HASH> 100644
--- a/examples/index.js
+++ b/examples/index.js
@@ -44,4 +44,6 @@ async function init() {
});
}
-init().catch(logger.error);
+if (require.main === module) {
+ init().catch(logger.error);
+} | fix: run the examples as a module, or as a main entry point |
diff --git a/lib/amq/protocol/version.rb b/lib/amq/protocol/version.rb
index <HASH>..<HASH> 100644
--- a/lib/amq/protocol/version.rb
+++ b/lib/amq/protocol/version.rb
@@ -1,5 +1,5 @@
module AMQ
module Protocol
- VERSION = "1.1.0"
+ VERSION = "1.2.0.pre1"
end # Protocol
end # AMQ | Now working on <I>.pre1 |
diff --git a/database/migrations/2016_09_02_153301_create_love_likes_table.php b/database/migrations/2016_09_02_153301_create_love_likes_table.php
index <HASH>..<HASH> 100644
--- a/database/migrations/2016_09_02_153301_create_love_likes_table.php
+++ b/database/migrations/2016_09_02_153301_create_love_likes_table.php
@... | Change migration since Laravel morph creates type as first one |
diff --git a/lib/Field/Reference.php b/lib/Field/Reference.php
index <HASH>..<HASH> 100644
--- a/lib/Field/Reference.php
+++ b/lib/Field/Reference.php
@@ -97,7 +97,9 @@ class Field_Reference extends Field {
return $f;
}
function destroy(){
- $this->owner->getElement($this->getDereferenced())->... | don't destroy dereferenced field if it was ommitted |
diff --git a/squad/frontend/views.py b/squad/frontend/views.py
index <HASH>..<HASH> 100644
--- a/squad/frontend/views.py
+++ b/squad/frontend/views.py
@@ -44,7 +44,7 @@ def project(request, group_slug, project_slug):
def builds(request, group_slug, project_slug):
group = Group.objects.get(slug=group_slug)
pr... | frontend: use default ordering for builds |
diff --git a/lib/commands/submit.js b/lib/commands/submit.js
index <HASH>..<HASH> 100644
--- a/lib/commands/submit.js
+++ b/lib/commands/submit.js
@@ -16,7 +16,10 @@ var cmd = {
var INDENT = ' ';
cmd.handler = function(argv) {
- var keyword = h.getFilename(argv.filename);
+ // use the 1st section in filename a... | Support test/submit with complex filename. |
diff --git a/src/Sylius/Bundle/ResourceBundle/spec/Sylius/Bundle/ResourceBundle/Twig/SyliusResourceExtensionSpec.php b/src/Sylius/Bundle/ResourceBundle/spec/Sylius/Bundle/ResourceBundle/Twig/SyliusResourceExtensionSpec.php
index <HASH>..<HASH> 100644
--- a/src/Sylius/Bundle/ResourceBundle/spec/Sylius/Bundle/ResourceBun... | [ResourceBundle] Fix broken spec for Twig extension |
diff --git a/lib/pkgr/distributions/debian.rb b/lib/pkgr/distributions/debian.rb
index <HASH>..<HASH> 100644
--- a/lib/pkgr/distributions/debian.rb
+++ b/lib/pkgr/distributions/debian.rb
@@ -66,7 +66,7 @@ module Pkgr
end
unless missing_packages.empty?
- package_install_command = "sudo apt-g... | force-yes when installing (build) dependencies. |
diff --git a/lib/class.pdf.php b/lib/class.pdf.php
index <HASH>..<HASH> 100644
--- a/lib/class.pdf.php
+++ b/lib/class.pdf.php
@@ -749,7 +749,7 @@ end
EOT;
$res = "<</Length " . mb_strlen($stream, '8bit') . " >>\n";
- $res .= "stream\n" . $stream . "endstream";
+ $res .= "stream\n" . $stream .... | Fix structural errors in PDF produced by CPDF (#<I>) |
diff --git a/Document API/tableaudocumentapi/workbook.py b/Document API/tableaudocumentapi/workbook.py
index <HASH>..<HASH> 100644
--- a/Document API/tableaudocumentapi/workbook.py
+++ b/Document API/tableaudocumentapi/workbook.py
@@ -115,10 +115,6 @@ class Workbook(object):
@staticmethod
def _is_valid_file... | Refactor _is_valid_file to be mroe pythonic and extensible if we add more filetypes in the future. No more C++ code in the python :) |
diff --git a/symphony/lib/toolkit/class.entrymanager.php b/symphony/lib/toolkit/class.entrymanager.php
index <HASH>..<HASH> 100644
--- a/symphony/lib/toolkit/class.entrymanager.php
+++ b/symphony/lib/toolkit/class.entrymanager.php
@@ -369,6 +369,7 @@ class EntryManager
public static function fetch($entry_id = null... | Declare the $select variable
Re <I>bc<I>f2a<I>ce0d7ad0e<I>ab4a9e6b<I>
We should always declare variables to prevent PHP warnings.
Picked from 9d<I>de<I> |
diff --git a/src/structures/DMChannel.js b/src/structures/DMChannel.js
index <HASH>..<HASH> 100644
--- a/src/structures/DMChannel.js
+++ b/src/structures/DMChannel.js
@@ -37,8 +37,8 @@ class DMChannel extends Channel {
}
// These are here only for documentation purposes - they are implemented by TextBasedChanne... | Update DMChannel, GroupDMChannel for docs (#<I>) |
diff --git a/pyinfra/api/operations.py b/pyinfra/api/operations.py
index <HASH>..<HASH> 100644
--- a/pyinfra/api/operations.py
+++ b/pyinfra/api/operations.py
@@ -329,7 +329,7 @@ def _run_single_op(state, op_hash):
]
for batch in batches:
- with progress_spinner(state.inventory) as pr... | Correct bug in spinner call when running operations in batches (parallel kwarg). |
diff --git a/views/js/qtiCommonRenderer/renderers/interactions/PortableCustomInteraction.js b/views/js/qtiCommonRenderer/renderers/interactions/PortableCustomInteraction.js
index <HASH>..<HASH> 100644
--- a/views/js/qtiCommonRenderer/renderers/interactions/PortableCustomInteraction.js
+++ b/views/js/qtiCommonRenderer/r... | fixed given the root dom element given to the IMS PCI |
diff --git a/routing.go b/routing.go
index <HASH>..<HASH> 100644
--- a/routing.go
+++ b/routing.go
@@ -222,30 +222,24 @@ func (dht *IpfsDHT) SearchValue(ctx context.Context, key string, opts ...ropts.O
}
// Select best value
if best != nil {
+ if bytes.Equal(best.Val, v.Val) {
+ continue
+ }... | don't double-validate values
Also, de-duplicate some logic. |
diff --git a/src/frontend/org/voltdb/utils/PBDRegularSegment.java b/src/frontend/org/voltdb/utils/PBDRegularSegment.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/utils/PBDRegularSegment.java
+++ b/src/frontend/org/voltdb/utils/PBDRegularSegment.java
@@ -92,7 +92,7 @@ public class PBDRegularSegment exte... | OP-<I>:
A corner case of the file truncation causes the PBD Segment size counter to be read incorrectly from the entry count field. This is now fixed. |
diff --git a/exp/audio/audio.go b/exp/audio/audio.go
index <HASH>..<HASH> 100644
--- a/exp/audio/audio.go
+++ b/exp/audio/audio.go
@@ -147,8 +147,10 @@ func (p *Player) Play() error {
}
// TODO: IsPlaying
+// TODO: Stop
+// TODO: Seek
-func (p *Player) Stop() error {
+func (p *Player) Pause() error {
p.context.... | audio: Rename Stop -> Pause |
diff --git a/tests/unit/Command/CheckerTest.php b/tests/unit/Command/CheckerTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/Command/CheckerTest.php
+++ b/tests/unit/Command/CheckerTest.php
@@ -21,11 +21,10 @@ declare(strict_types=1);
namespace DocHeaderTest\Command;
use DocHeader\Command\Checker;
+use org\bov... | Fix permission error with tempfiles on test |
diff --git a/pyang/translators/dsdl.py b/pyang/translators/dsdl.py
index <HASH>..<HASH> 100644
--- a/pyang/translators/dsdl.py
+++ b/pyang/translators/dsdl.py
@@ -357,7 +357,10 @@ class HybridDSDLSchema(object):
else:
result += c
elif state == 1: # inside name
- ... | Proper handling of axes during XSLT translation. |
diff --git a/src/main.js b/src/main.js
index <HASH>..<HASH> 100644
--- a/src/main.js
+++ b/src/main.js
@@ -7,9 +7,9 @@ export default function lazyReq(req, modules) {
configurable: true,
get() {
let mod;
- if(typeof mVal === 'function') {
+ if (typeof mVal === 'function') {
mod = mVal(mKey);
- ... | fix code style in src |
diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -84,6 +84,7 @@ const config = {
if(process.env.NODE_ENV === 'production') {
config.plugins.push(new webpack.optimize.ModuleConcatenationPlugin())
config.plugins.push(new BabiliPlugin(... | :ambulance: Support github pages in production mode |
diff --git a/lib/controller/error_controller.js b/lib/controller/error_controller.js
index <HASH>..<HASH> 100644
--- a/lib/controller/error_controller.js
+++ b/lib/controller/error_controller.js
@@ -32,6 +32,9 @@ utils.mixin(ErrorController.prototype, new (function () {
if (err.statusCode == 404) {
err.mess... | Get stack-traces back in request logs, custom-error code |
diff --git a/src/cli.js b/src/cli.js
index <HASH>..<HASH> 100755
--- a/src/cli.js
+++ b/src/cli.js
@@ -22,7 +22,14 @@ const cli = createCli(`
Examples
$ kode lint
$ kode test --watch
-`);
+`, {
+ boolean: [
+ 'any-branch',
+ 'skip-cleanup',
+ 'skip-test',
+ 'watch',
+ ],
+});
/** | fix: Force parsing arguments as boolean |
diff --git a/server/kiwi.js b/server/kiwi.js
index <HASH>..<HASH> 100755
--- a/server/kiwi.js
+++ b/server/kiwi.js
@@ -215,9 +215,9 @@ this.kiwi_mod.printMods();
// Make sure Kiwi doesn't simply quit on an exception
-//process.on('uncaughtException', function (e) {
-// console.log('[Uncaught exception] ' + e);
... | UncaughtException handler in server re-enabled |
diff --git a/search/action-builder.js b/search/action-builder.js
index <HASH>..<HASH> 100644
--- a/search/action-builder.js
+++ b/search/action-builder.js
@@ -19,25 +19,9 @@ module.exports = function(config){
* @param {string} value - The query value
* @return {function} The update query function for the g... | [action-builder] Add update properties. |
diff --git a/telepot/helper.py b/telepot/helper.py
index <HASH>..<HASH> 100644
--- a/telepot/helper.py
+++ b/telepot/helper.py
@@ -1,5 +1,6 @@
import time
import traceback
+import threading
import telepot
import telepot.filter
from functools import partial
@@ -13,20 +14,29 @@ except ImportError:
class Microphone(... | Microphone added lock, thread-safe |
diff --git a/lib/rasn1/model.rb b/lib/rasn1/model.rb
index <HASH>..<HASH> 100644
--- a/lib/rasn1/model.rb
+++ b/lib/rasn1/model.rb
@@ -206,9 +206,7 @@ module RASN1
when Proc
proc_or_class.call
when Class
- options = {}
- options[:root] = name unless name.nil?
- proc_or_class.... | Model: always keep given name to access element, but for a model, access its
root element trhough it defined name in this model. |
diff --git a/Client.php b/Client.php
index <HASH>..<HASH> 100644
--- a/Client.php
+++ b/Client.php
@@ -17,10 +17,10 @@ class Client extends Elastica_Client
$this->logger = $logger;
}
- public function request($path, $method, $data = array())
+ public function request($path, $method, $data = array(... | Updating break from `<I>` |
diff --git a/lib/sshkit/command_map.rb b/lib/sshkit/command_map.rb
index <HASH>..<HASH> 100644
--- a/lib/sshkit/command_map.rb
+++ b/lib/sshkit/command_map.rb
@@ -39,7 +39,8 @@ module SSHKit
def [](command)
if prefix[command].any?
- prefixes = prefix[command].join(" ")
+ prefixes = prefix[co... | Added support for procs to command prefixes |
diff --git a/client/cmd/swarming/lib/common.go b/client/cmd/swarming/lib/common.go
index <HASH>..<HASH> 100644
--- a/client/cmd/swarming/lib/common.go
+++ b/client/cmd/swarming/lib/common.go
@@ -176,7 +176,7 @@ func (s *swarmingServiceImpl) GetTaskOutputs(ctx context.Context, taskID, output
return nil, errors.Annota... | [swarming] create output directory if not exists
I think it is useful if directory is created automatically.
Change-Id: Ie<I>d<I>b9e<I>dfede<I>a<I>bc<I>ba<I>b2d<I>
Reviewed-on: <URL> |
diff --git a/datatableview/utils.py b/datatableview/utils.py
index <HASH>..<HASH> 100644
--- a/datatableview/utils.py
+++ b/datatableview/utils.py
@@ -129,7 +129,12 @@ def contains_plural_field(model, fields):
model = source_model
bits = orm_path.lstrip('+-').split('__')
for bit in bits[:-1]:... | fixes the contains_plural_field function in utils.py which did not include the correct api for model._meta for django <I> and above. |
diff --git a/core/src/main/java/org/infinispan/loaders/file/FileCacheStoreConfig.java b/core/src/main/java/org/infinispan/loaders/file/FileCacheStoreConfig.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/infinispan/loaders/file/FileCacheStoreConfig.java
+++ b/core/src/main/java/org/infinispan/loaders/file... | ISPN-<I> Typo in testing immutability of streamBufferSize in FileCacheStoreConfig |
diff --git a/salt/state.py b/salt/state.py
index <HASH>..<HASH> 100644
--- a/salt/state.py
+++ b/salt/state.py
@@ -2434,7 +2434,6 @@ class BaseHighState(object):
'''
Render a state file and retrieve all of the include states
'''
- err = ''
errors = []
if not local:
... | Clarify that an sls is not available on a fileserver
Instead of just assuming that it should be looking to the master only.
Refs #<I> |
diff --git a/test/future_execution_test.rb b/test/future_execution_test.rb
index <HASH>..<HASH> 100644
--- a/test/future_execution_test.rb
+++ b/test/future_execution_test.rb
@@ -58,7 +58,7 @@ module Dynflow
it 'delays the action' do
_(execution_plan.steps.count).must_equal 1
- _(delayed_... | Fix future execution test
Apparently MySQL stores timestamps with seconds precision, which often broke
tests which checked for sub-second precision. |
diff --git a/app/lib/ServerNodesRefreshService.java b/app/lib/ServerNodesRefreshService.java
index <HASH>..<HASH> 100644
--- a/app/lib/ServerNodesRefreshService.java
+++ b/app/lib/ServerNodesRefreshService.java
@@ -24,8 +24,8 @@ import com.google.inject.Inject;
import com.google.inject.Singleton;
import lib.security.... | guard against failure in the node discovery api |
diff --git a/consul/base.py b/consul/base.py
index <HASH>..<HASH> 100644
--- a/consul/base.py
+++ b/consul/base.py
@@ -703,7 +703,8 @@ class Consul(object):
interval=None,
ttl=None,
http=None,
- timeout=None):
+ timeout... | Added EnableTagOverride option to service registration method. |
diff --git a/pyphi/models/__init__.py b/pyphi/models/__init__.py
index <HASH>..<HASH> 100644
--- a/pyphi/models/__init__.py
+++ b/pyphi/models/__init__.py
@@ -1,4 +1,3 @@
-
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# models/__init__.py
diff --git a/pyphi/models/fmt.py b/pyphi/models/fmt.py
index <HASH>..<HASH> ... | Fix `models.fmt` file path |
diff --git a/giotto/programs.py b/giotto/programs.py
index <HASH>..<HASH> 100644
--- a/giotto/programs.py
+++ b/giotto/programs.py
@@ -139,15 +139,20 @@ class ProgramManifest(object):
try:
program = self[program_name]
except KeyError:
- # program is not in name, drop down to ro... | fixed some manifest parsing testcases |
diff --git a/web/concrete/models/users_friends.php b/web/concrete/models/users_friends.php
index <HASH>..<HASH> 100644
--- a/web/concrete/models/users_friends.php
+++ b/web/concrete/models/users_friends.php
@@ -64,6 +64,7 @@ class UsersFriends extends Object {
$sql = 'INSERT INTO UsersFriends ( friendUID, uID, stat... | friend events
Former-commit-id: dc<I>ed<I>a<I>db1e7d<I>cd<I>a<I>d |
diff --git a/tests/suite.php b/tests/suite.php
index <HASH>..<HASH> 100644
--- a/tests/suite.php
+++ b/tests/suite.php
@@ -28,5 +28,10 @@ class eZTestSuite extends ezpTestSuite
{
return new self();
}
+
+ public function setUp()
+ {
+ eZDir::recursiveDelete( eZINI::instance()->variable( '... | Added a cleanup of the tests var folder in the global suite.php |
diff --git a/src/sandbox.js b/src/sandbox.js
index <HASH>..<HASH> 100644
--- a/src/sandbox.js
+++ b/src/sandbox.js
@@ -19,3 +19,6 @@ afterEach(function() {
this.sandbox.restore();
});
+process.on('unhandledRejection', (err) => {
+ throw err;
+}); | Throw unhandled rejections in mocha tests
Only works under >= 3.x, but will still help us potentially catch issues in test. |
diff --git a/src/Sag.php b/src/Sag.php
index <HASH>..<HASH> 100644
--- a/src/Sag.php
+++ b/src/Sag.php
@@ -130,6 +130,15 @@ class Sag {
}
/**
+ * Get current session information on the server with /_session.
+ *
+ * @return stdClass
+ */
+ public function getSession() {
+ return $this->procPacket('G... | Added getSession method, needed to grab the _session for finding current user when authenticating with cookie auth |
diff --git a/tests/unit/core/oxcategoryTest.php b/tests/unit/core/oxcategoryTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/core/oxcategoryTest.php
+++ b/tests/unit/core/oxcategoryTest.php
@@ -416,6 +416,7 @@ class Unit_Core_oxCategoryTest extends OxidTestCase
public function testUpdate()
{
+ $... | ESDEV-<I> Mark test related with categories skipped until next sprint. |
diff --git a/lib/liebre/publisher.rb b/lib/liebre/publisher.rb
index <HASH>..<HASH> 100644
--- a/lib/liebre/publisher.rb
+++ b/lib/liebre/publisher.rb
@@ -33,12 +33,6 @@ module Liebre
end
rescue Timeout::Error
#do nothing
- ensure
- begin
- reply_queue.delete
- ... | rpc queues are now auto_delete |
diff --git a/tool.go b/tool.go
index <HASH>..<HASH> 100644
--- a/tool.go
+++ b/tool.go
@@ -563,10 +563,7 @@ type serveCommandFileSystem struct {
}
func (fs serveCommandFileSystem) Open(requestName string) (http.File, error) {
- name := requestName[1:] // requestName[0] == '/'
- if !strings.HasSuffix(requestName, ".... | Serve files outside of serveRoot to handle files referenced by sourcemaps |
diff --git a/lib/classes/cache/databox.php b/lib/classes/cache/databox.php
index <HASH>..<HASH> 100644
--- a/lib/classes/cache/databox.php
+++ b/lib/classes/cache/databox.php
@@ -78,8 +78,7 @@ class cache_databox
$key = 'record_' . $sbas_id . '_' . $row['value'] . '_' . \record_adapter::CACHE_TECHN... | PHRAS-<I>_remove_back_slash_n (#<I>)
removing \n into SQL requests causing memcached content deletion issues. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='django-sniplates',
- version='0.2.0',
+ version='0.2.1',
description='Efficient template macro sets for Django',
author='Curtis Malo... | Bumped version to <I> |
diff --git a/library/CM/Model/Language.php b/library/CM/Model/Language.php
index <HASH>..<HASH> 100644
--- a/library/CM/Model/Language.php
+++ b/library/CM/Model/Language.php
@@ -2,9 +2,6 @@
class CM_Model_Language extends CM_Model_Abstract {
- /** @var CM_Model_Language|null $_backup */
- private $_backup;
... | Remove unsued backup, remove unnecessary commit |
diff --git a/test/test_crystal.rb b/test/test_crystal.rb
index <HASH>..<HASH> 100644
--- a/test/test_crystal.rb
+++ b/test/test_crystal.rb
@@ -12,7 +12,7 @@ class TestAsm < MiniTest::Test
assert_equal :mov , m.opcode
binary = @generator.assemble
assert_equal 4 , binary.length
- should = [5,0,160,227]... | change result to hex because that is what objectdump disasemles |
diff --git a/framework/core/js/lib/models/post.js b/framework/core/js/lib/models/post.js
index <HASH>..<HASH> 100644
--- a/framework/core/js/lib/models/post.js
+++ b/framework/core/js/lib/models/post.js
@@ -7,7 +7,7 @@ Post.prototype.id = Model.prop('id');
Post.prototype.number = Model.prop('number');
Post.prototype.... | Transform post time into a date |
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index <HASH>..<HASH> 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -563,7 +563,8 @@ class Mastodon:
included.
If `only_media` is set, return only statuses with media attachments.
- If `pinned` is set, return only statu... | Fix account_statuses breakage |
diff --git a/imgaug/augmenters/meta.py b/imgaug/augmenters/meta.py
index <HASH>..<HASH> 100644
--- a/imgaug/augmenters/meta.py
+++ b/imgaug/augmenters/meta.py
@@ -2149,6 +2149,14 @@ class WithChannels(Augmenter):
hooks=hooks
)
+ ia.do_assert(
+ a... | Add check in WithChannels that heights/widths of images remain unchanged |
diff --git a/src/github.com/otoolep/rqlite/server/server.go b/src/github.com/otoolep/rqlite/server/server.go
index <HASH>..<HASH> 100644
--- a/src/github.com/otoolep/rqlite/server/server.go
+++ b/src/github.com/otoolep/rqlite/server/server.go
@@ -19,18 +19,29 @@ import (
"github.com/otoolep/rqlite/db"
)
-// isPret... | Factor out detection of URL query params |
diff --git a/src/SAML2/Assertion.php b/src/SAML2/Assertion.php
index <HASH>..<HASH> 100644
--- a/src/SAML2/Assertion.php
+++ b/src/SAML2/Assertion.php
@@ -153,10 +153,21 @@ class Assertion implements SignedElement
private $AuthenticatingAuthority;
/**
- * The attributes, as an associative array.
+ *... | Documentation of attribute value representation is complete |
diff --git a/ReText/tab.py b/ReText/tab.py
index <HASH>..<HASH> 100644
--- a/ReText/tab.py
+++ b/ReText/tab.py
@@ -365,6 +365,7 @@ class ReTextTab(QSplitter):
self.editBox.setPlainText(text)
self.editBox.document().setModified(False)
+ self.handleModificationChanged()
cssFileName = self.getBaseName() + '.... | tab: Do not treat empty files as modified after opening them |
diff --git a/test/helpers/console_runner.js b/test/helpers/console_runner.js
index <HASH>..<HASH> 100644
--- a/test/helpers/console_runner.js
+++ b/test/helpers/console_runner.js
@@ -121,6 +121,27 @@
}
};
+ function isExplorerConsole() {
+ if (!window || !window.console) {
+ return;
+ }
+ retur... | Internet Explorer console color support
As setting the colors on IE's console is not an option, we can use
console.info for good messages, and console.error for errors.
As Internet Explorer only returns info about its console when the dev
tools are active, it can be helpful to have the console open before
loading the... |
diff --git a/tests/ApiTest.php b/tests/ApiTest.php
index <HASH>..<HASH> 100644
--- a/tests/ApiTest.php
+++ b/tests/ApiTest.php
@@ -28,9 +28,7 @@ class ApiTest extends TestCase
$api->go()->respond();
- $output = json_decode(ob_get_contents());
-
- ob_clean();
+ $output = json_decode(ob_... | Get and clean and hopefully not break tests. |
diff --git a/src/Handler/CloudWatch.php b/src/Handler/CloudWatch.php
index <HASH>..<HASH> 100644
--- a/src/Handler/CloudWatch.php
+++ b/src/Handler/CloudWatch.php
@@ -72,7 +72,7 @@ class CloudWatch extends AbstractProcessingHandler
// update sequence token
$this->uploadSequenceToken = $response->get('... | Using stream uploadSequenceToken only if it was defined |
diff --git a/tests/Fixtures/TestBundle/Entity/DummyTableInheritanceRelated.php b/tests/Fixtures/TestBundle/Entity/DummyTableInheritanceRelated.php
index <HASH>..<HASH> 100644
--- a/tests/Fixtures/TestBundle/Entity/DummyTableInheritanceRelated.php
+++ b/tests/Fixtures/TestBundle/Entity/DummyTableInheritanceRelated.php
@... | PHP CS Fixer changes to conform with requirements |
diff --git a/bugwarrior/services/githubutils.py b/bugwarrior/services/githubutils.py
index <HASH>..<HASH> 100644
--- a/bugwarrior/services/githubutils.py
+++ b/bugwarrior/services/githubutils.py
@@ -45,8 +45,12 @@ def get_issues(username, repo, auth):
def get_directly_assigned_issues(auth):
- """ username and r... | Updating an inaccurate docstring. |
diff --git a/src/server/pkg/worker/master.go b/src/server/pkg/worker/master.go
index <HASH>..<HASH> 100644
--- a/src/server/pkg/worker/master.go
+++ b/src/server/pkg/worker/master.go
@@ -42,6 +42,9 @@ const (
maximumRetriesPerDatum = 3
masterLockPath = "_master_worker_lock"
+
+ // The number of datums that will b... | Add a constant for queue size. |
diff --git a/media/boom/js/boom/helpers.js b/media/boom/js/boom/helpers.js
index <HASH>..<HASH> 100755
--- a/media/boom/js/boom/helpers.js
+++ b/media/boom/js/boom/helpers.js
@@ -2,17 +2,6 @@
@fileOverview Helper functions
*/
/**
-strip all tags, return plain text
-@function
-*/
-String.prototype.text = function(){
... | Removed possibly unused function String.prototype.text() |
diff --git a/lib/claide/command.rb b/lib/claide/command.rb
index <HASH>..<HASH> 100644
--- a/lib/claide/command.rb
+++ b/lib/claide/command.rb
@@ -466,7 +466,7 @@ module CLAide
# @todo Remove deprecated format support
#
def self.arguments_array=(arguments)
- warn '[!] The signature of CLAide#argumen... | Fixed typo spotted by @segiddins |
diff --git a/src/SxBootstrap/View/Helper/Bootstrap/FlashMessenger.php b/src/SxBootstrap/View/Helper/Bootstrap/FlashMessenger.php
index <HASH>..<HASH> 100644
--- a/src/SxBootstrap/View/Helper/Bootstrap/FlashMessenger.php
+++ b/src/SxBootstrap/View/Helper/Bootstrap/FlashMessenger.php
@@ -28,7 +28,7 @@ class FlashMessenge... | change render to invoke method in flashmessenger view helper |
diff --git a/recipe-server/normandy/settings.py b/recipe-server/normandy/settings.py
index <HASH>..<HASH> 100644
--- a/recipe-server/normandy/settings.py
+++ b/recipe-server/normandy/settings.py
@@ -280,7 +280,7 @@ class Base(Core):
SECURE_PROXY_SSL_HEADER = values.TupleValue()
SECURE_HSTS_SECONDS = values.In... | Set CSRF_COOKIE_HTTPONLY to False by default |
diff --git a/lxd/instance/drivers/driver_qemu.go b/lxd/instance/drivers/driver_qemu.go
index <HASH>..<HASH> 100644
--- a/lxd/instance/drivers/driver_qemu.go
+++ b/lxd/instance/drivers/driver_qemu.go
@@ -422,8 +422,15 @@ func (d *qemu) getMonitorEventHandler() func(event string, data map[string]inter
inst, err := i... | lxd/instance/drivers/driver/qemu: Update getMonitorEventHandler to try and load instance from backup if DB not available |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -184,10 +184,11 @@ class SendFeedback extends HTMLElement {
throw new Error('Reporter is not set yet!');
}
+ const appName = 'name' in app ? app.name : app.getName();
body += [
'\n'... | send-feedback: Use app.name in newer electron versions.
app.getName() is depereacted and will throw exeception in electron v9. |
diff --git a/cyclops/src/main/java/cyclops/function/Memoize.java b/cyclops/src/main/java/cyclops/function/Memoize.java
index <HASH>..<HASH> 100644
--- a/cyclops/src/main/java/cyclops/function/Memoize.java
+++ b/cyclops/src/main/java/cyclops/function/Memoize.java
@@ -23,7 +23,7 @@ import com.oath.cyclops.util.ExceptionS... | more direct impl for memoizeSupplier |
diff --git a/app/scripts/Widget/plugins/PressureWidget/Widget.js b/app/scripts/Widget/plugins/PressureWidget/Widget.js
index <HASH>..<HASH> 100644
--- a/app/scripts/Widget/plugins/PressureWidget/Widget.js
+++ b/app/scripts/Widget/plugins/PressureWidget/Widget.js
@@ -39,7 +39,7 @@ export class PressureWidget extends Com... | [#<I>] Fix if it is an empty string, put null to city. #<I> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -8,6 +8,6 @@ setup(name='chess_py',
author='Aubhro Sengupta',
author_email='aubhrosengupta@gmail.com',
url='https://github.com/LordDarkula/chess_py',
- packages=['chess_py'],
- package_data=['REA... | Updated setup.py so this project is an installable package |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.