hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
d5c9db002938e1d5768337d50aa775c014b2c384 | diff --git a/explauto/evaluation/evaluation.py b/explauto/evaluation/evaluation.py
index <HASH>..<HASH> 100644
--- a/explauto/evaluation/evaluation.py
+++ b/explauto/evaluation/evaluation.py
@@ -1,40 +1,50 @@
from numpy import array, hstack
+from numpy import linalg
from ..third_party.models.models.testbed import T... | Adapt evaluation to new testcases | flowersteam_explauto | train |
6f8cf3d75a2d21fe01cafae7cbd5e762ba381b3d | diff --git a/elkrem/serdes.go b/elkrem/serdes.go
index <HASH>..<HASH> 100644
--- a/elkrem/serdes.go
+++ b/elkrem/serdes.go
@@ -14,68 +14,6 @@ with 41 bytes for each stored hash, up to a maximum of 64. Receivers are
prepended with the total number of hashes, so the total max size is 2625 bytes.
*/
-// ToBytes turns... | remove node serdes, pretty sure it's redundant | lightningnetwork_lnd | train |
993d0bea807ecdc0da413e1add8697f216ed48a6 | diff --git a/examples/restful-user-service.go b/examples/restful-user-service.go
index <HASH>..<HASH> 100644
--- a/examples/restful-user-service.go
+++ b/examples/restful-user-service.go
@@ -29,14 +29,14 @@ func NewUserService() *restful.WebService {
ws.Route(ws.POST("").To(updateUser).
// docs
Doc("update a u... | swagger does not pickup model (yet) | emicklei_go-restful | train |
980f93db1b62f4d4c1a47ed1157cda9afbacc468 | diff --git a/molgenis-data-rest/src/main/java/org/molgenis/data/rest/RestController.java b/molgenis-data-rest/src/main/java/org/molgenis/data/rest/RestController.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-rest/src/main/java/org/molgenis/data/rest/RestController.java
+++ b/molgenis-data-rest/src/main/java/org/... | Fix #<I> REST login not working for non-admin users | molgenis_molgenis | train |
60f9ab42aa9ca4a8aa148eb63fd847abbfa5b90a | diff --git a/HyperMerge.js b/HyperMerge.js
index <HASH>..<HASH> 100644
--- a/HyperMerge.js
+++ b/HyperMerge.js
@@ -3,6 +3,9 @@ const Automerge = require('automerge')
const MultiCore = require('./MultiCore')
const swarm = require('hypercore-archiver/swarm')
+// The first block is used for metadata:
+const START_BLOC... | Fix dependency fetching getting stuck in loop | automerge_hypermerge | train |
5dd14393a21d643a0a4bc887c54fc6301b3dcbca | diff --git a/src/elements/base.js b/src/elements/base.js
index <HASH>..<HASH> 100644
--- a/src/elements/base.js
+++ b/src/elements/base.js
@@ -31,7 +31,7 @@ const ArrayElementBase = Chart.Element.extend({
return;
}
ctx.save();
- ctx.strokeStle = vm.itemBorderColor;
+ ctx.strokeStyle = vm.itemBord... | Fixing typo, which broke the ability to change itemBorderColor on boxplots | datavisyn_chartjs-chart-box-and-violin-plot | train |
2ba6e4040caeaf245fc2dabf8f9982316aaf7bdf | diff --git a/core/server/master/src/main/java/alluxio/master/file/meta/InodeTree.java b/core/server/master/src/main/java/alluxio/master/file/meta/InodeTree.java
index <HASH>..<HASH> 100644
--- a/core/server/master/src/main/java/alluxio/master/file/meta/InodeTree.java
+++ b/core/server/master/src/main/java/alluxio/maste... | Set inode mode if journal entry has mode set | Alluxio_alluxio | train |
4da15477f55434135e3cc554bc977adeb21f8bc9 | diff --git a/lib/kaminari/models/active_record_relation_methods.rb b/lib/kaminari/models/active_record_relation_methods.rb
index <HASH>..<HASH> 100644
--- a/lib/kaminari/models/active_record_relation_methods.rb
+++ b/lib/kaminari/models/active_record_relation_methods.rb
@@ -12,6 +12,7 @@ module Kaminari
def to... | Doing count on RDBMS can be painfully slow for larger datasets. Memoizing takes care of the problem.
Memoizing doesn't seem to have a negative effect, since we should only care about how many records there were in the DB when we did the initial count query. | kaminari_kaminari | train |
4ad1e1e42e3671c3ce03ce48c8eb6379eebee73e | diff --git a/lib/connection_strategy.py b/lib/connection_strategy.py
index <HASH>..<HASH> 100644
--- a/lib/connection_strategy.py
+++ b/lib/connection_strategy.py
@@ -17,7 +17,7 @@ class ConnectionStrategy(object):
designed to handle failover in a clustered environment.
"""
- def __init__(self, connection, add... | renamed reconnect_callback to reconnect_cb | agoragames_haigha | train |
ac4890acba29adea4956915ae55a9affd8473245 | diff --git a/server/mqtt.go b/server/mqtt.go
index <HASH>..<HASH> 100644
--- a/server/mqtt.go
+++ b/server/mqtt.go
@@ -1445,7 +1445,7 @@ func (s *Server) mqttHandleWill(c *client) {
//////////////////////////////////////////////////////////////////////////////
func (c *client) mqttParsePub(r *mqttReader, pl int, pp... | Fixed flapper
Tests dealing with MQTT "will" needed to wait for the server to
process the MQTT client close of the connection. Only then we
have the guarantee that the server produced the "will" message. | nats-io_gnatsd | train |
186bda7aa60ec90321754707432b39fb3711b1e2 | diff --git a/src/each.js b/src/each.js
index <HASH>..<HASH> 100644
--- a/src/each.js
+++ b/src/each.js
@@ -1,3 +1,5 @@
+import tryFn from './tryFn';
+
export default function each(collection, iteratee) {
- return Promise.all(collection.map(iteratee));
-};
\ No newline at end of file
+ return Promise.all(collecti... | Add iteratee throw support for async.each. | jgornick_asyncp | train |
cceea10e91031eb2e479f836b9c074a3d1bbca89 | diff --git a/src/table/body.js b/src/table/body.js
index <HASH>..<HASH> 100644
--- a/src/table/body.js
+++ b/src/table/body.js
@@ -46,6 +46,7 @@ class BodyRow extends React.Component {
const previousProps = this.props;
return !(
+ isEqual(previousProps.columns, nextProps.columns) &&
isEqual(prev... | table - If table columns have changed, force render
Without this change the drag and drop example won't work correctly as it
doesn't manipulate row data but just column ordering. | reactabular_reactabular | train |
227103fca55a54b6aa3c64defda18aa2d894a7e3 | diff --git a/src/Model/Activities/HasActivitiesInterface.php b/src/Model/Activities/HasActivitiesInterface.php
index <HASH>..<HASH> 100644
--- a/src/Model/Activities/HasActivitiesInterface.php
+++ b/src/Model/Activities/HasActivitiesInterface.php
@@ -2,6 +2,7 @@
namespace Platformsh\Client\Model\Activities;
+use D... | Allow specifying the start date with a DateTime object when listing activities (#<I>) | platformsh_platformsh-client-php | train |
8ae1f64263ffe25c4acb3f5607e88c7256fbcb55 | diff --git a/src/extensibility/node/ExtensionManagerDomain.js b/src/extensibility/node/ExtensionManagerDomain.js
index <HASH>..<HASH> 100644
--- a/src/extensibility/node/ExtensionManagerDomain.js
+++ b/src/extensibility/node/ExtensionManagerDomain.js
@@ -38,15 +38,7 @@ var unzip = require("unzip"),
var Errors =... | eliminate errors that are unused in the ExtensionManagerDomain | adobe_brackets | train |
3a38b3faba6e72b6a7a803d63f04d95e000a6477 | diff --git a/jgiven-html5-report/src/main/java/com/tngtech/jgiven/report/html5/Html5ReportGenerator.java b/jgiven-html5-report/src/main/java/com/tngtech/jgiven/report/html5/Html5ReportGenerator.java
index <HASH>..<HASH> 100644
--- a/jgiven-html5-report/src/main/java/com/tngtech/jgiven/report/html5/Html5ReportGenerator.... | ensure that contents are encoded utf-8 for pako lib | TNG_JGiven | train |
99e82bb750c31bf237608b0027818d2d2d20e844 | diff --git a/tool/tsh/tsh.go b/tool/tsh/tsh.go
index <HASH>..<HASH> 100644
--- a/tool/tsh/tsh.go
+++ b/tool/tsh/tsh.go
@@ -618,6 +618,11 @@ func Run(args []string, opts ...cliOption) error {
// This should only happen when there's a missing switch case above.
err = trace.BadParameter("command %q not configured", ... | tsh: Return more descriptive error on unimplemented grpc server method (#<I>) | gravitational_teleport | train |
2c1202031d4eeef29db1c51df092fa439c868572 | diff --git a/master/buildbot/master.py b/master/buildbot/master.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/master.py
+++ b/master/buildbot/master.py
@@ -96,7 +96,7 @@ class BuildMaster(service.ReconfigurableServiceMixin, service.MasterService):
self.initLock = defer.DeferredLock()
# set up... | master: Ensure child setServiceParent() finish before startService() | buildbot_buildbot | train |
cbb7778208ae4d954f6cf48e2e48024e6d081ebe | diff --git a/raiden/tests/unit/transfer/mediated_transfer/test_mediatorstate.py b/raiden/tests/unit/transfer/mediated_transfer/test_mediatorstate.py
index <HASH>..<HASH> 100644
--- a/raiden/tests/unit/transfer/mediated_transfer/test_mediatorstate.py
+++ b/raiden/tests/unit/transfer/mediated_transfer/test_mediatorstate.... | Test mediator during backward/forward transfers & sanity check | raiden-network_raiden | train |
2021ba5c727b94804f0c908703a5467d6dfed0a5 | diff --git a/lib/httpimagestore/configuration/file.rb b/lib/httpimagestore/configuration/file.rb
index <HASH>..<HASH> 100644
--- a/lib/httpimagestore/configuration/file.rb
+++ b/lib/httpimagestore/configuration/file.rb
@@ -18,12 +18,17 @@ module Configuration
root_dir, path_spec, if_image_name_on = *node.grab_attri... | file source/store now does not includ root path for source/store url/path | jpastuszek_httpimagestore | train |
96350b20cd2e6b651dc9f488a9ab7b319f6b8f57 | diff --git a/lib/puppet/type/parsedtype.rb b/lib/puppet/type/parsedtype.rb
index <HASH>..<HASH> 100755
--- a/lib/puppet/type/parsedtype.rb
+++ b/lib/puppet/type/parsedtype.rb
@@ -107,7 +107,9 @@ module Puppet
class ParsedType < Puppet::Type
@name = :parsedtype
class << self
- ... | Fixing #<I>, where host aliases were not being retained. The problem was that the "should" method was returning an empty array if it was not set, and it should instead return nil.
git-svn-id: <URL> | puppetlabs_puppet | train |
d7bc9a676b79ce05ac473b9f24010dd3141e5bfb | diff --git a/go/service/main.go b/go/service/main.go
index <HASH>..<HASH> 100644
--- a/go/service/main.go
+++ b/go/service/main.go
@@ -92,6 +92,7 @@ func (d *Service) Run() (err error) {
// If the daemon is already running, we need to be able to check what version
// it is, in case the client has been updated.
func ... | create the .cache/keybase dir before writing service.version | keybase_client | train |
e06634e6cd73cd4742cfd70450f396c05d491c3c | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -95,34 +95,24 @@ class Parser extends Transform {
}
}
// Normalize option `delimiter`
- const delimiter_error = new CsvError('CSV_INVALID_OPTION_DELIMITER', [
+ let delimiter = options.de... | chore(csv-parse): Refactor delimiter to always be an array | adaltas_node-csv | train |
3165a4562ae5f51788d9ade109981ee6d5b9a1ba | diff --git a/glue/ligolw/docutils.py b/glue/ligolw/docutils.py
index <HASH>..<HASH> 100644
--- a/glue/ligolw/docutils.py
+++ b/glue/ligolw/docutils.py
@@ -67,3 +67,34 @@ def RemapProcessIDs(elem, mapping):
row.process_id = mapping[row.process_id]
except KeyError:
pass
+
+
+#
+# Utilities for partial docum... | Add a content handler for partial document loading. | gwastro_pycbc-glue | train |
b27d7988ce6863e94d60864cdc1373213fddb19d | diff --git a/src/compiler.js b/src/compiler.js
index <HASH>..<HASH> 100644
--- a/src/compiler.js
+++ b/src/compiler.js
@@ -185,7 +185,7 @@ class Compiler {
getField (name) {
const path = name.split('/')
let i = this.scopeStack.length - 1
- const reserved = { value: true, enum: true }
+ const reserved... | compiler: add some more reserved keywords (#<I>) | ProtoDef-io_node-protodef | train |
ef9b34bf083e50b91ee497fffe73b9746dfb3dd7 | diff --git a/lib/reporters/detailed.js b/lib/reporters/detailed.js
index <HASH>..<HASH> 100644
--- a/lib/reporters/detailed.js
+++ b/lib/reporters/detailed.js
@@ -1,6 +1,7 @@
var util = require('util');
var chalk = require('chalk');
var BaseReporter = require('./base');
+var utils = require('..... | Updated detailed reporter to trim indentation and highlight value | danielstjules_buddy.js | train |
0f3dd8a9e01b8b7a0e55163f4db18d3a0f9c2588 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ pkg/*
/.rvmrc
/TAGS
/.yardoc/*
+doc
diff --git a/lib/amiando.rb b/lib/amiando.rb
index <HASH>..<HASH> 100644
--- a/lib/amiando.rb
+++ b/lib/amiando.rb
@@ -28,9 +28,16 @@ module Amiando
end
class... | Documented a few things, and made hydra private | xing_amiando | train |
1918bd369813458774973f0cd6a68cce4d734a77 | diff --git a/cmd.go b/cmd.go
index <HASH>..<HASH> 100644
--- a/cmd.go
+++ b/cmd.go
@@ -17,6 +17,7 @@
package main
import (
+ "errors"
"fmt"
"github.com/conformal/btcwallet/tx"
"github.com/conformal/btcwallet/wallet"
@@ -28,6 +29,10 @@ import (
)
var (
+ ErrNoWallet = errors.New("Wallet file does not exist... | Do not fail if default wallet does not exist.
We must instead wait for the user to explicitly generate their own
wallet for an account name. This is because all btcwallet wallets
must be encrypted, and the passphrase must be known at time of wallet
generation. | btcsuite_btcwallet | train |
4894bae22750cd0db1be77922e3afcedcec24de1 | diff --git a/PhpRbac/src/PhpRbac/core/lib/rbac.php b/PhpRbac/src/PhpRbac/core/lib/rbac.php
index <HASH>..<HASH> 100644
--- a/PhpRbac/src/PhpRbac/core/lib/rbac.php
+++ b/PhpRbac/src/PhpRbac/core/lib/rbac.php
@@ -312,7 +312,43 @@ abstract class BaseRbac extends JModel
return $this->{$this->type ()}->editData (... | added move functionality, needs thorough testing.
manual testing was performed several times, but its a complicated operation and requires nested levels of testing to ensure everything stays intact.
this also needs locking, which is not yet in place. | OWASP_rbac | train |
a2abb0ae4befaa3f13959c6e7ca1f1cec8ff9490 | diff --git a/go/vt/vtctl/vtctl.go b/go/vt/vtctl/vtctl.go
index <HASH>..<HASH> 100644
--- a/go/vt/vtctl/vtctl.go
+++ b/go/vt/vtctl/vtctl.go
@@ -2547,6 +2547,13 @@ func commandOnlineDDL(ctx context.Context, wr *wrangler.Wrangler, subFlags *flag
uuid = arg
query = fmt.Sprintf(`update _vt.schema_migrations set migr... | OnlineDDL: support 'cancel-all' command
The cancel-all command cancels all pending (queued, ready, running) migrations in a keyspace | vitessio_vitess | train |
988c9803bb8d2dad170d6a0c8c9bf66d85bdb216 | diff --git a/lib/boxen/cli.rb b/lib/boxen/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/boxen/cli.rb
+++ b/lib/boxen/cli.rb
@@ -43,10 +43,20 @@ module Boxen
exit
end
- # Actually run Puppet and return its exit code. FIX: Here's
- # where we'll reintegrate automatic error reporting.
+ # A... | Report failure/success of CLI#run
There's some repetition I'm not sure about here. I went with what the
comment said, though. | boxen_boxen | train |
3a98f9761f934ad4e529d323741428f6ed016937 | diff --git a/spec/lib/conjure/view/application_view_spec.rb b/spec/lib/conjure/view/application_view_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lib/conjure/view/application_view_spec.rb
+++ b/spec/lib/conjure/view/application_view_spec.rb
@@ -50,15 +50,15 @@ module Conjure::View
expect(view.render).to includ... | Use verified doubles in ApplicationView spec | brianauton_conjure | train |
f8c7497f5bda12697dd3fa5784704c2a7b3dd885 | diff --git a/tests/Unit/Suites/KeyValue/DataPoolReaderTest.php b/tests/Unit/Suites/KeyValue/DataPoolReaderTest.php
index <HASH>..<HASH> 100644
--- a/tests/Unit/Suites/KeyValue/DataPoolReaderTest.php
+++ b/tests/Unit/Suites/KeyValue/DataPoolReaderTest.php
@@ -109,7 +109,7 @@ class DataPoolReaderTest extends AbstractData... | Issue #<I>: rename dataProvider | lizards-and-pumpkins_catalog | train |
c14022b53de9b433cb6744eb53b5f426dcbb7d7b | diff --git a/src/Analyse/AbstractModel.php b/src/Analyse/AbstractModel.php
index <HASH>..<HASH> 100644
--- a/src/Analyse/AbstractModel.php
+++ b/src/Analyse/AbstractModel.php
@@ -46,6 +46,9 @@ use Brainworxx\Krexx\Service\Factory\Pool;
*
* @package Brainworxx\Krexx\Analyse
*
+ * @codeCoverageIgnore
+ * We will ... | Added missing unit test doc comment | brainworxx_kreXX | train |
1d3d3872355aa54e27296db1f68714507c42ffc0 | diff --git a/controller/src/main/java/org/jboss/as/controller/CapabilityServiceBuilder.java b/controller/src/main/java/org/jboss/as/controller/CapabilityServiceBuilder.java
index <HASH>..<HASH> 100644
--- a/controller/src/main/java/org/jboss/as/controller/CapabilityServiceBuilder.java
+++ b/controller/src/main/java/org... | [WFCORE-<I>] Introducing CapabilityServiceBuilder.setIntance(Service) overriding method | wildfly_wildfly-core | train |
a4d82e3596ff39eb001bef9272c5495f60854403 | diff --git a/collectors/mesos/agent/metrics.go b/collectors/mesos/agent/metrics.go
index <HASH>..<HASH> 100644
--- a/collectors/mesos/agent/metrics.go
+++ b/collectors/mesos/agent/metrics.go
@@ -22,16 +22,17 @@ import (
const (
// Container tagging constants
- CONTAINERID = "container_id"
- SOURCE = "source... | Fixed linter issues reported for collectors/mesos/agent/metrics.go. | dcos_dcos-metrics | train |
0391d6849134581b945be669cd8e6ca619c36963 | diff --git a/src/JanusRestV1/RestClientDecorator.php b/src/JanusRestV1/RestClientDecorator.php
index <HASH>..<HASH> 100644
--- a/src/JanusRestV1/RestClientDecorator.php
+++ b/src/JanusRestV1/RestClientDecorator.php
@@ -79,7 +79,7 @@ class RestClientDecorator implements RestClientInterface
*/
public function ... | Refactor: fixed RestClientDecorator actually calling the client | OpenConext-Attic_OpenConext-engineblock-metadata | train |
1131b72fa32d8396d16c1160bebe1656b49536ae | diff --git a/spec/cc/analyzer/engine_spec.rb b/spec/cc/analyzer/engine_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/cc/analyzer/engine_spec.rb
+++ b/spec/cc/analyzer/engine_spec.rb
@@ -50,11 +50,10 @@ module CC::Analyzer
expect(Container).to receive(:new).and_return(container)
stdout = TestFor... | Fix pending spec
This spec has been pending for a while, I updated the expectation to
match the changes that caused it to break way back when. | codeclimate_codeclimate | train |
659c65097598f2cc8243b539d6fc6186da6ca9f1 | diff --git a/ext_localconf.php b/ext_localconf.php
index <HASH>..<HASH> 100644
--- a/ext_localconf.php
+++ b/ext_localconf.php
@@ -1,7 +1,7 @@
<?php
// Register evaluateFieldValue() and deevaluateFieldValue() for input_21 field
-$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tce']['formevals']['TYPO3\\CMS\\Styleguide\\... | [TASK] TCA: Simplify formeval hooks | TYPO3_styleguide | train |
23e9c749b39910bdec0e2c625ccbd4ed8cbc53a7 | diff --git a/commander/cmdstream.py b/commander/cmdstream.py
index <HASH>..<HASH> 100644
--- a/commander/cmdstream.py
+++ b/commander/cmdstream.py
@@ -13,7 +13,6 @@ class CMDStream:
OkayResult = 0
ErrorResult = 1
- PendingResult = 2
def __init__(self, transport):
self.trans = transport
@@ -25,8 +24,6 @@ cl... | Add support for fsu reset,attached and heartbeat to modtool | iotile_coretools | train |
01c91bb89582bcd7b36c556ba80c5a1220f9a653 | diff --git a/telethon/errors/__init__.py b/telethon/errors/__init__.py
index <HASH>..<HASH> 100644
--- a/telethon/errors/__init__.py
+++ b/telethon/errors/__init__.py
@@ -1,5 +1,6 @@
import urllib.request
import re
+from threading import Thread
from .common import (
ReadCancelledError, InvalidParameterError, ... | Report errors in the background not to interfer with users (#<I>) | LonamiWebs_Telethon | train |
78053d0d4b85dc063afd3dfb48ab47e51d02e183 | diff --git a/ph-schematron/src/main/java/com/helger/schematron/ESchematronMode.java b/ph-schematron/src/main/java/com/helger/schematron/ESchematronMode.java
index <HASH>..<HASH> 100644
--- a/ph-schematron/src/main/java/com/helger/schematron/ESchematronMode.java
+++ b/ph-schematron/src/main/java/com/helger/schematron/ES... | Allowing "sch" as synonym for "schematron" | phax_ph-schematron | train |
fb9ac31fb34cefd2e80c09549b73c38726e54b88 | diff --git a/spec/integration_spec.rb b/spec/integration_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration_spec.rb
+++ b/spec/integration_spec.rb
@@ -317,19 +317,21 @@ describe PerconaMigrator do
end
end
+ # TODO: Handle #change_table syntax
+
context 'working with an empty migration' do
let... | Temporally disable LHM's integration tests | redbooth_departure | train |
3066e840e1fbd4a9bafd848476bf2e858ec1f441 | diff --git a/pkgbuild.go b/pkgbuild.go
index <HASH>..<HASH> 100644
--- a/pkgbuild.go
+++ b/pkgbuild.go
@@ -24,6 +24,8 @@ const (
ARMv6h
// ARMv7h architecture (archlinux-arm)
ARMv7h
+ // ARMv8 architecture (64bit) (archlinux-arm)
+ ARMv8
// MIPS64 architecture
MIPS64
)
@@ -31,9 +33,9 @@ const (
var archs = ... | Updated to fix aarch<I> | mikkeloscar_gopkgbuild | train |
47772b09628a3b5077309630dd6c958a9f3abc93 | diff --git a/db/rdb/src/main/java/it/unibz/inf/ontop/model/term/functionsymbol/db/impl/SQLServerDBFunctionSymbolFactory.java b/db/rdb/src/main/java/it/unibz/inf/ontop/model/term/functionsymbol/db/impl/SQLServerDBFunctionSymbolFactory.java
index <HASH>..<HASH> 100644
--- a/db/rdb/src/main/java/it/unibz/inf/ontop/model/t... | Boolean coalesce serialization fixed for SQL server. | ontop_ontop | train |
c077dc897046d4b92b8ca811b823f3d09e36c198 | diff --git a/tests/integration/test_github.py b/tests/integration/test_github.py
index <HASH>..<HASH> 100644
--- a/tests/integration/test_github.py
+++ b/tests/integration/test_github.py
@@ -226,8 +226,7 @@ class Test_Github(GitRepoTestCase):
gist='4170462', gist_file='failed')
def test_21_g... | Fixing github gist test_<I> for proper data inclusion support | guyzmo_git-repo | train |
09c50c34ddf5a7f9342fc9edaa1073fce71d5be1 | diff --git a/test/k8sT/DatapathConfiguration.go b/test/k8sT/DatapathConfiguration.go
index <HASH>..<HASH> 100644
--- a/test/k8sT/DatapathConfiguration.go
+++ b/test/k8sT/DatapathConfiguration.go
@@ -527,6 +527,24 @@ var _ = Describe("K8sDatapathConfig", func() {
break
}
+ // Due to IPCache update delays, i... | ci/wireguard: Ensure allowedIPs are set as expected
This introduces a check which uses `cilium debuginfo` to ensure that the
source and destination IPs of the test are set as expected. This avoids
flakes both on the ingress or egress side in case IPCache updates are
delayed (which have been observed to be in the order... | cilium_cilium | train |
6046fe52ed595bf385fe12bd287440d74f03a5ee | diff --git a/aws/resource_aws_macie2_classification_job_test.go b/aws/resource_aws_macie2_classification_job_test.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_macie2_classification_job_test.go
+++ b/aws/resource_aws_macie2_classification_job_test.go
@@ -184,6 +184,14 @@ func TestAccAwsMacie2ClassificationJob_c... | test: added more check values in complete func | terraform-providers_terraform-provider-aws | train |
580445a444084f1517ce3b4b1ee143b6ff98e97e | diff --git a/lib/git-feats/serializer.rb b/lib/git-feats/serializer.rb
index <HASH>..<HASH> 100644
--- a/lib/git-feats/serializer.rb
+++ b/lib/git-feats/serializer.rb
@@ -1,4 +1,5 @@
require 'json'
+require 'fileutils'
module GitFeats
module Serializer
@@ -13,8 +14,7 @@ module GitFeats
# Returns nothing
... | Fixes major serializer bug
Bug was causing Serializer module to fail creating the ~/.git_feats file
in the users home directory. | cknadler_git-feats | train |
f5fa6c78d6b9cefb91bca460c99f995c9317b872 | diff --git a/ui/app/artifacts/detail/pncArtifactsDetailPage.js b/ui/app/artifacts/detail/pncArtifactsDetailPage.js
index <HASH>..<HASH> 100644
--- a/ui/app/artifacts/detail/pncArtifactsDetailPage.js
+++ b/ui/app/artifacts/detail/pncArtifactsDetailPage.js
@@ -41,7 +41,6 @@
$ctrl.$onInit = function () {
- d... | NCL-<I> Remove unsued dependencies and add build statuses | project-ncl_pnc | train |
382bba207ee7c24383c5c4bf2e6584aa2327578c | diff --git a/src/Extensions/PdfExportExtension.php b/src/Extensions/PdfExportExtension.php
index <HASH>..<HASH> 100644
--- a/src/Extensions/PdfExportExtension.php
+++ b/src/Extensions/PdfExportExtension.php
@@ -2,6 +2,7 @@
namespace CWP\PDFExport\Extensions;
+use SilverStripe\Assets\File;
use SilverStripe\Control... | FIX Generated PDF assets are now stored in the public assets folder if configured
Was previously creating a new assets folder in the project root folder to store them in. | silverstripe_cwp-pdfexport | train |
c0af0e6196e6494c55a4f3783948915354e0f15e | diff --git a/jarn/mkrelease/mkrelease.py b/jarn/mkrelease/mkrelease.py
index <HASH>..<HASH> 100644
--- a/jarn/mkrelease/mkrelease.py
+++ b/jarn/mkrelease/mkrelease.py
@@ -280,7 +280,7 @@ class ReleaseMaker(object):
self.python.check_valid_python()
def get_options(self):
- """Parse the command... | Amend a docstring. | Jarn_jarn.mkrelease | train |
1141220995e57bea162a76043f02c83e2e11fa82 | diff --git a/provider.go b/provider.go
index <HASH>..<HASH> 100644
--- a/provider.go
+++ b/provider.go
@@ -64,6 +64,9 @@ func Provider() terraform.ResourceProvider {
"openstack_compute_keypair_v2": resourceComputeKeypairV2(),
"openstack_compute_secgroup_v2": resourceComputeSecGroupV2(),
... | Enable FWaaS resources | terraform-providers_terraform-provider-openstack | train |
5e5c2aff6af283d26df095496c733ebe87da9d69 | diff --git a/docs/source/conf.py b/docs/source/conf.py
index <HASH>..<HASH> 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -48,7 +48,7 @@ templates_path = ['_templates']
source_suffix = '.rst'
# The encoding of source files.
-#source_encoding = 'utf-8-sig'
+source_encoding = 'utf-8-sig'
# The mast... | Set encoding, remove useless links | graphistry_pygraphistry | train |
0936a1890826206d74244fdff8b53507a7e5f4bf | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -178,7 +178,6 @@ setup(name=NAME,
packages=['saltcloud',
'saltcloud/utils',
'saltcloud/clouds',
- 'saltcloud/output',
],
package_data={
... | `saltcloud.output` is no longer a package. | saltstack_salt | train |
07cf3448473487c5e306a23eb71f3a0f76f16277 | diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go
index <HASH>..<HASH> 100644
--- a/nomad/structs/structs.go
+++ b/nomad/structs/structs.go
@@ -1527,6 +1527,10 @@ func (s *Service) Validate() error {
}
for _, c := range s.Checks {
+ if s.PortLabel == "" && (c.Type == ServiceCheckTCP || c.Type == S... | Invalidating services when they contain check of type tcp and http but no ports | hashicorp_nomad | train |
a94ba907a5e98cd4b39a607c599d868fd3506431 | diff --git a/test/AnnotateView.spec.js b/test/AnnotateView.spec.js
index <HASH>..<HASH> 100644
--- a/test/AnnotateView.spec.js
+++ b/test/AnnotateView.spec.js
@@ -2,6 +2,33 @@ import AnnotateView from '../src/AnnotateView';
import uuid from '../src/utils/uuid';
import { equal } from 'assert';
+function testRotation... | Adding more tests for AnnotateView | instructure_pdf-annotate.js | train |
893ff1ddda007544d6833bd958aa752cc317ea9a | diff --git a/src/controls/common/ProgressBar.js b/src/controls/common/ProgressBar.js
index <HASH>..<HASH> 100644
--- a/src/controls/common/ProgressBar.js
+++ b/src/controls/common/ProgressBar.js
@@ -5,6 +5,7 @@ import ResizeObserver from 'resize-observer-polyfill';
import ProgressBarDisplay from './ProgressBarDisplay'... | onClick stopPropagation passed from ProgressBar to display component. | benwiley4000_cassette | train |
5f2f9d044681deed5e501ad5dfc71e1a6461d5a2 | diff --git a/react-slider.js b/react-slider.js
index <HASH>..<HASH> 100644
--- a/react-slider.js
+++ b/react-slider.js
@@ -749,8 +749,8 @@
"aria-valuenow": this.state.value[i],
"aria-valuemin": this.props.min,
"aria-valuemax": this.props.max,
- "aria-label": this.props.... | defaulting aria props to undefined | mpowaga_react-slider | train |
a5d3a7694fa25d7ef82dae88771a3c15859b64ee | diff --git a/ghettoq/backends/base.py b/ghettoq/backends/base.py
index <HASH>..<HASH> 100644
--- a/ghettoq/backends/base.py
+++ b/ghettoq/backends/base.py
@@ -1,4 +1,4 @@
-from ghettoq.messaging import Queue as QueueType
+from ghettoq import messaging
class BaseBackend(object):
@@ -14,7 +14,10 @@ class BaseBackend... | Redis backend working and tested successfully against Celery | ask_ghettoq | train |
5a4a472ecf3e45950ced699af89c95f20c9ee738 | diff --git a/t/reconfigure/bin.t.js b/t/reconfigure/bin.t.js
index <HASH>..<HASH> 100644
--- a/t/reconfigure/bin.t.js
+++ b/t/reconfigure/bin.t.js
@@ -59,8 +59,8 @@ function prove (async, assert) {
'listener updated')
bin({}, ['list', '127.0.0.1:2390'], {}, async())
}, function (values) {
- ... | Fix bin test for reconfigure#list. | bigeasy_reconfigure | train |
db5f90a6ad1d3ec313773f46b4e217b561c4e832 | diff --git a/tests/mobanfile/test_targets.py b/tests/mobanfile/test_targets.py
index <HASH>..<HASH> 100644
--- a/tests/mobanfile/test_targets.py
+++ b/tests/mobanfile/test_targets.py
@@ -1,4 +1,3 @@
-import os
import uuid
from nose.tools import eq_, raises
@@ -6,10 +5,12 @@ from moban.mobanfile import targets
from... | :hammer: more replacement in test targets | moremoban_moban | train |
8c88fd4a32621aa4c0e66641e1dd4b8bc4e09a4a | diff --git a/flask_restful_extend/populate_model.py b/flask_restful_extend/populate_model.py
index <HASH>..<HASH> 100644
--- a/flask_restful_extend/populate_model.py
+++ b/flask_restful_extend/populate_model.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from flask.ext.restful import reqparse
-def populate_model(model_... | fix bug: excludes and only arg no effective. return_args change to just_parse | anjianshi_flask-restful-extend | train |
ad96dcfe953ee0286442512b58721ed3ca4b8cd6 | diff --git a/core/src/main/java/com/orientechnologies/orient/core/serialization/serializer/record/string/ORecordSerializerJSON.java b/core/src/main/java/com/orientechnologies/orient/core/serialization/serializer/record/string/ORecordSerializerJSON.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechn... | Changed record attributes from _ to @ | orientechnologies_orientdb | train |
181476df3b506330e83ebeccc65b28024040fd55 | diff --git a/examples/AdaptiveHeight.js b/examples/AdaptiveHeight.js
index <HASH>..<HASH> 100644
--- a/examples/AdaptiveHeight.js
+++ b/examples/AdaptiveHeight.js
@@ -1,9 +1,9 @@
-import React, { Component } from "react";
+import React from "react";
import Slider from "../src/slider";
-export default class AdaptiveH... | Upgrade AdaptiveHeight to functional component
The class component was updated by a functional component.
var was changed to const | akiran_react-slick | train |
fcca218db032618c0091d3d2e4b10b8774681886 | diff --git a/tools/src/main/java/com/orientechnologies/orient/stresstest/workload/OCRUDWorkload.java b/tools/src/main/java/com/orientechnologies/orient/stresstest/workload/OCRUDWorkload.java
index <HASH>..<HASH> 100644
--- a/tools/src/main/java/com/orientechnologies/orient/stresstest/workload/OCRUDWorkload.java
+++ b/t... | Stress test: supported retry on CRUD workload | orientechnologies_orientdb | train |
9049e8e579b0f315934a1d767abb5a65f3f15dd6 | diff --git a/lib/Proem/Service/AssetManager.php b/lib/Proem/Service/AssetManager.php
index <HASH>..<HASH> 100644
--- a/lib/Proem/Service/AssetManager.php
+++ b/lib/Proem/Service/AssetManager.php
@@ -94,40 +94,40 @@ class AssetManager implements AssetManagerInterface
* asset return the same instance on each call. ... | Some cleanup within the AssetManager class. | proem_proem | train |
bf4573a8740942618a19296db471e5410eb8b555 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -87,13 +87,20 @@ the SMS pass force=true as an option
sms = authy_api.users.request_sms('authy-id', {"force": True});
-### Application Details
+## Checking User Status
+
+To check a user status, just pass the user... | Added support for user status api.
This is a new end point to get user status information, it only requires
the user id. | twilio_authy-python | train |
8a69cff67c118fa32524de5a75504aa4e7e87f6c | diff --git a/blogit.py b/blogit.py
index <HASH>..<HASH> 100755
--- a/blogit.py
+++ b/blogit.py
@@ -41,11 +41,7 @@ import yaml # in debian python-yaml
from StringIO import StringIO
import codecs
from jinja2 import Environment, FileSystemLoader # in debian python-jinja2
-try:
- import markdown2
-except ImportErro... | use syntax highlight from fenced-code-blocks
requires pygments ... | oz123_blogit | train |
655e06477f3ee2af66337bc848ec2d44b868bca3 | diff --git a/examples/web/src/components/Root/index.js b/examples/web/src/components/Root/index.js
index <HASH>..<HASH> 100644
--- a/examples/web/src/components/Root/index.js
+++ b/examples/web/src/components/Root/index.js
@@ -1,5 +1,5 @@
import React, { Component } from 'react'
-import { BrowserRouter as Router, Rout... | change: replace the BrowserRouter with the HashRouter | Nozbe_WatermelonDB | train |
3d803e30beecfe764f49161449cab3bcef5b321b | diff --git a/bids/layout/layout.py b/bids/layout/layout.py
index <HASH>..<HASH> 100644
--- a/bids/layout/layout.py
+++ b/bids/layout/layout.py
@@ -4,11 +4,11 @@ import warnings
from io import open
from .validation import BIDSValidator
from grabbit import Layout, File
-from grabbit.external import six
+from grabbit.e... | FIX: Propagate derivative entities into top-level dynamic getters | bids-standard_pybids | train |
12449dd1f4b74f56e91caad15ddb3ead041edbc6 | diff --git a/src/EvolvableLinkTrait.php b/src/EvolvableLinkTrait.php
index <HASH>..<HASH> 100644
--- a/src/EvolvableLinkTrait.php
+++ b/src/EvolvableLinkTrait.php
@@ -25,7 +25,7 @@ trait EvolvableLinkTrait
$that = clone($this);
$that->href = $href;
- $that->templated = ($this->hrefIsTemplated... | Convert to more modern syntax where possible. | php-fig_link-util | train |
d684122be0ce3484fb9a4ead11db98d18c5805e7 | diff --git a/src/css.js b/src/css.js
index <HASH>..<HASH> 100644
--- a/src/css.js
+++ b/src/css.js
@@ -53,7 +53,7 @@ jQuery.extend({
// Set the alpha filter to set the opacity
var opacity = parseInt( value, 10 ) + '' === "NaN" ? "" : "alpha(opacity=" + value * 100 + ")";
- filter = style.filter || jQuery... | Fixes a bug I introduced | jquery_jquery | train |
3340a19f7ee2075412c161de9e73a525ebe76c00 | diff --git a/src/main/java/com/tomgibara/bits/BitStore.java b/src/main/java/com/tomgibara/bits/BitStore.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/tomgibara/bits/BitStore.java
+++ b/src/main/java/com/tomgibara/bits/BitStore.java
@@ -86,9 +86,10 @@ import com.tomgibara.streams.WriteStream;
* methods) or ... | Documents the BitStore comparable methods. | tomgibara_bits | train |
1874bbd74ccf242533e8ccb65dcaffb18beedb77 | diff --git a/spec/parse-english.spec.js b/spec/parse-english.spec.js
index <HASH>..<HASH> 100755
--- a/spec/parse-english.spec.js
+++ b/spec/parse-english.spec.js
@@ -718,6 +718,20 @@ describe('Two paragraphs', function () {
});
});
+describe('A whitespace only document', function () {
+ it('should equal the... | Added a unit test for white space only documents | wooorm_parse-english | train |
803d3e8295864ff3f53712f06356208d809a3179 | diff --git a/tests/test_basic.py b/tests/test_basic.py
index <HASH>..<HASH> 100644
--- a/tests/test_basic.py
+++ b/tests/test_basic.py
@@ -16,6 +16,12 @@ def test_velocity_graph():
scv.tl.velocity(adata)
scv.tl.velocity_graph(adata)
- graph = adata.uns['velocity_graph']
+ graph = adata.uns['velocity_g... | update test (due to potential self transitions) | theislab_scvelo | train |
3ba22249ff61028ecc1ab27d7dd39a359bfc6682 | diff --git a/etc/eslint/rules/stdlib.js b/etc/eslint/rules/stdlib.js
index <HASH>..<HASH> 100644
--- a/etc/eslint/rules/stdlib.js
+++ b/etc/eslint/rules/stdlib.js
@@ -56,7 +56,9 @@ rules[ 'stdlib/capitalized-comments' ] = [ 'warn', {
'whitelist': [
'eslint',
'eslint-enable',
+ 'eslint-enable-next-line',
'es... | Update whitelist to include enabling and disabling specific ESLint rules | stdlib-js_stdlib | train |
e25be3b1dce8b939af8ba5ff4fb08a62f036772c | diff --git a/admin/tool/generator/tests/maketestcourse_test.php b/admin/tool/generator/tests/maketestcourse_test.php
index <HASH>..<HASH> 100644
--- a/admin/tool/generator/tests/maketestcourse_test.php
+++ b/admin/tool/generator/tests/maketestcourse_test.php
@@ -150,34 +150,5 @@ class tool_generator_maketestcourse_test... | MDL-<I> tool_generator: Removing unit test
Removing dodgy database reset in the
middle of a test as sequences reset
is not allowed. | moodle_moodle | train |
0e7628a22fb7f5a95870782ac1552b46ef6e5e8d | diff --git a/src/test/java/org/cactoos/io/TeeInputFromBytesTest.java b/src/test/java/org/cactoos/io/TeeInputFromBytesTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/org/cactoos/io/TeeInputFromBytesTest.java
+++ b/src/test/java/org/cactoos/io/TeeInputFromBytesTest.java
@@ -39,7 +39,8 @@ import org.junit.rules.... | #<I>: TeeInput test class is incomplete: fix puzzle description | yegor256_cactoos | train |
3fa16556c2730ac932e938c3353bdad8dffeede8 | diff --git a/ImagingKit_Fourier/src/main/java/hageldave/imagingkit/fourier/ComplexImg.java b/ImagingKit_Fourier/src/main/java/hageldave/imagingkit/fourier/ComplexImg.java
index <HASH>..<HASH> 100644
--- a/ImagingKit_Fourier/src/main/java/hageldave/imagingkit/fourier/ComplexImg.java
+++ b/ImagingKit_Fourier/src/main/jav... | more javadoc (complete but need refinement) | hageldave_ImagingKit | train |
e0d3387d0c637ce1b455f1d795aa77411ba86e1a | diff --git a/openid/test/test_server.py b/openid/test/test_server.py
index <HASH>..<HASH> 100644
--- a/openid/test/test_server.py
+++ b/openid/test/test_server.py
@@ -182,6 +182,7 @@ class TestDecode(unittest.TestCase):
'openid.ns': OPENID2_NS,
'openid.mode': 'checkid_setup',
'ope... | [project @ test.test_server: add claimed_id to where it was missing from some OpenID 2 messages] | necaris_python3-openid | train |
4699133e1b12cefdb499fc370e85f9080c5b79b4 | diff --git a/luaparser/tests/test_expressions.py b/luaparser/tests/test_expressions.py
index <HASH>..<HASH> 100644
--- a/luaparser/tests/test_expressions.py
+++ b/luaparser/tests/test_expressions.py
@@ -4,9 +4,11 @@ from luaparser.astNodes import *
import textwrap
-class ArithmeticOperatorsTestCase(tests.TestCase)... | tests: add missing floor and mod operator | boolangery_py-lua-parser | train |
7aaac2751c91bf2dedeb59cd0b81af66beb1faa9 | diff --git a/tests/tests.py b/tests/tests.py
index <HASH>..<HASH> 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -144,4 +144,21 @@ def test_insert_one(collection):
assert c.count() == 101
assert collection.find({'my_object_name': 'my object value'})['count'] == 1000
-
\ No newline at end of file
+
... | Added and updated tests for 'insert_many' | schapman1974_tinymongo | train |
ff531361e6d6943191a24b16dc11165cdc24a1fb | diff --git a/src/core/util/util.js b/src/core/util/util.js
index <HASH>..<HASH> 100644
--- a/src/core/util/util.js
+++ b/src/core/util/util.js
@@ -529,14 +529,15 @@ function UtilFactory($document, $timeout, $compile, $rootScope, $$mdAnimate, $in
}
},
- /*
- * getClosest replicates jQuery.closest() ... | docs(util): fix incorrect Closure types and JSDoc (#<I>) | angular_material | train |
3ee55e59659dc53443f18ee2d9f1c409aaa6214c | diff --git a/symphony/assets/js/src/symphony.collapsible.js b/symphony/assets/js/src/symphony.collapsible.js
index <HASH>..<HASH> 100644
--- a/symphony/assets/js/src/symphony.collapsible.js
+++ b/symphony/assets/js/src/symphony.collapsible.js
@@ -4,6 +4,19 @@
(function($, Symphony) {
+ // always put try/catches in... | Put try/catch in their own function
This prevents callers from being put into un-uptimized hell, where
any function that contains a try/catch will never be optimized
by js jit compilers (V8 in particular) | symphonycms_symphony-2 | train |
dd2160e4f94d386b5379448241801a1a92cacd61 | diff --git a/generator/lib/util/PropelMigrationManager.php b/generator/lib/util/PropelMigrationManager.php
index <HASH>..<HASH> 100644
--- a/generator/lib/util/PropelMigrationManager.php
+++ b/generator/lib/util/PropelMigrationManager.php
@@ -212,7 +212,6 @@ class PropelMigrationManager
{
$path = $this->getMigrati... | [<I>] Fixed useless Phing dependency on migration tasks (refs #<I>) | propelorm_Propel | train |
28071a03cc7ad8a90946917d58f922f4331d25da | diff --git a/openquake/hazardlib/calc/disagg.py b/openquake/hazardlib/calc/disagg.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/calc/disagg.py
+++ b/openquake/hazardlib/calc/disagg.py
@@ -21,6 +21,7 @@ extracting a specific PMF from the result of :func:`disaggregation`.
import sys
import numpy
import warn... | Added a dictionary pmf_map | gem_oq-engine | train |
ec8935f5761abc09b4ae144936998b6c35a81cdc | diff --git a/lang/en/plugin.php b/lang/en/plugin.php
index <HASH>..<HASH> 100644
--- a/lang/en/plugin.php
+++ b/lang/en/plugin.php
@@ -50,6 +50,7 @@ $string['source'] = 'Source';
$string['sourceext'] = 'Extension';
$string['sourcestd'] = 'Standard';
$string['status'] = 'Status';
+$string['status_delete'] = 'To be de... | MDL-<I> fix overview status of standard plugins to be deleted | moodle_moodle | train |
6063c8a768327376b9e2e684838c1187a6c8f729 | diff --git a/host/fei4/register_utils.py b/host/fei4/register_utils.py
index <HASH>..<HASH> 100644
--- a/host/fei4/register_utils.py
+++ b/host/fei4/register_utils.py
@@ -259,6 +259,7 @@ class FEI4RegisterUtils(object):
-------
numpy.ndarray
'''
+
# FE columns and rows start from... | BUG: tread case when col/row mask is not set correctly | SiLab-Bonn_pyBAR | train |
1d86100ce0b8e6bcc25dc748533fea378c41aa08 | diff --git a/src/main/java/com/urswolfer/gerrit/client/rest/http/GerritRestClient.java b/src/main/java/com/urswolfer/gerrit/client/rest/http/GerritRestClient.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/urswolfer/gerrit/client/rest/http/GerritRestClient.java
+++ b/src/main/java/com/urswolfer/gerrit/client/r... | prevent infinite loop
- when using Gerrit-Auth method and a <I> is returned because operation is not allowed
for logged in user, it used to loop because it tried to clear login cache and tried again | uwolfer_gerrit-rest-java-client | train |
babc3feba7458a0e7ae26e5a86db214275448f64 | diff --git a/src/geshi/gdb.php b/src/geshi/gdb.php
index <HASH>..<HASH> 100644
--- a/src/geshi/gdb.php
+++ b/src/geshi/gdb.php
@@ -132,7 +132,7 @@ $language_data = array (
),
//Files with linenumbers
3 => array(
- GESHI_SEARCH => '(at )(.+)(:\d+\s*)$',
+ GESHI_SEARCH... | improve highlighter for stack frames spanning multiple lines | GeSHi_geshi-1.0 | train |
6c62d850f5a8328105d4c3cc130104276a13b560 | diff --git a/src/test/java/com/nesscomputing/callback/TestExecutorBatchingCallback.java b/src/test/java/com/nesscomputing/callback/TestExecutorBatchingCallback.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/nesscomputing/callback/TestExecutorBatchingCallback.java
+++ b/src/test/java/com/nesscomputing/callback... | Add test case showing that there is a race in the BatchingCallback exception tracking. | NessComputing_components-ness-core | train |
7b92c1ae9766adbdb1dc45c615b8bce9dce1269c | diff --git a/addon/components/nypr-brick-item.js b/addon/components/nypr-brick-item.js
index <HASH>..<HASH> 100644
--- a/addon/components/nypr-brick-item.js
+++ b/addon/components/nypr-brick-item.js
@@ -33,9 +33,12 @@ export default Component.extend({
return htmlSafe('');
}
}),
- analyticsTitle: compute... | try to fix undefined header.titles | nypublicradio_nypr-ui | train |
a5974811f645adf625c27af8abd7e8a73e89a362 | diff --git a/lib/WebDriverExpectedCondition.php b/lib/WebDriverExpectedCondition.php
index <HASH>..<HASH> 100644
--- a/lib/WebDriverExpectedCondition.php
+++ b/lib/WebDriverExpectedCondition.php
@@ -2,7 +2,7 @@
namespace Facebook\WebDriver;
-use Facebook\WebDriver\Exception\NoAlertOpenException;
+use Facebook\WebD... | Fix alertIsPresent expected condition in W3C mode (fixes #<I>) | facebook_php-webdriver | train |
75b76fafb87ceac83ca2afa1a08addce826a5e38 | diff --git a/fontbakery-check-ttf.py b/fontbakery-check-ttf.py
index <HASH>..<HASH> 100755
--- a/fontbakery-check-ttf.py
+++ b/fontbakery-check-ttf.py
@@ -2387,9 +2387,9 @@ def main():
string = name.string.decode(name.getEncoding())
if "\n" in string:
failed = True
- fb.error(("Name entry ... | shorten line that was too long (><I> chars) | googlefonts_fontbakery | train |
f88540906c9f51e79b1dbe310e174ce8e80873d0 | diff --git a/lib/simple_po_parser/parser.rb b/lib/simple_po_parser/parser.rb
index <HASH>..<HASH> 100644
--- a/lib/simple_po_parser/parser.rb
+++ b/lib/simple_po_parser/parser.rb
@@ -342,9 +342,13 @@ module SimplePoParser
# creates an array if the given key already has a result
def add_result(key, text)
... | keep single parses as strings instead of array of one string | experteer_simple_po_parser | train |
1c898f130ef5453f8ed9359c71fefad6e2a7af7c | diff --git a/src/manager/componentsManager.py b/src/manager/componentsManager.py
index <HASH>..<HASH> 100644
--- a/src/manager/componentsManager.py
+++ b/src/manager/componentsManager.py
@@ -31,7 +31,7 @@ import foundations.exceptions
import foundations.strings
import manager.exceptions
from foundations.parsers impo... | Imports / instantiations updates after "foundations.walker" module name change. | KelSolaar_Manager | train |
452b5a1d91fce6ff5f62d2174c608eb6099cbcab | diff --git a/workalendar/tests/test_usa.py b/workalendar/tests/test_usa.py
index <HASH>..<HASH> 100644
--- a/workalendar/tests/test_usa.py
+++ b/workalendar/tests/test_usa.py
@@ -91,6 +91,7 @@ class NoColumbus(object):
* Alaska
* Arkansas
+ * California
"""
def test_columbus_day(self):
... | refs #<I> -- Fixed California
* Removed "Indigenous People Day" only observed in Berkley,
* Removed "Columbus Day" | peopledoc_workalendar | train |
2870347c2820369505e1e67b590afe99599d1abe | diff --git a/examples/GAN/GAN.py b/examples/GAN/GAN.py
index <HASH>..<HASH> 100644
--- a/examples/GAN/GAN.py
+++ b/examples/GAN/GAN.py
@@ -68,15 +68,24 @@ class GANTrainer(TowerTrainer):
super(GANTrainer, self).__init__()
assert isinstance(model, GANModelDesc), model
inputs_desc = model.get_i... | Register a list of callbacks at a time | tensorpack_tensorpack | train |
662b7bc7696cfa5d2d993bd014c8d8e0a480d1fc | diff --git a/profile/profile_default/static/custom/custom.js b/profile/profile_default/static/custom/custom.js
index <HASH>..<HASH> 100644
--- a/profile/profile_default/static/custom/custom.js
+++ b/profile/profile_default/static/custom/custom.js
@@ -1727,7 +1727,21 @@ GenePattern.notebook.init.notebook_init_wrapper = ... | Fix to occasional "double auth widget" bug | genepattern_genepattern-notebook | train |
c7348df27d7fd01392b321915c5a4b0a67d28d8e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -4,9 +4,8 @@ import re
import setuptools
-# Taken from the `Python Packaging User Guide
-# <https://packaging.python.org/single_source_version/>`_
def find_version(*file_paths):
+ # Credits: https://packaging.python.o... | Move and reformat an inline credit | christophercrouzet_nani | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.