diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/transform/get-deps.js b/lib/transform/get-deps.js
index <HASH>..<HASH> 100644
--- a/lib/transform/get-deps.js
+++ b/lib/transform/get-deps.js
@@ -26,6 +26,7 @@ module.exports = function(config, writer) {
if(args.length === 1 && args[0].type === 'Literal') {
var req = args[0].val... | resolving require when pointing to dir (dirname/index.js) |
diff --git a/tests/test_gui.py b/tests/test_gui.py
index <HASH>..<HASH> 100644
--- a/tests/test_gui.py
+++ b/tests/test_gui.py
@@ -30,3 +30,6 @@ class TestGui (unittest.TestCase):
window = LinkCheckerMain()
window.show()
QtTest.QTest.mouseClick(window.controlButton, QtCore.Qt.LeftButton)
+ ... | Close GUI test window and delete instances to be sure QT deallocation routines are run. |
diff --git a/kubernetes-model-generator/kubernetes-model-core/src/main/java/io/fabric8/kubernetes/api/model/HasMetadata.java b/kubernetes-model-generator/kubernetes-model-core/src/main/java/io/fabric8/kubernetes/api/model/HasMetadata.java
index <HASH>..<HASH> 100644
--- a/kubernetes-model-generator/kubernetes-model-cor... | fix: do not include getSingular/Plural in serialization |
diff --git a/test/psych/test_string.rb b/test/psych/test_string.rb
index <HASH>..<HASH> 100644
--- a/test/psych/test_string.rb
+++ b/test/psych/test_string.rb
@@ -68,7 +68,7 @@ module Psych
def test_literal_when_inner_and_final_line_break
str = "Lorem ipsum\ndolor\n"
yaml = Psych.dump str, line_width... | Fix assertion regexps
`|' is a meta character, so needs to be escaped. |
diff --git a/langserver/hover.go b/langserver/hover.go
index <HASH>..<HASH> 100644
--- a/langserver/hover.go
+++ b/langserver/hover.go
@@ -336,11 +336,9 @@ func (h *LangHandler) handleHoverGodef(ctx context.Context, conn jsonrpc2.JSONRP
return nil, fmt.Errorf("failed to find doc object for %s", target)
}
- conte... | hover: Do not return range for godef (#<I>)
The optional range returned should be the range of the token the user is
hovering over. Instead we are returning the range of the definition. It isn't
trivial to return the correct range, so rather lets return nothing at all
which is more correct. |
diff --git a/editor/models/file.js b/editor/models/file.js
index <HASH>..<HASH> 100644
--- a/editor/models/file.js
+++ b/editor/models/file.js
@@ -95,6 +95,7 @@ define([
'path': path
})
.then(function(file) {
+ that.del("buffer", { silent: true });
... | After stat call on File model remove buffer state |
diff --git a/langserver/langserver_test.go b/langserver/langserver_test.go
index <HASH>..<HASH> 100644
--- a/langserver/langserver_test.go
+++ b/langserver/langserver_test.go
@@ -1216,8 +1216,8 @@ func lspTests(t testing.TB, ctx context.Context, fs *AtomicFS, c *jsonrpc2.Conn,
// Run the tests.
for pos, want :=... | fix failing goroot test if GOROOT does not have a trailing slash |
diff --git a/src/Console/Commands/CoreInstallCommand.php b/src/Console/Commands/CoreInstallCommand.php
index <HASH>..<HASH> 100644
--- a/src/Console/Commands/CoreInstallCommand.php
+++ b/src/Console/Commands/CoreInstallCommand.php
@@ -31,7 +31,9 @@ class CoreInstallCommand extends Command
{
$this->alert($... | Publish assets only if explicitly required, otherwise skip for clean installation |
diff --git a/smbclient/_pool.py b/smbclient/_pool.py
index <HASH>..<HASH> 100644
--- a/smbclient/_pool.py
+++ b/smbclient/_pool.py
@@ -206,7 +206,7 @@ def delete_session(server, port=445, connection_cache=None):
:param port: The port used for the server.
:param connection_cache: Connection cache to be used wi... | Consistent connection_key naming (#<I>)
The naming of the connection_key isn't consistent between register_session and delete_session |
diff --git a/liquibase-integration-tests/src/test/java/liquibase/lockservice/LockServiceExecuteTest.java b/liquibase-integration-tests/src/test/java/liquibase/lockservice/LockServiceExecuteTest.java
index <HASH>..<HASH> 100644
--- a/liquibase-integration-tests/src/test/java/liquibase/lockservice/LockServiceExecuteTest.... | trying to get tests to pass on build server.
git-svn-id: <URL> |
diff --git a/mbuild/examples/test_examples.py b/mbuild/examples/test_examples.py
index <HASH>..<HASH> 100644
--- a/mbuild/examples/test_examples.py
+++ b/mbuild/examples/test_examples.py
@@ -47,8 +47,8 @@ def run_notebook(nb):
if cell.cell_type != 'code':
continue
kc.execute(cell.source)
... | Increase timeout for examples tests to <I> seconds |
diff --git a/js/modules/k6/http/http.go b/js/modules/k6/http/http.go
index <HASH>..<HASH> 100644
--- a/js/modules/k6/http/http.go
+++ b/js/modules/k6/http/http.go
@@ -23,7 +23,6 @@ package http
import (
"bytes"
"context"
- "encoding/json"
"fmt"
"io"
"net" | Accidentally merged in an unused import |
diff --git a/Response.php b/Response.php
index <HASH>..<HASH> 100644
--- a/Response.php
+++ b/Response.php
@@ -18,19 +18,17 @@ class Response extends EventEmitter implements WritableStreamInterface
{
$this->conn = $conn;
- $that = $this;
-
- $this->conn->on('end', function () use ($that) {... | Clean up annoying <I> $that = $this |
diff --git a/tunnel/default.go b/tunnel/default.go
index <HASH>..<HASH> 100644
--- a/tunnel/default.go
+++ b/tunnel/default.go
@@ -201,15 +201,15 @@ func (t *tun) announce(channel, session string, link *link) {
}
// manage monitors outbound links and attempts to reconnect to the failed ones
-func (t *tun) manage() ... | Fixed tunnel race conditions. (#<I>) |
diff --git a/stemcell/repo.go b/stemcell/repo.go
index <HASH>..<HASH> 100644
--- a/stemcell/repo.go
+++ b/stemcell/repo.go
@@ -22,10 +22,6 @@ func NewRepo(configService bmconfig.DeploymentConfigService) repo {
}
}
-// Save extracts the stemcell archive,
-// parses the stemcell manifest,
-// and stores the stemcell... | Remove lying comment
The repo doesn't extract and save the stemcell; it is provided the Stemcell
struct which is a representation of the already-extracted stemcell.
repo.Save only saves the record of the already-extracted stemcell in the local
filesystem. |
diff --git a/mtools/mplotqueries/mplotqueries.py b/mtools/mplotqueries/mplotqueries.py
index <HASH>..<HASH> 100755
--- a/mtools/mplotqueries/mplotqueries.py
+++ b/mtools/mplotqueries/mplotqueries.py
@@ -105,7 +105,7 @@ class MPlotQueriesTool(LogFileTool):
self.args['group'] = 'filename'
... | fix for mplotqueries to not fail if the last line is empty. |
diff --git a/kubetest/kops.go b/kubetest/kops.go
index <HASH>..<HASH> 100644
--- a/kubetest/kops.go
+++ b/kubetest/kops.go
@@ -470,7 +470,7 @@ func (k kops) Up() error {
}
// TODO: Once this gets support for N checks in a row, it can replace the above node readiness check
- if err := control.FinishRunning(exec.Co... | Update kubetest/kops.go |
diff --git a/core-impl/client/src/main/java/com/alipay/sofa/rpc/client/AbstractCluster.java b/core-impl/client/src/main/java/com/alipay/sofa/rpc/client/AbstractCluster.java
index <HASH>..<HASH> 100644
--- a/core-impl/client/src/main/java/com/alipay/sofa/rpc/client/AbstractCluster.java
+++ b/core-impl/client/src/main/ja... | refactor:extract method in AbstractCluster (#<I>)
* refactor:extract method |
diff --git a/htmresearch/frameworks/layers/l2_l4_inference.py b/htmresearch/frameworks/layers/l2_l4_inference.py
index <HASH>..<HASH> 100644
--- a/htmresearch/frameworks/layers/l2_l4_inference.py
+++ b/htmresearch/frameworks/layers/l2_l4_inference.py
@@ -131,6 +131,7 @@ class L4L2Experiment(object):
inp... | set default L4 params based on number of ON bits in external input |
diff --git a/dist/keo.js b/dist/keo.js
index <HASH>..<HASH> 100644
--- a/dist/keo.js
+++ b/dist/keo.js
@@ -148,7 +148,7 @@ function runTimeout(fun) {
return setTimeout(fun, 0);
}
try {
- // when when somebody has screwed with setTimeout but no I.E. maddness
+ // when when somebody has s... | docs: Fix simple typo, maddness -> madness
There is a small typo in dist/keo.js.
Should read `madness` rather than `maddness`. |
diff --git a/lib/OpenLayers/Control/LayerSwitcher.js b/lib/OpenLayers/Control/LayerSwitcher.js
index <HASH>..<HASH> 100644
--- a/lib/OpenLayers/Control/LayerSwitcher.js
+++ b/lib/OpenLayers/Control/LayerSwitcher.js
@@ -22,10 +22,10 @@ OpenLayers.Control.LayerSwitcher.prototype =
Object.extend( new OpenLayers.Control... | forgot that these declarations are still only statically initialized. even though the chance of somebody *modifying* one of these strings (rather than just replacing it) is rather low... we might as well do things the right way
git-svn-id: <URL> |
diff --git a/spec/unit/hooks_spec.rb b/spec/unit/hooks_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/hooks_spec.rb
+++ b/spec/unit/hooks_spec.rb
@@ -94,6 +94,7 @@ describe 'Flor unit' do
it 'may filter on point:/p:' do
+begin
ms0 = []
@unit.hook(point: 'execute') { |m| ms0 << Flor.dup(m); [... | Gather info about JRuby thread-safety in hook spec |
diff --git a/src/Laravel/Cashier/CashierServiceProvider.php b/src/Laravel/Cashier/CashierServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Laravel/Cashier/CashierServiceProvider.php
+++ b/src/Laravel/Cashier/CashierServiceProvider.php
@@ -11,7 +11,7 @@ class CashierServiceProvider extends ServiceProvider {
*... | Fix a few L5 bugs. |
diff --git a/src/Module.php b/src/Module.php
index <HASH>..<HASH> 100644
--- a/src/Module.php
+++ b/src/Module.php
@@ -19,7 +19,7 @@ use Cawa\Core\DI;
use Cawa\Events\DispatcherFactory;
use Cawa\Events\TimerEvent;
use Cawa\Log\Event;
-use Cawa\Orm\TraitSerializable;
+use Cawa\Orm\SerializableTrait;
use Cawa\Router\... | Rename TraitXxx to XxxTrait |
diff --git a/feature_stream.go b/feature_stream.go
index <HASH>..<HASH> 100644
--- a/feature_stream.go
+++ b/feature_stream.go
@@ -184,14 +184,14 @@ func (stream *Stream) Flush() error {
func (stream *Stream) ensure(minimal int) {
available := stream.Available()
if available < minimal {
- if stream.n > 1024 {
- ... | ensure buffer flushed to io.Writer |
diff --git a/src/select.js b/src/select.js
index <HASH>..<HASH> 100644
--- a/src/select.js
+++ b/src/select.js
@@ -381,6 +381,10 @@
// Remove item from multiple select
ctrl.removeChoice = function(index){
var removedChoice = ctrl.selected[index];
+
+ // if the choice is locked, can't remove it
+ ... | Fix for backspace allowing removal of locked selections |
diff --git a/test/test_datasets_utils.py b/test/test_datasets_utils.py
index <HASH>..<HASH> 100644
--- a/test/test_datasets_utils.py
+++ b/test/test_datasets_utils.py
@@ -1,3 +1,4 @@
+import os
import shutil
import tempfile
import torch
@@ -11,12 +12,14 @@ class Tester(unittest.TestCase):
temp_dir = tempfil... | Test - Added downloaded directory not empty check in test_datasets_utils (#<I>) |
diff --git a/src/main/java/net/bootsfaces/component/modal/ModalRenderer.java b/src/main/java/net/bootsfaces/component/modal/ModalRenderer.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/bootsfaces/component/modal/ModalRenderer.java
+++ b/src/main/java/net/bootsfaces/component/modal/ModalRenderer.java
@@ -77,7 ... | remove 'fade' effect from modal |
diff --git a/controller.go b/controller.go
index <HASH>..<HASH> 100644
--- a/controller.go
+++ b/controller.go
@@ -1,12 +1,19 @@
package action_bar
import (
- "github.com/qor/admin"
"net/http"
+
+ "github.com/qor/admin"
)
func SwitchMode(context *admin.Context) {
cookie := http.Cookie{Name: "qor-action-bar"... | Redirect back to referrer url |
diff --git a/Swat/exceptions/SwatException.php b/Swat/exceptions/SwatException.php
index <HASH>..<HASH> 100644
--- a/Swat/exceptions/SwatException.php
+++ b/Swat/exceptions/SwatException.php
@@ -173,6 +173,34 @@ class SwatException extends Exception
}
// }}}
+ // {{{ public function processAndContinue()
+
+ /**
+... | Convenience methods for SwatException.
svn commit r<I> |
diff --git a/src/port-manager.js b/src/port-manager.js
index <HASH>..<HASH> 100644
--- a/src/port-manager.js
+++ b/src/port-manager.js
@@ -92,6 +92,12 @@ fdom.port.Manager.prototype.onMessage = function(flow, message) {
}
this.createLink(origin, message.name,
new fdom.port[message.service](message.a... | add back in bind-port command. it's in use by the runtime. |
diff --git a/tests/data/ar/Customer.php b/tests/data/ar/Customer.php
index <HASH>..<HASH> 100644
--- a/tests/data/ar/Customer.php
+++ b/tests/data/ar/Customer.php
@@ -51,6 +51,11 @@ class Customer extends ActiveRecord
return $this->hasMany(OrderWithNullFK::className(), ['customer_id' => 'id'])->orderBy('create... | Added test/data/ar/Customer::getOrderWithItems in order to fix test compatibility |
diff --git a/test/server.test.js b/test/server.test.js
index <HASH>..<HASH> 100644
--- a/test/server.test.js
+++ b/test/server.test.js
@@ -60,18 +60,18 @@ async function checkOut (name, args) {
let result = await check(name, args, { }, 'kill')
let out = result[0]
let exit = result[1]
+ expect(out).toMatchSnap... | Improve server test debuggability on Travis CI |
diff --git a/lib/janky/build.rb b/lib/janky/build.rb
index <HASH>..<HASH> 100644
--- a/lib/janky/build.rb
+++ b/lib/janky/build.rb
@@ -243,6 +243,10 @@ module Janky
self.class.base_url + "#{repo_name}/#{branch_name}"
end
+ def room_id
+ repository.room_id
+ end
+
def repo_id
reposit... | Fix Chat Notifications
Previously `room_id` was being passed to `speak` as undefined and the notification send was failing. |
diff --git a/lib/cronlib.php b/lib/cronlib.php
index <HASH>..<HASH> 100644
--- a/lib/cronlib.php
+++ b/lib/cronlib.php
@@ -208,7 +208,7 @@ function cron_run() {
if ($DB->count_records('user_preferences', array('name'=>'create_password', 'value'=>'1'))) {
mtrace('Creating passwords for new users...');
... | MDL-<I> use user's lang when sending new emails |
diff --git a/test/helpers/cons.go b/test/helpers/cons.go
index <HASH>..<HASH> 100644
--- a/test/helpers/cons.go
+++ b/test/helpers/cons.go
@@ -318,7 +318,7 @@ var ciliumCLICommands = map[string]string{
"cilium status --all-controllers": "status.txt",
"cilium kvstore get cilium --recursive": "kvstore_get.txt",... | test: Use hubble's jsonpb output in artifacts
hubble observe now supports [1] reading flows from stdin if they are in
jsonpb format. We should therefore emit jsonpb artifact files for tests,
to be able to feed those files back into hubble observe. That will allow
us to use hubble observe's filters and different output... |
diff --git a/test/core/cache.js b/test/core/cache.js
index <HASH>..<HASH> 100644
--- a/test/core/cache.js
+++ b/test/core/cache.js
@@ -118,7 +118,7 @@ describe('Core: Cache', function(){
should.equal(null, load_resp);
done();
});
- }, 1001);
+ }, 2001);
});
... | ensure that loading from api.cache will re-set the key to expire |
diff --git a/flink-mesos/src/main/java/org/apache/flink/mesos/runtime/clusterframework/MesosResourceManager.java b/flink-mesos/src/main/java/org/apache/flink/mesos/runtime/clusterframework/MesosResourceManager.java
index <HASH>..<HASH> 100755
--- a/flink-mesos/src/main/java/org/apache/flink/mesos/runtime/clusterframewo... | [FLINK-<I>] Remove unfenced execution of Disconnected message from MesosResourceManager
This closes #<I>. |
diff --git a/bcbio/pipeline/merge.py b/bcbio/pipeline/merge.py
index <HASH>..<HASH> 100644
--- a/bcbio/pipeline/merge.py
+++ b/bcbio/pipeline/merge.py
@@ -64,7 +64,8 @@ def merge_bam_files(bam_files, work_dir, config):
out_file = os.path.join(work_dir, os.path.basename(sorted(bam_files)[0]))
picard = broad.ru... | Avoid merging BAM files when only one file present during no alignment processing |
diff --git a/cassiopeia/datastores/kernel/common.py b/cassiopeia/datastores/kernel/common.py
index <HASH>..<HASH> 100644
--- a/cassiopeia/datastores/kernel/common.py
+++ b/cassiopeia/datastores/kernel/common.py
@@ -38,7 +38,15 @@ class KernelSource(DataSource):
url = f"{self._server_url}:{self._port}/{endpoint... | Ensure Kernel pipeline is compatible with all HTTPClients |
diff --git a/lib/detector.js b/lib/detector.js
index <HASH>..<HASH> 100644
--- a/lib/detector.js
+++ b/lib/detector.js
@@ -136,14 +136,27 @@ Detector.prototype._detectMagicNumbers = function(syntaxTree, contents) {
return;
}
+ var line = lines[node.loc.start.line - 1];
+ var startColumn = node.loc.... | Fix columns when surrounded by parens |
diff --git a/tests/unit/src/Engine/Solr/SolrMapperTest.php b/tests/unit/src/Engine/Solr/SolrMapperTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/src/Engine/Solr/SolrMapperTest.php
+++ b/tests/unit/src/Engine/Solr/SolrMapperTest.php
@@ -67,4 +67,30 @@ class SolrMapperTest extends PHPUnit_Framework_TestCase
... | <I> - Added methods to test find method in SolrMapper. |
diff --git a/lib/flipper/cloud/dsl.rb b/lib/flipper/cloud/dsl.rb
index <HASH>..<HASH> 100644
--- a/lib/flipper/cloud/dsl.rb
+++ b/lib/flipper/cloud/dsl.rb
@@ -17,6 +17,11 @@ module Flipper
def sync_secret
@cloud_configuration.sync_secret
end
+
+ def inspect
+ inspect_id = ::Kernel::fo... | Make dsl inspect more accurately
Before it would show inspect for the flipper instance |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ required = ['args']
setup(
name='clint',
version=clint.__version__,
- description='Python Command-line Application Tools',
+ description='Python Command Line Interface Tools',
long_descript... | Update setup.py
clint = "Command Line Interface Tools" tells me the README |
diff --git a/modules/casper.js b/modules/casper.js
index <HASH>..<HASH> 100644
--- a/modules/casper.js
+++ b/modules/casper.js
@@ -742,9 +742,14 @@ Casper.prototype.getPageContent = function getPageContent() {
*/
Casper.prototype.getCurrentUrl = function getCurrentUrl() {
"use strict";
- return decodeURIComp... | fixed edge case when current url couldn't be decoded |
diff --git a/lib/poleica/version.rb b/lib/poleica/version.rb
index <HASH>..<HASH> 100644
--- a/lib/poleica/version.rb
+++ b/lib/poleica/version.rb
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
# Poleica namespace
module Poleica
- VERSION = '0.10.0'
+ VERSION = '0.10.1.fix1'
end # module Poleica | Bump to <I>.fix1 |
diff --git a/service/http.proxy/src/main/java/org/kaazing/gateway/service/http/proxy/HttpProxyService.java b/service/http.proxy/src/main/java/org/kaazing/gateway/service/http/proxy/HttpProxyService.java
index <HASH>..<HASH> 100644
--- a/service/http.proxy/src/main/java/org/kaazing/gateway/service/http/proxy/HttpProxySe... | Added back the EarlyAccessFeature for ProxyService |
diff --git a/js/acx.js b/js/acx.js
index <HASH>..<HASH> 100644
--- a/js/acx.js
+++ b/js/acx.js
@@ -163,12 +163,12 @@ module.exports = class acx extends Exchange {
request['limit'] = limit; // default = 300
}
const orderbook = await this.publicGetDepth (this.extend (request, params));
- ... | acx safeTimestamp |
diff --git a/springfox-swagger2/src/main/java/springfox/documentation/swagger2/web/Swagger2ControllerWebFlux.java b/springfox-swagger2/src/main/java/springfox/documentation/swagger2/web/Swagger2ControllerWebFlux.java
index <HASH>..<HASH> 100644
--- a/springfox-swagger2/src/main/java/springfox/documentation/swagger2/web... | Set the basePath using the request context path if present
This allows the X-Forwarded-Prefix header to work correctly |
diff --git a/shillelagh/src/main/java/shillelagh/internal/ShillelaghInjector.java b/shillelagh/src/main/java/shillelagh/internal/ShillelaghInjector.java
index <HASH>..<HASH> 100644
--- a/shillelagh/src/main/java/shillelagh/internal/ShillelaghInjector.java
+++ b/shillelagh/src/main/java/shillelagh/internal/ShillelaghInj... | made ShillelaghInjector final |
diff --git a/es7/index.js b/es7/index.js
index <HASH>..<HASH> 100644
--- a/es7/index.js
+++ b/es7/index.js
@@ -16,6 +16,7 @@ require('../modules/es7.object.lookup-getter');
require('../modules/es7.object.lookup-setter');
require('../modules/es7.map.to-json');
require('../modules/es7.set.to-json');
+require('../modul... | add `global` to one missed entry point |
diff --git a/src/main/java/stormpot/qpool/QAllocThread.java b/src/main/java/stormpot/qpool/QAllocThread.java
index <HASH>..<HASH> 100644
--- a/src/main/java/stormpot/qpool/QAllocThread.java
+++ b/src/main/java/stormpot/qpool/QAllocThread.java
@@ -73,7 +73,10 @@ class QAllocThread<T extends Poolable> extends Thread {
... | deal with the TODOs from the mutation testing. |
diff --git a/dallinger/experiment_server/gunicorn.py b/dallinger/experiment_server/gunicorn.py
index <HASH>..<HASH> 100644
--- a/dallinger/experiment_server/gunicorn.py
+++ b/dallinger/experiment_server/gunicorn.py
@@ -60,7 +60,7 @@ class StandaloneServer(Application):
config = get_config()
workers = ... | Reduce default gunicorn worker count. |
diff --git a/test/spec/ol/interaction/modifyinteraction.test.js b/test/spec/ol/interaction/modifyinteraction.test.js
index <HASH>..<HASH> 100644
--- a/test/spec/ol/interaction/modifyinteraction.test.js
+++ b/test/spec/ol/interaction/modifyinteraction.test.js
@@ -243,6 +243,7 @@ goog.require('ol.Feature');
goog.require... | interaction/modify: Add missing goog.require() to test |
diff --git a/source/Core/Edition/EditionSelector.php b/source/Core/Edition/EditionSelector.php
index <HASH>..<HASH> 100644
--- a/source/Core/Edition/EditionSelector.php
+++ b/source/Core/Edition/EditionSelector.php
@@ -62,10 +62,10 @@ class EditionSelector
$edition = static::COMMUNITY;
- if (OXID_VE... | Check if constants is defined
If constants was not yet defined, professional edition will be enabled. |
diff --git a/iamport/client.py b/iamport/client.py
index <HASH>..<HASH> 100644
--- a/iamport/client.py
+++ b/iamport/client.py
@@ -134,6 +134,10 @@ class Iamport(object):
return self._post(url, kwargs)
+ def pay_schedule_get(self, merchant_id=''):
+ url = '{}subscribe/payments/schedule{}'.format(... | Implement pay_schedule_get function for checking scheduled payments |
diff --git a/charmhelpers/contrib/charmsupport/nrpe.py b/charmhelpers/contrib/charmsupport/nrpe.py
index <HASH>..<HASH> 100644
--- a/charmhelpers/contrib/charmsupport/nrpe.py
+++ b/charmhelpers/contrib/charmsupport/nrpe.py
@@ -210,7 +210,7 @@ class NRPE(object):
super(NRPE, self).__init__()
self.confi... | [bradm] Nicer way of expressing the nagios servicegroup fix, thanks to gnuoy |
diff --git a/app/computed/debounce.js b/app/computed/debounce.js
index <HASH>..<HASH> 100644
--- a/app/computed/debounce.js
+++ b/app/computed/debounce.js
@@ -1,8 +1,6 @@
-import { run } from '@ember/runloop';
+import { debounce } from '@ember/runloop';
import { computed } from '@ember/object';
-const { debounce } =... | Fix deprecated use of `run.debounce` (#<I>) |
diff --git a/src/spec.js b/src/spec.js
index <HASH>..<HASH> 100644
--- a/src/spec.js
+++ b/src/spec.js
@@ -387,6 +387,19 @@ test("createInstance allows setting default props", async () => {
expect(onResolve).toHaveBeenCalledWith("done")
})
+test("custom instances also have helper components", async () => {
+ con... | Add test for compound components on custom instance. |
diff --git a/ue4cli/UnrealManagerBase.py b/ue4cli/UnrealManagerBase.py
index <HASH>..<HASH> 100644
--- a/ue4cli/UnrealManagerBase.py
+++ b/ue4cli/UnrealManagerBase.py
@@ -36,7 +36,9 @@ class UnrealManagerBase(object):
"""
# Set the new root directory
- ConfigurationManager.setConfigKey('rootDirOverride', o... | Print specified path in setroot to make errors easier to spot |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ deps = ['fxos-appgen>=0.2.10',
'marionette_client>=0.7.1.1',
'marionette_extension >= 0.4',
'mozdevice >= 0.33',
- 'mozlog >= 1.8',
+ 'mozlog == 1.8',
'moznetwork ... | Freeze mozlog version because of proposed API changes. |
diff --git a/client/lib/wpcom-undocumented/lib/undocumented.js b/client/lib/wpcom-undocumented/lib/undocumented.js
index <HASH>..<HASH> 100644
--- a/client/lib/wpcom-undocumented/lib/undocumented.js
+++ b/client/lib/wpcom-undocumented/lib/undocumented.js
@@ -902,23 +902,6 @@ Undocumented.prototype.getPaymentMethods = f... | WPCOM Undocumented: Remove metaKeyring (#<I>) |
diff --git a/src/client/voice/receiver/VoiceReceiver.js b/src/client/voice/receiver/VoiceReceiver.js
index <HASH>..<HASH> 100644
--- a/src/client/voice/receiver/VoiceReceiver.js
+++ b/src/client/voice/receiver/VoiceReceiver.js
@@ -161,6 +161,25 @@ class VoiceReceiver extends EventEmitter {
return;
}
da... | backporting the fix for RTP header extensions (#<I>) |
diff --git a/lib/Doctrine/DBAL/Schema/ForeignKeyConstraint.php b/lib/Doctrine/DBAL/Schema/ForeignKeyConstraint.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/DBAL/Schema/ForeignKeyConstraint.php
+++ b/lib/Doctrine/DBAL/Schema/ForeignKeyConstraint.php
@@ -128,6 +128,16 @@ class ForeignKeyConstraint extends AbstractA... | Added getter for ForeignKeyConstraint |
diff --git a/application/configs/deploy.rb b/application/configs/deploy.rb
index <HASH>..<HASH> 100644
--- a/application/configs/deploy.rb
+++ b/application/configs/deploy.rb
@@ -7,7 +7,10 @@ set :linked_dirs, %w{
}
set :keep_releases, 3
+
load "application/configs/deploy.rb"
Dir.glob("garp/deploy/tasks/*.cap")... | Added environment to temp path, to prevent permission problems between environments |
diff --git a/src/sdk/pynni/nni/compression/torch/builtin_quantizers.py b/src/sdk/pynni/nni/compression/torch/builtin_quantizers.py
index <HASH>..<HASH> 100644
--- a/src/sdk/pynni/nni/compression/torch/builtin_quantizers.py
+++ b/src/sdk/pynni/nni/compression/torch/builtin_quantizers.py
@@ -5,7 +5,7 @@ import logging
i... | export for default (#<I>) |
diff --git a/src/Codeception/Module/PhpBrowser.php b/src/Codeception/Module/PhpBrowser.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Module/PhpBrowser.php
+++ b/src/Codeception/Module/PhpBrowser.php
@@ -134,9 +134,9 @@ class PhpBrowser extends InnerBrowser implements Remote, MultiSession
*
* @param... | Parameter changed to $name
deleteHeader was supposed to have $name instead of $header |
diff --git a/lib/classes/persistent.php b/lib/classes/persistent.php
index <HASH>..<HASH> 100644
--- a/lib/classes/persistent.php
+++ b/lib/classes/persistent.php
@@ -274,12 +274,13 @@ abstract class persistent {
final public static function properties_definition() {
global $CFG;
- static $def = ... | MDL-<I> core: make static cache compatible with PHP<I> |
diff --git a/src/Generator/ProductToImageSitemapArrayGenerator.php b/src/Generator/ProductToImageSitemapArrayGenerator.php
index <HASH>..<HASH> 100644
--- a/src/Generator/ProductToImageSitemapArrayGenerator.php
+++ b/src/Generator/ProductToImageSitemapArrayGenerator.php
@@ -36,7 +36,7 @@ final class ProductToImageSitem... | Add image when path is set, not only when SplInfo is present |
diff --git a/src/Behat/Mink/Driver/GoutteDriver.php b/src/Behat/Mink/Driver/GoutteDriver.php
index <HASH>..<HASH> 100644
--- a/src/Behat/Mink/Driver/GoutteDriver.php
+++ b/src/Behat/Mink/Driver/GoutteDriver.php
@@ -44,6 +44,10 @@ class GoutteDriver extends BrowserKitDriver
}
/**
+ * Gets the Goutte clie... | Added the reason to overwrite getClient |
diff --git a/apps/editing-toolkit/editing-toolkit-plugin/event-countdown-block/blocks/src/edit.js b/apps/editing-toolkit/editing-toolkit-plugin/event-countdown-block/blocks/src/edit.js
index <HASH>..<HASH> 100644
--- a/apps/editing-toolkit/editing-toolkit-plugin/event-countdown-block/blocks/src/edit.js
+++ b/apps/editi... | Event Countdown Block: Update date picker button to use secondary styling (#<I>) |
diff --git a/package/yapsy/__init__.py b/package/yapsy/__init__.py
index <HASH>..<HASH> 100644
--- a/package/yapsy/__init__.py
+++ b/package/yapsy/__init__.py
@@ -36,7 +36,18 @@ should get you a fully working plugin management system::
for pluginInfo in simplePluginManager.getAllPlugins():
simplePluginManage... | Add some more code samples and explicit notes about how to communicate with a plugin once it is loaded |
diff --git a/test/specs/dom_components/model/Symbols.js b/test/specs/dom_components/model/Symbols.js
index <HASH>..<HASH> 100644
--- a/test/specs/dom_components/model/Symbols.js
+++ b/test/specs/dom_components/model/Symbols.js
@@ -43,7 +43,14 @@ describe('Symbols', () => {
wrapper.components().reset();
});
- ... | Add test for the clone against symbols |
diff --git a/mautrix/util/message_send_checkpoint.py b/mautrix/util/message_send_checkpoint.py
index <HASH>..<HASH> 100644
--- a/mautrix/util/message_send_checkpoint.py
+++ b/mautrix/util/message_send_checkpoint.py
@@ -70,6 +70,7 @@ CHECKPOINT_TYPES = {
EventType.ROOM_REDACTION,
EventType.ROOM_MESSAGE,
E... | Add m.room.member to checkpoint types |
diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -2,11 +2,17 @@
// Generated on Thu Aug 11 2016 22:09:45 GMT+0200 (CEST)
module.exports = function(config) {
- config.set({
+ var configuration = {
// base path that will be used to resolve all ... | Added custom browser for travis |
diff --git a/src/main/java/com/ibm/stocator/fs/cos/COSAPIClient.java b/src/main/java/com/ibm/stocator/fs/cos/COSAPIClient.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/ibm/stocator/fs/cos/COSAPIClient.java
+++ b/src/main/java/com/ibm/stocator/fs/cos/COSAPIClient.java
@@ -1699,16 +1699,16 @@ public class COSA... | fix progressEvent received to align with aws s3 behavior |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -96,13 +96,16 @@ Texture.prototype.paint = function(geom) {
var self = this;
geom.faces.forEach(function(face, i) {
var c = face.vertexColors[0];
- var index = self.materialIndex[Math.floor(c.b*255 + c.g*255*255 ... | Fix for paint and force publish, whoops :) |
diff --git a/lib/rails_admin/engine.rb b/lib/rails_admin/engine.rb
index <HASH>..<HASH> 100644
--- a/lib/rails_admin/engine.rb
+++ b/lib/rails_admin/engine.rb
@@ -11,7 +11,7 @@ require 'rails_admin'
module RailsAdmin
class Engine < Rails::Engine
isolate_namespace RailsAdmin
- initializer "RailsAdmin precomp... | Trigger asset precompile hook even if initialize_on_precompile is set to false |
diff --git a/lib/contextual_link_helpers.rb b/lib/contextual_link_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/contextual_link_helpers.rb
+++ b/lib/contextual_link_helpers.rb
@@ -27,7 +27,7 @@ module ContextualLinkHelpers
# Link generation
case action
when 'new'
- return icon_link_to(action, sen... | Don't use AJAX for context_action 'new'. |
diff --git a/okhttp/src/main/java/com/squareup/okhttp/Headers.java b/okhttp/src/main/java/com/squareup/okhttp/Headers.java
index <HASH>..<HASH> 100644
--- a/okhttp/src/main/java/com/squareup/okhttp/Headers.java
+++ b/okhttp/src/main/java/com/squareup/okhttp/Headers.java
@@ -19,7 +19,6 @@ package com.squareup.okhttp;
... | Skip allocating a wrapper list for copying. |
diff --git a/spec/job/adapters/torque_spec.rb b/spec/job/adapters/torque_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/job/adapters/torque_spec.rb
+++ b/spec/job/adapters/torque_spec.rb
@@ -193,7 +193,7 @@ describe OodCore::Job::Adapters::Torque do
end
context "with :start_time" do
- before { adapter.... | dynamically set timestamp
Fixes #6 |
diff --git a/lib/handlebars/vm.js b/lib/handlebars/vm.js
index <HASH>..<HASH> 100644
--- a/lib/handlebars/vm.js
+++ b/lib/handlebars/vm.js
@@ -615,7 +615,9 @@ Handlebars.VM = {
return new Handlebars.JavaScriptCompiler().compile(environment);
},
invokePartial: function(partial, name, context, helpers, partial... | If the partial is not found, an exception should be thrown |
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/ba/obl/ObligationSet.java b/findbugs/src/java/edu/umd/cs/findbugs/ba/obl/ObligationSet.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/ba/obl/ObligationSet.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/ba/obl/ObligationSet.java
@@ -53,8 ... | Don't throw exception indicating that a nonexistent obligation is
being removed. This can arise, possibly because of buggy code
that tries to close a resource that has not been opened.
git-svn-id: <URL> |
diff --git a/Locale.php b/Locale.php
index <HASH>..<HASH> 100644
--- a/Locale.php
+++ b/Locale.php
@@ -27,22 +27,16 @@ class Locale extends \Locale
{
/**
* Caches the countries in different locales.
- *
- * @var array
*/
protected static $countries = array();
/**
* Caches the... | [DI] minor docblock fixes |
diff --git a/fedmsg/consumers/ircbot.py b/fedmsg/consumers/ircbot.py
index <HASH>..<HASH> 100644
--- a/fedmsg/consumers/ircbot.py
+++ b/fedmsg/consumers/ircbot.py
@@ -172,6 +172,9 @@ class IRCBotConsumer(FedmsgConsumer):
super(IRCBotConsumer, self).__init__(hub)
+ if not getattr(self, '_initialized'... | Fix regression in ircbot. |
diff --git a/src/Modus/Template/Helper/Messages.php b/src/Modus/Template/Helper/Messages.php
index <HASH>..<HASH> 100644
--- a/src/Modus/Template/Helper/Messages.php
+++ b/src/Modus/Template/Helper/Messages.php
@@ -22,12 +22,16 @@ class Messages extends AbstractHelper {
protected function getErrors() {
... | Checking that a message exists before returning the HTML. |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,6 +1,5 @@
require 'simplecov'
require 'coveralls'
-require 'squib'
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
@... | Fixing overzealous coverage issue |
diff --git a/src/org/parosproxy/paros/network/ConnectionParam.java b/src/org/parosproxy/paros/network/ConnectionParam.java
index <HASH>..<HASH> 100644
--- a/src/org/parosproxy/paros/network/ConnectionParam.java
+++ b/src/org/parosproxy/paros/network/ConnectionParam.java
@@ -360,7 +360,7 @@ public class ConnectionParam ... | Changed ConnectionParam to keep trying loading other authentication credentials even if one is wrong. |
diff --git a/lib/kamerling.rb b/lib/kamerling.rb
index <HASH>..<HASH> 100644
--- a/lib/kamerling.rb
+++ b/lib/kamerling.rb
@@ -1,3 +1,5 @@
+require 'logger'
+
require_relative 'kamerling/core_extensions'
include Kamerling::CoreExtensions::Main
diff --git a/lib/kamerling/server.rb b/lib/kamerling/server.rb
index <HA... | Server: promote dependencies to global file |
diff --git a/languages/de/tl_module.php b/languages/de/tl_module.php
index <HASH>..<HASH> 100644
--- a/languages/de/tl_module.php
+++ b/languages/de/tl_module.php
@@ -34,7 +34,7 @@ $GLOBALS['TL_LANG']['tl_module']['mobile_menu_disableNavigation'] = [
];
$GLOBALS['TL_LANG']['tl_module']['mobile_menu_parentTogglers'] ... | Fixed a typo in the German labels |
diff --git a/requesting.go b/requesting.go
index <HASH>..<HASH> 100644
--- a/requesting.go
+++ b/requesting.go
@@ -132,6 +132,11 @@ func (p *Peer) applyNextRequestState() bool {
}
}
for req := range next.Requests {
+ // This could happen if the peer chokes us between the next state being generated, and us
+ //... | Filter next requests application for peer state changes |
diff --git a/src/test/java/io/humble/video/SourceFormatTest.java b/src/test/java/io/humble/video/SourceFormatTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/io/humble/video/SourceFormatTest.java
+++ b/src/test/java/io/humble/video/SourceFormatTest.java
@@ -17,7 +17,7 @@ public class SourceFormatTest {
as... | fix test and make more robust to future ffmpeg changes. |
diff --git a/CKEditorAsset.php b/CKEditorAsset.php
index <HASH>..<HASH> 100644
--- a/CKEditorAsset.php
+++ b/CKEditorAsset.php
@@ -9,7 +9,7 @@ use yii\web\View;
* @author MrAnger
*/
class CKEditorAsset extends AssetBundle {
- public $sourcePath = "@bower/ckeditor#full";
+ public $sourcePath = "@vendor/ckeditor";
... | Change require ckeditor package version |
diff --git a/vyper/old_codegen/context.py b/vyper/old_codegen/context.py
index <HASH>..<HASH> 100644
--- a/vyper/old_codegen/context.py
+++ b/vyper/old_codegen/context.py
@@ -244,12 +244,11 @@ class Context:
# more sanity check, that the types match
# _check(all(l.typ == r.typ for (l, r) in zip(args_l... | fix calculation of kwargs needed |
diff --git a/src/View.php b/src/View.php
index <HASH>..<HASH> 100644
--- a/src/View.php
+++ b/src/View.php
@@ -1002,6 +1002,8 @@ class View implements jsExpressionable
/** @var array Cached stickyGet arguments */
public $_stickyArgsCached = null;
+ public $_triggerBy = null;
+
/**
* Build an U... | record which view had url() called on it (for debugging) |
diff --git a/python/ppo/trainer.py b/python/ppo/trainer.py
index <HASH>..<HASH> 100755
--- a/python/ppo/trainer.py
+++ b/python/ppo/trainer.py
@@ -71,7 +71,7 @@ class Trainer(object):
idx = info.agents.index(agent)
if not info.local_done[idx]:
if self.use_observati... | Fix for multi-agent with observations |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -170,6 +170,22 @@ exports.static = function(directory, options) {
console.warn(`Snockets skipping ${filePath}:\n ${err}`);
}
+ // Snockets (watcher)
+ if (watcher) {
+ ... | Watch all files in the snockets chain |
diff --git a/mautrix/util/formatter/parser.py b/mautrix/util/formatter/parser.py
index <HASH>..<HASH> 100644
--- a/mautrix/util/formatter/parser.py
+++ b/mautrix/util/formatter/parser.py
@@ -166,6 +166,9 @@ class MatrixParser(Generic[T]):
async def color_to_fstring(self, node: HTMLNode, ctx: RecursionContext, colo... | Add support for parsing spoilers |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -74,7 +74,7 @@ try:
from setuptools.command.develop import develop as _develop
class develop(_develop):
def run(self, *args):
- #self.execute(_build_sim_unicorn, (), msg='Building sim_unicorn')
+ ... | I accidentally commented out the build line for sim_unicorn and then committed it. undo that. |
diff --git a/lib/flint.js b/lib/flint.js
index <HASH>..<HASH> 100644
--- a/lib/flint.js
+++ b/lib/flint.js
@@ -507,7 +507,7 @@ Flint.prototype.auditBots = function() {
// exit rooms where bot is only member
if(this.auditCounter === (this.auditDelay - 1)) {
_.forEach(this.bots, bot => {
- if(bot.membersh... | Tweaked audit of empty rooms to ignore team rooms |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.