diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/src/main/java/com/cloudera/data/filesystem/FileSystemMetadataProvider.java b/src/main/java/com/cloudera/data/filesystem/FileSystemMetadataProvider.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/cloudera/data/filesystem/FileSystemMetadataProvider.java
+++ b/src/main/java/com/cloudera/data/filesyst... | Added class-level javadoc to FileSystemMetadataProvider. |
diff --git a/health/statuscheck/plugin_impl_statuscheck.go b/health/statuscheck/plugin_impl_statuscheck.go
index <HASH>..<HASH> 100644
--- a/health/statuscheck/plugin_impl_statuscheck.go
+++ b/health/statuscheck/plugin_impl_statuscheck.go
@@ -303,6 +303,7 @@ func (p *Plugin) GetPluginStatus(pluginName string) status.Pl... | SPOPT-<I> - Prometheus Telemetry/Health for all plugins |
diff --git a/salt/utils/s3.py b/salt/utils/s3.py
index <HASH>..<HASH> 100644
--- a/salt/utils/s3.py
+++ b/salt/utils/s3.py
@@ -106,6 +106,9 @@ def query(key, keyid, method='GET', params=None, headers=None,
if local_file:
payload_hash = salt.utils.get_hash(local_file, form='sha256')
+ if path ... | Back-port #<I> to <I> (#<I>)
* Fix: local variable result referenced before assignment
* Fix: if 'path' variable is None convert it into an empty string |
diff --git a/phoxy.js b/phoxy.js
index <HASH>..<HASH> 100755
--- a/phoxy.js
+++ b/phoxy.js
@@ -1,5 +1,8 @@
if (typeof phoxy == 'undefined')
phoxy = {};
+if (typeof phoxy.state !== 'undefined')
+ if (phoxy.state.loaded == true)
+ throw "Phoxy already loaded. Dont mess with this";
var phoxy =
@@ -218,6 +221,... | Cathing unexpected phoxy rewrite
When you rendering something like <script>phoxy= an so on #<I> |
diff --git a/cmd/test.go b/cmd/test.go
index <HASH>..<HASH> 100644
--- a/cmd/test.go
+++ b/cmd/test.go
@@ -62,6 +62,12 @@ func testPackage(targets map[string]gb.PkgTarget, pkg *gb.Package) gb.Target {
TestGoFiles: pkg.TestGoFiles, // passed directly to buildTestMain
XTestGoFiles: pkg.XTestGoFiles, // passed dir... | cmd/test: build test binaries with cgo* flags |
diff --git a/playem-audiofile.js b/playem-audiofile.js
index <HASH>..<HASH> 100644
--- a/playem-audiofile.js
+++ b/playem-audiofile.js
@@ -107,7 +107,7 @@ function AudioFilePlayer(){
};
Player.prototype.setTrackPosition = function(pos) {
- this.widget && this.widget.setPosition(pos * 1000);
+ this.widget && th... | in order to avoid receiving onEnd event too early: can only seek 2 seconds before end of loaded stream |
diff --git a/modelx/core/model.py b/modelx/core/model.py
index <HASH>..<HASH> 100644
--- a/modelx/core/model.py
+++ b/modelx/core/model.py
@@ -116,8 +116,8 @@ class Model(SpaceContainer):
def __getitem__(self, space):
return self._impl.space[space]
- def __repr__(self):
- return self._impl.rep... | removed Model.__repr__ to revert to a default repr |
diff --git a/error.go b/error.go
index <HASH>..<HASH> 100644
--- a/error.go
+++ b/error.go
@@ -129,7 +129,7 @@ type ActiveEndpointsError struct {
}
func (aee *ActiveEndpointsError) Error() string {
- return fmt.Sprintf("network %s has active endpoints", aee.name)
+ return fmt.Sprintf("network %s id %s has active en... | print name and id infomation when has active endpoints |
diff --git a/salt/modules/ps.py b/salt/modules/ps.py
index <HASH>..<HASH> 100644
--- a/salt/modules/ps.py
+++ b/salt/modules/ps.py
@@ -4,8 +4,23 @@ See http://code.google.com/p/psutil.
'''
import time
-import psutil
-
+try:
+ import psutil
+ has_psutil = True
+except ImportError:
+ has_psutil = False
+
+de... | Disable the ps salt module on python <I>
There are too many issues with it. Fixes #<I> |
diff --git a/nipap-cli/nipap_cli/nipap_cli.py b/nipap-cli/nipap_cli/nipap_cli.py
index <HASH>..<HASH> 100755
--- a/nipap-cli/nipap_cli/nipap_cli.py
+++ b/nipap-cli/nipap_cli/nipap_cli.py
@@ -467,6 +467,7 @@ def view_prefix(arg, opts):
print " %-15s : %s" % ("VRF", vrf)
print " %-15s : %s" % ("Description", ... | Show country in address view function
The nipap CLI command now also displays the 'country' attribute of a
prefix. |
diff --git a/lib/devices/gateway.js b/lib/devices/gateway.js
index <HASH>..<HASH> 100644
--- a/lib/devices/gateway.js
+++ b/lib/devices/gateway.js
@@ -164,7 +164,7 @@ const Gateway = Thing.type(Parent => class Gateway extends Parent.with(MiioApi,
});
}
- this.syncer.update(defs);
+ return this.synce... | Return promise of child syncer to wait for sync |
diff --git a/spec/cli_spec.rb b/spec/cli_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/cli_spec.rb
+++ b/spec/cli_spec.rb
@@ -3,7 +3,7 @@ require 'spec_helper'
describe Minicron::CLI do
it 'should run a simple command and print the output to stdout' do
output = capture_stdout do
- Minicron::CLI.new(['run... | Not sure this will work but it's worth a shot |
diff --git a/tests/Sniffs/ControlStructures/data/earlyExitNoErrors.php b/tests/Sniffs/ControlStructures/data/earlyExitNoErrors.php
index <HASH>..<HASH> 100644
--- a/tests/Sniffs/ControlStructures/data/earlyExitNoErrors.php
+++ b/tests/Sniffs/ControlStructures/data/earlyExitNoErrors.php
@@ -63,3 +63,11 @@ function () {
... | More tests for EarlyExitSniff |
diff --git a/app/src/Bolt/Content.php b/app/src/Bolt/Content.php
index <HASH>..<HASH> 100644
--- a/app/src/Bolt/Content.php
+++ b/app/src/Bolt/Content.php
@@ -6,7 +6,7 @@ use Silex;
class Content implements \ArrayAccess
{
- private $app;
+ protected $app;
public $id;
public $values;
public $tax... | Setting $app variable to protected, which may be useful for 0c<I>c |
diff --git a/src/components/IntlTelInput.js b/src/components/IntlTelInput.js
index <HASH>..<HASH> 100644
--- a/src/components/IntlTelInput.js
+++ b/src/components/IntlTelInput.js
@@ -375,8 +375,6 @@ export default React.createClass({
outerHeight: this.state.telInput.outerHeight
}
});
-
- this.no... | Prevent infinite loop when phone number has changed |
diff --git a/samples/automl/automlVisionPredict.js b/samples/automl/automlVisionPredict.js
index <HASH>..<HASH> 100755
--- a/samples/automl/automlVisionPredict.js
+++ b/samples/automl/automlVisionPredict.js
@@ -55,7 +55,7 @@ async function predict(
const params = {};
if (scoreThreshold) {
- params.scoreTh... | fix: Param "scoreThreshold" should be "score_threshold" (#<I>)
Sine <I> Oct <I>, I found that the scoreThreshold param won't work and encounter "Error: 3 INVALID_ARGUMENT: Request contains an invalid argument." during prediction call. I compared the doc below and the params should be score_threshold instead of scoreT... |
diff --git a/openquake/calculators/event_based.py b/openquake/calculators/event_based.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/event_based.py
+++ b/openquake/calculators/event_based.py
@@ -229,6 +229,7 @@ class EventBasedCalculator(base.HazardCalculator):
fake = logictree.FullLogicTree.fake(g... | Small cleanup [skip CI] |
diff --git a/src/Propel/Generator/Model/Table.php b/src/Propel/Generator/Model/Table.php
index <HASH>..<HASH> 100644
--- a/src/Propel/Generator/Model/Table.php
+++ b/src/Propel/Generator/Model/Table.php
@@ -12,6 +12,7 @@ namespace Propel\Generator\Model;
use DOMNode;
use DOMDocument;
+use Propel\Generator\Exception... | [Generator] Added missing use statement |
diff --git a/Model/ExtendedFieldModel.php b/Model/ExtendedFieldModel.php
index <HASH>..<HASH> 100644
--- a/Model/ExtendedFieldModel.php
+++ b/Model/ExtendedFieldModel.php
@@ -357,9 +357,9 @@ class ExtendedFieldModel extends FieldModel
public function deleteEntity($entity)
{
if ($this->isExtendedField... | Resolve a bug that prevented the deletion of secure fields. |
diff --git a/lib/acts_as_having_string_id/railtie.rb b/lib/acts_as_having_string_id/railtie.rb
index <HASH>..<HASH> 100644
--- a/lib/acts_as_having_string_id/railtie.rb
+++ b/lib/acts_as_having_string_id/railtie.rb
@@ -1,13 +1,13 @@
module ActsAsHavingStringId
class Railtie < Rails::Railtie
initializer "railti... | Include module direclty even if spring is present |
diff --git a/controller.go b/controller.go
index <HASH>..<HASH> 100644
--- a/controller.go
+++ b/controller.go
@@ -440,11 +440,13 @@ func (c *Controller) getRelatedResources(w http.ResponseWriter, ctx *Context) {
},
}
- if len(models) > 0 {
+ // add if model is found
+ if len(models) > 1 {
+ stack.Abort(f... | return error if relationship is ambiguous |
diff --git a/src/main/java/com/github/noraui/selenium/NoraUiExpectedConditions.java b/src/main/java/com/github/noraui/selenium/NoraUiExpectedConditions.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/github/noraui/selenium/NoraUiExpectedConditions.java
+++ b/src/main/java/com/github/noraui/selenium/NoraUiExpec... | add catch on presenceOfNbElementsLocatedBy expected condition |
diff --git a/amqp_client.js b/amqp_client.js
index <HASH>..<HASH> 100644
--- a/amqp_client.js
+++ b/amqp_client.js
@@ -150,7 +150,8 @@ AMQPClient.prototype.send = function(msg, target, annotations, cb) {
target: { address: target }
} }, this.policy.senderLinkPolicy);
this._session.on(Sess... | Add some debugging for when send/receive links are attached. Modify EH example to receive against all partitions (send still commented out, but it works). |
diff --git a/shutit.py b/shutit.py
index <HASH>..<HASH> 100755
--- a/shutit.py
+++ b/shutit.py
@@ -63,8 +63,8 @@ def main():
"""
# Create base shutit object.
shutit = shutit_global.shutit_global_object.shutit_objects[0]
- if sys.version_info.major == 2:
- if sys.version_info.minor < 7:
+ if sys.version_info[0] =... | Moved from using sys.version_info.major and minor to use [0] and [1] |
diff --git a/interpreter/main.go b/interpreter/main.go
index <HASH>..<HASH> 100644
--- a/interpreter/main.go
+++ b/interpreter/main.go
@@ -21,6 +21,7 @@ import (
"os"
"runtime"
"strings"
+ "time"
"github.com/juju/errors"
"github.com/ngaut/log"
@@ -54,6 +55,7 @@ func saveHistory() {
}
func executeLine(tx... | report time and rows in set for query |
diff --git a/model/execution/DeliveryExecutionList.php b/model/execution/DeliveryExecutionList.php
index <HASH>..<HASH> 100644
--- a/model/execution/DeliveryExecutionList.php
+++ b/model/execution/DeliveryExecutionList.php
@@ -295,12 +295,10 @@ class DeliveryExecutionList extends ConfigurableService
private functi... | refactor getLastActivity |
diff --git a/src/a_attributes.js b/src/a_attributes.js
index <HASH>..<HASH> 100644
--- a/src/a_attributes.js
+++ b/src/a_attributes.js
@@ -10,6 +10,8 @@
_gpfErrorDeclare("a_attributes", {
OnlyForAttributeClass:
"The attribute {attributeName} can be used only on an Attribute class",
+ OnlyOnClassForAtt... | Added control on [Class] for AttributeClass |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -13,10 +13,11 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
-import sys
import os
-import shlex
+import sys
+
import sphinx_rtd_theme
+from enumc... | Pull version for docs from package |
diff --git a/lib/mongo_mapper/document.rb b/lib/mongo_mapper/document.rb
index <HASH>..<HASH> 100644
--- a/lib/mongo_mapper/document.rb
+++ b/lib/mongo_mapper/document.rb
@@ -90,6 +90,10 @@ module MongoMapper
collection.find(FinderOptions.to_mongo_criteria(conditions)).count
end
+ def exist?(cond... | Add the ability to check for the existence of a record. A sometimes
handy method that only returns a boolean. |
diff --git a/lib/liquid/document.rb b/lib/liquid/document.rb
index <HASH>..<HASH> 100644
--- a/lib/liquid/document.rb
+++ b/lib/liquid/document.rb
@@ -1,8 +1,12 @@
module Liquid
class Document < BlockBody
+ DEFAULT_OPTIONS = {
+ locale: I18n.new
+ }
+
def self.parse(tokens, options)
doc = new... | Move DEFAULT_OPTIONS related logic to Document |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -26,8 +26,6 @@ install_requires = ['Django',
tests_require = ['Django',
'requests',
'tox',
- 'sphinx',
- 'sphinx-autobuild',
'six'] | remove sphinx from reqs |
diff --git a/src/Core/Error/ApiException.php b/src/Core/Error/ApiException.php
index <HASH>..<HASH> 100644
--- a/src/Core/Error/ApiException.php
+++ b/src/Core/Error/ApiException.php
@@ -72,7 +72,9 @@ class ApiException extends Exception
}
return new ErrorResponseException($message, $r... | WIP: restore response body stream for invalid token error |
diff --git a/src/main/java/hu/kazocsaba/imageviewer/DefaultStatusBar.java b/src/main/java/hu/kazocsaba/imageviewer/DefaultStatusBar.java
index <HASH>..<HASH> 100644
--- a/src/main/java/hu/kazocsaba/imageviewer/DefaultStatusBar.java
+++ b/src/main/java/hu/kazocsaba/imageviewer/DefaultStatusBar.java
@@ -5,7 +5,7 @@ packa... | Make DefaultStatusBar public and non-final. |
diff --git a/ruby/test-integration/authorizable_keystore_spec.rb b/ruby/test-integration/authorizable_keystore_spec.rb
index <HASH>..<HASH> 100644
--- a/ruby/test-integration/authorizable_keystore_spec.rb
+++ b/ruby/test-integration/authorizable_keystore_spec.rb
@@ -130,10 +130,10 @@ describe 'Authorizable Keystore' do... | [ruby] Update keystore and certchain alias on keystore upload test. |
diff --git a/lib/rails_email_preview.rb b/lib/rails_email_preview.rb
index <HASH>..<HASH> 100644
--- a/lib/rails_email_preview.rb
+++ b/lib/rails_email_preview.rb
@@ -38,12 +38,12 @@ module RailsEmailPreview
class << self
def layout=(layout)
- [RailsEmailPreview::ApplicationController, RailsEmailPreview:... | do not lose layout on source reloads in dev |
diff --git a/aagent/watchers/execwatcher/exec.go b/aagent/watchers/execwatcher/exec.go
index <HASH>..<HASH> 100644
--- a/aagent/watchers/execwatcher/exec.go
+++ b/aagent/watchers/execwatcher/exec.go
@@ -165,6 +165,10 @@ func (w *Watcher) intervalWatcher(ctx context.Context, wg *sync.WaitGroup) {
if w.properties.Gathe... | (#<I>) guard against negative splays |
diff --git a/notification-portlet-webapp/src/main/java/org/jasig/portlet/notice/service/jpa/JpaEntry.java b/notification-portlet-webapp/src/main/java/org/jasig/portlet/notice/service/jpa/JpaEntry.java
index <HASH>..<HASH> 100644
--- a/notification-portlet-webapp/src/main/java/org/jasig/portlet/notice/service/jpa/JpaEnt... | fix: correct fetch type from LAZY to EAGER |
diff --git a/helper/communicator/config.go b/helper/communicator/config.go
index <HASH>..<HASH> 100644
--- a/helper/communicator/config.go
+++ b/helper/communicator/config.go
@@ -86,6 +86,10 @@ func (c *Config) prepareSSH(ctx *interpolate.Context) []error {
if c.SSHBastionPort == 0 {
c.SSHBastionPort = 22
}
+... | helper/communicator: default bastion PK to normal PK |
diff --git a/src/utils/helper.js b/src/utils/helper.js
index <HASH>..<HASH> 100644
--- a/src/utils/helper.js
+++ b/src/utils/helper.js
@@ -58,7 +58,6 @@ function getOperation(conjunction) {
}
function createBoolQuery(operation, query) {
- console.log('creating bool query', operation, query);
let resultQuery = nul... | :mute: Remove logs |
diff --git a/lib/nearley.js b/lib/nearley.js
index <HASH>..<HASH> 100644
--- a/lib/nearley.js
+++ b/lib/nearley.js
@@ -38,8 +38,11 @@ State.prototype.toString = function() {
State.prototype.nextState = function(data) {
var state = new State(this.rule, this.dot + 1, this.reference, this.wantedBy);
- state.dat... | Store node data as linked list! :D
(sort of.)
This is a really big deal. Currently slice() in `nextState` is really hurting
us. Avoiding it brings exciting perf improvements (~2-3x faster). |
diff --git a/salt/modules/swarm.py b/salt/modules/swarm.py
index <HASH>..<HASH> 100644
--- a/salt/modules/swarm.py
+++ b/salt/modules/swarm.py
@@ -23,9 +23,7 @@ Docker Python SDK
More information: https://docker-py.readthedocs.io/en/stable/
"""
-# Import python libraries
-# Import Salt libs
import salt.utils.jso... | [<I>] pre-commit |
diff --git a/lib/wordpress_tools/cli_helper.rb b/lib/wordpress_tools/cli_helper.rb
index <HASH>..<HASH> 100644
--- a/lib/wordpress_tools/cli_helper.rb
+++ b/lib/wordpress_tools/cli_helper.rb
@@ -31,7 +31,7 @@ module WordPressTools
end
def download_with_curl(url, destionation, options = {})
- sudo = opt... | suppressed stdout from sysstem calls |
diff --git a/src/Chat.php b/src/Chat.php
index <HASH>..<HASH> 100644
--- a/src/Chat.php
+++ b/src/Chat.php
@@ -11,10 +11,10 @@ class Chat {
$this->channel = $channel;
}
- public function send($message = null)
+ public function send($message = null, $attachments = null)
{
$config = $t... | Allow sending 'attachments' as part of 'send' to allow formatted messages:
<URL> |
diff --git a/salt/states/jboss7.py b/salt/states/jboss7.py
index <HASH>..<HASH> 100644
--- a/salt/states/jboss7.py
+++ b/salt/states/jboss7.py
@@ -412,6 +412,7 @@ def __get_artifact(salt_source):
template=None,
source=salt_source['source'],
source_hash=None... | Added missing source_hash_name argument in get_managed function
Additional fix to #<I>
Customer was still seeing errors, this should now work.
Tested with <I> and <I> |
diff --git a/tests/mock_server.py b/tests/mock_server.py
index <HASH>..<HASH> 100644
--- a/tests/mock_server.py
+++ b/tests/mock_server.py
@@ -29,7 +29,7 @@ def start_service(service_name, host, port):
requests.get(url, timeout=0.5, proxies=_proxy_bypass)
break
except requests.excepti... | Test to see if its startup time |
diff --git a/src/org/opencms/xml/content/CmsDefaultXmlContentHandler.java b/src/org/opencms/xml/content/CmsDefaultXmlContentHandler.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/xml/content/CmsDefaultXmlContentHandler.java
+++ b/src/org/opencms/xml/content/CmsDefaultXmlContentHandler.java
@@ -765,14 +765,15 @@... | Avoiding null pointer exceptions. |
diff --git a/end-to-end-tests/src/test/java/fi/jumi/test/RunningTestsTest.java b/end-to-end-tests/src/test/java/fi/jumi/test/RunningTestsTest.java
index <HASH>..<HASH> 100755
--- a/end-to-end-tests/src/test/java/fi/jumi/test/RunningTestsTest.java
+++ b/end-to-end-tests/src/test/java/fi/jumi/test/RunningTestsTest.java
@... | It's not necessary to add Java agents to classpath |
diff --git a/forms/gridfield/GridField.php b/forms/gridfield/GridField.php
index <HASH>..<HASH> 100755
--- a/forms/gridfield/GridField.php
+++ b/forms/gridfield/GridField.php
@@ -123,7 +123,10 @@ class GridField extends FormField {
*/
public function getModelClass() {
if ($this->modelClassName) return $this->mo... | BUGFIX: Fixed GridField::getModelClass() not to access protected property. |
diff --git a/py/selenium/webdriver/common/keys.py b/py/selenium/webdriver/common/keys.py
index <HASH>..<HASH> 100644
--- a/py/selenium/webdriver/common/keys.py
+++ b/py/selenium/webdriver/common/keys.py
@@ -92,4 +92,4 @@ class Keys(object):
META = u'\ue03d'
COMMAND = u'\ue03d'
- ZENKAKU_HANKAKU: '\uE040'... | [py] that is definitely the wrong syntax for python |
diff --git a/tests/test_helpers.py b/tests/test_helpers.py
index <HASH>..<HASH> 100644
--- a/tests/test_helpers.py
+++ b/tests/test_helpers.py
@@ -397,7 +397,8 @@ class ScriptDownloaderTestCase(unittest.TestCase):
# checks
mock_downloader_class.assert_called_with(test_url)
- self.assertLogged... | Check for repr of the path. |
diff --git a/vendor/ember-suave/test-loader.js b/vendor/ember-suave/test-loader.js
index <HASH>..<HASH> 100644
--- a/vendor/ember-suave/test-loader.js
+++ b/vendor/ember-suave/test-loader.js
@@ -1,7 +1,12 @@
-/* globals jQuery, QUnit */
+/* globals requirejs, jQuery, QUnit */
jQuery(document).ready(function () {
- ... | Make compatible with ember-cli-qunit@<I>.
In ember-cli-qunit@<I> `ember-cli-test-loader` is attempted to be
loaded as an addon and falling back to the bower version if the addon is
not present.
This change brings ember-suave in line with those changes. |
diff --git a/routing/result_interpretation.go b/routing/result_interpretation.go
index <HASH>..<HASH> 100644
--- a/routing/result_interpretation.go
+++ b/routing/result_interpretation.go
@@ -348,6 +348,10 @@ func (i *interpretedResult) processPaymentOutcomeIntermediate(
reportOutgoing()
+ // All nodes up to the... | routing: report success up to the failing node on FailChannelDisabled |
diff --git a/swift_sync.py b/swift_sync.py
index <HASH>..<HASH> 100755
--- a/swift_sync.py
+++ b/swift_sync.py
@@ -24,7 +24,7 @@ def get_account():
def get_files(args):
swift_url = os.environ['OS_SWIFT_URL']
account = get_account()
- container_url = '{0}/v1/{1}/{2}?format=json'.format(
+ container_url ... | v1 is in the swift_url. |
diff --git a/Flickr4Java/src/com/flickr4java/flickr/REST.java b/Flickr4Java/src/com/flickr4java/flickr/REST.java
index <HASH>..<HASH> 100644
--- a/Flickr4Java/src/com/flickr4java/flickr/REST.java
+++ b/Flickr4Java/src/com/flickr4java/flickr/REST.java
@@ -279,6 +279,9 @@ public class REST extends Transport {
... | If there's an OAuth issue, Flickr returns a string, and not an XML. In
the post added a detection for this, to throw an error, rather than
letting it go on. if it goes on then WC3 will throw an error |
diff --git a/src/Composer/Installer/BinaryInstaller.php b/src/Composer/Installer/BinaryInstaller.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Installer/BinaryInstaller.php
+++ b/src/Composer/Installer/BinaryInstaller.php
@@ -422,6 +422,15 @@ fi
export COMPOSER_BIN_DIR=\$(cd "\${self%[/\\\\]*}" > /dev/null; pwd... | Add support for sourcing binaries despite the bin proxy being present, take 2 |
diff --git a/views/site/standard_template.php b/views/site/standard_template.php
index <HASH>..<HASH> 100755
--- a/views/site/standard_template.php
+++ b/views/site/standard_template.php
@@ -28,7 +28,7 @@
<meta name="description" content="<?= htmlspecialchars( $page->description );?>" />
<meta name="keywords" con... | Updated link to site js |
diff --git a/lxd/daemon_config.go b/lxd/daemon_config.go
index <HASH>..<HASH> 100644
--- a/lxd/daemon_config.go
+++ b/lxd/daemon_config.go
@@ -55,7 +55,7 @@ func (k *daemonConfigKey) Validate(d *Daemon, value string) error {
}
// Validate booleans
- if k.valueType == "bool" && !shared.StringInSlice(strings.ToLowe... | Allow on/off as boolean strings |
diff --git a/lib/sass/script/funcall.rb b/lib/sass/script/funcall.rb
index <HASH>..<HASH> 100644
--- a/lib/sass/script/funcall.rb
+++ b/lib/sass/script/funcall.rb
@@ -145,10 +145,10 @@ module Sass
def perform_sass_fn(function, args, keywords)
# TODO: merge with mixin arg evaluation?
- keywords.... | A bit faster (for most cases) check for unknwon named argments in function call |
diff --git a/lib/sanford/version.rb b/lib/sanford/version.rb
index <HASH>..<HASH> 100644
--- a/lib/sanford/version.rb
+++ b/lib/sanford/version.rb
@@ -1,3 +1,3 @@
module Sanford
- VERSION = "0.12.0"
+ VERSION = "0.13.0"
end | version to <I>
* require the latest dat-tcp f<I>a<I>bc4d3c<I>b3a<I>c1c2e<I>
* add `router` and `template_source` instance methods to the server obj #<I>
* rework template source api for querying about configured engines #<I>
/cc @jcredding |
diff --git a/GVRf/Framework/framework/src/main/java/org/gearvrf/GVRPicker.java b/GVRf/Framework/framework/src/main/java/org/gearvrf/GVRPicker.java
index <HASH>..<HASH> 100644
--- a/GVRf/Framework/framework/src/main/java/org/gearvrf/GVRPicker.java
+++ b/GVRf/Framework/framework/src/main/java/org/gearvrf/GVRPicker.java
@... | Fix for a UnknownFormatConversionException that leads to a crash |
diff --git a/src/Bar.js b/src/Bar.js
index <HASH>..<HASH> 100644
--- a/src/Bar.js
+++ b/src/Bar.js
@@ -54,6 +54,8 @@ export default class BarChart extends Component {
}
},
axisY: {
+ min: false,
+ max: false,
showAxis: true,
showLines: true,
showLabels: tr... | Add min/max scale support to the y axis on the bar chart (#<I>) |
diff --git a/api/urls.py b/api/urls.py
index <HASH>..<HASH> 100644
--- a/api/urls.py
+++ b/api/urls.py
@@ -202,9 +202,13 @@ Auth
Create a new :class:`~api.models.UserRegistration`.
-.. http:post:: /api/auth/???
+.. http:post:: /api/auth/login
- TODO: document the important rest_framework login URLs
+ Authent... | Fixed #<I> -- doc the 2 restframework methods. |
diff --git a/sorl/thumbnail/engines/pil_engine.py b/sorl/thumbnail/engines/pil_engine.py
index <HASH>..<HASH> 100644
--- a/sorl/thumbnail/engines/pil_engine.py
+++ b/sorl/thumbnail/engines/pil_engine.py
@@ -1,4 +1,3 @@
-from io import BytesIO
from sorl.thumbnail.engines.base import EngineBase
from sorl.thumbnail.comp... | Always use compat.BufferIO in pil_engine. |
diff --git a/src/ElephantOnCouch/Message/Request.php b/src/ElephantOnCouch/Message/Request.php
index <HASH>..<HASH> 100755
--- a/src/ElephantOnCouch/Message/Request.php
+++ b/src/ElephantOnCouch/Message/Request.php
@@ -295,7 +295,7 @@ final class Request extends Message {
//! @param[in] string $value Parameter value... | fixed a bug on setQueryParam(), I was encoding two times |
diff --git a/SpiffWorkflow/bpmn/DMNPythonScriptEngine.py b/SpiffWorkflow/bpmn/DMNPythonScriptEngine.py
index <HASH>..<HASH> 100644
--- a/SpiffWorkflow/bpmn/DMNPythonScriptEngine.py
+++ b/SpiffWorkflow/bpmn/DMNPythonScriptEngine.py
@@ -33,7 +33,7 @@ class DMNPythonScriptEngine(PythonScriptEngine):
will play nice wi... | Fixing a slight bug in the script engines. |
diff --git a/lib/tophat/opengraph.rb b/lib/tophat/opengraph.rb
index <HASH>..<HASH> 100644
--- a/lib/tophat/opengraph.rb
+++ b/lib/tophat/opengraph.rb
@@ -59,7 +59,8 @@ module TopHat
end
end
- def fb_like()
+ def fb_like(options={})
+ tag("fb:like", options)
end
end
diff --git... | added a fb_like method |
diff --git a/src/main/java/org/efaps/ui/wicket/models/objects/grid/UIGrid.java b/src/main/java/org/efaps/ui/wicket/models/objects/grid/UIGrid.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/efaps/ui/wicket/models/objects/grid/UIGrid.java
+++ b/src/main/java/org/efaps/ui/wicket/models/objects/grid/UIGrid.java
@... | Grid move to be able to do a Tree |
diff --git a/chalice/app.py b/chalice/app.py
index <HASH>..<HASH> 100644
--- a/chalice/app.py
+++ b/chalice/app.py
@@ -72,8 +72,8 @@ def _matches_content_type(content_type, valid_content_types):
elif ';' in content_type:
for section in content_type.split(';'):
- for type in section.split(',')... | Change variable to not clash with bultin keyword |
diff --git a/src/main/java/io/reactivesocket/internal/Responder.java b/src/main/java/io/reactivesocket/internal/Responder.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/reactivesocket/internal/Responder.java
+++ b/src/main/java/io/reactivesocket/internal/Responder.java
@@ -26,6 +26,7 @@ import io.reactivesocke... | request response now returns a response frame with a complete flag set |
diff --git a/src/views/boom/editor/toolbar.php b/src/views/boom/editor/toolbar.php
index <HASH>..<HASH> 100755
--- a/src/views/boom/editor/toolbar.php
+++ b/src/views/boom/editor/toolbar.php
@@ -46,10 +46,6 @@
<?php endif ?>
<div class="b-page-container">
- <?/*<button id="boom-page-editlive" class="ui-button... | Removed commented code from editor toolbar |
diff --git a/closure/goog/debug/debugwindow.js b/closure/goog/debug/debugwindow.js
index <HASH>..<HASH> 100644
--- a/closure/goog/debug/debugwindow.js
+++ b/closure/goog/debug/debugwindow.js
@@ -603,3 +603,16 @@ goog.debug.DebugWindow.prototype.addFilter = function(loggerName) {
goog.debug.DebugWindow.prototype.remove... | Allow changes to the circular buffer size.
R=gboyer,arv,pupius,nicksantos
DELTA=<I> (<I> added, 0 deleted, 0 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> |
diff --git a/lib/dimples/site.rb b/lib/dimples/site.rb
index <HASH>..<HASH> 100644
--- a/lib/dimples/site.rb
+++ b/lib/dimples/site.rb
@@ -36,7 +36,6 @@ module Dimples
end
def generate
- prepare_output_directory
scan_files
generate_files
copy_assets
@@ -160,6 +159,8 @@ module Dimpl... | Update generate_files to call prepare_output_directory. |
diff --git a/core/src/main/java/fi/iki/elonen/NanoHTTPD.java b/core/src/main/java/fi/iki/elonen/NanoHTTPD.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/fi/iki/elonen/NanoHTTPD.java
+++ b/core/src/main/java/fi/iki/elonen/NanoHTTPD.java
@@ -650,7 +650,7 @@ public abstract class NanoHTTPD {
protecte... | Fixed missing paren, Issue #<I> |
diff --git a/public/js/components/EditorSearchBar.js b/public/js/components/EditorSearchBar.js
index <HASH>..<HASH> 100644
--- a/public/js/components/EditorSearchBar.js
+++ b/public/js/components/EditorSearchBar.js
@@ -4,12 +4,12 @@ const { findDOMNode } = require("react-dom");
const Svg = require("./utils/Svg");
con... | Escape EditorSearchBar queries before using as RegExp (#<I>) |
diff --git a/lib/Epuber/server/keyboard_control.js b/lib/Epuber/server/keyboard_control.js
index <HASH>..<HASH> 100644
--- a/lib/Epuber/server/keyboard_control.js
+++ b/lib/Epuber/server/keyboard_control.js
@@ -2,6 +2,13 @@
window.addEventListener('keydown', function (e) {
var l = window.location;
+ // alt =... | [Server][keyboard_control.js] do not jump when command key is down |
diff --git a/tests/React/Curry/UtilTest.php b/tests/React/Curry/UtilTest.php
index <HASH>..<HASH> 100644
--- a/tests/React/Curry/UtilTest.php
+++ b/tests/React/Curry/UtilTest.php
@@ -27,7 +27,7 @@ class UtilTest extends \PHPUnit_Framework_TestCase
$this->assertSame(6, $addOneAndFive());
}
- public fu... | Update tests/React/Curry/UtilTest.php |
diff --git a/src/Table.php b/src/Table.php
index <HASH>..<HASH> 100644
--- a/src/Table.php
+++ b/src/Table.php
@@ -145,7 +145,7 @@ class Table extends BaseTable
public function getReminderFields()
{
$result = [];
- foreach ($this->getFieldsDefinitions($this->alias()) as $field) {
+ fore... | Fixed incorrect reference to association instead of table |
diff --git a/lib/logger.js b/lib/logger.js
index <HASH>..<HASH> 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -1,4 +1,5 @@
var winston = require('winston');
+var config = require('./config-loader');
var logger = new winston.Logger({
transports: [
@@ -15,5 +16,13 @@ var loggerStream = {write: function (data) ... | Suppress database logging during tests |
diff --git a/amazon_dash/scan.py b/amazon_dash/scan.py
index <HASH>..<HASH> 100644
--- a/amazon_dash/scan.py
+++ b/amazon_dash/scan.py
@@ -21,6 +21,9 @@ def scan_devices(fn, lfilter, iface=None):
:return: loop
"""
try:
- sniff(prn=fn, store=0, filter="udp", lfilter=lfilter, iface=iface)
+ s... | Issue #<I>: Evaluate to change sniff filters |
diff --git a/lib/dimples/site.rb b/lib/dimples/site.rb
index <HASH>..<HASH> 100644
--- a/lib/dimples/site.rb
+++ b/lib/dimples/site.rb
@@ -83,7 +83,6 @@ module Dimples
end
def scan_posts
-
Dir.glob(File.join(@source_paths[:posts], '*.*')).reverse.each do |path|
post = @post_class.new(self, p... | Updated the scan_posts method to set a post's neighbours. |
diff --git a/tests/HTMLPurifier/HTMLModule/HTML5/TextTest.php b/tests/HTMLPurifier/HTMLModule/HTML5/TextTest.php
index <HASH>..<HASH> 100644
--- a/tests/HTMLPurifier/HTMLModule/HTML5/TextTest.php
+++ b/tests/HTMLPurifier/HTMLModule/HTML5/TextTest.php
@@ -384,6 +384,10 @@ class HTMLPurifier_HTMLModule_HTML5_TextTest ext... | Add test for deep figcaption |
diff --git a/lib/chai/interface/should.js b/lib/chai/interface/should.js
index <HASH>..<HASH> 100644
--- a/lib/chai/interface/should.js
+++ b/lib/chai/interface/should.js
@@ -10,10 +10,8 @@ module.exports = function (chai, util) {
function loadShould () {
// explicitly define this method as function as to have ... | Primitives now use valueOf in shouldGetter
This allows the should syntax to be more resilient when
dealing with modified primitive constructors which
may occur more frequently with ES6 to ES5 transpilation. |
diff --git a/src/test/org/openscience/cdk/atomtype/CDKAtomTypeMatcherTest.java b/src/test/org/openscience/cdk/atomtype/CDKAtomTypeMatcherTest.java
index <HASH>..<HASH> 100644
--- a/src/test/org/openscience/cdk/atomtype/CDKAtomTypeMatcherTest.java
+++ b/src/test/org/openscience/cdk/atomtype/CDKAtomTypeMatcherTest.java
@... | Fixed charge in unit test: <I> not 0 |
diff --git a/doc/conf.py b/doc/conf.py
index <HASH>..<HASH> 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -263,8 +263,8 @@ if on_saltstack:
copyright = time.strftime("%Y")
# < --- START do not merge these settings to other branches START ---> #
-build_type = 'latest' # latest, previous, develop, next
-release ... | [<I>] change build_type and release in doc/conf.py |
diff --git a/Gemfile.lock b/Gemfile.lock
index <HASH>..<HASH> 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- warden (1.1.1)
+ warden (1.2.0)
rack (>= 1.0)
GEM
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_h... | make hidden global include obvious, now all tests pass when run on their own (previously proxy_spec failed when run on its own) |
diff --git a/lib/respect/unit_test_helper.rb b/lib/respect/unit_test_helper.rb
index <HASH>..<HASH> 100644
--- a/lib/respect/unit_test_helper.rb
+++ b/lib/respect/unit_test_helper.rb
@@ -7,7 +7,7 @@ module Respect
if msg
message = msg
else
- message = "Schema:\n#{schema}exp... | Double-quote are more readable here. |
diff --git a/lib/specjour/db_scrub.rb b/lib/specjour/db_scrub.rb
index <HASH>..<HASH> 100644
--- a/lib/specjour/db_scrub.rb
+++ b/lib/specjour/db_scrub.rb
@@ -25,12 +25,8 @@ module Specjour
def scrub
connect_to_database
- if pending_migrations?
- puts "Migrating schema for database #{ENV['TEST... | DbScrub always recreates the database
Sometimes, pending migrations isn't a good enough indicator to know if
the database has changed |
diff --git a/benchexec/tablegenerator/__init__.py b/benchexec/tablegenerator/__init__.py
index <HASH>..<HASH> 100644
--- a/benchexec/tablegenerator/__init__.py
+++ b/benchexec/tablegenerator/__init__.py
@@ -762,8 +762,7 @@ def merge_task_lists(runset_results, tasks):
for task in tasks:
run_result ... | Fix wrong assertion in table generator: Task is a tuple of three. |
diff --git a/copulas/bivariate/gumbel.py b/copulas/bivariate/gumbel.py
index <HASH>..<HASH> 100644
--- a/copulas/bivariate/gumbel.py
+++ b/copulas/bivariate/gumbel.py
@@ -139,4 +139,7 @@ class Gumbel(Bivariate):
On Gumbel copula :math:`\tau` is defined as :math:`τ = \frac{θ−1}{θ}`
that we solve as :ma... | Prevent ZeroDivisionError by raising a controlled ValueError |
diff --git a/auto_ml/predictor.py b/auto_ml/predictor.py
index <HASH>..<HASH> 100644
--- a/auto_ml/predictor.py
+++ b/auto_ml/predictor.py
@@ -914,6 +914,9 @@ class Predictor(object):
n_jobs = -1
+ if os.environ.get('is_test_suite', 0) == 'True':
+ n_jobs = 1
+
gs = GridSearchCV(... | reinstates one place for n_jobs=1 for is_test_suite |
diff --git a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialChip.java b/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialChip.java
index <HASH>..<HASH> 100644
--- a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialChip.java
+++ b/gwt-material/src/main/java/gwt/material/... | Reverted Chips to AbstractValueWidget. |
diff --git a/auth_jwt_test.go b/auth_jwt_test.go
index <HASH>..<HASH> 100644
--- a/auth_jwt_test.go
+++ b/auth_jwt_test.go
@@ -19,7 +19,7 @@ type DecoderToken struct {
func makeTokenString(username string, key []byte) string {
token := jwt.New(jwt.GetSigningMethod("HS256"))
- token.Claims["id"] = "admin"
+ token.C... | change const value to variable on makeTokenString method. |
diff --git a/pandas/core/tools/datetimes.py b/pandas/core/tools/datetimes.py
index <HASH>..<HASH> 100644
--- a/pandas/core/tools/datetimes.py
+++ b/pandas/core/tools/datetimes.py
@@ -260,7 +260,7 @@ def _convert_listlike_datetimes(
Parameters
----------
arg : list, tuple, ndarray, Series, Index
- ... | Fiy Typo in datetimes (parced) (#<I>) |
diff --git a/hooks/papertrail/papertrail.go b/hooks/papertrail/papertrail.go
index <HASH>..<HASH> 100644
--- a/hooks/papertrail/papertrail.go
+++ b/hooks/papertrail/papertrail.go
@@ -31,6 +31,7 @@ func NewPapertrailHook(host string, port int, appName string) (*PapertrailHook,
func (hook *PapertrailHook) Fire(entry *l... | Log just the message, not the stringified version of the whole log line. |
diff --git a/get_file.go b/get_file.go
index <HASH>..<HASH> 100644
--- a/get_file.go
+++ b/get_file.go
@@ -18,8 +18,13 @@ func (g *FileGetter) ClientMode(u *url.URL) (ClientMode, error) {
path = u.RawPath
}
+ fi, err := os.Stat(path)
+ if err != nil {
+ return 0, err
+ }
+
// Check if the source is a director... | Error is returned early if file source does not exist |
diff --git a/tests/longSelect.go b/tests/longSelect.go
index <HASH>..<HASH> 100644
--- a/tests/longSelect.go
+++ b/tests/longSelect.go
@@ -7,39 +7,16 @@ func main() {
prompt := &survey.Select{
Message: "Choose a color:",
Options: []string{
- "red",
- "blue",
- "red",
- "blue",
- "red",
- "blue",
- ... | made longselect test more reasonable |
diff --git a/src/drag.js b/src/drag.js
index <HASH>..<HASH> 100644
--- a/src/drag.js
+++ b/src/drag.js
@@ -5,6 +5,7 @@ module.exports = class Drag extends Plugin
constructor(parent)
{
super(parent)
+ this.inMove = false
}
down(x, y, data)
@@ -29,7 +30,7 @@ module.exports = c... | Smoothed dragging
- Dragging is no longer choppy |
diff --git a/server/server.go b/server/server.go
index <HASH>..<HASH> 100644
--- a/server/server.go
+++ b/server/server.go
@@ -431,7 +431,7 @@ func (s *Server) AcceptLoop(clr chan struct{}) {
conn, err := l.Accept()
if err != nil {
if ne, ok := err.(net.Error); ok && ne.Temporary() {
- s.Debugf("Temporary ... | Change client Accept error log level
This is an error users should know about. Thus, the log level should be
error.
Fixes #<I> |
diff --git a/torrent.go b/torrent.go
index <HASH>..<HASH> 100644
--- a/torrent.go
+++ b/torrent.go
@@ -637,7 +637,7 @@ func (t *Torrent) hashPiece(piece int) (ret metainfo.Hash) {
return
}
if err != io.ErrUnexpectedEOF && !os.IsNotExist(err) {
- log.Printf("unexpected error hashing piece with %T: %s", t.storage... | Log the storage TorrentImpl type |
diff --git a/dipper/sources/Source.py b/dipper/sources/Source.py
index <HASH>..<HASH> 100644
--- a/dipper/sources/Source.py
+++ b/dipper/sources/Source.py
@@ -450,7 +450,7 @@ class Source:
for field in line.findall('field'):
atts = dict(field.attrib)
row[atts['... | reconsider which of the previously clobbered 'row' to pass an an arg |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.