hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
01ae025a094642cf65b858828afec4e5a18e727d | diff --git a/jbpm-services/jbpm-executor/src/main/java/org/jbpm/executor/impl/AbstractAvailableJobsExecutor.java b/jbpm-services/jbpm-executor/src/main/java/org/jbpm/executor/impl/AbstractAvailableJobsExecutor.java
index <HASH>..<HASH> 100644
--- a/jbpm-services/jbpm-executor/src/main/java/org/jbpm/executor/impl/Abstra... | RHBPMS-<I> - Number of job executions is not increased (#<I>) | kiegroup_jbpm | train |
7327c99529be9a23cce50106c0341db9ea1f26a1 | diff --git a/tests/ci_depends.php b/tests/ci_depends.php
index <HASH>..<HASH> 100644
--- a/tests/ci_depends.php
+++ b/tests/ci_depends.php
@@ -59,14 +59,6 @@ class PhpExtensions {
);
/**
- * After instantiation holds the current PHP version.
- *
- * @see http://php.net/phpversion
- * @var string Current PHP v... | Use PHP_VERSION instead of `phpversion()` in CI depends script. | UnionOfRAD_lithium | train |
08f03553db25c94f511a194f7003447dcb85f84b | diff --git a/src/Support/helpers.php b/src/Support/helpers.php
index <HASH>..<HASH> 100644
--- a/src/Support/helpers.php
+++ b/src/Support/helpers.php
@@ -119,7 +119,7 @@ if (! function_exists('dd')) {
function inline($assetPath)
{
- preg_match('/^\/assets\/build\/(css|js)\/main\.(css|js)/', $assetPath, $matches... | Accept change from ‘main’ to * | tightenco_jigsaw | train |
3d86563be2725db6e928c3d176f3e8fdba27b906 | diff --git a/src/toil/jobStores/azureJobStore.py b/src/toil/jobStores/azureJobStore.py
index <HASH>..<HASH> 100644
--- a/src/toil/jobStores/azureJobStore.py
+++ b/src/toil/jobStores/azureJobStore.py
@@ -478,9 +478,9 @@ class AzureJobStore(AbstractJobStore):
def _newFileID(self, sharedFileName=None):
if ... | Don't make UUIDs into bytes directly | DataBiosphere_toil | train |
232b204693351257ceb8d1fe542838067083fdb0 | diff --git a/examples/mithril/js/app.js b/examples/mithril/js/app.js
index <HASH>..<HASH> 100644
--- a/examples/mithril/js/app.js
+++ b/examples/mithril/js/app.js
@@ -4,12 +4,18 @@ import login from './models/login'
window.m = m
-if (!login.user) {
- if (window.location.pathname !== '/login')
- login.redirect ... | add window.onhashchange event (#9) | porsager_wright | train |
c21b9a5eb979b8935be0c8e8540cd1599cd11b52 | diff --git a/sciunit/models/base.py b/sciunit/models/base.py
index <HASH>..<HASH> 100644
--- a/sciunit/models/base.py
+++ b/sciunit/models/base.py
@@ -16,8 +16,6 @@ class Model(SciUnit):
name = self.__class__.__name__
self.name = name
self.params = params
- if params is None:
- ... | Remove the if statement in Model constructor | scidash_sciunit | train |
1705d1f46c4433f785e4e33446b19ce5c4135f12 | diff --git a/lib/jss/api_object/patch_source.rb b/lib/jss/api_object/patch_source.rb
index <HASH>..<HASH> 100644
--- a/lib/jss/api_object/patch_source.rb
+++ b/lib/jss/api_object/patch_source.rb
@@ -304,7 +304,8 @@ module JSS
super
- @enabled = @init_data[:enabled] ? @init_data[:enabled] : DFT_ENABLED
+... | PatchSource#available_name_ids, and better boolean init | PixarAnimationStudios_ruby-jss | train |
52e0a45c3edc45a904bb96099b4835dc6fc20545 | diff --git a/lib/websearchadminlib.py b/lib/websearchadminlib.py
index <HASH>..<HASH> 100644
--- a/lib/websearchadminlib.py
+++ b/lib/websearchadminlib.py
@@ -2468,13 +2468,15 @@ def perform_checkcollectionstatus(colID, ln, confirm=0, callback='yes'):
colID = int(colID)
col_dict = dict(get_def_name('', "col... | WebSearch: collection status page and no of recs
* Display number of records on the collection status page
in the WebSearch Admin interface. | inveniosoftware_invenio-records | train |
b9f5ec49e0492dd1cd04f28ac935e27e3badd39c | diff --git a/creds.go b/creds.go
index <HASH>..<HASH> 100644
--- a/creds.go
+++ b/creds.go
@@ -1,6 +1,7 @@
package tcclient
import (
+ "context"
"crypto/hmac"
"crypto/sha256"
"encoding/base64"
@@ -59,6 +60,8 @@ type Client struct {
// HTTPClient is a ReducedHTTPClient to be used for the http call instead of... | Add support for aborting requests with context.Context | taskcluster_taskcluster-client-go | train |
778d8d7b3ad8053992bb29315bac7689ec84e522 | diff --git a/belpy/rdf_to_pysb.py b/belpy/rdf_to_pysb.py
index <HASH>..<HASH> 100644
--- a/belpy/rdf_to_pysb.py
+++ b/belpy/rdf_to_pysb.py
@@ -118,8 +118,11 @@ class BelProcessor(object):
""" % statement.format()
res_evidence = self.g.query(q_evidence)
for stmt in res_evidence:
- e... | Catch unicode formatting errors in evidence query | sorgerlab_indra | train |
41468230274945e35f23093345fac01d21f88299 | diff --git a/lib/graphql/query/arguments.rb b/lib/graphql/query/arguments.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql/query/arguments.rb
+++ b/lib/graphql/query/arguments.rb
@@ -19,6 +19,10 @@ module GraphQL
argument_definitions.each do |key, _value|
expose_as = argument_definitions[key].expo... | dont define a helper method if it would override an existing method | rmosolgo_graphql-ruby | train |
f77a1b2e337d8b371c9708fd0c8d37a82e206813 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -80,14 +80,6 @@ var createServer = function(e, index) {
return server;
};
-//---------------------------------------------------------------
-//exit on ctrl-c
-process.on('SIGINT', function() {
- console.log("\n[ QUIT ... | removed on sigint handling, not required as it is the default behaviouor | mafintosh_peerflix | train |
f53ebd67ebf67160cca48b4c7b96ba8619d7e7fb | diff --git a/TYPO3.Neos/Tests/Functional/TypoScript/RenderingTest.php b/TYPO3.Neos/Tests/Functional/TypoScript/RenderingTest.php
index <HASH>..<HASH> 100644
--- a/TYPO3.Neos/Tests/Functional/TypoScript/RenderingTest.php
+++ b/TYPO3.Neos/Tests/Functional/TypoScript/RenderingTest.php
@@ -238,9 +238,14 @@ class RenderingT... | [TASK] Add site node to content context for rendering tests
Functional tests might give wrong exceptions on failure
because the exception handler expects a site context variable.
Change-Id: I<I>c3c0d<I>e8e<I>c7e9eefec
Releases: master, <I>
Original-Commit-Hash: da6b<I>dd<I>c<I>bbb<I>ca<I>f7b<I>f2ef3fa2 | neos_neos-development-collection | train |
4a2e32790a782facec0a42ed3a2a948e6ec5611e | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -362,3 +362,14 @@ current_release = subprocess.check_output(["git", "describe", "--abbrev=0"]).dec
current_release_date = subprocess.check_output(["git", "log", "-1", "--tags", "--format=%ad", "--date=format:%... | Minor documentation improvements
- List all __init__ methods in documentation
- Further describe purpose of Profile in its docstring | instaloader_instaloader | train |
ac3a696721cffc71e6be9899abe4caba3f741280 | diff --git a/lib/Parser/DocumentParser.php b/lib/Parser/DocumentParser.php
index <HASH>..<HASH> 100644
--- a/lib/Parser/DocumentParser.php
+++ b/lib/Parser/DocumentParser.php
@@ -17,6 +17,7 @@ use Doctrine\RST\Nodes\Node;
use Doctrine\RST\Nodes\TableNode;
use Doctrine\RST\Parser;
use Doctrine\RST\Parser\Directive as... | Replace \u<I>a0 with " " | doctrine_rst-parser | train |
3c79776eb9c8eef8344483c62e423e88f92a03e8 | diff --git a/raiden/storage/sqlite.py b/raiden/storage/sqlite.py
index <HASH>..<HASH> 100644
--- a/raiden/storage/sqlite.py
+++ b/raiden/storage/sqlite.py
@@ -67,17 +67,17 @@ class SnapshotRecord(NamedTuple):
data: Any
-def assert_sqlite_version() -> bool:
+def assert_sqlite_version() -> bool: # pragma: no un... | Mark some code to be ignored in coverage measure
- wrapper functions
- missed typechecks | raiden-network_raiden | train |
1775e1cdc692ae08cfad7668b02807cea3bd4ed3 | diff --git a/plugins/inputs/elasticsearch/elasticsearch.go b/plugins/inputs/elasticsearch/elasticsearch.go
index <HASH>..<HASH> 100644
--- a/plugins/inputs/elasticsearch/elasticsearch.go
+++ b/plugins/inputs/elasticsearch/elasticsearch.go
@@ -50,6 +50,7 @@ type clusterHealth struct {
RelocatingShards int ... | Add cluster name tag to elasticsearch indices (#<I>) | influxdata_telegraf | train |
df8d8f06c3b66ff7e44922fdc05f26d81f379128 | diff --git a/lib/pubsub.js b/lib/pubsub.js
index <HASH>..<HASH> 100644
--- a/lib/pubsub.js
+++ b/lib/pubsub.js
@@ -495,9 +495,9 @@ PubSub.prototype.getSubscriptions = function(data, callback) {
.getChild('subscriptions')
.children.forEach(function(subscription) {
var sub = {
- ... | Attempt to add JID if it exists as attribute | xmpp-ftw_xmpp-ftw-pubsub | train |
750dae5f26b64e50f02e8b100b4c6e9f1a4c65d3 | diff --git a/scratchapi.js b/scratchapi.js
index <HASH>..<HASH> 100644
--- a/scratchapi.js
+++ b/scratchapi.js
@@ -240,7 +240,8 @@ Scratch.CloudSession.prototype._connect = function(cb) {
this.connection = new WebSocket('wss://' + CLOUD_SERVER + '/', [], {
headers: {
- Cookie: 'scratchsessionsid=' + ... | Fix cloud connections being rejected because of missing origin header | trumank_scratch-api | train |
e48443a4a7ae68bd4e92a11be607beff7dd48dcc | diff --git a/modeshape-jcr/src/main/java/org/modeshape/jcr/JcrI18n.java b/modeshape-jcr/src/main/java/org/modeshape/jcr/JcrI18n.java
index <HASH>..<HASH> 100644
--- a/modeshape-jcr/src/main/java/org/modeshape/jcr/JcrI18n.java
+++ b/modeshape-jcr/src/main/java/org/modeshape/jcr/JcrI18n.java
@@ -458,7 +458,8 @@ public fi... | MODE-<I>
Exception messages was internationalized | ModeShape_modeshape | train |
c46a07f8fcd9f92fe28c976e71a66e7d8b93f3c5 | diff --git a/xchange-binance/src/main/java/org/knowm/xchange/binance/service/BinanceAccountService.java b/xchange-binance/src/main/java/org/knowm/xchange/binance/service/BinanceAccountService.java
index <HASH>..<HASH> 100644
--- a/xchange-binance/src/main/java/org/knowm/xchange/binance/service/BinanceAccountService.jav... | Add the account info timestamp to the generic API. | knowm_XChange | train |
8055d4de1f13686473d91eb54688ffe1a1eb703b | diff --git a/keanu-project/src/main/java/io/improbable/keanu/tensor/dbl/JVMDoubleTensor.java b/keanu-project/src/main/java/io/improbable/keanu/tensor/dbl/JVMDoubleTensor.java
index <HASH>..<HASH> 100644
--- a/keanu-project/src/main/java/io/improbable/keanu/tensor/dbl/JVMDoubleTensor.java
+++ b/keanu-project/src/main/ja... | add arange and linspace to jvm double tensor | improbable-research_keanu | train |
9e0035e08de16c217f0dd7a4e44d92d6395bd06f | diff --git a/jsonschema/tests/test_jsonschema_test_suite.py b/jsonschema/tests/test_jsonschema_test_suite.py
index <HASH>..<HASH> 100644
--- a/jsonschema/tests/test_jsonschema_test_suite.py
+++ b/jsonschema/tests/test_jsonschema_test_suite.py
@@ -93,23 +93,6 @@ else:
return
-if sys.version_info < (3, 7):
-... | Remove <I>-related code. | Julian_jsonschema | train |
5ffdd47979f3e82bc79330661d43155f761d06f7 | diff --git a/lib/simple_navigation/core/configuration.rb b/lib/simple_navigation/core/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/simple_navigation/core/configuration.rb
+++ b/lib/simple_navigation/core/configuration.rb
@@ -34,7 +34,7 @@ module SimpleNavigation
@auto_highlight = true
@consider_... | + added link to deprec warning | codeplant_simple-navigation | train |
e9b55edc84e7e7f1661cb68a03a4fcc9b8b9b607 | diff --git a/internal/service/elasticache/replication_group_test.go b/internal/service/elasticache/replication_group_test.go
index <HASH>..<HASH> 100644
--- a/internal/service/elasticache/replication_group_test.go
+++ b/internal/service/elasticache/replication_group_test.go
@@ -1168,6 +1168,7 @@ func TestAccElastiCache... | Fix 'Error: invalid value for replication_group_id (must begin with a letter' in acceptance test. | terraform-providers_terraform-provider-aws | train |
edff0226b09d3af3ac118a30939c6a7300dafa2f | diff --git a/domain/example/pom.xml b/domain/example/pom.xml
index <HASH>..<HASH> 100644
--- a/domain/example/pom.xml
+++ b/domain/example/pom.xml
@@ -127,6 +127,17 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-... | [OPENENGSB-<I>] fixed the NoClassDefFound exception of the example domain | openengsb_openengsb | train |
09c9d506e3d58453d494c31de5790bea8fa7c0fb | diff --git a/master/buildbot/reporters/mail.py b/master/buildbot/reporters/mail.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/reporters/mail.py
+++ b/master/buildbot/reporters/mail.py
@@ -169,8 +169,7 @@ class MailNotifier(ReporterBase):
return a
@defer.inlineCallbacks
- def createEmail(self, ... | reporters: Remove unused builder name argument from MailNotifier | buildbot_buildbot | train |
fcdb943d7ed9033ca15016e4accc86374927e3f3 | diff --git a/lib/bud/lattice-lib.rb b/lib/bud/lattice-lib.rb
index <HASH>..<HASH> 100644
--- a/lib/bud/lattice-lib.rb
+++ b/lib/bud/lattice-lib.rb
@@ -343,7 +343,7 @@ class Bud::BagLattice < Bud::Lattice
wrap_unsafe(rv)
end
- morph :mult do |k|
+ morph :card do |k|
rv = @v[k]
rv ||= 0
Bud::Ma... | Rename lbag#mult to lbag#card, for consistency with SoCC draft. | bloom-lang_bud | train |
221c673f31a553b5b889e7ae262c77143b24d65b | diff --git a/test/e2e/storage/volume_provisioning.go b/test/e2e/storage/volume_provisioning.go
index <HASH>..<HASH> 100644
--- a/test/e2e/storage/volume_provisioning.go
+++ b/test/e2e/storage/volume_provisioning.go
@@ -818,6 +818,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
framework.KubeDescribe... | Skip GlusterDynamicProvisioner test in GKE
The GlusterDynamicProvisioner test will not work on GKE because master
node is in a different project and cannot talk to the pod running on
node which is used for gluster provisioner. So add the code to skip the
test on GKE | kubernetes_kubernetes | train |
f1ab75e7c46e2ba784459c75b8ae6a0b1025ed7a | diff --git a/Classes/Handler/ErrorHandler.php b/Classes/Handler/ErrorHandler.php
index <HASH>..<HASH> 100755
--- a/Classes/Handler/ErrorHandler.php
+++ b/Classes/Handler/ErrorHandler.php
@@ -64,7 +64,7 @@ class ErrorHandler
public function injectSettings(array $settings): void
{
$this->settings = $se... | TASK: Remove unnecessary null null coalescing operators | punktDe_sentry-flow | train |
05aceafd33a5ea6160dc7347ee63b670c0a0fa09 | diff --git a/mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/query/parsing/impl/AggregationRenderer.java b/mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/query/parsing/impl/AggregationRenderer.java
index <HASH>..<HASH> 100644
--- a/mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/query/par... | OGM-<I> Support distinct on entity
Example: SELECT(DISTINCT a) FROM Author a | hibernate_hibernate-ogm | train |
85051d8af7abf010911ff01539bd0ae132f3c96e | diff --git a/src/main/java/com/jayway/maven/plugins/android/phase09package/ApklibMojo.java b/src/main/java/com/jayway/maven/plugins/android/phase09package/ApklibMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/jayway/maven/plugins/android/phase09package/ApklibMojo.java
+++ b/src/main/java/com/jayway/maven/... | Added "classifier" parameter to the apklib goal to provide classifier
support as is implemented for the apk goal. | simpligility_android-maven-plugin | train |
4af252cce5f6d06f251e230d2c86becbdbddcb1c | diff --git a/shadowapi/src/main/java/org/robolectric/util/ReflectionHelpers.java b/shadowapi/src/main/java/org/robolectric/util/ReflectionHelpers.java
index <HASH>..<HASH> 100644
--- a/shadowapi/src/main/java/org/robolectric/util/ReflectionHelpers.java
+++ b/shadowapi/src/main/java/org/robolectric/util/ReflectionHelper... | Use the new `getDeclaredField` helper in more parts of ReflectionHelpers
This is more compatible with JDK <I>+.
PiperOrigin-RevId: <I> | robolectric_robolectric | train |
2d393585d9983079736414ca98fd6ca295ce882e | diff --git a/cloudvolume/datasource/precomputed/spatial_index.py b/cloudvolume/datasource/precomputed/spatial_index.py
index <HASH>..<HASH> 100644
--- a/cloudvolume/datasource/precomputed/spatial_index.py
+++ b/cloudvolume/datasource/precomputed/spatial_index.py
@@ -187,7 +187,7 @@ class SpatialIndex(object):
# ... | fix: fast path had wrong modifier in front of it from debugging | seung-lab_cloud-volume | train |
5a1a8e83f43350620b2f4922d111e1553117086e | diff --git a/public/js/editors/panel.js b/public/js/editors/panel.js
index <HASH>..<HASH> 100644
--- a/public/js/editors/panel.js
+++ b/public/js/editors/panel.js
@@ -185,27 +185,11 @@ var Panel = function (name, settings) {
panel.focus();
});
- // Remove emmet keymaps from javascript panel
+ // Res... | Stopped overwriting emmet keymaps, except for the ones we need. | jsbin_jsbin | train |
d9ae20a2b9c9fed6b348e6a6bcba1cf92b168874 | diff --git a/controller-client/src/main/java/org/jboss/as/controller/client/helpers/domain/impl/DomainClientImpl.java b/controller-client/src/main/java/org/jboss/as/controller/client/helpers/domain/impl/DomainClientImpl.java
index <HASH>..<HASH> 100644
--- a/controller-client/src/main/java/org/jboss/as/controller/clien... | Use correct address for server lifecycle ops | wildfly_wildfly | train |
a2d3470a24076299ff8f7b098c4a8cd13fd5569f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -1,6 +1,8 @@
+const SpriteLoaderPlugin = require("svg-sprite-loader/plugin");
+
const defaults = {
inline: { svgo: false }, // Options for vue-svg-loader
- sprite: {}, // Options for svg-sprite-loader
+ sprite: { extract: t... | Add reference implementation of sprite loader | sam3d_vue-svg | train |
4430a55eed6c03daf7bab02483e984bf53bcfdfb | diff --git a/server/monitor.go b/server/monitor.go
index <HASH>..<HASH> 100644
--- a/server/monitor.go
+++ b/server/monitor.go
@@ -1101,11 +1101,18 @@ type LeafNodeOptsVarz struct {
Remotes []RemoteLeafOptsVarz `json:"remotes,omitempty"`
}
+// Contains lists of subjects not allowed to be imported/exported
+typ... | [added] leaf deny exports/imports to varz monitoring (#<I>)
* [added] leaf deny exports/imports to varz monitoring | nats-io_gnatsd | train |
4864bf67602d589d6cf904866a20183f148de986 | diff --git a/lib/plugins/module-paths.js b/lib/plugins/module-paths.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/module-paths.js
+++ b/lib/plugins/module-paths.js
@@ -35,7 +35,7 @@ if (config.noGlobalPlugins) {
var env = process.env || {};
var execPath = process.execPath;
var isWin = process.platform === 'win32'... | refactor: refine custom plugin path | avwo_whistle | train |
c1bbd85b688758bb943822743d5ad75bf3761ab1 | diff --git a/modules/page/html/render/private.js b/modules/page/html/render/private.js
index <HASH>..<HASH> 100644
--- a/modules/page/html/render/private.js
+++ b/modules/page/html/render/private.js
@@ -22,9 +22,15 @@ exports.create = function (api) {
meta: {type: 'post'},
isPrivate: true,
prepubli... | only add a person to msg.recps once | ssbc_patchwork | train |
d2ded05cb137348090c38fa9c4d8b422c06ecfea | diff --git a/expression/builtin_miscellaneous_vec.go b/expression/builtin_miscellaneous_vec.go
index <HASH>..<HASH> 100644
--- a/expression/builtin_miscellaneous_vec.go
+++ b/expression/builtin_miscellaneous_vec.go
@@ -536,9 +536,18 @@ func (b *builtinNameConstRealSig) vecEvalReal(input *chunk.Chunk, result *chunk.
}
... | expression: implement vectorized evaluation for builtinReleaseLockSig (#<I>) | pingcap_tidb | train |
e11e4a161dca124ab63a9aedf30300707bbb55bd | diff --git a/timestring/Date.py b/timestring/Date.py
index <HASH>..<HASH> 100644
--- a/timestring/Date.py
+++ b/timestring/Date.py
@@ -163,6 +163,11 @@ class Date:
if minute:
new_date = new_date.replace(minute=int(max(minute)))
+ #second
+ seconds = ... | support for matching YYY-MM-DDTHH:II:SS | stevepeak_timestring | train |
b4b17af44c41a807b81d7613eb37625f76492554 | diff --git a/gflex/f1d.py b/gflex/f1d.py
index <HASH>..<HASH> 100644
--- a/gflex/f1d.py
+++ b/gflex/f1d.py
@@ -11,6 +11,7 @@ class F1D(Flexure):
def run(self):
self.bc_check()
+ self.solver_start_time = time.time()
if self.method == 'FD':
# Finite difference
super(F1D, self).FD()
@@ -32,... | Universal solution timer based on f2d.py | awickert_gFlex | train |
bf151e4aa8f27fe44ac2cf6a881c6ce80a2a0f60 | diff --git a/lib/jrubyfx/application.rb b/lib/jrubyfx/application.rb
index <HASH>..<HASH> 100644
--- a/lib/jrubyfx/application.rb
+++ b/lib/jrubyfx/application.rb
@@ -39,14 +39,4 @@ class JRubyFX::Application < Java.javafx.application.Application
#call our custom launcher to avoid a java shim
JavaFXImpl::Laun... | Revert and kill launch_with_object | jruby_jrubyfx | train |
1a3939659b2c2506fb50ca3ee21e84c642cb5f64 | diff --git a/src/data.js b/src/data.js
index <HASH>..<HASH> 100644
--- a/src/data.js
+++ b/src/data.js
@@ -49,7 +49,7 @@ Data.prototype = {
descriptor[ this.expando ] = { value: unlock };
Object.defineProperties( owner, descriptor );
- // Support: Android<4
+ // Support: Android < 4
// Fallback to a... | No ticket. Simplifies data methods and updates comments. Closes gh-<I> | jquery_jquery | train |
4b657f14011a27b45aed1d8c3be3482f9216846f | diff --git a/TestsExample/App.js b/TestsExample/App.js
index <HASH>..<HASH> 100644
--- a/TestsExample/App.js
+++ b/TestsExample/App.js
@@ -33,6 +33,7 @@ import Test791 from './src/Test791';
import Test817 from './src/Test817';
import Test831 from './src/Test831';
import Test844 from './src/Test844';
+import Test852 ... | fix: add missing import in App.js (#<I>)
Added missing import statement in App.js for Test<I> in TestsExample project. | kmagiera_react-native-screens | train |
6df2bae8ac1827e5b09f61e8f2cbdd81e3e3af7f | diff --git a/param/parameterized.py b/param/parameterized.py
index <HASH>..<HASH> 100644
--- a/param/parameterized.py
+++ b/param/parameterized.py
@@ -2,7 +2,6 @@
Generic support for objects with full-featured Parameters and
messaging.
"""
-__version__='$Revision$'
import copy
import re | Removed unused __version__ attribute from parameterized.py (I think it's usual to have __version__ only in __init__.py). | pyviz_param | train |
0154fe5e255fd1cf5bfe184d9c5bda4ff9f330ec | diff --git a/web/src/main/java/uk/ac/ebi/atlas/solr/index/IndexingProgress.java b/web/src/main/java/uk/ac/ebi/atlas/solr/index/IndexingProgress.java
index <HASH>..<HASH> 100644
--- a/web/src/main/java/uk/ac/ebi/atlas/solr/index/IndexingProgress.java
+++ b/web/src/main/java/uk/ac/ebi/atlas/solr/index/IndexingProgress.ja... | now IndexingProgress is a thread safe Iterable | ebi-gene-expression-group_atlas | train |
c83af4091d536e58b01636c52ee678adf82deaff | diff --git a/src/controls/VideoDisplay.js b/src/controls/VideoDisplay.js
index <HASH>..<HASH> 100644
--- a/src/controls/VideoDisplay.js
+++ b/src/controls/VideoDisplay.js
@@ -1,4 +1,4 @@
-import React, { PureComponent } from 'react';
+import React, { Component } from 'react';
import PropTypes from 'prop-types';
impor... | Display placeholder image (without flicker!) when video is absent. | benwiley4000_cassette | train |
daa53493c207920accc3263babac3cae5e6d2dee | diff --git a/app/deploy.go b/app/deploy.go
index <HASH>..<HASH> 100644
--- a/app/deploy.go
+++ b/app/deploy.go
@@ -179,6 +179,9 @@ func GetDeploy(id string, u *auth.User) (*DeployData, error) {
return nil, err
}
defer conn.Close()
+ if !bson.IsObjectIdHex(id) {
+ return nil, fmt.Errorf("id parameter is not Obje... | app/deploy: verifying if the id is a valid ObjectId in get deploy
the check is needed because bson.ObjectIdHex panics
on try to convert an invalid ObjectId. | tsuru_tsuru | train |
7c9a79f9a6a443d47529bb4b1054c6a9bb4ef47f | diff --git a/src/Edge.php b/src/Edge.php
index <HASH>..<HASH> 100644
--- a/src/Edge.php
+++ b/src/Edge.php
@@ -13,12 +13,12 @@ use Innmind\Immutable\Map;
final class Edge
{
- private Node $from;
+ private Node\Name $from;
private Node $to;
/** @var Map<string, string> */
private Map $attributes... | only keep the source name in the edge | Innmind_Graphviz | train |
d7db4780b654d522199b057779dbd144edfa6d19 | diff --git a/synapse/models/inet.py b/synapse/models/inet.py
index <HASH>..<HASH> 100644
--- a/synapse/models/inet.py
+++ b/synapse/models/inet.py
@@ -248,14 +248,30 @@ class UrlType(DataType):
port = None
proto = proto.lower()
- hostpart = resloc.lower()
+ hostpart = resloc.lower().re... | fix for ipv4/fqdn subprop from url | vertexproject_synapse | train |
2acce0e6e4606fec2506208f2486f06065f7b0cc | diff --git a/molgenis-app/src/main/java/org/molgenis/app/WebAppPermissionRegistry.java b/molgenis-app/src/main/java/org/molgenis/app/WebAppPermissionRegistry.java
index <HASH>..<HASH> 100644
--- a/molgenis-app/src/main/java/org/molgenis/app/WebAppPermissionRegistry.java
+++ b/molgenis-app/src/main/java/org/molgenis/app... | fix (app): Grant COUNT on sys package to USER role and READ on Security plugin to MANAGER role. | molgenis_molgenis | train |
12e06ff42bf3cc755d69c61c03819c62fccfcec3 | diff --git a/core/src/test/java/org/infinispan/test/TestingUtil.java b/core/src/test/java/org/infinispan/test/TestingUtil.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/org/infinispan/test/TestingUtil.java
+++ b/core/src/test/java/org/infinispan/test/TestingUtil.java
@@ -173,6 +173,24 @@ public class Testing... | Add another variation of waitForRehashToComplete to TestingUtil | infinispan_infinispan | train |
127278c7a642f7d90f5970b53e390eb209dcd9e3 | diff --git a/src/com/inet/lib/less/CssFormatter.java b/src/com/inet/lib/less/CssFormatter.java
index <HASH>..<HASH> 100644
--- a/src/com/inet/lib/less/CssFormatter.java
+++ b/src/com/inet/lib/less/CssFormatter.java
@@ -26,6 +26,7 @@
*/
package com.inet.lib.less;
+import java.net.URI;
import java.net.URL;
import ... | in "all" mode don't rewrite when it starts already with root (/) and
when it has a schem | i-net-software_jlessc | train |
fd57ef509d75fcba3c4a26594a7c26838888ad2f | diff --git a/samcli/__init__.py b/samcli/__init__.py
index <HASH>..<HASH> 100644
--- a/samcli/__init__.py
+++ b/samcli/__init__.py
@@ -2,4 +2,4 @@
SAM CLI version
"""
-__version__ = '0.14.0'
+__version__ = '0.14.1' | chore: Version bump SAM CLI to <I> (#<I>) | awslabs_aws-sam-cli | train |
d1570e1793adcca75a0990f6d613928c880fcb9a | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ A Note on Installing lxml
-------------------------
While lxml is not a requirement, I have had a hard time installing lxml in the
-past. I have found this set of commands to work perfectly:
+past. I have ... | Update setup.py with the new README.rst contents. | ericflo_pynzb | train |
c1182966e51b4f78e707a7e72b51a260aa4d455a | diff --git a/lib/wunderlist/api.rb b/lib/wunderlist/api.rb
index <HASH>..<HASH> 100644
--- a/lib/wunderlist/api.rb
+++ b/lib/wunderlist/api.rb
@@ -34,9 +34,9 @@ module Wunderlist
list
end
- def list(list_name)
- list_name = [list_name]
- list_id = get_list_ids(list_name)[0]
+ def list(list... | allowing to pass either a list name or list id to api | sh8_wunderlist-api | train |
a033b19b21a79bdea326e701f79fa5a440926626 | diff --git a/envconfig.go b/envconfig.go
index <HASH>..<HASH> 100644
--- a/envconfig.go
+++ b/envconfig.go
@@ -39,6 +39,9 @@ func Process(prefix string, spec interface{}) error {
fieldName := typeOfSpec.Field(i).Name
key := fmt.Sprintf("%s_%s", prefix, fieldName)
value := os.Getenv(strings.ToUpper(key))
+ ... | Add more tests around bool specs | kelseyhightower_envconfig | train |
e0ea7ae3ef24072dc075d051d846239b3e4bb86d | diff --git a/src/Eloquent/PostgisTrait.php b/src/Eloquent/PostgisTrait.php
index <HASH>..<HASH> 100644
--- a/src/Eloquent/PostgisTrait.php
+++ b/src/Eloquent/PostgisTrait.php
@@ -52,7 +52,7 @@ trait PostgisTrait
}
}
- parent::setRawAttributes($attributes, $sync);
+ return parent::s... | Fix bug that causes other packages not to work
The Eloquent Model's `setRawAttributes` method returns `this`, which allows it to be chained with other methods. This package currently does not return anything from the overriden method, which causes other packages (such as [spatie/laravel-activitylog](<URL>) to break. T... | njbarrett_laravel-postgis | train |
0603b300569542516231da533dc3b89c64edd880 | diff --git a/p2p/host/basic/basic_host.go b/p2p/host/basic/basic_host.go
index <HASH>..<HASH> 100644
--- a/p2p/host/basic/basic_host.go
+++ b/p2p/host/basic/basic_host.go
@@ -258,7 +258,7 @@ func (h *BasicHost) newStreamHandler(s network.Stream) {
}
lzc, protoID, handle, err := h.Mux().NegotiateLazy(s)
- took := ... | Make use of time.Until & time.Since (#<I>)
No need to manually subtract timestamps. | libp2p_go-libp2p | train |
fc0369374b514f4320b0df16e5bbf52fdce7cf2c | diff --git a/mpop/plugin_base.py b/mpop/plugin_base.py
index <HASH>..<HASH> 100644
--- a/mpop/plugin_base.py
+++ b/mpop/plugin_base.py
@@ -120,7 +120,7 @@ def load_plugins(directory):
LOG.info("Imported plugin file "+
os.path.join(directory, name)+
".... | Bugfix: loading plugins should fail on any exception. | pytroll_satpy | train |
fd3684903989b9dc725afda4755fb5bfc4c993e6 | diff --git a/src/net/sf/mpxj/mpp/MPP12Reader.java b/src/net/sf/mpxj/mpp/MPP12Reader.java
index <HASH>..<HASH> 100644
--- a/src/net/sf/mpxj/mpp/MPP12Reader.java
+++ b/src/net/sf/mpxj/mpp/MPP12Reader.java
@@ -1597,7 +1597,7 @@ final class MPP12Reader implements MPPVariantReader
task.setLateStart(MPPUtility.getT... | Updated to fix leveling delay read from MPP files. | joniles_mpxj | train |
7e64d1d3054eeb86ffc104996f79d88c1f1b5130 | diff --git a/state-log/src/main/java/net/kuujo/copycat/StateLogConfig.java b/state-log/src/main/java/net/kuujo/copycat/StateLogConfig.java
index <HASH>..<HASH> 100644
--- a/state-log/src/main/java/net/kuujo/copycat/StateLogConfig.java
+++ b/state-log/src/main/java/net/kuujo/copycat/StateLogConfig.java
@@ -289,4 +289,15... | Add missing fluent method in StateLogConfig. | atomix_atomix | train |
cc787208e4a6eace5283537b602cf6d7aa44d814 | diff --git a/emannotationschemas/models.py b/emannotationschemas/models.py
index <HASH>..<HASH> 100644
--- a/emannotationschemas/models.py
+++ b/emannotationschemas/models.py
@@ -11,6 +11,8 @@ Base = declarative_base()
annotation_models = {}
+root_id_model_name = "CellSegment"
+
class InvalidSchemaField(Excepti... | adding foreignkey relationships to CellSegments | seung-lab_EMAnnotationSchemas | train |
abab903fe8a1a98807e1910a9bde6e8a8a3e18c9 | diff --git a/watchdog_reader.go b/watchdog_reader.go
index <HASH>..<HASH> 100644
--- a/watchdog_reader.go
+++ b/watchdog_reader.go
@@ -24,17 +24,29 @@ func newWatchdogReader(reader io.Reader, timeout time.Duration, timer *time.Time
}
// Read reads up to len(p) bytes into p
-func (t *watchdogReader) Read(p []byte) (... | read as much as possible in one call | ncw_swift | train |
7fb75e081975450ea6aeab1238b6651252ea97ea | diff --git a/copy/copy.go b/copy/copy.go
index <HASH>..<HASH> 100644
--- a/copy/copy.go
+++ b/copy/copy.go
@@ -25,14 +25,16 @@ import (
)
type digestingReader struct {
- source io.Reader
- digester digest.Digester
- expectedDigest digest.Digest
- validationFailed bool
+ source io.Re... | Compute also validationSucceeded in digestingReader
This will allow us to reliably detect that we have processed the full
input (i.e. that PutBlob did not get the data from elsewhere and ignore it).
The value is not uset yet, so does not change behavior. | containers_image | train |
f1651489c22b5a095d4e2017f7d371e0cd8a1cba | diff --git a/lib/Doctrine/Mapper/Joined.php b/lib/Doctrine/Mapper/Joined.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/Mapper/Joined.php
+++ b/lib/Doctrine/Mapper/Joined.php
@@ -106,8 +106,8 @@ class Doctrine_Mapper_Joined extends Doctrine_Mapper_Abstract
$record->state(Doctrine_Record::STATE_TDIRTY... | more experiments with the new testsuite. | doctrine_orm | train |
59062804a940174b027f7d590a0ba821d0c832a9 | diff --git a/src/audio/audio.js b/src/audio/audio.js
index <HASH>..<HASH> 100644
--- a/src/audio/audio.js
+++ b/src/audio/audio.js
@@ -11,31 +11,31 @@ import loader from "./../loader/loader.js";
* audio channel list
* @ignore
*/
-var audioTracks = {};
+let audioTracks = {};
/**
* current active track
* @ig... | change var to let (es6) in audio.js | melonjs_melonJS | train |
14dc02a696c62fafe7973f69f9b0ceb4028eeff6 | diff --git a/lib/has_meta.rb b/lib/has_meta.rb
index <HASH>..<HASH> 100644
--- a/lib/has_meta.rb
+++ b/lib/has_meta.rb
@@ -67,7 +67,7 @@ module HasMeta
define_singleton_method :"find_by_#{attribute}_id" do |value|
data_type = Helper.get_type value
data_type = :int if data_type... | update column names in has_meta to reflect belongs_to relationship | ProTrainings_has-meta | train |
e311e31772705a6b65cf43323a4c3dc1f6b9282d | diff --git a/user_messages/models.py b/user_messages/models.py
index <HASH>..<HASH> 100644
--- a/user_messages/models.py
+++ b/user_messages/models.py
@@ -13,6 +13,10 @@ class Thread(models.Model):
objects = ThreadManager()
+ @models.permalink
+ def get_absolute_url(self):
+ return ('messa... | Make some changes to url reverseing. | pinax_pinax-messages | train |
71a77879ff9b4c8069d7cceb2a81b3d0a32a616f | diff --git a/lib/cuke_slicer/version.rb b/lib/cuke_slicer/version.rb
index <HASH>..<HASH> 100644
--- a/lib/cuke_slicer/version.rb
+++ b/lib/cuke_slicer/version.rb
@@ -1,4 +1,4 @@
module CukeSlicer
# The current version for the gem.
- VERSION = "2.1.0"
+ VERSION = "2.2.0"
end | Bump gem version
Updating gem version to '<I>' for the upcoming release. | grange-insurance_cuke_slicer | train |
b8e5f04e322620494daf4b4723d11f24d660f30d | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index <HASH>..<HASH> 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,5 +1,10 @@
# master
+## Version 2.1.1 (25 February 2018)
+
+* switch to sdist
+* better ABI mode fallback behaviour
+
## Version 2.1.0 (17 November 2017)
* support cffi API mode as well: much fas... | another attempt at ABI fallback
package as sdist, try setup twice | libvips_pyvips | train |
56fd098ee2f21631b42725283d0fbb43793cb52d | diff --git a/src/main/java/redis/clients/jedis/Connection.java b/src/main/java/redis/clients/jedis/Connection.java
index <HASH>..<HASH> 100644
--- a/src/main/java/redis/clients/jedis/Connection.java
+++ b/src/main/java/redis/clients/jedis/Connection.java
@@ -61,24 +61,6 @@ public class Connection {
}
}
... | keep old connection file. DO NOT CROSS BRANCHES AGAIN | xetorthio_jedis | train |
03c58d9d2dc481e1f36bd08652cf0231505f220f | diff --git a/src/Propel/Generator/Behavior/Delegate/DelegateBehavior.php b/src/Propel/Generator/Behavior/Delegate/DelegateBehavior.php
index <HASH>..<HASH> 100644
--- a/src/Propel/Generator/Behavior/Delegate/DelegateBehavior.php
+++ b/src/Propel/Generator/Behavior/Delegate/DelegateBehavior.php
@@ -130,7 +130,8 @@ class... | Fix error of inline assignment creating false positives with ! negation. | propelorm_Propel2 | train |
2f848e02a1e73e1079b681c2b1e6bca8eb05139f | diff --git a/lib/remi/dataset.rb b/lib/remi/dataset.rb
index <HASH>..<HASH> 100644
--- a/lib/remi/dataset.rb
+++ b/lib/remi/dataset.rb
@@ -27,9 +27,6 @@ module Remi
raise "datastep called, no block given" if not block_given?
- # All this needs to do is open and close the dataset
-
-
logger.debug "S... | Need to figure out how to read one row | inside-track_remi | train |
b23c468b12f81531367a3e98a92f0e7fa46042de | diff --git a/.pylintrc b/.pylintrc
index <HASH>..<HASH> 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -2,4 +2,4 @@
command=/home/oadams/venv3/bin/pylint
disable=locally-disabled
-limit=0.0
+limit=10.0
diff --git a/src/datasets/timit.py b/src/datasets/timit.py
index <HASH>..<HASH> 100644
--- a/src/datasets/timit.py
+++ ... | Changing the shape of getting valid prefixes. | persephone-tools_persephone | train |
929c77a02a55049e0eb19425f4f822f490af82da | diff --git a/cli/help.js b/cli/help.js
index <HASH>..<HASH> 100644
--- a/cli/help.js
+++ b/cli/help.js
@@ -15,9 +15,9 @@ function rewriteExitLine(line) {
' -i, --interactive open an interactive debugger (chromium dev tools)'
].join('\n')
}
-
+console.log(process.argv)
new Cucumber.Cli({
- ar... | Pass argv to Cucumber CLI | cucumber_cucumber-electron | train |
eba1dd002526e9db68db63840b9f6d2df5b10c19 | diff --git a/builtin/credential/approle/path_login.go b/builtin/credential/approle/path_login.go
index <HASH>..<HASH> 100644
--- a/builtin/credential/approle/path_login.go
+++ b/builtin/credential/approle/path_login.go
@@ -287,7 +287,8 @@ func (b *backend) pathLoginUpdate(ctx context.Context, req *logical.Request, dat
... | approle: Include role_name in alias metadata (#<I>)
This change allows people who are using templated policies to use the
role_name in their templates through {{
identity.entity.aliases.approle.metadata.role_name }}. | hashicorp_vault | train |
364af50e9faa127324995f52c56e8ba0875d0dd2 | diff --git a/rqalpha/mod/rqalpha_mod_sys_booking/api_booking.py b/rqalpha/mod/rqalpha_mod_sys_booking/api_booking.py
index <HASH>..<HASH> 100644
--- a/rqalpha/mod/rqalpha_mod_sys_booking/api_booking.py
+++ b/rqalpha/mod/rqalpha_mod_sys_booking/api_booking.py
@@ -32,12 +32,6 @@ from . import mod_name
@export_as_api... | remove phase check in api_booking | ricequant_rqalpha | train |
71344b478282222132104081833dfcce687692f2 | diff --git a/lib/rscons/builders/program.rb b/lib/rscons/builders/program.rb
index <HASH>..<HASH> 100644
--- a/lib/rscons/builders/program.rb
+++ b/lib/rscons/builders/program.rb
@@ -17,24 +17,22 @@ module Rscons
def run(target, sources, cache, env, vars = {})
# build sources to linkable objects
obje... | Program: do not check env.build_sources() return value (it will raise an exception if something was wrong) | holtrop_rscons | train |
b7930a11ab0068661dbad602c208f9fe78ff7681 | diff --git a/mempool/estimatefee.go b/mempool/estimatefee.go
index <HASH>..<HASH> 100644
--- a/mempool/estimatefee.go
+++ b/mempool/estimatefee.go
@@ -45,7 +45,7 @@ const (
// it will provide fee estimations.
DefaultEstimateFeeMinRegisteredBlocks = 3
- bytePerKb = 1024
+ bytePerKb = 1000
btcPerSatoshi = 1E-8
... | mempool/estimatefee: make 1 Kb = <I> bytes
This commit changes the value of bytesPerKb to <I> from <I>.
This is done to ensure consistency between the fee estimator
and the mempool, where the feeRate is set to
fee * <I> / serializedSize | btcsuite_btcd | train |
6da446bfa9998f9ecfcbdf272072301ec695382d | diff --git a/lib/okcomputer/built_in_checks/size_threshold_check.rb b/lib/okcomputer/built_in_checks/size_threshold_check.rb
index <HASH>..<HASH> 100644
--- a/lib/okcomputer/built_in_checks/size_threshold_check.rb
+++ b/lib/okcomputer/built_in_checks/size_threshold_check.rb
@@ -2,6 +2,7 @@ module OKComputer
class Si... | Switch all uses of name outside of size threshold check to use registrant_name meaning the name a check is registered under | sportngin_okcomputer | train |
a1aa0ed9d47dc9b34cf560c1489b2df243082988 | diff --git a/lib/i18n/backend/fallbacks.rb b/lib/i18n/backend/fallbacks.rb
index <HASH>..<HASH> 100644
--- a/lib/i18n/backend/fallbacks.rb
+++ b/lib/i18n/backend/fallbacks.rb
@@ -35,11 +35,11 @@ module I18n
# usual.
#
# The default option takes precedence over fallback locales
- # only when it... | The default option takes precedence over fallback locales only when it's a Symbol. When it's a String or a Proc it is evaluated last after all the fallback locales have been tried. | ruby-i18n_i18n | train |
e4696bb47adc1334b3e862642019dafbfb8a2ebe | diff --git a/src/CRUDlex/CRUDMySQLData.php b/src/CRUDlex/CRUDMySQLData.php
index <HASH>..<HASH> 100644
--- a/src/CRUDlex/CRUDMySQLData.php
+++ b/src/CRUDlex/CRUDMySQLData.php
@@ -136,8 +136,6 @@ class CRUDMySQLData extends CRUDData {
if ($result) {
$entity->set($field,
... | not getting the reference when fetching it won't happen due to DB constraints | philiplb_CRUDlex | train |
0b45b84bb375fbbf2ba75bfba5e605940ce46e3a | diff --git a/engine/src/main/java/org/camunda/bpm/dmn/engine/impl/transform/DefaultDmnTransform.java b/engine/src/main/java/org/camunda/bpm/dmn/engine/impl/transform/DefaultDmnTransform.java
index <HASH>..<HASH> 100644
--- a/engine/src/main/java/org/camunda/bpm/dmn/engine/impl/transform/DefaultDmnTransform.java
+++ b/e... | chore(engine): improve logging on unsupported decision tables | camunda_camunda-engine-dmn | train |
8fdd34d43021688bfee97cf3e0c132bd21c7967d | diff --git a/salt/crypt.py b/salt/crypt.py
index <HASH>..<HASH> 100644
--- a/salt/crypt.py
+++ b/salt/crypt.py
@@ -206,8 +206,8 @@ def get_rsa_pub_key(path):
'''
log.debug('salt.crypt.get_rsa_pub_key: Loading public key')
if HAS_M2:
- with salt.utils.files.fopen(path) as f:
- data = sal... | m2crypto open file in rb mode for pub key | saltstack_salt | train |
f73c6217bb18d2bba7e0869f1feed702f79dd7ae | diff --git a/src/main/java/pl/nort/GitConfigurationService.java b/src/main/java/pl/nort/GitConfigurationService.java
index <HASH>..<HASH> 100644
--- a/src/main/java/pl/nort/GitConfigurationService.java
+++ b/src/main/java/pl/nort/GitConfigurationService.java
@@ -11,6 +11,13 @@ public class GitConfigurationService imple... | remove tmp directory before cloning repo | cfg4j_cfg4j | train |
20970a52677e7fd3a1b72f14225d8d24d381a625 | diff --git a/server/webapp/WEB-INF/rails.new/spec/javascripts/value_stream_map_renderer_spec.js b/server/webapp/WEB-INF/rails.new/spec/javascripts/value_stream_map_renderer_spec.js
index <HASH>..<HASH> 100644
--- a/server/webapp/WEB-INF/rails.new/spec/javascripts/value_stream_map_renderer_spec.js
+++ b/server/webapp/WE... | Fix test: Do not assert on the non existent span for stage name. | gocd_gocd | train |
c1f3f8e725132499d1161a59b9dc1645b5c80504 | diff --git a/phat-server/src/main/java/phat/server/microphone/TCPAudioMicroServer.java b/phat-server/src/main/java/phat/server/microphone/TCPAudioMicroServer.java
index <HASH>..<HASH> 100644
--- a/phat-server/src/main/java/phat/server/microphone/TCPAudioMicroServer.java
+++ b/phat-server/src/main/java/phat/server/micro... | Send Audio <I> Hz and with little noise | Grasia_phatsim | train |
fa971e497bf40594235662bf1acc5728d1a67f4a | diff --git a/doc/conf.py b/doc/conf.py
index <HASH>..<HASH> 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -60,7 +60,7 @@ copyright = '2014-2015, Benjamin Hodgson'
# The short X.Y version.
version = '0.11'
# The full version, including alpha/beta/rc tags.
-release = '0.11.0'
+release = '0.11.1'
# The language for ... | Increment version to <I> | benjamin-hodgson_Contexts | train |
33dc483f728b97624f1a7489af2a7c52a7798617 | diff --git a/src/main/java/net/openhft/chronicle/map/TcpReplicator.java b/src/main/java/net/openhft/chronicle/map/TcpReplicator.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/openhft/chronicle/map/TcpReplicator.java
+++ b/src/main/java/net/openhft/chronicle/map/TcpReplicator.java
@@ -847,7 +847,7 @@ class Tcp... | HCOLL-<I> added resizeBuffer() | OpenHFT_Chronicle-Map | train |
7a4e41e077915242b8a072d6807d3c67cd3c0a7a | diff --git a/templates/vue/application/src/router.js b/templates/vue/application/src/router.js
index <HASH>..<HASH> 100644
--- a/templates/vue/application/src/router.js
+++ b/templates/vue/application/src/router.js
@@ -75,10 +75,15 @@ const router = new Router({
});
router.beforeEach((to, from, next) => {
+
+ if (... | Add redirect from login-form to home view for authenticated user (#<I>) | DevExpress_devextreme-cli | train |
d80bf0e3556cc384733bd8b73926f77aa375c9d3 | diff --git a/openquake/calculators/ebrisk.py b/openquake/calculators/ebrisk.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/ebrisk.py
+++ b/openquake/calculators/ebrisk.py
@@ -216,7 +216,7 @@ class EbriskCalculator(event_based.EventBasedCalculator):
def check_number_loss_curves(self):
"""
- ... | Improved docstring [skip CI] | gem_oq-engine | train |
c7f4424cdf17d47b3eeca92619b5cf8cde573217 | diff --git a/ceph_deploy/conf/cephdeploy.py b/ceph_deploy/conf/cephdeploy.py
index <HASH>..<HASH> 100644
--- a/ceph_deploy/conf/cephdeploy.py
+++ b/ceph_deploy/conf/cephdeploy.py
@@ -22,6 +22,7 @@ cd_conf_template = """
# Repositories section
#
+# yum repos:
# [myrepo]
# baseurl = https://user:[email protected]/rh... | add apt repo examples to conf stub | ceph_ceph-deploy | train |
5c7d776ed8c93498832f81d24fdf7c1782d96717 | diff --git a/views/js/preview/actionBarHook.js b/views/js/preview/actionBarHook.js
index <HASH>..<HASH> 100644
--- a/views/js/preview/actionBarHook.js
+++ b/views/js/preview/actionBarHook.js
@@ -67,6 +67,7 @@ define([
}
});
});
+ $(".preview-container").remove();
}); | added method to remove iframe from DOM | oat-sa_extension-tao-item | train |
7c57814949ec51b59cc2d1c31ea5401e7a3323c9 | diff --git a/gifi/feature.py b/gifi/feature.py
index <HASH>..<HASH> 100644
--- a/gifi/feature.py
+++ b/gifi/feature.py
@@ -104,7 +104,7 @@ def _finish():
raise CommandException('Rebase finished with an error, please fix it manually and then feature-finish once again.')
_push_working_branch(config, repo)
... | Do not pass repo to discard command as it does not work from CLI | kokosing_git-gifi | train |
68145aa91a8ab3545aaeb32ff94768e060d0a8c4 | diff --git a/lionengine-game-platform/src/main/java/com/b3dgs/lionengine/game/platform/CameraPlatform.java b/lionengine-game-platform/src/main/java/com/b3dgs/lionengine/game/platform/CameraPlatform.java
index <HASH>..<HASH> 100644
--- a/lionengine-game-platform/src/main/java/com/b3dgs/lionengine/game/platform/CameraPla... | #<I>: Glitch fixed. | b3dgs_lionengine | train |
991620375669d2bcae20e1aa44bb07435aa0852c | diff --git a/src/dotenvy/cli.py b/src/dotenvy/cli.py
index <HASH>..<HASH> 100755
--- a/src/dotenvy/cli.py
+++ b/src/dotenvy/cli.py
@@ -8,6 +8,7 @@ from future import standard_library
standard_library.install_aliases()
import argparse
+import os
import subprocess
import sys
@@ -26,7 +27,8 @@ def main(stdout=sys.... | Fix cli tool doesn't use full env | chickenzord_dotenvy | train |
05eb4425fa3bffca94a9fed380d265316d582b66 | diff --git a/spec/helper.rb b/spec/helper.rb
index <HASH>..<HASH> 100644
--- a/spec/helper.rb
+++ b/spec/helper.rb
@@ -1,6 +1,8 @@
unless ENV['CI']
require 'simplecov'
- SimpleCov.start
+ SimpleCov.start do
+ add_filter 'spec'
+ end
end
require 'base64'
require 'mtgox' | Don't include specs in code coverage report | sferik_mtgox | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.