diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/cms_lab_publications/admin.py b/cms_lab_publications/admin.py
index <HASH>..<HASH> 100644
--- a/cms_lab_publications/admin.py
+++ b/cms_lab_publications/admin.py
@@ -261,6 +261,7 @@ class PublicationSetAdmin(admin.ModelAdmin):
'number_of_publications',
'pagination',
'searchable',... | Display whether a Publication Set's Bulk PubMed Query status is OK |
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index <HASH>..<HASH> 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -10,6 +10,7 @@
error_reporting(E_ALL & ~E_USER_NOTICE | E_STRICT);
+require_once dirname(__FILE__) . "/../vendor/autoload.php";
require_once dirname(__FILE__) . "/../lib/steam-... | Load Composer dependencies during tests |
diff --git a/tests/spec/output_spec.rb b/tests/spec/output_spec.rb
index <HASH>..<HASH> 100644
--- a/tests/spec/output_spec.rb
+++ b/tests/spec/output_spec.rb
@@ -105,6 +105,4 @@ describe WinRM::Output do
end
end
end
-
- pending 'parse CLIXML errors and convert to Strings and/or Exceptions'
end | remove pending test regarding exception deserializing. we do that now and cover in integration tests. will add unit tests soon |
diff --git a/test/routing_test.rb b/test/routing_test.rb
index <HASH>..<HASH> 100755
--- a/test/routing_test.rb
+++ b/test/routing_test.rb
@@ -473,7 +473,7 @@ class TranslateRoutesTest < ActionController::TestCase
end
end
- test_case = klass.new(nil)
+ test_case = klass.new(:respond_to?)
# No... | Fix tests on default urls for Ruby <I> |
diff --git a/probes/src/test/java/com/hazelcast/simulator/probes/ProbeTestUtils.java b/probes/src/test/java/com/hazelcast/simulator/probes/ProbeTestUtils.java
index <HASH>..<HASH> 100644
--- a/probes/src/test/java/com/hazelcast/simulator/probes/ProbeTestUtils.java
+++ b/probes/src/test/java/com/hazelcast/simulator/prob... | Increased TOLERANCE_MILLIS to one second in ProbeTestUtils. |
diff --git a/testsuite/domain/src/test/java/org/jboss/as/test/integration/respawn/RespawnTestCase.java b/testsuite/domain/src/test/java/org/jboss/as/test/integration/respawn/RespawnTestCase.java
index <HASH>..<HASH> 100644
--- a/testsuite/domain/src/test/java/org/jboss/as/test/integration/respawn/RespawnTestCase.java
+... | Add /f option to taskkill command on Windows. Stops respawn test from failing. |
diff --git a/concrete/src/Permission/Key/WorkflowKey.php b/concrete/src/Permission/Key/WorkflowKey.php
index <HASH>..<HASH> 100644
--- a/concrete/src/Permission/Key/WorkflowKey.php
+++ b/concrete/src/Permission/Key/WorkflowKey.php
@@ -27,7 +27,7 @@ abstract class WorkflowKey extends Key
foreach ($excluded as... | WorkflowKey::getCurrentlyActiveUsers() doesn't pass all args to getAccessEntityUsers()
Came about this bug when using the MSW extension. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -367,8 +367,8 @@ workfly.prototype.resume = function()
//Resume the workflow
this._paused = false;
- //Check if workflow is aborted
- if(this._aborted === true ){ return; }
+ //Check if workflow is aborted or comple... | index.js: check if workflow is completed before resume it |
diff --git a/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java b/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java
+++ b/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java
@@ -103,7 +10... | NPE when invoking `PeerGroup.broadcastTransaction()` on peer group with no block chain.
The modified line here seems to have been assuming that `pinnedTx` was being
initialized elsewhere, but it wasn't. |
diff --git a/alerta/server/database.py b/alerta/server/database.py
index <HASH>..<HASH> 100644
--- a/alerta/server/database.py
+++ b/alerta/server/database.py
@@ -18,10 +18,17 @@ class Mongo(object):
# Connect to MongoDB
try:
- self.conn = pymongo.MongoClient(CONF.mongo_host, CONF.mongo_p... | support pymongo < <I> |
diff --git a/flake8_respect_noqa.py b/flake8_respect_noqa.py
index <HASH>..<HASH> 100644
--- a/flake8_respect_noqa.py
+++ b/flake8_respect_noqa.py
@@ -4,13 +4,17 @@ Always ignore lines with '# noqa'
"""
__version__ = 0.2
-import pep8
+try:
+ from pep8 import StandardReport, noqa
+except ImportError:
+ # Try t... | Adjust for pep8 package rename.
Closes #1 |
diff --git a/mocpy/moc.py b/mocpy/moc.py
index <HASH>..<HASH> 100644
--- a/mocpy/moc.py
+++ b/mocpy/moc.py
@@ -371,7 +371,7 @@ class MOC(AbstractMoc):
tmp_moc = tempfile.NamedTemporaryFile(delete=False)
- self.write(tmp_moc.name)
+ self.write(tmp_moc.name, write_to_file=True)
r = req... | fix _query
MOC.write prototype has changed over time and _query was using a past version of it. |
diff --git a/lib/jsduck/lint.rb b/lib/jsduck/lint.rb
index <HASH>..<HASH> 100644
--- a/lib/jsduck/lint.rb
+++ b/lib/jsduck/lint.rb
@@ -100,7 +100,7 @@ module JsDuck
def warn_singleton_statics
@relations.each do |cls|
if cls[:singleton]
- cls.find_members({:static => true}).each do |m|
+ ... | Use the :local option in statics in singleton check.
We don't care about static members inherited from parents and mixins -
they could be completely valid in those other classes - it's the
concrete singleton who's statics interest us. |
diff --git a/src/Artisaninweb/SoapWrapper/Service.php b/src/Artisaninweb/SoapWrapper/Service.php
index <HASH>..<HASH> 100755
--- a/src/Artisaninweb/SoapWrapper/Service.php
+++ b/src/Artisaninweb/SoapWrapper/Service.php
@@ -336,7 +336,8 @@ class Service {
*/
public function header($namespace,$name,$data=null,... | Update add header function
[ErrorException]
SoapHeader::SoapHeader(): Invalid actor
This is the error i get when i don't set the actor. |
diff --git a/actions/class.TestRunner.php b/actions/class.TestRunner.php
index <HASH>..<HASH> 100644
--- a/actions/class.TestRunner.php
+++ b/actions/class.TestRunner.php
@@ -282,6 +282,7 @@ class taoQtiTest_actions_TestRunner extends tao_actions_ServiceModule {
}
$this->setData('client_conf... | add timeout to the test runner |
diff --git a/salt/_compat.py b/salt/_compat.py
index <HASH>..<HASH> 100644
--- a/salt/_compat.py
+++ b/salt/_compat.py
@@ -177,8 +177,19 @@ else:
if PY3:
from io import StringIO
+ from io import BytesIO as cStringIO
else:
from StringIO import StringIO
+ from cStringIO import StringIO as cStringIO
+
... | add more stringio support to compat |
diff --git a/salt/modules/win_file.py b/salt/modules/win_file.py
index <HASH>..<HASH> 100644
--- a/salt/modules/win_file.py
+++ b/salt/modules/win_file.py
@@ -167,11 +167,13 @@ def _resolve_symlink(path, max_depth=64):
return path
-def _change_privilege(privilege_name, enable):
+def _change_privilege_state(pri... | Renamed method to better reflect what it does. |
diff --git a/example_form.php b/example_form.php
index <HASH>..<HASH> 100644
--- a/example_form.php
+++ b/example_form.php
@@ -44,7 +44,7 @@ if (isset($_SESSION['ctform']['error']) && $_SESSION['ctform']['error'] == true
<span class="success">The captcha was correct and the message has been sent!</span><br /><br />
... | Fix potential XSS in example form. |
diff --git a/bees/ircbee/ircbee.go b/bees/ircbee/ircbee.go
index <HASH>..<HASH> 100644
--- a/bees/ircbee/ircbee.go
+++ b/bees/ircbee/ircbee.go
@@ -219,10 +219,9 @@ func (mod *IrcBee) Run(eventChan chan bees.Event) {
}
default:
+ time.Sleep(1 * time.Second)
}
}
}
-
- time.Sleep(5 * time.Sec... | Sleep in the inner-most ircbee loop. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -35,7 +35,7 @@ module.exports = {
target.options = target.options || {};
// Build all paths
- var bulmaPath = path.join(target.bowerDirectory, 'bulma');
+ var bulmaPath = path.join(target.bowerDirectory || ''... | Fallback to empty string for undefined bowerDirectory
From what I can tell, nested addons don't have access to the `bowerDirectory` property defined by Ember CLI.
Rather than get an error for passing `undefined` to `Path.join`, this attempts to continue without `target.bowerDirectory`. |
diff --git a/src/Entity/MetadataCollection.php b/src/Entity/MetadataCollection.php
index <HASH>..<HASH> 100644
--- a/src/Entity/MetadataCollection.php
+++ b/src/Entity/MetadataCollection.php
@@ -108,7 +108,9 @@ class MetadataCollection {
$cacheKey = self::$cachePrefix . 'metadata_entities_list';
$isCacheEnabled =... | Entities metadata cache would be regenerated repeatedly
If MetadataCollection::getEntitiesList() is invoked the second time,
it would regenerate metadata cache despite entity metadata cache
being in memory already. |
diff --git a/zipline/test/test_perf_tracking.py b/zipline/test/test_perf_tracking.py
index <HASH>..<HASH> 100644
--- a/zipline/test/test_perf_tracking.py
+++ b/zipline/test/test_perf_tracking.py
@@ -23,7 +23,7 @@ class PerformanceTestCase(unittest.TestCase):
len(self.treasury_curves)
)
se... | dropped the extra days in trading range... |
diff --git a/pages.go b/pages.go
index <HASH>..<HASH> 100644
--- a/pages.go
+++ b/pages.go
@@ -6,13 +6,15 @@ import (
"bytes"
"encoding/binary"
"fmt"
- "github.com/golang/protobuf/proto"
- "github.com/sajari/sajari-convert/iWork"
- "github.com/sajari/sajari-convert/snappy"
"io"
"io/ioutil"
"log"
"strings"... | Fix and reorder imports. |
diff --git a/coursera/utils.py b/coursera/utils.py
index <HASH>..<HASH> 100644
--- a/coursera/utils.py
+++ b/coursera/utils.py
@@ -65,7 +65,7 @@ def clean_filename(s, minimal_change=False):
h = html_parser.HTMLParser()
s = h.unescape(s)
- # strip paren portions which contain trailing time length (...)
+ ... | coursera/utils: Update outdated comment. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
setup(
name='tortilla',
- version='0.1.0.dev2',
+ version='0.1.0.dev3',
description='A tiny library for creating wrappers aroun... | New dev release: <I>.dev3 |
diff --git a/visidata/undo.py b/visidata/undo.py
index <HASH>..<HASH> 100644
--- a/visidata/undo.py
+++ b/visidata/undo.py
@@ -29,8 +29,10 @@ def undo(vd, sheet):
undofunc(*args, **kwargs)
sheet.undone.append(cmdlogrow)
sheet.cmdlog_sheet.rows.remove(cmdlogrow)
+
+ ... | [undo-] clear drawcache before moving to pre-undo context
Per 6a4e<I>c<I>c<I>e<I>d<I>d<I>e5ed1, upon undo, VisiData tries
to move cursor to row/col of undone command.
If drawcaches are not cleared, VisiData could fail to find that pre-undo
context. |
diff --git a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2HeadersFrame.java b/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2HeadersFrame.java
index <HASH>..<HASH> 100644
--- a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2HeadersFrame.java
+++ b/codec-http2/src/main/java/io/ne... | Fix typo in Http2HeadersFrame javadocs (#<I>)
Motivation:
`Http2HeadersFrame#isEndStream()` JavaDoc says `Returns {@code true} if the END_STREAM flag ist set.`. The typo is `ist` word. However, it should be `is`.
Modification:
Changed `ist` to `is`.
Result:
Better JavaDoc by fixing the typo. |
diff --git a/cloudstack.go b/cloudstack.go
index <HASH>..<HASH> 100644
--- a/cloudstack.go
+++ b/cloudstack.go
@@ -729,8 +729,6 @@ func (d *Driver) setNetwork(networkName string, networkID string) error {
if networkID != "" {
networkIDs := strings.Split(networkID, ",")
- networkIDsResult = make([]string, len(ne... | setNetwork: removing slice initialization with wrong size |
diff --git a/spec/api-browser-window-spec.js b/spec/api-browser-window-spec.js
index <HASH>..<HASH> 100644
--- a/spec/api-browser-window-spec.js
+++ b/spec/api-browser-window-spec.js
@@ -480,6 +480,8 @@ describe('browser-window module', function() {
});
describe('beginFrameSubscription method', function() {
+ ... | spec: Give beginFrameSubscription test more time to run |
diff --git a/core/kernel.rb b/core/kernel.rb
index <HASH>..<HASH> 100644
--- a/core/kernel.rb
+++ b/core/kernel.rb
@@ -198,7 +198,7 @@ module Kernel
%x{
for (var i = 0; i < strs.length; i++) {
if(strs[i] instanceof Array) {
- #{ puts *strs }
+ #{ puts *`strs[i]` }
} else ... | Fix Kernel#puts when dealing with arrays |
diff --git a/pkg/monitor/cmd.go b/pkg/monitor/cmd.go
index <HASH>..<HASH> 100644
--- a/pkg/monitor/cmd.go
+++ b/pkg/monitor/cmd.go
@@ -6,6 +6,7 @@ import (
"io"
"os"
"os/signal"
+ "strings"
"syscall"
"time"
)
@@ -60,7 +61,8 @@ func (opt *Options) Run() error {
if !event.From.Equal(event.To) {
co... | make sure event messages end up one one line and include counts |
diff --git a/dev/com.ibm.ws.security.social/src/com/ibm/ws/security/social/internal/utils/OpenShiftUserApiUtils.java b/dev/com.ibm.ws.security.social/src/com/ibm/ws/security/social/internal/utils/OpenShiftUserApiUtils.java
index <HASH>..<HASH> 100644
--- a/dev/com.ibm.ws.security.social/src/com/ibm/ws/security/social/i... | update to add project as the group after service account token introspection(2) |
diff --git a/photon/apitypes.go b/photon/apitypes.go
index <HASH>..<HASH> 100644
--- a/photon/apitypes.go
+++ b/photon/apitypes.go
@@ -441,18 +441,6 @@ type Hosts struct {
Items []Host `json:"items"`
}
-// Creation spec for deployments.
-type DeploymentCreateSpec struct {
- NTPEndpoint interface{} ... | Remove DeploymentDeployOperation since it is not being used anymore.
Change-Id: I<I>bc<I>b3dd<I>b<I>e7ddbc<I>adbcfee5 |
diff --git a/lib/boxgrinder/appliance-image.rb b/lib/boxgrinder/appliance-image.rb
index <HASH>..<HASH> 100644
--- a/lib/boxgrinder/appliance-image.rb
+++ b/lib/boxgrinder/appliance-image.rb
@@ -109,6 +109,7 @@ module BoxGrinder
@log.debug "Installing BoxGrinder version files..."
guestfs.sh( "echo 'BOXG... | add appliance_name info to /etc/boxgrinder file |
diff --git a/src/Manager.php b/src/Manager.php
index <HASH>..<HASH> 100644
--- a/src/Manager.php
+++ b/src/Manager.php
@@ -123,8 +123,8 @@ class Manager{
"\(". // Match opening parenthesis
"[\'\"]". // Match " or '
"(". ... | Added a slash as separator to iterate with subdirectories when use find command. (#<I>) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -24,13 +24,13 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
setup(
name='pyhacrf',
- version='0.0.9',
+ version='0.0.10',
packages=['pyhacrf'],
install_requires=['numpy>=1.9', 'PyL... | Merged in the pre-calculation of lattice limit indices. |
diff --git a/src/Models/BaseServiceConfigModel.php b/src/Models/BaseServiceConfigModel.php
index <HASH>..<HASH> 100644
--- a/src/Models/BaseServiceConfigModel.php
+++ b/src/Models/BaseServiceConfigModel.php
@@ -105,6 +105,10 @@ abstract class BaseServiceConfigModel extends BaseModel implements ServiceConfig
if... | hiding hidden column/fields on service config models schema |
diff --git a/synapse/lib/ingest.py b/synapse/lib/ingest.py
index <HASH>..<HASH> 100644
--- a/synapse/lib/ingest.py
+++ b/synapse/lib/ingest.py
@@ -692,7 +692,7 @@ class Ingest(EventBus):
return None
# FIXME optimize away the following format string
- valu = valu.re... | Stringify any tval we are going to replace inside of ingest template. This allows the use of integer values in xref node templates, which will then get fed through their normalizers. |
diff --git a/setuptools/tests/test_build_meta.py b/setuptools/tests/test_build_meta.py
index <HASH>..<HASH> 100644
--- a/setuptools/tests/test_build_meta.py
+++ b/setuptools/tests/test_build_meta.py
@@ -643,7 +643,7 @@ class TestBuildMetaBackend:
build_backend = self.get_build_backend()
assert not Pat... | Adapt test_build_meta to the new format of editable_wheel options |
diff --git a/test/unit/query/builder.js b/test/unit/query/builder.js
index <HASH>..<HASH> 100644
--- a/test/unit/query/builder.js
+++ b/test/unit/query/builder.js
@@ -2293,6 +2293,28 @@ module.exports = function(qb, clientName, aliasName) {
});
});
+ it('correctly orders parameters when selecting from ... | Added unit test for #<I>. |
diff --git a/tensorflow_datasets/core/features/feature.py b/tensorflow_datasets/core/features/feature.py
index <HASH>..<HASH> 100644
--- a/tensorflow_datasets/core/features/feature.py
+++ b/tensorflow_datasets/core/features/feature.py
@@ -600,6 +600,10 @@ class OneOf(FeaturesDict):
super(OneOf, self).__init__(feat... | Add direct access to the choice attributes of OneOf
PiperOrigin-RevId: <I> |
diff --git a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTest.java b/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTest.java
index <HASH>..<HASH> 100644
--- a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTest.java
+++ b/hystrix-core/src/test/java/com/netflix/hystrix/Hystr... | Deflaked test of semaphore concurrency |
diff --git a/hendrix/facilities/resources.py b/hendrix/facilities/resources.py
index <HASH>..<HASH> 100644
--- a/hendrix/facilities/resources.py
+++ b/hendrix/facilities/resources.py
@@ -90,7 +90,7 @@ class HendrixResource(resource.Resource):
name = parts[-1] # get the path part that we care about
... | Fixed incorrect method name. #<I>. |
diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb
index <HASH>..<HASH> 100644
--- a/spec/dummy/config/application.rb
+++ b/spec/dummy/config/application.rb
@@ -5,6 +5,7 @@ require "action_controller/railtie"
require "action_mailer/railtie"
require "sprockets/railtie"
require "sassc-rai... | Require Plek in the Dummy App
The dummy app located in `spec/dummy` couldn't be started because the Plek gem wasn't being included in `application.rb`.
Whilst this isn't needed for tests to run, it's useful to be able to fire up the dummy app in dev mode and view it in your browser.
To run the app:
```
cd spec/dumm... |
diff --git a/cmd/kubeadm/app/master/manifests.go b/cmd/kubeadm/app/master/manifests.go
index <HASH>..<HASH> 100644
--- a/cmd/kubeadm/app/master/manifests.go
+++ b/cmd/kubeadm/app/master/manifests.go
@@ -110,7 +110,6 @@ func WriteStaticPodManifests(cfg *kubeadmapi.MasterConfiguration) error {
VolumeMounts: []api.Vo... | Don't restrict etcd on self host installs b/c a clipped etcd can have
weird behaviors once it is loaded |
diff --git a/public/javascripts/system_template.js b/public/javascripts/system_template.js
index <HASH>..<HASH> 100644
--- a/public/javascripts/system_template.js
+++ b/public/javascripts/system_template.js
@@ -108,6 +108,13 @@ KT.templates = function() {
trail: ['templates', template_root],
u... | <I> - Fixes issue where creating a new system template and then clicking Package Groups resulted in being return to list of templates. |
diff --git a/tests/Feature/FileAdder/MediaConversions/AddMedia.php b/tests/Feature/FileAdder/MediaConversions/AddMedia.php
index <HASH>..<HASH> 100644
--- a/tests/Feature/FileAdder/MediaConversions/AddMedia.php
+++ b/tests/Feature/FileAdder/MediaConversions/AddMedia.php
@@ -105,7 +105,7 @@ class AddMedia extends TestCa... | Use combined assignment operator (#<I>) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup
setup(
name='django-scheduler',
- version='0.7.1',
+ version='0.7.2',
description='A calendaring app for Django.',
author='Leonardo Lazzaro',
author_email=... | Update scheduler version for fixing a broken pypi build |
diff --git a/test/org/mockito/internal/invocation/InvocationTest.java b/test/org/mockito/internal/invocation/InvocationTest.java
index <HASH>..<HASH> 100644
--- a/test/org/mockito/internal/invocation/InvocationTest.java
+++ b/test/org/mockito/internal/invocation/InvocationTest.java
@@ -134,6 +134,6 @@ public class Invo... | commented out to make build happy
--HG--
extra : convert_revision : svn%3Aaa2aecf3-ea3e-<I>-9d<I>-<I>e7c<I>/trunk%<I> |
diff --git a/edeposit/amqp/alephdaemon.py b/edeposit/amqp/alephdaemon.py
index <HASH>..<HASH> 100755
--- a/edeposit/amqp/alephdaemon.py
+++ b/edeposit/amqp/alephdaemon.py
@@ -29,11 +29,15 @@ class AlephDaemon(pikadaemon.PikaDaemon):
#= Main program ===============================================================
if ... | --foreground invocation changed. |
diff --git a/commands/push_test.go b/commands/push_test.go
index <HASH>..<HASH> 100644
--- a/commands/push_test.go
+++ b/commands/push_test.go
@@ -30,7 +30,7 @@ func TestPushToMaster(t *testing.T) {
repo.WriteFile(filepath.Join(repo.Path, ".gitattributes"), "*.dat filter=lfs -crlf\n")
- // Add a hawser file
+ ... | Replace Hawser reference with Git LFS in comment
Just improves readability of test :) |
diff --git a/fudge/util.py b/fudge/util.py
index <HASH>..<HASH> 100644
--- a/fudge/util.py
+++ b/fudge/util.py
@@ -34,4 +34,3 @@ def fmt_dict_vals(dict_vals, shorten=True):
if not items:
return [fmt_val(None, shorten=shorten)]
return ["%s=%s" % (k, fmt_val(v, shorten=shorten)) for k,v in items]
- ... | Fixed white space error which caused a SyntaxError when imported from a zipfile |
diff --git a/core/app/assets/javascripts/refinery/admin.js b/core/app/assets/javascripts/refinery/admin.js
index <HASH>..<HASH> 100644
--- a/core/app/assets/javascripts/refinery/admin.js
+++ b/core/app/assets/javascripts/refinery/admin.js
@@ -96,6 +96,7 @@ init_modal_dialogs = function(){
};
trigger_reordering = fu... | added a reference to the menu back in admin.js that was taken out by mistake |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -181,13 +181,15 @@ setup(
"MutatorMath>=2.1.1",
"defcon>=0.5.2",
"booleanOperations>=0.8.0",
+ "ufoLib[lxml]>=2.3.1",
],
extras_require = {
"pathops": [
"skia-p... | setup.py: make lxml required, not extra
lxml now has wheels for all the platforms and python versions that we support,
so let's require it. |
diff --git a/core/src/main/java/org/acegisecurity/userdetails/UserDetails.java b/core/src/main/java/org/acegisecurity/userdetails/UserDetails.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/acegisecurity/userdetails/UserDetails.java
+++ b/core/src/main/java/org/acegisecurity/userdetails/UserDetails.java
@... | Corrected wrong package name in Javadoc. |
diff --git a/lib/engine_handlebars.js b/lib/engine_handlebars.js
index <HASH>..<HASH> 100644
--- a/lib/engine_handlebars.js
+++ b/lib/engine_handlebars.js
@@ -44,8 +44,8 @@ var engine_handlebars = {
return compiled(data);
},
- registerPartial: function (oPattern) {
- Handlebars.registerPartial(oPattern.ke... | Pass the unit tests -- had to convert pattern.key to pattern.patternPartial |
diff --git a/plotypus.py b/plotypus.py
index <HASH>..<HASH> 100644
--- a/plotypus.py
+++ b/plotypus.py
@@ -36,10 +36,9 @@ def main():
norm_matrix)
eigenvectors, principle_scores, std_norm_reconstruction = pcat(
norm_matrix)
- reconstruction = unstandardize(unnormalize(
- ... | Had unnormalization and unstandardization in reverse order. Fixing that. |
diff --git a/test/unexpected.spec.js b/test/unexpected.spec.js
index <HASH>..<HASH> 100644
--- a/test/unexpected.spec.js
+++ b/test/unexpected.spec.js
@@ -864,12 +864,12 @@ describe('unexpected', function () {
expect(NaN, 'not to be finite');
expect(null, 'not to be finite');
expe... | Fixed some tests that was nested by mistake |
diff --git a/googleanalytics/columns.py b/googleanalytics/columns.py
index <HASH>..<HASH> 100644
--- a/googleanalytics/columns.py
+++ b/googleanalytics/columns.py
@@ -8,7 +8,6 @@ from addressable import map, filter
from . import utils
-TODO = utils.identity
TYPES = {
'STRING': utils.unicode, | Remove lingering reference to type preprocessing TODO. |
diff --git a/lib/wikipedia/page.rb b/lib/wikipedia/page.rb
index <HASH>..<HASH> 100644
--- a/lib/wikipedia/page.rb
+++ b/lib/wikipedia/page.rb
@@ -45,7 +45,7 @@ module Wikipedia
end
def summary
- s = (page['extract'].split(pattern="=="))[0].strip
+ (page['extract'].split(pattern="=="))[0].strip
... | Removed useless assignment to variable s |
diff --git a/yotta/test/cli/publish.py b/yotta/test/cli/publish.py
index <HASH>..<HASH> 100644
--- a/yotta/test/cli/publish.py
+++ b/yotta/test/cli/publish.py
@@ -52,6 +52,13 @@ Private_Module_JSON = '''{
}
'''
+Public_Module_JSON = '''{
+ "name": "testmod",
+ "version": "0.0.0",
+ "license": "Apache-2.0"
+}'''
... | add test for non-interactive publish |
diff --git a/gitlabhook.js b/gitlabhook.js
index <HASH>..<HASH> 100644
--- a/gitlabhook.js
+++ b/gitlabhook.js
@@ -111,7 +111,7 @@ function reply(statusCode, res) {
}
function executeShellCmds(self, address, data) {
- var repo = data.repository.name;
+ var repo = data.repository.name.replace(/[&|;$`]/gi, "");
... | [huntr.dev] <I>-JS-NODE-GITLAB-HOOK
Overview
Affected versions of this package are vulnerable to Arbitrary Code Execution. Function ExecFile executes commands without any sanitization. User input gets passed directly to this command.
Remediation
The fix handle malicious characters from the repository name.
Ref... |
diff --git a/Manager/DataTablesManager.php b/Manager/DataTablesManager.php
index <HASH>..<HASH> 100644
--- a/Manager/DataTablesManager.php
+++ b/Manager/DataTablesManager.php
@@ -30,7 +30,7 @@ class DataTablesManager extends AbstractManager {
*
* @var string
*/
- const SERVICE_NAME = "webeweb.jquer... | Fix service name (snake case) |
diff --git a/test/transform-test.js b/test/transform-test.js
index <HASH>..<HASH> 100644
--- a/test/transform-test.js
+++ b/test/transform-test.js
@@ -234,9 +234,9 @@ $(document).ready( function() {
return each(__cb(_, function() {
f4();
return __();
- }), arr, function(_, elt) {
+ }), arr, function _... | fixed bug introduced by futures on anonymous functions |
diff --git a/pydocumentdb/http_constants.py b/pydocumentdb/http_constants.py
index <HASH>..<HASH> 100644
--- a/pydocumentdb/http_constants.py
+++ b/pydocumentdb/http_constants.py
@@ -245,7 +245,7 @@ class Versions:
"""
CurrentVersion = '2017-11-15'
SDKName = 'documentdb-python-sdk'
- SDKVersion = '2.3... | bumped version to <I>-SNAPSHOT |
diff --git a/nodeconductor/cost_tracking/serializers.py b/nodeconductor/cost_tracking/serializers.py
index <HASH>..<HASH> 100644
--- a/nodeconductor/cost_tracking/serializers.py
+++ b/nodeconductor/cost_tracking/serializers.py
@@ -132,7 +132,10 @@ def get_price_estimate_for_project(serializer, project):
try:
... | Expose default threshold and total for price estimate (NC-<I>) |
diff --git a/closure/goog/ui/ac/autocomplete.js b/closure/goog/ui/ac/autocomplete.js
index <HASH>..<HASH> 100644
--- a/closure/goog/ui/ac/autocomplete.js
+++ b/closure/goog/ui/ac/autocomplete.js
@@ -647,7 +647,8 @@ goog.ui.ac.AutoComplete.prototype.selectHilited = function() {
if (!suppressUpdate) {
this.di... | Include the selected item's index on UPDATE events.
-------------
Created by MOE: <URL> |
diff --git a/src/DB_Command.php b/src/DB_Command.php
index <HASH>..<HASH> 100644
--- a/src/DB_Command.php
+++ b/src/DB_Command.php
@@ -1026,7 +1026,7 @@ class DB_Command extends WP_CLI_Command {
/**
* Finds a string in the database.
*
- * Searches through all or a selection of database tables for a given strin... | Document that individual text columns are searched. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -53,7 +53,7 @@ var getTasks = module.exports.tasks = function (options) {
}
grunt.util.spawn({
cmd: 'grunt',
- args: [name, '--force']
+... | Pass verbose argument to spawned grunt command |
diff --git a/lib/offendersHelpers.js b/lib/offendersHelpers.js
index <HASH>..<HASH> 100644
--- a/lib/offendersHelpers.js
+++ b/lib/offendersHelpers.js
@@ -175,7 +175,7 @@ var OffendersHelpers = function() {
// Remove any line breaks
offender = offender.replace(/(\r\n|\n|\r)/gm, '');
- var par... | Fix a phantomas offender parsing problem with spaces |
diff --git a/head.go b/head.go
index <HASH>..<HASH> 100644
--- a/head.go
+++ b/head.go
@@ -565,6 +565,8 @@ func (h *headBlock) create(hash uint64, lset labels.Labels) *memSeries {
lset: lset,
ref: uint32(len(h.series)),
}
+ // create the initial chunk and appender
+ s.cut()
// Allocate empty space until we... | Fix Panic When Accessing Uncut memorySeries
When calling AddFast, we check the details of the head chunk of the
referred memorySeries. But it could happen that there are no chunks in
the series at all.
Currently, we are deferring chunk creation to when we actually append
samples, but we can be sure that there will be... |
diff --git a/slumber/__init__.py b/slumber/__init__.py
index <HASH>..<HASH> 100644
--- a/slumber/__init__.py
+++ b/slumber/__init__.py
@@ -139,7 +139,7 @@ class Resource(ResourceAttributesMixin, object):
resp = self._request("PATCH", data=s.dumps(data), params=kwargs)
if 200 <= resp.status_code <= 2... | Using the correct status_code for PATCH requests (<I>). |
diff --git a/src/main/java/com/couchbase/lite/replicator/ChangeTracker.java b/src/main/java/com/couchbase/lite/replicator/ChangeTracker.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/couchbase/lite/replicator/ChangeTracker.java
+++ b/src/main/java/com/couchbase/lite/replicator/ChangeTracker.java
@@ -258,6 +25... | Fix for issue #<I>. Unit test added in last commit now passes.
<URL> |
diff --git a/core/src/main/java/com/kaichunlin/transition/animation/TransitionAnimation.java b/core/src/main/java/com/kaichunlin/transition/animation/TransitionAnimation.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/kaichunlin/transition/animation/TransitionAnimation.java
+++ b/core/src/main/java/com/ka... | Fix TransitionAnimation.resetAnimation crashing when animation was not started |
diff --git a/svglib/svglib.py b/svglib/svglib.py
index <HASH>..<HASH> 100755
--- a/svglib/svglib.py
+++ b/svglib/svglib.py
@@ -1009,7 +1009,7 @@ class Svg2RlgShapeConverter(SvgShapeConverter):
shape.fillColor.alpha = shape.fillOpacity
-def svg2rlg(path,**kwargs):
+def svg2rlg(path, **kwargs):
"Con... | added Claude's pep8 space :(
--HG--
branch : colorConverter |
diff --git a/chef/lib/chef/knife/cookbook_test.rb b/chef/lib/chef/knife/cookbook_test.rb
index <HASH>..<HASH> 100644
--- a/chef/lib/chef/knife/cookbook_test.rb
+++ b/chef/lib/chef/knife/cookbook_test.rb
@@ -45,15 +45,20 @@ class Chef
def run
config[:cookbook_path] ||= Chef::Config[:cookbook_path]
+ ... | Updating debugging when cookbook test has no cookbooks - CHEF-<I> |
diff --git a/connection_test.go b/connection_test.go
index <HASH>..<HASH> 100644
--- a/connection_test.go
+++ b/connection_test.go
@@ -727,7 +727,4 @@ func TestFatalTxError(t *testing.T) {
if conn.IsAlive() {
t.Fatal("Connection should not be live but was")
}
- if conn.CauseOfDeath().Error() != "EOF" {
- t.Fata... | Don't test cause of death for killed connection
Different platforms have different causes of death |
diff --git a/src/app/n2n/util/ex/IllegalStateException.php b/src/app/n2n/util/ex/IllegalStateException.php
index <HASH>..<HASH> 100644
--- a/src/app/n2n/util/ex/IllegalStateException.php
+++ b/src/app/n2n/util/ex/IllegalStateException.php
@@ -26,9 +26,9 @@ namespace n2n\util\ex;
* is not in an appropriate state for t... | Bs responsive img (MimgBs) added. |
diff --git a/fusesoc/capi1/core.py b/fusesoc/capi1/core.py
index <HASH>..<HASH> 100644
--- a/fusesoc/capi1/core.py
+++ b/fusesoc/capi1/core.py
@@ -338,7 +338,7 @@ class Core:
if 'tool' in flags:
if flags['tool'] in ['ghdl', 'icarus', 'isim', 'modelsim', 'rivierapro', 'xsim']:
flow... | CAPI1: Pass "synth" file lists to Spyglass |
diff --git a/cleverhans_tutorials/tutorial_models.py b/cleverhans_tutorials/tutorial_models.py
index <HASH>..<HASH> 100644
--- a/cleverhans_tutorials/tutorial_models.py
+++ b/cleverhans_tutorials/tutorial_models.py
@@ -99,7 +99,7 @@ class Conv2D(Layer):
dummy_batch = tf.zeros(input_shape)
dummy_output... | correct batch_size in output_shape and delete a redundant method |
diff --git a/plugins/outputs/graylog/graylog.go b/plugins/outputs/graylog/graylog.go
index <HASH>..<HASH> 100644
--- a/plugins/outputs/graylog/graylog.go
+++ b/plugins/outputs/graylog/graylog.go
@@ -214,7 +214,7 @@ func (g *Graylog) serialize(metric telegraf.Metric) ([]string, error) {
m := make(map[string]interfac... | fix: output timestamp with fractional seconds (#<I>) |
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/yaml/sharding/YamlTableRuleConfiguration.java b/sharding-core/src/main/java/io/shardingsphere/core/yaml/sharding/YamlTableRuleConfiguration.java
index <HASH>..<HASH> 100644
--- a/sharding-core/src/main/java/io/shardingsphere/core/yaml/sharding/YamlTableRul... | Removed useless codes in YamlTableRuleConfiguration. |
diff --git a/src/main/java/net/bootsfaces/component/fullCalendar/FullCalendarRenderer.java b/src/main/java/net/bootsfaces/component/fullCalendar/FullCalendarRenderer.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/bootsfaces/component/fullCalendar/FullCalendarRenderer.java
+++ b/src/main/java/net/bootsfaces/co... | DEV: added comment how to transfer changes to backing bean |
diff --git a/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php b/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php
+++ b/src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php
@@ -49,6 +49,7 @@ class EntityType extends AbstractTy... | Added `group_by` to EntityType |
diff --git a/dallinger/recruiters.py b/dallinger/recruiters.py
index <HASH>..<HASH> 100644
--- a/dallinger/recruiters.py
+++ b/dallinger/recruiters.py
@@ -685,12 +685,9 @@ class MTurkRecruiter(Recruiter):
hits = self.mturkservice.get_hits(
hit_filter=lambda h: h["annotation"] == experiment_id
... | Just use early return to avoid iterator paperwork |
diff --git a/tests/cases/core/LibrariesTest.php b/tests/cases/core/LibrariesTest.php
index <HASH>..<HASH> 100644
--- a/tests/cases/core/LibrariesTest.php
+++ b/tests/cases/core/LibrariesTest.php
@@ -99,7 +99,7 @@ class LibrariesTest extends \lithium\test\Unit {
public function testLibraryConfigAccess() {
$result =... | Fixing a test in `\core\Libraries` where symlinked Lithium directories are matched properly. |
diff --git a/command/agent/local.go b/command/agent/local.go
index <HASH>..<HASH> 100644
--- a/command/agent/local.go
+++ b/command/agent/local.go
@@ -439,7 +439,7 @@ func (l *localState) setSyncState() error {
eCopy := existing.Clone()
// Copy the server's check before modifying, otherwise
- // in-memory R... | Tweaks comment about side effects. |
diff --git a/src/feat/web/webserver.py b/src/feat/web/webserver.py
index <HASH>..<HASH> 100644
--- a/src/feat/web/webserver.py
+++ b/src/feat/web/webserver.py
@@ -1873,7 +1873,9 @@ class Response(log.Logger):
return
status = http.Status[self._request._ref.code].name
- self._request.debug(... | Include information about time of processing of web request. |
diff --git a/test/dummy/db/migrate/20110208155312_set_up_test_tables.rb b/test/dummy/db/migrate/20110208155312_set_up_test_tables.rb
index <HASH>..<HASH> 100644
--- a/test/dummy/db/migrate/20110208155312_set_up_test_tables.rb
+++ b/test/dummy/db/migrate/20110208155312_set_up_test_tables.rb
@@ -12,7 +12,7 @@ class SetUp... | Get rid of deprecation warning on dummy app migrations on Travis |
diff --git a/checker/tests/result_test.py b/checker/tests/result_test.py
index <HASH>..<HASH> 100644
--- a/checker/tests/result_test.py
+++ b/checker/tests/result_test.py
@@ -151,6 +151,7 @@ class FontToolsTest(TestCase):
url = 'http://fonts.googleapis.com/css?family=%s' % metadata['name'].replace(' ', '+')
... | If font is in GWF then check for visibility == 'External' |
diff --git a/Tests/System/ApplicationBundle/PhpListApplicationBundleTest.php b/Tests/System/ApplicationBundle/PhpListApplicationBundleTest.php
index <HASH>..<HASH> 100644
--- a/Tests/System/ApplicationBundle/PhpListApplicationBundleTest.php
+++ b/Tests/System/ApplicationBundle/PhpListApplicationBundleTest.php
@@ -51,7 ... | [CLEANUP] Use Guzzle's convenience methods in the system tests (#<I>)
This makes the code more concise. |
diff --git a/lib/Thelia/Core/Template/Loop/Feature.php b/lib/Thelia/Core/Template/Loop/Feature.php
index <HASH>..<HASH> 100644
--- a/lib/Thelia/Core/Template/Loop/Feature.php
+++ b/lib/Thelia/Core/Template/Loop/Feature.php
@@ -123,11 +123,13 @@ class Feature extends BaseI18nLoop implements PropelSearchLoopInterface
... | Patch for #<I> for backend context |
diff --git a/bloop/engine.py b/bloop/engine.py
index <HASH>..<HASH> 100644
--- a/bloop/engine.py
+++ b/bloop/engine.py
@@ -237,7 +237,7 @@ class Engine:
projection=projection, limit=limit, consistent=consistent)
return iter(s.prepare())
- def stream(self, model, position, strict: bool=False) ... | remove strict arg from Stream.move_to #<I> |
diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -172,4 +172,25 @@ describe('gulp-bump: JSON comparison fixtures', function() {
bumpS.write(fakeFile);
bumpS.end();
});
+
+ it('should bump one key by default', function(done) {
+ var fakeFi... | Add test for bumping only one key |
diff --git a/src/main/java/com/chaschev/chutils/Main.java b/src/main/java/com/chaschev/chutils/Main.java
index <HASH>..<HASH> 100755
--- a/src/main/java/com/chaschev/chutils/Main.java
+++ b/src/main/java/com/chaschev/chutils/Main.java
@@ -7,11 +7,17 @@ import com.google.common.base.Strings;
*/
public class Main {
... | Updated dialog for the Installation example. |
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/hash_with_indifferent_access.rb
+++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb
@@ -3... | Hide internal utility methods in the public API doc [ci skip]
I digged the history for the internal utility methods (`convert_key`,
`convert_value`, and `set_defaults`), I believe it is apparently not
intended to appear them in the public API doc.
* `convert_key`, `convert_value`: <I>
* `set_defaults`: #<I>
<URL>, s... |
diff --git a/lib/nearley.js b/lib/nearley.js
index <HASH>..<HASH> 100644
--- a/lib/nearley.js
+++ b/lib/nearley.js
@@ -69,8 +69,9 @@ State.prototype.process = function(location, ind, table, rules, addedRules) {
this.data = this.rule.postprocess(this.data, this.reference, Parser.fail);
}
i... | Fix for strict mode
Line <I> causes the following error in strict mode: `In strict mode, function declarations cannot be nested inside a statement or block. They may only appear at the top level or directly inside a function body.`
This is simply fixed by assigning the function to a variable. |
diff --git a/salt/cli/caller.py b/salt/cli/caller.py
index <HASH>..<HASH> 100644
--- a/salt/cli/caller.py
+++ b/salt/cli/caller.py
@@ -169,6 +169,8 @@ class ZeroMQCaller(object):
ret['fun_args'] = self.opts['arg']
for returner in returners:
+ if not returner: # if we got an empty ret... | Catch case where 'return' not in opts, or other ways to get an empty returner (as it will just fail anyways) |
diff --git a/structr-ui/src/main/resources/structr/js/widgets.js b/structr-ui/src/main/resources/structr/js/widgets.js
index <HASH>..<HASH> 100644
--- a/structr-ui/src/main/resources/structr/js/widgets.js
+++ b/structr-ui/src/main/resources/structr/js/widgets.js
@@ -281,6 +281,7 @@ var _Widgets = {
repaintRemoteWidge... | Bugfix: Fixes search in remote widgets |
diff --git a/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb b/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb
+++ b/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb
@@ -1... | [EXT] Release <I> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.