hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
3b4683a9cdae61c8120bf36719c1ae6d0403a35e | diff --git a/lib/mongoid/slug/criterion_optional_extensions.rb b/lib/mongoid/slug/criterion_optional_extensions.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/slug/criterion_optional_extensions.rb
+++ b/lib/mongoid/slug/criterion_optional_extensions.rb
@@ -6,7 +6,7 @@ module Mongoid::Criterion::ForSlug
# resembl... | Calling super without arguments is sufficient here (it passes the original arguments through) | mongoid_mongoid-slug | train |
251b16908fb315c650af7002a6fc2fe0343e564c | diff --git a/app/app.go b/app/app.go
index <HASH>..<HASH> 100644
--- a/app/app.go
+++ b/app/app.go
@@ -2390,7 +2390,7 @@ func (app *App) Shell(opts provision.ExecOptions) error {
return provision.ProvisionerNotSupported{Prov: prov, Action: "running shell"}
}
opts.App = app
- opts.Cmds = cmdsForExec("bash -l")
+ ... | feat(app/shell): fallback to dash when bash is not found | tsuru_tsuru | train |
ee511bb76dbd7c432b13d0b0e125d8c88d7f61b9 | diff --git a/static/js/webirc.js b/static/js/webirc.js
index <HASH>..<HASH> 100644
--- a/static/js/webirc.js
+++ b/static/js/webirc.js
@@ -206,7 +206,7 @@ webircApp.directive('chatlog', function() {
case 'NickChange':
return basicText('activity_info', '* ' + activity.oldNickname + ' is now known as ' + activit... | changed how incoming notices appear: -nick- msg | pavben_WebIRC | train |
22987e07453f3dbdb86f4b0a1ae98cb423aaf0a7 | diff --git a/examples/lstm_chime.py b/examples/lstm_chime.py
index <HASH>..<HASH> 100644
--- a/examples/lstm_chime.py
+++ b/examples/lstm_chime.py
@@ -52,10 +52,8 @@ def batches(dataset):
e = theanets.Experiment(
theanets.recurrent.Classifier,
- layers=(39, 500, 51),
- recurrent_layers=(0, 1),
+ layers... | Update lstm example with new recurrent layer definitions. | lmjohns3_theanets | train |
342cb9053ef3f065f26949950fb25ee196a6b23b | diff --git a/src/utils/deepMerge.js b/src/utils/deepMerge.js
index <HASH>..<HASH> 100644
--- a/src/utils/deepMerge.js
+++ b/src/utils/deepMerge.js
@@ -1,8 +1,12 @@
-import { mergeDeepRight } from 'ramda';
+import { isNil, mergeDeepWith } from 'ramda';
+
+const merge = (a, b) => {
+ return isNil(b) ? a : b;
+};
cons... | Gracefully handle undefined styles (#<I>) | diegomura_react-pdf | train |
39bd29a4cd24d45361f065ff1f3b8537378d5380 | diff --git a/common/ledger/blkstorage/blockindex_test.go b/common/ledger/blkstorage/blockindex_test.go
index <HASH>..<HASH> 100644
--- a/common/ledger/blkstorage/blockindex_test.go
+++ b/common/ledger/blkstorage/blockindex_test.go
@@ -444,11 +444,3 @@ func verifyTxIDKeyDecodable(t *testing.T, txIDKey []byte, expectedTx... | Remove dead struct from blockindex_test | hyperledger_fabric | train |
7f3271fb8e948c7980a2e6fdcda355b9f2b144cf | diff --git a/packages/builder/utils/ProgressBar.js b/packages/builder/utils/ProgressBar.js
index <HASH>..<HASH> 100644
--- a/packages/builder/utils/ProgressBar.js
+++ b/packages/builder/utils/ProgressBar.js
@@ -29,7 +29,7 @@ module.exports = class ProgressBar {
const empty_bar = this.get_bar(empty_bar_length, '-')... | [builder] - fix progress process stdout - hotfix :fire: | ciffi_ciffi-js | train |
ef130f3aaab38af1f1c8b61b8cf54a9bd6c4c2bf | diff --git a/src/components/view.js b/src/components/view.js
index <HASH>..<HASH> 100644
--- a/src/components/view.js
+++ b/src/components/view.js
@@ -10,11 +10,14 @@ export default {
render (h, { props, children, parent, data }) {
data.routerView = true
+ const name = props.name
const route = parent.... | <router-view>: keep previous view when tree is toggled inactive but kept-alive. (partially address vuejs/vue#<I>) | vuejs_vue-router | train |
f6a8c95428ee71c5641477d0d3ab1c53c5f708e5 | diff --git a/argcomplete/completers.py b/argcomplete/completers.py
index <HASH>..<HASH> 100644
--- a/argcomplete/completers.py
+++ b/argcomplete/completers.py
@@ -85,7 +85,7 @@ class _FilteredFilesCompleter(object):
A predicate accepts as its only argument a candidate path and either
accepts it or re... | Removed assertion at _FilteredFilesCompleter | kislyuk_argcomplete | train |
2e767f7adfed7569d6e583c8fdf6de4a2d0b9ab2 | diff --git a/index/postings.go b/index/postings.go
index <HASH>..<HASH> 100644
--- a/index/postings.go
+++ b/index/postings.go
@@ -1126,6 +1126,22 @@ func (f *segmentTermsEnumFrame) rewind() {
}
}
+func (f *segmentTermsEnumFrame) next() bool {
+ if f.isLeafBlock {
+ return f.nextLeaf()
+ }
+ return f.nextNonLeaf(... | migrate BTTReader's internal methods | balzaczyy_golucene | train |
5ad5cd9b6e34697abd3763d8a54ef8ab88fc2140 | diff --git a/tests/unit/pydsl_test.py b/tests/unit/pydsl_test.py
index <HASH>..<HASH> 100644
--- a/tests/unit/pydsl_test.py
+++ b/tests/unit/pydsl_test.py
@@ -66,7 +66,11 @@ state('A').service.running(name='apache')
# 2 rather than 1 because pydsl adds an extra no-op state
# declaration.
- s ... | Fix a bug in the pydsl test case. | saltstack_salt | train |
54fd4c88f5347496ecc93b90d274eb5b9caa023e | diff --git a/blockstack_cli_0.14.1/blockstack_client/backend/nameops.py b/blockstack_cli_0.14.1/blockstack_client/backend/nameops.py
index <HASH>..<HASH> 100644
--- a/blockstack_cli_0.14.1/blockstack_client/backend/nameops.py
+++ b/blockstack_cli_0.14.1/blockstack_client/backend/nameops.py
@@ -20,7 +20,7 @@ from .queue... | estimate update transaction fees from the payment address, if the
private key is unavailable. Also, account for the extra owner input
that will go into an update that follows a register. | blockstack_blockstack-core | train |
447e6d065e36b47d7ecfab063f3747a86a35e279 | diff --git a/src/Tweech/Subscribers/ChatMessageSubscriber.php b/src/Tweech/Subscribers/ChatMessageSubscriber.php
index <HASH>..<HASH> 100644
--- a/src/Tweech/Subscribers/ChatMessageSubscriber.php
+++ b/src/Tweech/Subscribers/ChatMessageSubscriber.php
@@ -26,7 +26,7 @@ class ChatMessageSubscriber extends EventSubscriber... | Renamed getCommandAndRegister getCommandAndExecute | raideer_tweech-framework | train |
2c441c54baf52776dc1e3dfbc0217b50ba385814 | diff --git a/law/cli/run.py b/law/cli/run.py
index <HASH>..<HASH> 100644
--- a/law/cli/run.py
+++ b/law/cli/run.py
@@ -49,10 +49,7 @@ def execute(args):
if not info:
abort("task family '{}' not found in db".format(args.task_family))
modid, task_family, _ = info
- try:
- ... | Typo in tensorflow contrib. | riga_law | train |
5a56b5718ec7a77e4e613c8aadc44b9b387892c6 | diff --git a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/sqli... | Remove `delete_sql` in sqlite3 adapter
`sql += " WHERE 1=1"` was introduced in <I>cb<I>.
But it is not needed. ref <URL> | rails_rails | train |
1df3bce153b33b41a108697708b7194c6638d97a | diff --git a/src/main/java/com/coremedia/iso/boxes/h264/AvcConfigurationBox.java b/src/main/java/com/coremedia/iso/boxes/h264/AvcConfigurationBox.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/coremedia/iso/boxes/h264/AvcConfigurationBox.java
+++ b/src/main/java/com/coremedia/iso/boxes/h264/AvcConfigurationBo... | restricting the value to 6 bits and replacing <I> (which is too big) with <I> & <I> == <I> which should result the some bit pattern in the output
git-svn-id: <URL> | sannies_mp4parser | train |
1b08c4c187c65a53e5b5de871c9286529f88b94e | diff --git a/test/adapters/shared_tests.rb b/test/adapters/shared_tests.rb
index <HASH>..<HASH> 100644
--- a/test/adapters/shared_tests.rb
+++ b/test/adapters/shared_tests.rb
@@ -46,7 +46,7 @@ module Vanity::Adapters::SharedTests
assert_in_delta(
time,
@subject.get_metric_last... | Relax resolution on adapter timestamp tests
While the mock adapter stores Time instances, other adapters are limited by
their storage layer, usually to 1s accuracy, so we can only assert that
timestamps are accurate to the second. | assaf_vanity | train |
b9ce6eaf2e78fde13b6b873d1da26523a2b4fe8e | diff --git a/system/Database/OCI8/Connection.php b/system/Database/OCI8/Connection.php
index <HASH>..<HASH> 100644
--- a/system/Database/OCI8/Connection.php
+++ b/system/Database/OCI8/Connection.php
@@ -847,4 +847,16 @@ SQL;
}
// --------------------------------------------------------------------
+
+ /**
+ ... | feat: Due to name of the tablespace is not defined in the property when connecting by instance name. | codeigniter4_CodeIgniter4 | train |
14dfcbd3b51e70f9a3067f5416ee10d62957ae6a | diff --git a/test/geotiff.spec.js b/test/geotiff.spec.js
index <HASH>..<HASH> 100644
--- a/test/geotiff.spec.js
+++ b/test/geotiff.spec.js
@@ -137,6 +137,29 @@ describe("mainTests", function() {
});
});
+ it("should work on band interleaved, lzw compressed, and tiled tiffs", function(done) {
+ retrieve("t... | karma test added for float<I>lzw and tiledplanarlzw | geotiffjs_geotiff.js | train |
d5033e8001db902d245e9b156972a1d1a0297c59 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -259,6 +259,7 @@ module.exports = function(grunt) {
grunt.registerTask('build:release', [ 'clean:dist', 'build', 'build:docs', 'compress' ]);
grunt.registerTask('build:npm', [ 'clean:dist', 'build' ]);
gr... | Added "deploy" grunt task | stevenbenner_jquery-powertip | train |
737fcd6a00f75bb63b46e2a31cbfd315a4b1e8b5 | diff --git a/dev/com.ibm.ws.webserver.plugin.utility_fat/fat/src/com/ibm/ws/webserver/plugin/utility/fat/PluginUtilityGenerateTest.java b/dev/com.ibm.ws.webserver.plugin.utility_fat/fat/src/com/ibm/ws/webserver/plugin/utility/fat/PluginUtilityGenerateTest.java
index <HASH>..<HASH> 100644
--- a/dev/com.ibm.ws.webserver.... | wait for LTPA service start before testing remote server | OpenLiberty_open-liberty | train |
88f8514e261edc0614686d7fcf00e48bb299d27e | diff --git a/lib/phony/countries.rb b/lib/phony/countries.rb
index <HASH>..<HASH> 100644
--- a/lib/phony/countries.rb
+++ b/lib/phony/countries.rb
@@ -96,7 +96,8 @@ Phony.define do
# http://en.wikipedia.org/wiki/Telephone_numbers_in_Belgium
#
country '32', trunk('0') |
- match(/^(70|800|90\d)\d+... | Adapt mobile phone splitting of Belgium to respect the specifications | floere_phony | train |
6cf572b35f7a9f4982576d4d80f41d64266b8aef | diff --git a/lib/config/constructor.js b/lib/config/constructor.js
index <HASH>..<HASH> 100644
--- a/lib/config/constructor.js
+++ b/lib/config/constructor.js
@@ -15,17 +15,24 @@ exports.$define = {
}
}
-function Config(package) {
+function Config(options) {
var config = this
var nameSpace = config._nameSpa... | get defaults on new with val | vigour-io_vjs | train |
fc5de47b2b16399d6942a02d77d2dd19d588aff1 | diff --git a/bootstrap-select.js b/bootstrap-select.js
index <HASH>..<HASH> 100644
--- a/bootstrap-select.js
+++ b/bootstrap-select.js
@@ -635,7 +635,7 @@
keyCodeMap = {
32:' ', 48:'0', 49:'1', 50:'2', 51:'3', 52:'4', 53:'5', 54:'6', 55:'7', 56:'8', 57:'9', 59:';',
... | [#<I>] Resolve trailing whitespace | snapappointments_bootstrap-select | train |
b2590cdb59f1690b6fbdc51e07cab1a64e510588 | diff --git a/src/main/java/kr/jm/utils/flow/subscriber/JMSubscriber.java b/src/main/java/kr/jm/utils/flow/subscriber/JMSubscriber.java
index <HASH>..<HASH> 100644
--- a/src/main/java/kr/jm/utils/flow/subscriber/JMSubscriber.java
+++ b/src/main/java/kr/jm/utils/flow/subscriber/JMSubscriber.java
@@ -21,15 +21,23 @@ publi... | refactoring JMSubscriber | JM-Lab_utils-java9 | train |
c5587ececa180147e2ec3076b9ebaac6710bb82e | diff --git a/src/main/java/nl/jqno/equalsverifier/internal/reflection/PackageScanner.java b/src/main/java/nl/jqno/equalsverifier/internal/reflection/PackageScanner.java
index <HASH>..<HASH> 100644
--- a/src/main/java/nl/jqno/equalsverifier/internal/reflection/PackageScanner.java
+++ b/src/main/java/nl/jqno/equalsverifi... | Multiple types: make PackageScanner ignore test classes | jqno_equalsverifier | train |
d44f216c8ac9464b2303781d8f2823850bb5bf61 | diff --git a/python/bigdl/dllib/nn/layer.py b/python/bigdl/dllib/nn/layer.py
index <HASH>..<HASH> 100644
--- a/python/bigdl/dllib/nn/layer.py
+++ b/python/bigdl/dllib/nn/layer.py
@@ -429,7 +429,87 @@ class Layer(JavaValue):
'''
return callJavaFunc(get_spark_context(), self.value.isTraining)
+ def... | feat: quantize a whole graph/modules (#<I>)
* feat: quantize a whole graph/modules
* feat: python supports
* fix: delete unusage | intel-analytics_BigDL | train |
b07d42b3198e187dcf85941c92ddc1dce4756eef | diff --git a/src/main/java/ch/ralscha/extdirectspring/generator/ModelAssociation.java b/src/main/java/ch/ralscha/extdirectspring/generator/ModelAssociation.java
index <HASH>..<HASH> 100644
--- a/src/main/java/ch/ralscha/extdirectspring/generator/ModelAssociation.java
+++ b/src/main/java/ch/ralscha/extdirectspring/gener... | Change model to an optional parameter. Makes it easier for belongsTo and
hasOne associations.
Add some more Javadocs | ralscha_extdirectspring | train |
62984f9beeb82b53b0b40c7856e1a25666f36f42 | diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go
index <HASH>..<HASH> 100644
--- a/cmd/integration/integration.go
+++ b/cmd/integration/integration.go
@@ -258,9 +258,15 @@ func makeTempDirOrDie(prefix string, baseDir string) string {
}
// podsOnMinions returns true when all of the select... | Fix a race in the integration tests. | kubernetes_kubernetes | train |
1a3b4bab6eb9ea361d1ced74c85c762370c809b0 | diff --git a/views/js/controller/viewResult.js b/views/js/controller/viewResult.js
index <HASH>..<HASH> 100644
--- a/views/js/controller/viewResult.js
+++ b/views/js/controller/viewResult.js
@@ -75,7 +75,13 @@ define([
const { file } = response && response.base || {};
if (file && file.uri && !file.dat... | fix: only assign a file content to a vriable if there is some, otherwise void it | oat-sa_extension-tao-outcomeui | train |
632463c310cf19ff2d5879921f95151a492030a1 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -15,6 +15,7 @@ import IifExecutor from './executors/IifExecutor';
import ForEachExecutor from './executors/ForEachExecutor';
import IntervalExecutor from './executors/IntervalExecutor';
import SpawnExecutor ... | Add syntax sugar for sleep executor
The word 'wait' seems better suited to waiting until a certain condition
is met, so 'sleep' seems like a good word to use for this. | ringa-js_ringa | train |
41fda5e1c554fb55c019b3378750a1c62095f8fb | diff --git a/mesh_tensorflow/transformer/universal_transformer.py b/mesh_tensorflow/transformer/universal_transformer.py
index <HASH>..<HASH> 100644
--- a/mesh_tensorflow/transformer/universal_transformer.py
+++ b/mesh_tensorflow/transformer/universal_transformer.py
@@ -59,6 +59,8 @@ class UTLayerStack(transformer.Tran... | Implemented a gated transformer layer.
PiperOrigin-RevId: <I> | tensorflow_mesh | train |
fdc9758672d285af895ebdcfb7e1f1f2c5ccb63e | diff --git a/vstutils/api/base.py b/vstutils/api/base.py
index <HASH>..<HASH> 100644
--- a/vstutils/api/base.py
+++ b/vstutils/api/base.py
@@ -359,6 +359,21 @@ class GenericViewSet(QuerySetMixin, vsets.GenericViewSet):
)
@classmethod
+ def get_view_methods(cls, detail=False):
+ methods = []
+ ... | Fix bug with nested objects methods
In nested views by default creates all `ModelViewSet`. It's problem for
`ReadOnlyViewSet` and `HistoryViewSet` views.
Fix in decorator check methods in nested view and add methods only if
this method exists. | vstconsulting_vstutils | train |
c3a7e2012b580dbbd6437866554be2f3ee065e4d | diff --git a/src/JsFunctionsScanner.php b/src/JsFunctionsScanner.php
index <HASH>..<HASH> 100644
--- a/src/JsFunctionsScanner.php
+++ b/src/JsFunctionsScanner.php
@@ -43,18 +43,12 @@ final class JsFunctionsScanner extends GettextJsFunctionsScanner {
$translations = $translations[0];
}
- $code = $this->code;
-... | Remove now unneeded workaround in JS scanner
Partially reverts #<I>. | wp-cli_i18n-command | train |
64b825be79c1ff6afb5a6b136c1d7e17fb3ea471 | diff --git a/lib/hutch/broker.rb b/lib/hutch/broker.rb
index <HASH>..<HASH> 100644
--- a/lib/hutch/broker.rb
+++ b/lib/hutch/broker.rb
@@ -15,8 +15,14 @@ module Hutch
end
def connect(options = {})
+ @options = options
set_up_amqp_connection
- set_up_api_connection if options.fetch(:enable_h... | Make it possible to disable HTTP API access
References #<I>. | gocardless_hutch | train |
1f718e2a2382ea47759b96c94e9297ca45fe3c76 | diff --git a/src/Factories/Entity/Host.php b/src/Factories/Entity/Host.php
index <HASH>..<HASH> 100644
--- a/src/Factories/Entity/Host.php
+++ b/src/Factories/Entity/Host.php
@@ -76,6 +76,13 @@ class Host extends AbstractEntity
public $publicEndpoints;
/**
+ * List of instances on host
+ *
+ * @... | Add `instanceId` property to Service and Host | benmag_laravel-rancher | train |
f47df434e30aaf00ad7e14ada2a8ea6081bed25d | diff --git a/salt/client/mixins.py b/salt/client/mixins.py
index <HASH>..<HASH> 100644
--- a/salt/client/mixins.py
+++ b/salt/client/mixins.py
@@ -274,13 +274,13 @@ class SyncClientMixin(object):
# Inject some useful globals to *all* the funciton's global namespace
# only once per module-- not... | Inject globals after verifying the function-- because it might not exist!
Conflicts:
salt/client/mixins.py | saltstack_salt | train |
1d8a34f7532d5fef41d49bd2c720e9b0233c0cfc | diff --git a/lib/Pipe/Asset.php b/lib/Pipe/Asset.php
index <HASH>..<HASH> 100644
--- a/lib/Pipe/Asset.php
+++ b/lib/Pipe/Asset.php
@@ -59,7 +59,7 @@ abstract class Asset
# Public: Returns the asset's basename.
#
- # includeExtensions: Set to false to strip all extensions from the filename (default: true)... | Removed usage of FileUtils class | CHH_pipe | train |
9f598a68afca1c871aa8e40d13f5a235e8c70438 | diff --git a/builtin/providers/scaleway/resource_scaleway_security_group_rule.go b/builtin/providers/scaleway/resource_scaleway_security_group_rule.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/scaleway/resource_scaleway_security_group_rule.go
+++ b/builtin/providers/scaleway/resource_scaleway_security_group_r... | provider/scaleway: fix security_group_rule identification | hashicorp_terraform | train |
74e2488382cd43b0965867c37874cc7262a95316 | diff --git a/did/plugins/gitlab.py b/did/plugins/gitlab.py
index <HASH>..<HASH> 100644
--- a/did/plugins/gitlab.py
+++ b/did/plugins/gitlab.py
@@ -9,15 +9,18 @@ Config example::
url = https://gitlab.com/
token = <authentication-token>
login = <username>
+ ssl_verify = true
The authentication token ... | Make SSL verification for GitLab configurable | psss_did | train |
33ba22b82a14921cc1b48e753417bc1bf382a9d5 | diff --git a/src/Concerns/Dispatchable.php b/src/Concerns/Dispatchable.php
index <HASH>..<HASH> 100644
--- a/src/Concerns/Dispatchable.php
+++ b/src/Concerns/Dispatchable.php
@@ -70,6 +70,7 @@ trait Dispatchable
}
$this->extensions = new Collection();
+ $this->booted = false;
retur... | Reset booted status on finish. | orchestral_extension | train |
4e855415301da35372f89cee9b2416d9fbe652fc | diff --git a/pydev_imports.py b/pydev_imports.py
index <HASH>..<HASH> 100644
--- a/pydev_imports.py
+++ b/pydev_imports.py
@@ -1,4 +1,4 @@
-from pydevd_constants import USE_LIB_COPY
+from pydevd_constants import USE_LIB_COPY, izip
try:
@@ -92,7 +92,7 @@ except:
return start
i = 0
- f... | Performance improvements for dealing with large collections. | fabioz_PyDev.Debugger | train |
cb0ebb4779ba988ba4173cda229a5f0ed0d0c605 | diff --git a/mind-map/scia-reto/src/main/java/com/igormaznitsa/sciareto/ui/MainFrame.java b/mind-map/scia-reto/src/main/java/com/igormaznitsa/sciareto/ui/MainFrame.java
index <HASH>..<HASH> 100644
--- a/mind-map/scia-reto/src/main/java/com/igormaznitsa/sciareto/ui/MainFrame.java
+++ b/mind-map/scia-reto/src/main/java/c... | fixed 'new project' under macosx | raydac_netbeans-mmd-plugin | train |
852321f395bb5150776abeb5a05c840f92c558c9 | diff --git a/classes/PodsData.php b/classes/PodsData.php
index <HASH>..<HASH> 100644
--- a/classes/PodsData.php
+++ b/classes/PodsData.php
@@ -2024,22 +2024,30 @@ class PodsData {
if ( 'taxonomy' == $traverse[ 'type' ] ) {
$rel_tt_alias = 'rel_tt_' . $field_joined;
- $the_join = "
- ... | Taxonomy data table support for #<I> | pods-framework_pods | train |
80e0994b62746a285221a61ffca7d9a0aaab28b9 | diff --git a/src/ORM/ResultSet.php b/src/ORM/ResultSet.php
index <HASH>..<HASH> 100644
--- a/src/ORM/ResultSet.php
+++ b/src/ORM/ResultSet.php
@@ -313,6 +313,11 @@ class ResultSet implements ResultSetInterface
*/
public function serialize()
{
+ if (!$this->_useBuffering) {
+ $msg = 'Yo... | added exception for serialize an unbuffered result set, and also a test for this edge case | cakephp_cakephp | train |
49d7c212dda5f198ee472bd05af60d1659ba65e4 | diff --git a/lib/docker.js b/lib/docker.js
index <HASH>..<HASH> 100644
--- a/lib/docker.js
+++ b/lib/docker.js
@@ -205,7 +205,8 @@ function createDockerFile() {
let npmCommand = 'npm';
if (nodeVersion !== 'system') {
- const nvmDownloadURI = 'https://raw.githubusercontent.com/creationix/nvm/v0.33.6/i... | Docker: Update to NVM <I> | wikimedia_service-runner | train |
beefd88fce154c9f46c62b283d35c1127ce24589 | diff --git a/src/test/java/net/openhft/chronicle/map/CHMTest5.java b/src/test/java/net/openhft/chronicle/map/CHMTest5.java
index <HASH>..<HASH> 100644
--- a/src/test/java/net/openhft/chronicle/map/CHMTest5.java
+++ b/src/test/java/net/openhft/chronicle/map/CHMTest5.java
@@ -86,62 +86,10 @@ public class CHMTest5 {
... | refdactored the test code a little | OpenHFT_Chronicle-Map | train |
f9ae1e2ea9ee90558edce5e9b5828e363a371c64 | diff --git a/swarm_dial.go b/swarm_dial.go
index <HASH>..<HASH> 100644
--- a/swarm_dial.go
+++ b/swarm_dial.go
@@ -255,16 +255,16 @@ func (s *Swarm) gatedDialAttempt(ctx context.Context, p peer.ID) (*Conn, error)
return conn, nil
}
+ // if this peer has been backed off, lets get out of here
+ if s.backf.Backoff... | swarm: perform backoff check before taking dialsync lock | libp2p_go-libp2p-swarm | train |
83f447e6a6c70756b072e1fc6f5831e0fe8723a6 | diff --git a/pkg/kubelet/dockertools/docker_manager.go b/pkg/kubelet/dockertools/docker_manager.go
index <HASH>..<HASH> 100644
--- a/pkg/kubelet/dockertools/docker_manager.go
+++ b/pkg/kubelet/dockertools/docker_manager.go
@@ -1529,6 +1529,8 @@ func (dm *DockerManager) killContainer(containerID kubecontainer.ContainerI... | Send a pod event if preStop hook did not finish in time. | kubernetes_kubernetes | train |
7ecc171e18a532e660f4d50ae16267758eeff167 | diff --git a/src/SubscribePro/Service/PaymentProfile/PaymentProfileService.php b/src/SubscribePro/Service/PaymentProfile/PaymentProfileService.php
index <HASH>..<HASH> 100644
--- a/src/SubscribePro/Service/PaymentProfile/PaymentProfileService.php
+++ b/src/SubscribePro/Service/PaymentProfile/PaymentProfileService.php
@... | Use v2 vault APIs for payment profiles wherever possible. | subscribepro_subscribepro-php | train |
fafe97c1c1990aeebfe517cea450bac4c258a04b | diff --git a/pipeline/packager.py b/pipeline/packager.py
index <HASH>..<HASH> 100644
--- a/pipeline/packager.py
+++ b/pipeline/packager.py
@@ -1,5 +1,5 @@
from django.contrib.staticfiles.storage import staticfiles_storage
-from django.contrib.staticfiles.finders import find
+from django.contrib.staticfiles.finders imp... | Improved packager.compile() to handle s3 storage when compiler generates output to the local one. This patch copies the generated file. (#<I>) | jazzband_django-pipeline | train |
d44330bb19a59b303ff810b19ac5bcda0f5cb539 | diff --git a/pkg/cmd/server/start.go b/pkg/cmd/server/start.go
index <HASH>..<HASH> 100644
--- a/pkg/cmd/server/start.go
+++ b/pkg/cmd/server/start.go
@@ -35,7 +35,7 @@ type CustomMetricsAdapterServerOptions struct {
func NewCustomMetricsAdapterServerOptions() *CustomMetricsAdapterServerOptions {
o := &CustomMetri... | Update adapter with Kubernetes <I> | kubernetes-incubator_custom-metrics-apiserver | train |
d0f91a9f9939909c4b45182218b8b3dac83538e4 | diff --git a/impl-base/src/main/java/org/jboss/shrinkwrap/impl/base/container/ContainerBase.java b/impl-base/src/main/java/org/jboss/shrinkwrap/impl/base/container/ContainerBase.java
index <HASH>..<HASH> 100644
--- a/impl-base/src/main/java/org/jboss/shrinkwrap/impl/base/container/ContainerBase.java
+++ b/impl-base/src... | SHRINKWRAP-<I> Changed to use addPackage with Filter to be able to include anonymous inner classes. | shrinkwrap_shrinkwrap | train |
94146acbc1d22be269496f9c39189fc314ad9ac1 | diff --git a/django_extensions/management/commands/shell_plus.py b/django_extensions/management/commands/shell_plus.py
index <HASH>..<HASH> 100644
--- a/django_extensions/management/commands/shell_plus.py
+++ b/django_extensions/management/commands/shell_plus.py
@@ -132,7 +132,7 @@ class Command(NoArgsCommand):
... | kernel spec PYTHONPATH should override env from the shell if it's not empty | django-extensions_django-extensions | train |
ef1aa4baba9886ae745cfebaf9d94c4571ca25dd | diff --git a/lib/http/public/javascripts/job.js b/lib/http/public/javascripts/job.js
index <HASH>..<HASH> 100644
--- a/lib/http/public/javascripts/job.js
+++ b/lib/http/public/javascripts/job.js
@@ -187,7 +187,6 @@ Job.prototype.renderUpdate = function(){
// attempts
if (this.attempts.made) {
- console.log... | Implemented redis portion of `Job.attempts(n)` | Automattic_kue | train |
8dac79734c60922035b09823604a42783f46a12f | diff --git a/owslib/coverage/wcs100.py b/owslib/coverage/wcs100.py
index <HASH>..<HASH> 100644
--- a/owslib/coverage/wcs100.py
+++ b/owslib/coverage/wcs100.py
@@ -135,7 +135,7 @@ class WebCoverageService_1_0_0(WCSBase):
u = urlopen(base_url + data)
except HTTPError, e: #Some servers may set the ht... | correction: did not mean to append +data to e.read() | geopython_OWSLib | train |
ecf9b8a70fc9cfe4175e5d11ecef737d080b4366 | diff --git a/lib/sensor.js b/lib/sensor.js
index <HASH>..<HASH> 100644
--- a/lib/sensor.js
+++ b/lib/sensor.js
@@ -605,12 +605,8 @@ MonitoringConfig.prototype.isModified = function(configProperty) {
return Object.keys(this._dirty).length > 0;
}
-MonitoringConfig.prototype.resetModified = function(configProperty... | Removes ability to merge into a monitoring config
It turns out that doing the merge right is already a little brittle, but
breaks down completely once we allow "virtual" properties for which the
accessors delegate to another object. So I'm removing it. | hlapp_wirelesstags-js | train |
4dfd1b71fe9ff54f269636bfa6d2f718681069fc | diff --git a/TYPO3.TYPO3CR/Tests/Functional/Eel/FlowQueryOperations/ParentsUntilOperationTest.php b/TYPO3.TYPO3CR/Tests/Functional/Eel/FlowQueryOperations/ParentsUntilOperationTest.php
index <HASH>..<HASH> 100644
--- a/TYPO3.TYPO3CR/Tests/Functional/Eel/FlowQueryOperations/ParentsUntilOperationTest.php
+++ b/TYPO3.TYPO... | [TASK] Add new test case to cover recent bug | neos_neos-development-collection | train |
ba05ab619a7399435af7c40f46e263cfc921c299 | diff --git a/docs/src/pages/demos/tables/BasicTable.js b/docs/src/pages/demos/tables/BasicTable.js
index <HASH>..<HASH> 100644
--- a/docs/src/pages/demos/tables/BasicTable.js
+++ b/docs/src/pages/demos/tables/BasicTable.js
@@ -58,6 +58,13 @@ function BasicTable(props) {
</TableRow>
);
... | [TableRow] Adjust CSS for components other than <tr> (#<I>) | mui-org_material-ui | train |
487febed0cbc31b3595b3d126e79b0c32deface5 | diff --git a/java/core/libjoynr/src/main/java/io/joynr/capabilities/GlobalCapabilitiesDirectoryClient.java b/java/core/libjoynr/src/main/java/io/joynr/capabilities/GlobalCapabilitiesDirectoryClient.java
index <HASH>..<HASH> 100644
--- a/java/core/libjoynr/src/main/java/io/joynr/capabilities/GlobalCapabilitiesDirectoryC... | [Java] unregister capability synchronously
Previously with async unregister, the message sender was being shut
down faster than the async message was being sent, causing the
unregister to be dropped.
Change-Id: I3f7ddeed<I>dd<I>cf<I>c8e<I> | bmwcarit_joynr | train |
243ff65d528497c3136136b0686cd028d62bbc6f | diff --git a/schedula/utils/drw/__init__.py b/schedula/utils/drw/__init__.py
index <HASH>..<HASH> 100644
--- a/schedula/utils/drw/__init__.py
+++ b/schedula/utils/drw/__init__.py
@@ -371,15 +371,21 @@ class FolderNode(object):
res = {}
yield from sorted(res.items())
- def _filters(self, name=... | feat(sol): Add input value of filters in solution. | vinci1it2000_schedula | train |
af016d80c2fd115a479d5b23ad5a42c94e6c50cb | diff --git a/implementations/micrometer-registry-elastic/src/test/java/io/micrometer/elastic/ElasticMeterRegistryTest.java b/implementations/micrometer-registry-elastic/src/test/java/io/micrometer/elastic/ElasticMeterRegistryTest.java
index <HASH>..<HASH> 100644
--- a/implementations/micrometer-registry-elastic/src/tes... | Fix ElasticMeterRegistryTest.writeMeter() | micrometer-metrics_micrometer | train |
409b5e6194dfb8d3e93eab47f7f7f9b76ce27ff5 | diff --git a/src/indices/neighborhood/outbound.js b/src/indices/neighborhood/outbound.js
index <HASH>..<HASH> 100644
--- a/src/indices/neighborhood/outbound.js
+++ b/src/indices/neighborhood/outbound.js
@@ -3,6 +3,7 @@
* =========================================
*/
var typed = require('mnemonist/utils/typed-arrays... | [indices] finer choice of weight attr for WeightedOutboundNeighborhoodIndex | graphology_graphology | train |
8139d15e9882a92e8e9bc5e1532d978e8a7cead4 | diff --git a/tooling/lib/version.js b/tooling/lib/version.js
index <HASH>..<HASH> 100644
--- a/tooling/lib/version.js
+++ b/tooling/lib/version.js
@@ -21,6 +21,7 @@ exports.last = async function last() {
.filter((p) => p !== `@ciscospark/eslint-config`)
.map(getDistTag)))
.sort()
+ .filter()
.map... | chore(tooling): handle packages without disttags | webex_spark-js-sdk | train |
57cd421de3b681b4e401dcc5d965671362663998 | diff --git a/lib/go/thrift/simple_server.go b/lib/go/thrift/simple_server.go
index <HASH>..<HASH> 100644
--- a/lib/go/thrift/simple_server.go
+++ b/lib/go/thrift/simple_server.go
@@ -120,15 +120,14 @@ func (p *TSimpleServer) Listen() error {
func (p *TSimpleServer) AcceptLoop() error {
for {
- select {
- case <-... | THRIFT-<I> Handle errors from Accept() correctly
Client: Go | limingxinleo_thrift | train |
84de7cafca8b850da9b43bb4f19e5058d575dbe4 | diff --git a/core/src/main/java/org/infinispan/CacheImpl.java b/core/src/main/java/org/infinispan/CacheImpl.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/infinispan/CacheImpl.java
+++ b/core/src/main/java/org/infinispan/CacheImpl.java
@@ -433,8 +433,8 @@ public class CacheImpl<K, V> extends CacheSupport... | ISPN-<I> Delegate on configured classloader if no explicit one given | infinispan_infinispan | train |
00bc8ce5c5b2d791f4990eac940b3a5479a8d11e | diff --git a/core/src/main/java/hudson/model/AbstractBuild.java b/core/src/main/java/hudson/model/AbstractBuild.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/model/AbstractBuild.java
+++ b/core/src/main/java/hudson/model/AbstractBuild.java
@@ -425,12 +425,6 @@ public abstract class AbstractBuild<P ex... | [FIXED HUDSON-<I>] don't update lastStable/lastSuccessful symlinks until final
build result is known (after post-build actions).
git-svn-id: <URL> | jenkinsci_jenkins | train |
49d2436abdedef1475cb8911858bf5f5b222cc60 | diff --git a/react-native/react/tabs/more/about-render.mobile.js b/react-native/react/tabs/more/about-render.mobile.js
index <HASH>..<HASH> 100644
--- a/react-native/react/tabs/more/about-render.mobile.js
+++ b/react-native/react/tabs/more/about-render.mobile.js
@@ -1,7 +1,7 @@
'use strict'
/* @flow */
-import Reac... | Move StyleSheet into about-render-mobile | keybase_client | train |
308499dcad383f6bf638862e7402f4c0ea700bd7 | diff --git a/src/tailwind.js b/src/tailwind.js
index <HASH>..<HASH> 100644
--- a/src/tailwind.js
+++ b/src/tailwind.js
@@ -1,6 +1,8 @@
const _ = require('lodash')
const postcss = require('postcss')
const cssnext = require('postcss-cssnext')
+const fs = require('fs')
+
const backgroundColors = require('./generators/... | Always generate responsive rules at end of stylesheet | tailwindcss_tailwindcss | train |
41ecd779ca3668a927ce9057ce554f340e950281 | diff --git a/src/Illuminate/Http/Request.php b/src/Illuminate/Http/Request.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Http/Request.php
+++ b/src/Illuminate/Http/Request.php
@@ -451,9 +451,9 @@ class Request extends SymfonyRequest implements Arrayable, ArrayAccess
$request->headers->replace($from->h... | [9.x] Fix overriding global locale (#<I>)
* Fix overriding global locale
* wip
* formatting
* Update Request.php | laravel_framework | train |
c30fc9c3896b46be8f0054ada527af8c758fe97e | diff --git a/app/templates/ssr/index.js b/app/templates/ssr/index.js
index <HASH>..<HASH> 100644
--- a/app/templates/ssr/index.js
+++ b/app/templates/ssr/index.js
@@ -42,6 +42,37 @@ extension.extendApp({ app })
// this should be last get(), rendering with SSR
app.get('*', (req, res) => {
res.setHeader('Content-Typ... | feat(security:SSR) Add headers
This PR adds optional security headers to the src-sst/index.js
template file (which merely need to be uncommented) and more
importantly adds several critical ones to the docs. | quasarframework_quasar | train |
20360d4e60ee8925f213dd140c328a7ed775cd50 | diff --git a/poet/poet.py b/poet/poet.py
index <HASH>..<HASH> 100755
--- a/poet/poet.py
+++ b/poet/poet.py
@@ -13,7 +13,7 @@ spits out Homebrew resource stanzas.
from __future__ import print_function
import argparse
from collections import OrderedDict
-from hashlib import sha1
+from hashlib import sha256
import jso... | Replace sha1 with sha<I> | tdsmith_homebrew-pypi-poet | train |
aacaf611492ddc602d1dc3a42942893729350b89 | diff --git a/regenmaschine/program.py b/regenmaschine/program.py
index <HASH>..<HASH> 100644
--- a/regenmaschine/program.py
+++ b/regenmaschine/program.py
@@ -45,9 +45,21 @@ class Program:
return cast(List[Dict[str, Any]], data["programs"])
async def start(self, program_id: int) -> Dict[str, Any]:
- ... | Fix bug with programs/zones on 1st generation controllers (#<I>) | bachya_regenmaschine | train |
778ed75954b774f32bfc271e03e219a2d3eb3a9c | diff --git a/kafka_scanner/__init__.py b/kafka_scanner/__init__.py
index <HASH>..<HASH> 100644
--- a/kafka_scanner/__init__.py
+++ b/kafka_scanner/__init__.py
@@ -480,9 +480,9 @@ class KafkaScanner(object):
if not self.must_delete_record(record):
yield record
- def _process_records(se... | move availability of offset and partition to scanner overraideable
method | scrapinghub_kafka-scanner | train |
3b845caba0fbd556502a19f0376fb1aeae7e8d85 | diff --git a/service-worker-registration/index.js b/service-worker-registration/index.js
index <HASH>..<HASH> 100644
--- a/service-worker-registration/index.js
+++ b/service-worker-registration/index.js
@@ -2,8 +2,8 @@ import {
addSuccessHandler
} from 'ember-service-worker/service-worker-registration'
-addSucces... | Immediately add the promise to the window object | topaxi_ember-service-worker-update-notify | train |
3e2c740bf32c2559e6f22503503268a7ed80f1ff | diff --git a/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go b/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go
index <HASH>..<HASH> 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go
@@ -127,7 +127,7 @@ f... | adapt to replication_plan_builder refactor | vitessio_vitess | train |
a95b41f8917755a098b807f7926710bb6966458a | diff --git a/pygeoip/__init__.py b/pygeoip/__init__.py
index <HASH>..<HASH> 100644
--- a/pygeoip/__init__.py
+++ b/pygeoip/__init__.py
@@ -324,7 +324,7 @@ class GeoIP(GeoIPBase):
"""
seek_country = self._seek_country(ipnum)
if seek_country == self._databaseSegments:
- return {}
+ ... | Return None from _get_record() when missing data #<I> | appliedsec_pygeoip | train |
507eaaf8c16690efdc009669a567c90af13db626 | diff --git a/tests/test_nudatus.py b/tests/test_nudatus.py
index <HASH>..<HASH> 100644
--- a/tests/test_nudatus.py
+++ b/tests/test_nudatus.py
@@ -41,7 +41,7 @@ def test_mangle_script():
script = f.read()
assert len(script) > 0
with open('tests/bigscript_mangled.py') as f:
- real_mangled = f.r... | In tests, compare str to str, not str to bytes | ZanderBrown_nudatus | train |
5455b4a6e9a4a1c171cba02919029df3e6a03ae7 | diff --git a/pyemma/_base/logging.py b/pyemma/_base/logging.py
index <HASH>..<HASH> 100644
--- a/pyemma/_base/logging.py
+++ b/pyemma/_base/logging.py
@@ -91,10 +91,5 @@ class Loggable(object):
return remove_logger
def __getstate__(self):
- # do not pickle the logger instance
- d = dict(se... | do not save state of loggable | markovmodel_PyEMMA | train |
de2f9bcfd6f8ab756d7196308fc1ab9695b1c7df | diff --git a/elifetools/rawJATS.py b/elifetools/rawJATS.py
index <HASH>..<HASH> 100644
--- a/elifetools/rawJATS.py
+++ b/elifetools/rawJATS.py
@@ -373,7 +373,10 @@ def sub_article(soup, article_type=None):
return extract_nodes(soup, "sub-article", attr = "article-type", value = article_type)
def decision_letter... | Alternate decision letter naming in the new kitchen sink. | elifesciences_elife-tools | train |
b81053f9b75bfa15c7f2d65160129fd3fa65cb5a | diff --git a/modules/wycs/src/wycs/io/WycsFileStructuredPrinter.java b/modules/wycs/src/wycs/io/WycsFileStructuredPrinter.java
index <HASH>..<HASH> 100644
--- a/modules/wycs/src/wycs/io/WycsFileStructuredPrinter.java
+++ b/modules/wycs/src/wycs/io/WycsFileStructuredPrinter.java
@@ -257,7 +257,7 @@ public class WycsFile... | WYCS: structure wycs file printing is a hit, I think. | Whiley_WhileyCompiler | train |
f60e285677025c8bf65cd4659b00861a3d243aae | diff --git a/sos/utils.py b/sos/utils.py
index <HASH>..<HASH> 100644
--- a/sos/utils.py
+++ b/sos/utils.py
@@ -778,18 +778,21 @@ class ActivityNotifier(threading.Thread):
self.start()
def run(self):
- prog = ProgressBar(desc=self.msg, position=0, bar_format='{desc}', total=100000000)
- ... | Fix progress bar that is messed up by ActivityNotifier #<I> | vatlab_SoS | train |
8834a99362ec9dc602b6bb0b6f5e050ee6ca5883 | diff --git a/examples/shutdown.rb b/examples/shutdown.rb
index <HASH>..<HASH> 100644
--- a/examples/shutdown.rb
+++ b/examples/shutdown.rb
@@ -1,4 +1,4 @@
-# This script allows you to shutdown the bot on command
+# This bot doesn't do anything except for letting a specifically authorised user shutdown the bot on comman... | Clarify the shutdown.rb description | meew0_discordrb | train |
c7bce2d81f23260513b95d89179f4cc683115566 | diff --git a/http.go b/http.go
index <HASH>..<HASH> 100644
--- a/http.go
+++ b/http.go
@@ -3,6 +3,7 @@ package veneur
import (
"hash/fnv"
"net/http"
+ "net/http/pprof"
"sort"
"time"
@@ -21,6 +22,13 @@ func (s *Server) Handler() http.Handler {
mux.Handle(pat.Post("/import"), handleImport(s))
+ // TODO m... | Expose live profiling information when running in debug mode | stripe_veneur | train |
b0a5d4c266ed4117282decf06dc5053190423230 | diff --git a/common/src/main/java/io/netty/util/concurrent/DefaultPromise.java b/common/src/main/java/io/netty/util/concurrent/DefaultPromise.java
index <HASH>..<HASH> 100644
--- a/common/src/main/java/io/netty/util/concurrent/DefaultPromise.java
+++ b/common/src/main/java/io/netty/util/concurrent/DefaultPromise.java
@... | Fix improper synchronization in DefaultPromise. Fixes #<I>
Motivation:
A race detector found that DefaultPromise.listeners is improperly synchronized [1].
Worst case a listener will not be executed when the promise is completed.
Modifications:
Make DefaultPromise.listeners a volatile.
Result:
Hopefully, DefaultPr... | netty_netty | train |
e8a707e761dcfb2974863ddf80a46cbec84d07bf | diff --git a/js/front.js b/js/front.js
index <HASH>..<HASH> 100644
--- a/js/front.js
+++ b/js/front.js
@@ -77,6 +77,7 @@ kiwi.front = {
var netsel = $('#kiwi .formconnectwindow .network'),
netport = $('#kiwi .formconnectwindow .port'),
netssl = $('#kiwi .formconnectwindow ... | Adding support for password protected servers. Issue #<I> | prawnsalad_KiwiIRC | train |
787b5b9a750ca8d8659fb33ae64189ea4e482cd3 | diff --git a/code/email/Order_Email.php b/code/email/Order_Email.php
index <HASH>..<HASH> 100644
--- a/code/email/Order_Email.php
+++ b/code/email/Order_Email.php
@@ -3,11 +3,20 @@
/**
* @Description: Email spefically for communicating with customer about order.
- * @package: ecommerce
+ *
* @authors: Silve... | Order_Email: added comments, introduced get_from_email and get_subject (moved from Order). | silvershop_silvershop-core | train |
3f721d292b8a962d925a0b4813e74749fd323ebf | diff --git a/src/main/java/com/crawljax/util/Helper.java b/src/main/java/com/crawljax/util/Helper.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/crawljax/util/Helper.java
+++ b/src/main/java/com/crawljax/util/Helper.java
@@ -512,33 +512,6 @@ public final class Helper {
}
/**
- * Get the contents of ... | Fix #<I> by removing the getContent that loses line endings because it doesn't seem bo be used by anywhere. | crawljax_crawljax | train |
2cd9516285424e17f07b4e60db50b2f4781946d4 | diff --git a/python_modules/dagster/dagster_tests/core_tests/storage_tests/utils/event_log_storage.py b/python_modules/dagster/dagster_tests/core_tests/storage_tests/utils/event_log_storage.py
index <HASH>..<HASH> 100644
--- a/python_modules/dagster/dagster_tests/core_tests/storage_tests/utils/event_log_storage.py
+++ ... | [easy] Add can_watch() to TestEventLogStorage
Summary: I missed this because the relevant test doesn't run locally, oops.
Test Plan: BK
Reviewers: alangenfeld, jordansanders, sashank, johann
Reviewed By: jordansanders
Differential Revision: <URL> | dagster-io_dagster | train |
87da6baf42e32b8fe55a8565d3c72acff4280eb1 | diff --git a/rejson/client.py b/rejson/client.py
index <HASH>..<HASH> 100644
--- a/rejson/client.py
+++ b/rejson/client.py
@@ -5,6 +5,7 @@ from redis.client import Pipeline
from redis._compat import (long, nativestr)
from .path import Path
+
def str_path(p):
"Returns the string representation of a path if it ... | Add exception handler for .jsonget for non-existent keys (taken in PR#<I>, from @cjtapper) + added the test coverage necessary for the merge | RedisJSON_rejson-py | train |
d802fe305788eee9de59eb7c3c636d31910582ef | diff --git a/cmd/examples/kafka.go b/cmd/examples/kafka.go
index <HASH>..<HASH> 100644
--- a/cmd/examples/kafka.go
+++ b/cmd/examples/kafka.go
@@ -42,14 +42,14 @@ func main() {
go func() {
for {
select {
- case consumedMessage := <-consumer.Incoming:
+ case consumedMessage := <-consumer.Incoming():
lo... | make the kafka lib more interface-friendly, and hence test-friendly | ONSdigital_go-ns | train |
9cf2640ab2251939d4bd600320af857c2c8eebb8 | diff --git a/lib/pkgcloud/core/compute/bootstrapper.js b/lib/pkgcloud/core/compute/bootstrapper.js
index <HASH>..<HASH> 100644
--- a/lib/pkgcloud/core/compute/bootstrapper.js
+++ b/lib/pkgcloud/core/compute/bootstrapper.js
@@ -167,8 +167,9 @@ Bootstrapper.prototype.createServer = function (options) {
}
... | [doc] Update code docs for bootstrapping | pkgcloud_pkgcloud | train |
04edbb0703142f792522e29a557069a3e52705f5 | diff --git a/node/config.go b/node/config.go
index <HASH>..<HASH> 100644
--- a/node/config.go
+++ b/node/config.go
@@ -365,12 +365,11 @@ func (c *Config) TrusterNodes() []*discover.Node {
// parsePersistentNodes parses a list of discovery node URLs loaded from a .json
// file from within the data directory.
-func (... | node: Remove redundant filepath.Join in parsePersistentNodes (#<I>) | ethereum_go-ethereum | train |
b9b85b14ed04801886b4ad2d2987dbe2f046e792 | diff --git a/DependencyInjection/NelmioCorsExtension.php b/DependencyInjection/NelmioCorsExtension.php
index <HASH>..<HASH> 100644
--- a/DependencyInjection/NelmioCorsExtension.php
+++ b/DependencyInjection/NelmioCorsExtension.php
@@ -65,7 +65,9 @@ class NelmioCorsExtension extends Extension
} elseif (isse... | Fix invalid call when allow_methods is not set | nelmio_NelmioCorsBundle | train |
02b4131ce2f807912303a779aa5885ce6e671147 | diff --git a/lib/plugins/aws/package/compile/events/apiGateway/lib/permissions.js b/lib/plugins/aws/package/compile/events/apiGateway/lib/permissions.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/aws/package/compile/events/apiGateway/lib/permissions.js
+++ b/lib/plugins/aws/package/compile/events/apiGateway/lib/perm... | Fix load restApiLogicalId when we have enabled Shared API Gateway | serverless_serverless | train |
a46fec4a588305587aa88b85a10404dcbf1e8468 | diff --git a/plugins/update.py b/plugins/update.py
index <HASH>..<HASH> 100644
--- a/plugins/update.py
+++ b/plugins/update.py
@@ -16,12 +16,18 @@ class Update(HumanBasePlugin):
must_update = plugin.update_version_check()
if must_update:
- plugin.update_version()
+... | Add functionality for writing new VF to the update process. | droope_droopescan | train |
641e3f3bf0185abe35b162950a194590925160c6 | diff --git a/lib/service-manager.js b/lib/service-manager.js
index <HASH>..<HASH> 100644
--- a/lib/service-manager.js
+++ b/lib/service-manager.js
@@ -61,7 +61,7 @@ prototype.handle = function(req, res, next) {
// On first run of pm, the default models will be created in the DB (a single
// executor, etc.). On next... | Mark processes dead more robustly on startup
It used to be only a value of '' was considered to be not-stopped, now,
null and undefined are also considered not-stopped. | strongloop_strong-pm | train |
f6d53abba83b298c069578d867612e3d5e062c67 | diff --git a/client/objects/GitHubCommitCommitAuthor.php b/client/objects/GitHubCommitCommitAuthor.php
index <HASH>..<HASH> 100644
--- a/client/objects/GitHubCommitCommitAuthor.php
+++ b/client/objects/GitHubCommitCommitAuthor.php
@@ -17,6 +17,44 @@ class GitHubCommitCommitAuthor extends GitHubObject
'email' => 'st... | Complete GitHubCommitCommitAuthor.php
Fill in some missing code. | tan-tan-kanarek_github-php-client | train |
431bba3c8af5e651bceec0283d8850a25ea51d0f | diff --git a/numbuf/numbuf/__init__.py b/numbuf/numbuf/__init__.py
index <HASH>..<HASH> 100644
--- a/numbuf/numbuf/__init__.py
+++ b/numbuf/numbuf/__init__.py
@@ -13,7 +13,17 @@ If you are using Anaconda, try fixing this problem by running:
try:
from numbuf.libnumbuf import *
except ImportError as e:
- if not has... | Catch numbuf glibcxx error on python 2. (#<I>) | ray-project_ray | train |
659712b797c1728a69044f09c9ee2381c0e82cfe | diff --git a/src/sap.ui.core/src/sap/ui/model/odata/v2/ODataModel.js b/src/sap.ui.core/src/sap/ui/model/odata/v2/ODataModel.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.core/src/sap/ui/model/odata/v2/ODataModel.js
+++ b/src/sap.ui.core/src/sap/ui/model/odata/v2/ODataModel.js
@@ -6132,7 +6132,7 @@ sap.ui.define([
... | [FIX] v2.ODataModel: resolve canonical shouldn't return undefined
to stay compatible resolving canonical should return
the non canonical path as fallback.
Change-Id: Iefb<I>ef<I>bd<I>ed<I>def<I>fe
BCP: <I> | SAP_openui5 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.