hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
83ee122b2a29a15436f0ae64b5406c1592bcdbe7
diff --git a/src/pfs/drive/driver.go b/src/pfs/drive/driver.go index <HASH>..<HASH> 100644 --- a/src/pfs/drive/driver.go +++ b/src/pfs/drive/driver.go @@ -450,7 +450,7 @@ func (d *driver) AddShard(shard uint64) error { } } d.lock.Lock() - defer d.lock.Lock() + defer d.lock.Unlock() for repoName, dag := range d...
Fix the most idiotic deadlock of my life.
pachyderm_pachyderm
train
0556a995b69e9a8cd090c1793a96dd293beafe8e
diff --git a/lfs/transfer_queue.go b/lfs/transfer_queue.go index <HASH>..<HASH> 100644 --- a/lfs/transfer_queue.go +++ b/lfs/transfer_queue.go @@ -9,7 +9,8 @@ import ( ) const ( - batchSize = 100 + batchSize = 100 + maxBatchRetries = 3 ) type Transferable interface { @@ -161,11 +162,9 @@ func (q *Transfer...
Limit the number of batch endpoint retries
git-lfs_git-lfs
train
146c0c3733158735763539a43b72901b25b712c3
diff --git a/go/stellar/seqno.go b/go/stellar/seqno.go index <HASH>..<HASH> 100644 --- a/go/stellar/seqno.go +++ b/go/stellar/seqno.go @@ -1,6 +1,8 @@ package stellar import ( + "sync" + "github.com/keybase/client/go/libkb" "github.com/keybase/client/go/protocol/stellar1" "github.com/stellar/go/xdr" @@ -11,6 ...
Add ForceSeqnoRefresh to SeqnoProvider (#<I>)
keybase_client
train
4914bfc35068967d144fc735fb7c3f98709a9189
diff --git a/src/Service/CurrencyConverter.php b/src/Service/CurrencyConverter.php index <HASH>..<HASH> 100644 --- a/src/Service/CurrencyConverter.php +++ b/src/Service/CurrencyConverter.php @@ -33,11 +33,11 @@ final class CurrencyConverter extends HttpService { use SupportsHistoricalQueries; - const FREE_LA...
Fixed CurrencyConverter service free API CurrencyConverter API now requires 'api_key' for free queries
florianv_exchanger
train
2b0ea338e251a8ae3e24fba97a5b4809293ae865
diff --git a/lib/jms/message_consumer.rb b/lib/jms/message_consumer.rb index <HASH>..<HASH> 100644 --- a/lib/jms/message_consumer.rb +++ b/lib/jms/message_consumer.rb @@ -9,14 +9,29 @@ module JMS::MessageConsumer # Note: Messages may still be on the queue, but the broker has not supplied any messages # ...
Added Oracle AQ buffered messages support in MessageConsumer
reidmorrison_jruby-jms
train
236a73533a66b69eab8e3a675d5a7b362daa7b45
diff --git a/blimpy/waterfall.py b/blimpy/waterfall.py index <HASH>..<HASH> 100755 --- a/blimpy/waterfall.py +++ b/blimpy/waterfall.py @@ -94,8 +94,7 @@ MAX_BLOB_MB = 1024 # Max size of blob in MB class Waterfall(Filterbank): """ Class for loading and writing blimpy data (.fil, .h5) """ ...
Updated docstring for Waterfall max_load
UCBerkeleySETI_blimpy
train
2f4e5ad0ea319d154e9c873f022c2cf0a9cf522e
diff --git a/bin/mustache-prestatic.js b/bin/mustache-prestatic.js index <HASH>..<HASH> 100755 --- a/bin/mustache-prestatic.js +++ b/bin/mustache-prestatic.js @@ -7,7 +7,7 @@ const { promisify } = require('util'); const yargs = require('yargs'); -const mustachePrestatic = require('../src/index.js'); +const { rende...
Export functions to be able test internal logic
Siilwyn_mustache-prestatic
train
ae07bba92141df352676ff86ca512d2fb7cc7bc4
diff --git a/ninja-core/src/main/java/ninja/Bootstrap.java b/ninja-core/src/main/java/ninja/Bootstrap.java index <HASH>..<HASH> 100644 --- a/ninja-core/src/main/java/ninja/Bootstrap.java +++ b/ninja-core/src/main/java/ninja/Bootstrap.java @@ -209,7 +209,6 @@ public class Bootstrap { @Override ...
Fix after Raphael review Two spaces added between for and ( ; commented block removed ; duplicate multibinder instantiation fixed
ninjaframework_ninja
train
b511f3fd7a55a5eaad044344ff2dd80e3dfd38ba
diff --git a/server/jetstream_cluster_test.go b/server/jetstream_cluster_test.go index <HASH>..<HASH> 100644 --- a/server/jetstream_cluster_test.go +++ b/server/jetstream_cluster_test.go @@ -4893,7 +4893,8 @@ func TestJetStreamCrossAccountMirrorsAndSources(t *testing.T) { t.Fatalf("Unexpected error: %v", err) } ...
fixed unit test to require fc export as well
nats-io_gnatsd
train
4c6f00ed39e754ed1819f1a385d905903d12c11f
diff --git a/src/nwmatcher.js b/src/nwmatcher.js index <HASH>..<HASH> 100644 --- a/src/nwmatcher.js +++ b/src/nwmatcher.js @@ -1444,6 +1444,10 @@ // ID optimization LTR, to reduce selection context searches else if ((parts = selector.match(Optimize.ID)) && (token = parts[1])) { if ((element...
added an early exit in the LTR ID optimization if the selector correspond to the token found.
dperini_nwmatcher
train
42818cdbf804c1e6aff06e9b7b93e4370f648022
diff --git a/pyinfra/api/operation.py b/pyinfra/api/operation.py index <HASH>..<HASH> 100644 --- a/pyinfra/api/operation.py +++ b/pyinfra/api/operation.py @@ -239,7 +239,19 @@ def operation(func=None, pipeline_facts=None): state.meta[host.name]['latest_op_hash'] = op_hash - # Create/update shared (b...
Rework how `run_once` ops work to be handled at build, not deploy, time.
Fizzadar_pyinfra
train
c03f16098a653d582a9c7bbb33a68ea6545cde5b
diff --git a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/cfg/ProcessEngineConfigurationImpl.java b/modules/activiti-engine/src/main/java/org/activiti/engine/impl/cfg/ProcessEngineConfigurationImpl.java index <HASH>..<HASH> 100755 --- a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/cf...
Merge PR #<I> to activiti6 branch
Activiti_Activiti
train
7374db79fc81d9e5119e31bca58dda3bc306968e
diff --git a/lib/nearley-language.js b/lib/nearley-language.js index <HASH>..<HASH> 100644 --- a/lib/nearley-language.js +++ b/lib/nearley-language.js @@ -31,7 +31,7 @@ module.exports = { rule(Comment, ["#", CommentChars, "\n"], NullPP), rule(CommentChars, [], NullPP), - rule(CommentChars, [C...
Fix character-class match in CommentChars
kach_nearley
train
3478b7aec91cd7728e1f70b1c911e4a730992cb5
diff --git a/util.py b/util.py index <HASH>..<HASH> 100644 --- a/util.py +++ b/util.py @@ -306,8 +306,7 @@ def parse_args(cfg): env_args_list[-1] = env_args_list[-1] + '\\' else: env_args_list[-1] = env_args_list[-1] + item - args_list = env_args_list + args_list - + args_list = args_list + env_args_lis...
Temporary hack to get module tests working
ianmiell_shutit
train
6590344867e77ca273a22e2c17d51890ddd5fc1b
diff --git a/core/src/main/java/io/undertow/server/handlers/form/MultiPartParserDefinition.java b/core/src/main/java/io/undertow/server/handlers/form/MultiPartParserDefinition.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/io/undertow/server/handlers/form/MultiPartParserDefinition.java +++ b/core/src/main/ja...
Fix some issues in the multipart parser
undertow-io_undertow
train
a4dd819e2be4bb920bf34b3e0647c3e8398bd8ed
diff --git a/dallinger/data.py b/dallinger/data.py index <HASH>..<HASH> 100644 --- a/dallinger/data.py +++ b/dallinger/data.py @@ -270,8 +270,13 @@ def export(id, local=False, scrub_pii=False): # Register experiment UUID with dallinger register(id, url) + print( + "...
Print notification when export is copied to Amazon S3 storage
Dallinger_Dallinger
train
7fc1f66e41634888eaba982b6e9b6fe878f3cb50
diff --git a/bin/cc.io.file-system/file-system.js b/bin/cc.io.file-system/file-system.js index <HASH>..<HASH> 100644 --- a/bin/cc.io.file-system/file-system.js +++ b/bin/cc.io.file-system/file-system.js @@ -499,7 +499,7 @@ return new io.URI(self.PROTOCOL_FILESYSTEM, null, uri.replace(/\\/g, "/"...
Bugfix in uri parsing.
create-conform_allume
train
369e49aee3987db4ec65cbcea581fbaca4de53bb
diff --git a/photonpump/connection.py b/photonpump/connection.py index <HASH>..<HASH> 100644 --- a/photonpump/connection.py +++ b/photonpump/connection.py @@ -400,6 +400,7 @@ class MessageWriter: async def _write_outbound_messages(self): if self.next: self._logger.debug('Sending message %s', ...
Binary dumps are now logged only for TRACE level
madedotcom_photon-pump
train
2e2fc415f90137dd16aaacd410c9f223a9d471e9
diff --git a/Classes/Queue/DoctrineQueue.php b/Classes/Queue/DoctrineQueue.php index <HASH>..<HASH> 100644 --- a/Classes/Queue/DoctrineQueue.php +++ b/Classes/Queue/DoctrineQueue.php @@ -186,6 +186,7 @@ class DoctrineQueue implements QueueInterface if ($timeout === null) { $timeout = $this->defaul...
BUGFIX: Reconnect Database connection on timeout
Flowpack_jobqueue-doctrine
train
704ad46be8152997800833c9f7445d80934db2b1
diff --git a/sandbox_test.go b/sandbox_test.go index <HASH>..<HASH> 100644 --- a/sandbox_test.go +++ b/sandbox_test.go @@ -10,11 +10,7 @@ import ( "github.com/docker/libnetwork/testutils" ) -func createEmptyCtrlr() *controller { - return &controller{sandboxes: sandboxTable{}} -} - -func getTestEnv(t *testing.T) (N...
Do not allow network creation if datastore is missing - Earlier this was guaranteed by ipam driver intialization which was not creating a global address space if the global datastore was missing. Now that ipam address spaces can be initialized with no backing datastore, insert an explicit check in libnetwork, ...
docker_libnetwork
train
65f58264c25c7c06b2a7455faf3b68f556cf1ee0
diff --git a/src/test/java/io/nats/client/impl/DrainTests.java b/src/test/java/io/nats/client/impl/DrainTests.java index <HASH>..<HASH> 100644 --- a/src/test/java/io/nats/client/impl/DrainTests.java +++ b/src/test/java/io/nats/client/impl/DrainTests.java @@ -467,7 +467,7 @@ public class DrainTests { Co...
Tuning flaky test with drain and queues.
nats-io_java-nats
train
d15c3898af7c8facd8fd64560d6592a934850a93
diff --git a/generator/lib/behavior/concrete_inheritance/ConcreteInheritanceBehavior.php b/generator/lib/behavior/concrete_inheritance/ConcreteInheritanceBehavior.php index <HASH>..<HASH> 100644 --- a/generator/lib/behavior/concrete_inheritance/ConcreteInheritanceBehavior.php +++ b/generator/lib/behavior/concrete_inher...
Fixed problem when pk already exists on parent table
propelorm_Propel
train
3ff313acf6dd65ea7e819a159e0fff1d9edaccdc
diff --git a/system/HTTP/IncomingRequest.php b/system/HTTP/IncomingRequest.php index <HASH>..<HASH> 100644 --- a/system/HTTP/IncomingRequest.php +++ b/system/HTTP/IncomingRequest.php @@ -152,6 +152,32 @@ class IncomingRequest extends Request //-------------------------------------------------------------------- /...
[ci skip] Rearranging methods for more logical grouping
codeigniter4_CodeIgniter4
train
b64e768ad3bf0739d3dcc8905cb1b95d03c3eaf7
diff --git a/src/pycldf/dataset.py b/src/pycldf/dataset.py index <HASH>..<HASH> 100644 --- a/src/pycldf/dataset.py +++ b/src/pycldf/dataset.py @@ -449,11 +449,11 @@ class Dataset(object): def write(self, fname=None, **table_items): if self.sources and not self.properties.get('dc:source'): sel...
bugfix: make sure metadata is written last
cldf_pycldf
train
2f119d69a8cd59948b9358a8040628b5144d2675
diff --git a/CHANGES.md b/CHANGES.md index <HASH>..<HASH> 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ Changes ======= +2.1.4 - 2015-06-04 + + * Support for creating a wheel of packages (@rmb938) + 2.1.3 - 2015-03-28 * Support changing the interpreter path (@jlafon) diff --git a/README.md b/README...
add support to create wheels from python packages
sjkingo_virtualenv-api
train
09679cc32cfad3430d2bc01583e4d8edc2c71540
diff --git a/code/model/SnippetFolder.php b/code/model/SnippetFolder.php index <HASH>..<HASH> 100644 --- a/code/model/SnippetFolder.php +++ b/code/model/SnippetFolder.php @@ -19,8 +19,8 @@ class SnippetFolder extends DataObject { ); public static $allowed_children=array( -...
Re-arranged allow_children to ensure snippets are at the top
UndefinedOffset_silverstripe-codebank
train
4412e8a8a27a23d78061dac20a1b960ead46a318
diff --git a/test/base.js b/test/base.js index <HASH>..<HASH> 100644 --- a/test/base.js +++ b/test/base.js @@ -352,6 +352,18 @@ describe('yeoman.generators.Base', function () { assert.doesNotThrow(dummy.argument.bind(dummy, 'foo', { required: true })); assert.equal(dummy._arguments.length, 1); }); + ...
Test that `#argument`s will be updated Since `#option()` rewrites `this.args`, make sure any `#arguments` will update their values afterwards.
yeoman_environment
train
50d08d0e16558c19d14c96dc959419dc5e6b797b
diff --git a/concrete/src/Entity/Site/Site.php b/concrete/src/Entity/Site/Site.php index <HASH>..<HASH> 100644 --- a/concrete/src/Entity/Site/Site.php +++ b/concrete/src/Entity/Site/Site.php @@ -301,12 +301,12 @@ class Site implements TreeInterface, ObjectInterface, PermissionObjectInterface public function getSit...
Let Site::getSiteTreeObject return NULL if no locale is defined
concrete5_concrete5
train
873bd7d143e7176f306488a14c478e3a7964a9b6
diff --git a/salt/modules/tls.py b/salt/modules/tls.py index <HASH>..<HASH> 100644 --- a/salt/modules/tls.py +++ b/salt/modules/tls.py @@ -486,7 +486,7 @@ def create_self_signed_cert( _write_cert_to_database(tls_dir, cert) ret = "Created Private Key: {0}/{1}/certs/{2}.key\n".format( - _cert_base_path...
it has just been one of those nights!
saltstack_salt
train
8cedfe0b0f320f66d4dafd744547f7035ed8ac89
diff --git a/lib/gir_ffi/arg_helper.rb b/lib/gir_ffi/arg_helper.rb index <HASH>..<HASH> 100644 --- a/lib/gir_ffi/arg_helper.rb +++ b/lib/gir_ffi/arg_helper.rb @@ -11,21 +11,6 @@ module GirFFI :guint8, :guint16, :guint32, :guint64, :gfloat, :gdouble] - def self.setup_array_to_inptr_handler_for *types ...
Remove unused methods in ArgHelper.
mvz_gir_ffi
train
dccabff4042ca8d556f6f56f6ae87da6265150bf
diff --git a/lib/chef/provider/package/dnf/dnf_helper.py b/lib/chef/provider/package/dnf/dnf_helper.py index <HASH>..<HASH> 100644 --- a/lib/chef/provider/package/dnf/dnf_helper.py +++ b/lib/chef/provider/package/dnf/dnf_helper.py @@ -168,6 +168,10 @@ try: setup_exit_handler() line = inpipe.readline()...
DNF package: fix abrt errors For people with ABRT logging every exit of chef-client would have ABRT errors due to readline returning '' for EOF and then the JSON parsing throwing. This causes it to exit gracefully. AFAIK there was actually no impact to this bug and chef was behaving entirely correctly in terms of do...
chef_chef
train
c6ee53d4678268f6a05e984e62810774dd6f77eb
diff --git a/mgmtfn/k8splugin/driver.go b/mgmtfn/k8splugin/driver.go index <HASH>..<HASH> 100644 --- a/mgmtfn/k8splugin/driver.go +++ b/mgmtfn/k8splugin/driver.go @@ -95,7 +95,7 @@ func epCleanUp(req *epSpec) error { // first delete from netplugin // ignore any errors as this is best effort netID := req.Network +...
cleanup ports on failure. Add error messages.
contiv_netplugin
train
841417ebf7e7b1c70efe82b9cdf7bc5b64d664a8
diff --git a/src/Foundation/Console/OptimizeCommand.php b/src/Foundation/Console/OptimizeCommand.php index <HASH>..<HASH> 100644 --- a/src/Foundation/Console/OptimizeCommand.php +++ b/src/Foundation/Console/OptimizeCommand.php @@ -78,7 +78,7 @@ class OptimizeCommand extends Command { $this->registerClassP...
Improve Nova\Foundation\Console\OptimizeCommand
nova-framework_system
train
f547b443a33f484db47da7cb32b49c4ba7b27085
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -71,6 +71,7 @@ export { MaskMaterial, OutlineMaterial, OutlineEdgesMaterial, + Section, SMAAWeightsMaterial } from "./materials";
Export Section enum from EffectMaterial
vanruesc_postprocessing
train
b4e592907098140b3323a88903f2c226a97a633b
diff --git a/src/sass-builder.js b/src/sass-builder.js index <HASH>..<HASH> 100755 --- a/src/sass-builder.js +++ b/src/sass-builder.js @@ -35,7 +35,7 @@ const loadFile = path => { const parseUnescape = uri => { // Node doesn't understand Windows' local file urls return (uri.match(/^file:\/\/\//)) ? uri.replace(/...
single semicolon for eslint
dougludlow_plugin-sass
train
6aec17bd006e91bfe11bd0d06c7544f2cec7bb95
diff --git a/filter/mathjaxloader/filter.php b/filter/mathjaxloader/filter.php index <HASH>..<HASH> 100644 --- a/filter/mathjaxloader/filter.php +++ b/filter/mathjaxloader/filter.php @@ -143,7 +143,7 @@ class filter_mathjaxloader extends moodle_text_filter { $text = str_replace('[tex]', '\\(', $text); ...
MDL-<I> filter_mathjax: Regexp fix for texfiltercompatibility mode Fixing incorrect regexp for replacing text like "$$a$$ and $$b$$" to "\(a\) and \(b\)". This is needed for texfiltercompatibility to work as expected.
moodle_moodle
train
9e7ed578deee2fb471ec6f455d480264666db077
diff --git a/lib/environment.js b/lib/environment.js index <HASH>..<HASH> 100644 --- a/lib/environment.js +++ b/lib/environment.js @@ -87,7 +87,8 @@ exports.getConfig = function (platform, env, project_dir, argv) { } } - if(process.env.COUCH_URL) { + + if(!process.env.COUCH_URL) { cfg.cou...
tribute to George Bool This commit was sponsored by The Hoodie Firm with support from NLnet: <URL>
hoodiehq_hoodie
train
94861c777ee288746f043319ac24e3852edc7eba
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # v1.0.1 - Bugfix: blocking exec call should remove channel metadata #140 +- Add close method to websocket api of interactive exec #145 # v1.0.0b3 - Bugfix: Missing websocket-client dependenc...
Add close method to websocket client
kubernetes-client_python
train
dc8276b3b3743d4aea554e1c8abcda2532897e77
diff --git a/docs/api_reference.rst b/docs/api_reference.rst index <HASH>..<HASH> 100644 --- a/docs/api_reference.rst +++ b/docs/api_reference.rst @@ -70,8 +70,8 @@ File Formats :members: :inherited-members: -Wordnet Interface ------------------ +Wordnet +------- .. automodule:: text.wordnet diff --git...
Use proper Abstract Base Classes So that incomplete implementations fail at initialization
sloria_TextBlob
train
aa3bf5c6088db4de6257d2ed63aabdb37a1ecdef
diff --git a/lhc/binf/kmer.py b/lhc/binf/kmer.py index <HASH>..<HASH> 100644 --- a/lhc/binf/kmer.py +++ b/lhc/binf/kmer.py @@ -1,17 +1,21 @@ class KmerCounter(object): - def __init__(self, sequence, k=None): + def __init__(self, sequence, k=None, step=1): self.sequence = sequence self.counts = ...
added step to kmer coutner
childsish_sofia
train
186d8399424d33ee61ea687fb35c48a6622d3429
diff --git a/src/body/Body.js b/src/body/Body.js index <HASH>..<HASH> 100644 --- a/src/body/Body.js +++ b/src/body/Body.js @@ -168,10 +168,11 @@ var Body = {}; * @method updateAll * @param {body[]} bodies * @param {number} deltaTime + * @param {number} timeScale * @param {number} correction ...
fixed more issues with timing.timeScale
liabru_matter-js
train
7a59f98cfb9d3ecef417f6131138d36260590e65
diff --git a/asl/resource/model_resource.py b/asl/resource/model_resource.py index <HASH>..<HASH> 100644 --- a/asl/resource/model_resource.py +++ b/asl/resource/model_resource.py @@ -8,7 +8,7 @@ The default classes of the models should be overriden to provide more logic or r The basic way to use them is as follows: ...
Fix - two likes per surprise by single user are not possible.
AtteqCom_zsl
train
8cbb574e463d1d9ef7daecc17645fcdae81ee375
diff --git a/structr-rest/src/main/java/org/structr/rest/resource/SchemaTypeResource.java b/structr-rest/src/main/java/org/structr/rest/resource/SchemaTypeResource.java index <HASH>..<HASH> 100644 --- a/structr-rest/src/main/java/org/structr/rest/resource/SchemaTypeResource.java +++ b/structr-rest/src/main/java/org/str...
Fixes NPE in slow query log, adds inheritance arrows to Schema area.
structr_structr
train
9823a7dd55bf49b42feb0d68fb907d0878f85a7a
diff --git a/pyvisa/util.py b/pyvisa/util.py index <HASH>..<HASH> 100644 --- a/pyvisa/util.py +++ b/pyvisa/util.py @@ -215,12 +215,24 @@ def parse_binary(bytes_data, is_big_endian=False, is_single=False): def from_ieee_block(block, datatype='f', is_big_endian=False, container=list): - """Converts a block of blo...
Fix issue with IEEE block encoding Close #<I>
pyvisa_pyvisa
train
ca97574060fb731bf01b72349f68c04a20235c68
diff --git a/api/views/errors/html/500.php b/api/views/errors/html/500.php index <HASH>..<HASH> 100644 --- a/api/views/errors/html/500.php +++ b/api/views/errors/html/500.php @@ -1,11 +1,15 @@ <?php -if (class_exists('ApiRouter') && ApiRouter::getOutputFormat() === 'JSON') { - header('Content-Type: application/json...
Only returning API orientated <I>’s when on production
nails_module-api
train
f0449e0a8b8f7dbc7fe3fe7d8d277128cf00bb69
diff --git a/api_core/tests/unit/test_bidi.py b/api_core/tests/unit/test_bidi.py index <HASH>..<HASH> 100644 --- a/api_core/tests/unit/test_bidi.py +++ b/api_core/tests/unit/test_bidi.py @@ -20,8 +20,8 @@ import mock import pytest from six.moves import queue -from google.api_core import exceptions from google.api_...
Fix import order, appeasing lint. (#<I>) Error left from PR #<I>, when Kokoro was blithely skipping tests.
googleapis_google-cloud-python
train
a3e515d024ff1b89f14ced3ffde6d22c11591921
diff --git a/app/assets/javascripts/thin_man.js b/app/assets/javascripts/thin_man.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/thin_man.js +++ b/app/assets/javascripts/thin_man.js @@ -88,6 +88,8 @@ var initThinMan = function(){ } else if(typeof data === 'object') { if(typeof data.html...
responding with json that has no html will empty the target on success now
edraut_thin-man
train
90640d4fee9c414966de6f9a5d225dcd3c0e895b
diff --git a/lib/byebug/runner.rb b/lib/byebug/runner.rb index <HASH>..<HASH> 100644 --- a/lib/byebug/runner.rb +++ b/lib/byebug/runner.rb @@ -60,7 +60,7 @@ module Byebug return end - if ARGV.size == 1 + if ARGV.empty? Byebug.print 'You must specify a program to debug...' a...
Fix bug in byebug's executable ARGV contains only arguments, not program name.
deivid-rodriguez_byebug
train
8f2c34f89e3b32c38c9f505d20b74ec4726e9573
diff --git a/src/console/controllers/Util.php b/src/console/controllers/Util.php index <HASH>..<HASH> 100644 --- a/src/console/controllers/Util.php +++ b/src/console/controllers/Util.php @@ -202,23 +202,14 @@ class Util extends Controller $type = \strtolower($matches[1]); - if (!empt...
Nullable types in util/table; cleaned up a little bit
levmorozov_mii
train
3522dd373a0eced4bc0db7c920ba24b37c492def
diff --git a/src/drawing/drawTextBox.js b/src/drawing/drawTextBox.js index <HASH>..<HASH> 100644 --- a/src/drawing/drawTextBox.js +++ b/src/drawing/drawTextBox.js @@ -44,7 +44,7 @@ export function textBoxWidth(context, text, padding) { * @param {Object} options Options for the textBox. * @returns {Object} {top...
Adding bounding box's translator option for drawing text boxes
cornerstonejs_cornerstoneTools
train
2b2f74524862b6d5e2c1deb760289bdab6ed6921
diff --git a/build.py b/build.py index <HASH>..<HASH> 100755 --- a/build.py +++ b/build.py @@ -673,8 +673,11 @@ def host_examples(t): t.rm_rf('build/hosted/%(BRANCH)s/ol') t.makedirs('build/hosted/%(BRANCH)s/ol') t.cp_r('src/ol', 'build/hosted/%(BRANCH)s/ol/ol') + t.rm_rf('build/hosted/%(BRANCH)s/ol.e...
Add ol.ext to hosted dir
openlayers_openlayers
train
65cea3c76fe127798cfb760569c4a5e7f0fee240
diff --git a/pymongo/database.py b/pymongo/database.py index <HASH>..<HASH> 100644 --- a/pymongo/database.py +++ b/pymongo/database.py @@ -341,6 +341,7 @@ class Database(common.BaseObject): compile_re=compile_re, _uuid_subtype=uuid_subtype) + ...
Raise OperationFailure if command response has no document. Commands are implemented as a find_one on the "$cmd" collection. In the unlikely event the find_one succeeds but has no documents, raise OperationFailure. Before this change, PyMongo would've thrown UnboundLocalError.
mongodb_mongo-python-driver
train
62e559d1f550e336d3c2c9f380147adf0f48feee
diff --git a/src/adafruit_blinka/board/nvidia/jetson_tx2.py b/src/adafruit_blinka/board/nvidia/jetson_tx2.py index <HASH>..<HASH> 100644 --- a/src/adafruit_blinka/board/nvidia/jetson_tx2.py +++ b/src/adafruit_blinka/board/nvidia/jetson_tx2.py @@ -10,7 +10,7 @@ SCL_1 = pin.SCL_1 D4 = pin.J04 D5 = pin.J06 D6 = pin.AA0...
Jetson TX2: Pin D7 isn't connected The Jetson TX2 module does not connect baseboard GPIO expansion connector pin D7 to anything. Remove the invalid value from the code.
adafruit_Adafruit_Blinka
train
c600e5dcaf8afa6efdff0cadbc148abe3a98f743
diff --git a/src/components/errors-component.js b/src/components/errors-component.js index <HASH>..<HASH> 100644 --- a/src/components/errors-component.js +++ b/src/components/errors-component.js @@ -140,7 +140,7 @@ Errors.defaultProps = { show: true, }; -function selector(state, { model }) { +function mapStateToP...
Removing state from mapStateToProps, fixes #<I>
davidkpiano_react-redux-form
train
207104278672deedb859d10da4570e3a57058dac
diff --git a/lib/fewer/engines/abstract.rb b/lib/fewer/engines/abstract.rb index <HASH>..<HASH> 100644 --- a/lib/fewer/engines/abstract.rb +++ b/lib/fewer/engines/abstract.rb @@ -1,3 +1,5 @@ +require 'digest/md5' + module Fewer module Engines class Abstract @@ -31,8 +33,8 @@ module Fewer end de...
Switched eTag generation to more dependable MD5 * File timestamps can be unreliable across multiple servers
benpickles_fewer
train
5b32808acdd96c4044c3bb334a5abf7444b26289
diff --git a/src/Uuid.php b/src/Uuid.php index <HASH>..<HASH> 100644 --- a/src/Uuid.php +++ b/src/Uuid.php @@ -93,7 +93,7 @@ final class Uuid /** * Version of the Rhumsaa\Uuid package */ - const VERSION = '2.8.1'; + const VERSION = '2.8.x-dev'; /** * For testing, 64-bit system overri...
Change version back to <I>.x-dev for dev branch
ramsey_uuid
train
cececcc883a9fa52a3280008302ee8edfbc37977
diff --git a/tests/tests.js b/tests/tests.js index <HASH>..<HASH> 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -24,6 +24,7 @@ // increased timeout for actual playback to give device chance to download and play mp3 file // some emulators can be REALLY slow at this, so two minutes var ACTUAL_PLAYBACK_TEST_TIMEO...
test(spec.timeout): try to improve against timeout failures (#<I>) * test(spec.timeout): improve safe complete for before and after each spec * test(spec.timeout): add done to success callback * test(spec.timeout): set DEFAULT_TIMEOUT_INTERVAL to ACTUAL_PLAYBACK_TEST_TIMEOUT
apache_cordova-plugin-media
train
f15ed55bdb5accfe471ea3349b492612b83c6147
diff --git a/lib/the86-client/version.rb b/lib/the86-client/version.rb index <HASH>..<HASH> 100644 --- a/lib/the86-client/version.rb +++ b/lib/the86-client/version.rb @@ -1,5 +1,5 @@ module The86 module Client - VERSION = "0.0.1" + VERSION = "0.0.2" end end
Incremented version from <I> to <I>.
sitepoint_the86-client
train
f3ecd2d6d117a33271ec3cd340442b3aeea5682f
diff --git a/src/directives/dxTree.js b/src/directives/dxTree.js index <HASH>..<HASH> 100644 --- a/src/directives/dxTree.js +++ b/src/directives/dxTree.js @@ -23,6 +23,7 @@ compile: function(elm) { var link = { post: function (scope, elm, attr, ctrl) { + ...
added $dxLevel to provide information of how deep in the tree we are.
dotJEM_angular-tree
train
a0743603e65f73d313b2e289b8b48692afd5a954
diff --git a/lib/ronin/fuzzing/extensions/string.rb b/lib/ronin/fuzzing/extensions/string.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/fuzzing/extensions/string.rb +++ b/lib/ronin/fuzzing/extensions/string.rb @@ -163,6 +163,9 @@ class String # p str # end # + # @example Replace a {Regexp::UNIX_PATH} w...
Updated docs/examples for String#fuzz.
ronin-ruby_ronin-support
train
8feca6da7046d6db445a6731924bf61f06dc79a4
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index <HASH>..<HASH> 100755 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,20 +1,13 @@ <?php -spl_autoload_register(function ($class) { - - if ( 0 !== strpos($class, 'Doctrine\\Search')) { - return false; - } - - $path = __DIR__ . '/../lib'; - $file...
Use doctrine classloader instead of closure
doctrine_search
train
ab0e70403447455c392f9b04504c4bb67276ad59
diff --git a/assets/javascript/menu.js b/assets/javascript/menu.js index <HASH>..<HASH> 100644 --- a/assets/javascript/menu.js +++ b/assets/javascript/menu.js @@ -29,7 +29,7 @@ // Make the mobile menu button work $( '.js-mobile-menu' ).hide(); - $( '.js-mobile-menu-button' ).on( 'click', function( event ) {...
set menu button href to '#' via js to avoid reloading in customizer when clicked
GrottoPress_jentil
train
1a5fb4f5176f04899a6dbeaad91dba7bd1534469
diff --git a/lib/flipper/version.rb b/lib/flipper/version.rb index <HASH>..<HASH> 100644 --- a/lib/flipper/version.rb +++ b/lib/flipper/version.rb @@ -1,3 +1,3 @@ module Flipper - VERSION = '0.20.0.beta1'.freeze + VERSION = '0.20.0.beta2'.freeze end
Release <I>.beta2 Fixed problem where writes didn't go to cloud. Not a common use case but still one I want to suport.
jnunemaker_flipper
train
1a8c34422860c5740b2fde6308c895eb63a930e1
diff --git a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowChoreographer.java b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowChoreographer.java index <HASH>..<HASH> 100644 --- a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowChoreographer.java +++ b/shadows/framework/src/...
Fix Choreographer constructor for O.
robolectric_robolectric
train
879c0ee3e2c6a63bec337046a5d3a10d13d63361
diff --git a/pymongo/cursor.py b/pymongo/cursor.py index <HASH>..<HASH> 100644 --- a/pymongo/cursor.py +++ b/pymongo/cursor.py @@ -155,7 +155,11 @@ class Cursor(object): copy.__explain = self.__explain copy.__hint = self.__hint copy.__batch_size = self.__batch_size + copy.__max_scan = ...
Add missing attributes to cloned cursor.
mongodb_mongo-python-driver
train
8ff095321cb6b70bed804b38e03e741b53f2dbe0
diff --git a/src/main/java/org/seedstack/swagger/internal/AbstractSwaggerResource.java b/src/main/java/org/seedstack/swagger/internal/AbstractSwaggerResource.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/seedstack/swagger/internal/AbstractSwaggerResource.java +++ b/src/main/java/org/seedstack/swagger/interna...
Fix Host contains the port -1 if the application is on the default port
seedstack_swagger-addon
train
9da3fdc32339466473f9e4559d7b90818cfc7e47
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Add merge_requests subscribe/unsubscribe (@newellista) - Updated `deploy_key` endpoints (@epintozzi) - Add milestone/merge_requests (API V4 only) (@joren) +- Change project fork endpoint for...
Change project fork endpoint for v4 API. Closes #<I>.
NARKOZ_gitlab
train
9ca8c721ba50e04ece85e19521fd701694782dfc
diff --git a/lib/active_scaffold.rb b/lib/active_scaffold.rb index <HASH>..<HASH> 100644 --- a/lib/active_scaffold.rb +++ b/lib/active_scaffold.rb @@ -55,6 +55,7 @@ module ActiveScaffold # run the configuration @active_scaffold_config = ActiveScaffold::Config::Core.new(model_id) + @active_scaffold_...
Don't share configuration with children, configure using the same block
activescaffold_active_scaffold
train
2263b476271726ebe01fa94904f18dc59b6203c1
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.4.1] - 2016-11-15 +### Fixed +- Pull #16: Add su...
Version Bump <I>: Pull #<I>: Add support for non-string filter settings
sendgrid_smtpapi-go
train
85e17c1579cc9efb77f90aace1157f6f403e3f3e
diff --git a/java/client/src/org/openqa/selenium/remote/session/ChromeFilter.java b/java/client/src/org/openqa/selenium/remote/session/ChromeFilter.java index <HASH>..<HASH> 100644 --- a/java/client/src/org/openqa/selenium/remote/session/ChromeFilter.java +++ b/java/client/src/org/openqa/selenium/remote/session/ChromeF...
[java] Fixing Chrome logging capability name renamed to "goog:loggingPrefs" in Chrome <I>
SeleniumHQ_selenium
train
b6ccfd151c06e399f670e2fd6dea5ca23d9e3f27
diff --git a/lib/modules/apostrophe-areas/lib/routes.js b/lib/modules/apostrophe-areas/lib/routes.js index <HASH>..<HASH> 100644 --- a/lib/modules/apostrophe-areas/lib/routes.js +++ b/lib/modules/apostrophe-areas/lib/routes.js @@ -60,7 +60,7 @@ module.exports = function(self, options) { var widgetsOptions = opti...
improved console log for unblessed widget errors
apostrophecms_apostrophe
train
7ce40bf96c0f7edc63e681e4c67e989dbe9b8333
diff --git a/libkbfs/folder_branch_ops.go b/libkbfs/folder_branch_ops.go index <HASH>..<HASH> 100644 --- a/libkbfs/folder_branch_ops.go +++ b/libkbfs/folder_branch_ops.go @@ -3753,8 +3753,12 @@ func (fbo *folderBranchOps) startSyncLocked(ctx context.Context, // perfectly accurate (but at the same time, we'd then hav...
folder_branch_ops: remove unlinked files from dirty list Once we clear the cache info for the file, they shouldn't be considered dirty anymore. Issue: KBFS-<I>
keybase_client
train
f713544831fb15771603599b0ad3f9f9cc9d5419
diff --git a/packages/perspective/src/js/DataAccessor/DateParser.js b/packages/perspective/src/js/DataAccessor/DateParser.js index <HASH>..<HASH> 100644 --- a/packages/perspective/src/js/DataAccessor/DateParser.js +++ b/packages/perspective/src/js/DataAccessor/DateParser.js @@ -40,7 +40,10 @@ export class DateParser { ...
Made date parsing slightly more lenient wrt mixed column types
finos_perspective
train
7bbbea34c3f563a17945c1e39bd131fee1b5c7ee
diff --git a/pygccxml/parser/scanner.py b/pygccxml/parser/scanner.py index <HASH>..<HASH> 100644 --- a/pygccxml/parser/scanner.py +++ b/pygccxml/parser/scanner.py @@ -589,20 +589,20 @@ class scanner_t(xml.sax.handler.ContentHandler): version_str = attrs.get(XML_AN_CVS_REVISION, 0.6) version = float(ve...
Use debug logging level for compiler version (closes #<I>)
gccxml_pygccxml
train
f1f67a745c148c108d2203835738c2fcdb3d7a3c
diff --git a/keyvalue/client/src/main/java/alluxio/client/keyvalue/BasePayloadReader.java b/keyvalue/client/src/main/java/alluxio/client/keyvalue/BasePayloadReader.java index <HASH>..<HASH> 100644 --- a/keyvalue/client/src/main/java/alluxio/client/keyvalue/BasePayloadReader.java +++ b/keyvalue/client/src/main/java/allu...
passing variable name to Preconditions.checkNotNull
Alluxio_alluxio
train
e76add7976223d40b4c86ae4d41be73faf0871ad
diff --git a/listing-bundle/src/Resources/contao/dca/tl_module.php b/listing-bundle/src/Resources/contao/dca/tl_module.php index <HASH>..<HASH> 100644 --- a/listing-bundle/src/Resources/contao/dca/tl_module.php +++ b/listing-bundle/src/Resources/contao/dca/tl_module.php @@ -90,7 +90,7 @@ $GLOBALS['TL_DCA']['tl_module']...
[Listing] Correctly support <I> character template names everywhere (see #<I>).
contao_contao
train
63b2ae7f9b6c11cf687dc8c54f77e6c27fc8db45
diff --git a/satpy/writers/scmi.py b/satpy/writers/scmi.py index <HASH>..<HASH> 100644 --- a/satpy/writers/scmi.py +++ b/satpy/writers/scmi.py @@ -1153,7 +1153,11 @@ class SCMIWriter(Writer): source_name=None, filename=None, tile_count=(1, 1), tile_size=None, ...
Layout initial changes for generating more complex SCMI files
pytroll_satpy
train
fec54c9c5ddf587febc11027d79ca70b0e6b3dac
diff --git a/spec/modules-spec.js b/spec/modules-spec.js index <HASH>..<HASH> 100644 --- a/spec/modules-spec.js +++ b/spec/modules-spec.js @@ -54,26 +54,6 @@ describe('modules support', () => { } }) - // TODO(alexeykuzmin): Disabled during the Chromium 62 (Node.js 9) upgrade. - // Enable it back whe...
test: remove ffi specs (#<I>)
electron_electron
train
d65fd245cfb102655a74184cfab0696c789d5dd2
diff --git a/backbone.js b/backbone.js index <HASH>..<HASH> 100644 --- a/backbone.js +++ b/backbone.js @@ -1576,9 +1576,13 @@ // calls `loadUrl`, normalizing across the hidden iframe. checkUrl: function(e) { var current = this.getFragment(); + + // If the user pressed the back button, the iframe's...
Add a comment about iframe history.
jashkenas_backbone
train
57ac89a02215cd90d77fdb616450874b14f2c32d
diff --git a/addon/mixins/adapter-fetch.js b/addon/mixins/adapter-fetch.js index <HASH>..<HASH> 100644 --- a/addon/mixins/adapter-fetch.js +++ b/addon/mixins/adapter-fetch.js @@ -50,7 +50,8 @@ export function mungOptionsForFetch(_options, adapter) { } else { // NOTE: a request's body cannot be an object, so...
If POST body is a string, don't stringify it
ember-cli_ember-fetch
train
c7d0ef7620942edf25040fe672b7668a9a193b5a
diff --git a/dipper/sources/ZFIN.py b/dipper/sources/ZFIN.py index <HASH>..<HASH> 100644 --- a/dipper/sources/ZFIN.py +++ b/dipper/sources/ZFIN.py @@ -504,6 +504,8 @@ class ZFIN(Source): geno = Genotype(self.graph) (stage_id,stage_obo_id,stage_name,begin_hours,end_hours,empty) = row ...
ZFIN.py: Added ZFIN: prefix for stage_id.
monarch-initiative_dipper
train
e8e39e6dfcceb14a4998d6ea64542d9d8a7b825b
diff --git a/orderer/common/cluster/comm.go b/orderer/common/cluster/comm.go index <HASH>..<HASH> 100644 --- a/orderer/common/cluster/comm.go +++ b/orderer/common/cluster/comm.go @@ -521,6 +521,7 @@ func (stream *Stream) sendOrDrop(request *orderer.StepRequest, allowDrop bool) e case <-stream.abortChan: return err...
[FAB-<I>] Log error if orderer can't forward SubmitRequest to Raft leader If order cannot forward client transaction SubmitRequest to Raft leader, it only logged it in a debug message. And since the error does not get returned to the client either, it is difficult to identify and troubleshoot. This commit changes the...
hyperledger_fabric
train
1322ec444ffd6e56e263b5016673dc5ff09283a3
diff --git a/spinoff/actor/comm.py b/spinoff/actor/comm.py index <HASH>..<HASH> 100644 --- a/spinoff/actor/comm.py +++ b/spinoff/actor/comm.py @@ -73,7 +73,7 @@ class ActorRef(object): self._assign_comm() def __eq__(self, other): - return self._referee == other._referee if self._referee and other...
Added a sanity/type check in ActorRef.__eq__
eallik_spinoff
train
c178a95a94299d3cda8138a0663b417b0fca19c3
diff --git a/ui/tests/acceptance/client-current-test.js b/ui/tests/acceptance/client-current-test.js index <HASH>..<HASH> 100644 --- a/ui/tests/acceptance/client-current-test.js +++ b/ui/tests/acceptance/client-current-test.js @@ -1,5 +1,5 @@ import { module, test } from 'qunit'; -import { visit, currentURL, settled, ...
fix flaky clients current test (#<I>)
hashicorp_vault
train
517c54343896ae01c883e8f0ed0b76e1feaf01f7
diff --git a/azurerm/resource_arm_application_insights.go b/azurerm/resource_arm_application_insights.go index <HASH>..<HASH> 100644 --- a/azurerm/resource_arm_application_insights.go +++ b/azurerm/resource_arm_application_insights.go @@ -63,6 +63,13 @@ func resourceArmApplicationInsights() *schema.Resource { }, t...
`azurerm_application_insights` - support for `sampling_percenta… (#<I>) Fixes #<I>
terraform-providers_terraform-provider-azurerm
train
817e6d1eae712a2596b3744a706a56eb654f2a76
diff --git a/inquisitor.js b/inquisitor.js index <HASH>..<HASH> 100644 --- a/inquisitor.js +++ b/inquisitor.js @@ -159,7 +159,14 @@ var isMultiValued = function(fb, a){ } }; -var SetOfBindings = function(var_names){ +var SetOfBindings = function(q_fact){ + + var var_names = "eavto".split('').filter(function(k){ ...
binding hash_facts as they are being streamed
smallhelm_level-fact-base
train
f86bd8604392bd516fba5ad46f505f294ef28fab
diff --git a/lib/tools/weightChecker/fileMinifier.js b/lib/tools/weightChecker/fileMinifier.js index <HASH>..<HASH> 100644 --- a/lib/tools/weightChecker/fileMinifier.js +++ b/lib/tools/weightChecker/fileMinifier.js @@ -301,6 +301,8 @@ var FileMinifier = function() { // jQuery CDN result = result || /^...
Add google analytics to already minified fies
gmetais_YellowLabTools
train
f92e407cd1a0127a6fd0433560894c7a009f1a12
diff --git a/core/commands/object/object.go b/core/commands/object/object.go index <HASH>..<HASH> 100644 --- a/core/commands/object/object.go +++ b/core/commands/object/object.go @@ -307,8 +307,8 @@ Examples: echo '{ "Data": "abc" }' | ipfs object put -This creates a node with the data "abc" and no links. For an ...
Capitalized Merkle, added single quotes, periods License: MIT
ipfs_go-ipfs
train
55afe3359a46734753c5c8d2ab2bf8f657d80df6
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -87,7 +87,6 @@ func New(address string, opts ...ClientOpt) (*Client, error) { gopts := []grpc.DialOption{ grpc.WithBlock(), grpc.WithInsecure(), - grpc.WithTimeout(60 * time.Second), grpc.FailOnNonTempDial...
Update grpc timeout and logger
containerd_containerd
train
7421647c591dac7d3570649098beea7bfa2ab42d
diff --git a/hazelcast-jet-core/src/main/java/com/hazelcast/jet/WatermarkEmissionPolicy.java b/hazelcast-jet-core/src/main/java/com/hazelcast/jet/WatermarkEmissionPolicy.java index <HASH>..<HASH> 100644 --- a/hazelcast-jet-core/src/main/java/com/hazelcast/jet/WatermarkEmissionPolicy.java +++ b/hazelcast-jet-core/src/ma...
Validate minStep as a positive value
hazelcast_hazelcast
train
a9a02e9170fda0b9913527cf710b421326fa50aa
diff --git a/grade/edit/letter/edit_form.php b/grade/edit/letter/edit_form.php index <HASH>..<HASH> 100644 --- a/grade/edit/letter/edit_form.php +++ b/grade/edit/letter/edit_form.php @@ -46,38 +46,34 @@ class edit_letter_form extends moodleform { $gradeletter = get_string('gradeletter', 'grades'); ...
MDL-<I> Grades: Allow real numbers as grade boundaries Patch by Huy Hoang (I just git-ified it).
moodle_moodle
train
c8bc6f582b3d4f9dac9dbc14e7a5c83707ae1474
diff --git a/src/main/java/wyil/util/AbstractTranslator.java b/src/main/java/wyil/util/AbstractTranslator.java index <HASH>..<HASH> 100644 --- a/src/main/java/wyil/util/AbstractTranslator.java +++ b/src/main/java/wyil/util/AbstractTranslator.java @@ -257,6 +257,10 @@ public abstract class AbstractTranslator<D, S, E> { ...
Support static variable access in Translator This adds support for StaticVariableAccess expressions to appear in LVal positions within the AbstractTranslator.
Whiley_WhileyCompiler
train
389d944aaff32f4e5342a018eb3c3c951addeeee
diff --git a/docs/configuration.rst b/docs/configuration.rst index <HASH>..<HASH> 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -207,6 +207,8 @@ Miscellaneous ======================================= ======================================== ``SECURITY_SEND_REGISTER_EMAIL`` Specifies whethe...
Add option to disable password change email.
mattupstate_flask-security
train
949dde0e49c576e5ab3616ebccfea9dc7846d253
diff --git a/benchexec/tablegenerator/__init__.py b/benchexec/tablegenerator/__init__.py index <HASH>..<HASH> 100644 --- a/benchexec/tablegenerator/__init__.py +++ b/benchexec/tablegenerator/__init__.py @@ -1121,7 +1121,7 @@ class StatValue(object): @classmethod def from_list(cls, values): - if any([...
Optimize: don't create list for `any(..)`
sosy-lab_benchexec
train
348e53ba2632b79faff92f25eb80b1ed57650c7a
diff --git a/dingo/core/network/cable_distributors.py b/dingo/core/network/cable_distributors.py index <HASH>..<HASH> 100644 --- a/dingo/core/network/cable_distributors.py +++ b/dingo/core/network/cable_distributors.py @@ -27,6 +27,11 @@ class LVCableDistributorDingo(CableDistributorDingo): self.branch_no = kw...
modify id of LV cable dist. to have it unique for all LV grids Detail: include id of grid district
openego_ding0
train
0d6190fe24ea7b9f8ccd7a7f4b72c01140290eac
diff --git a/Group.php b/Group.php index <HASH>..<HASH> 100644 --- a/Group.php +++ b/Group.php @@ -16,6 +16,7 @@ class Group const BASE_URL = "http://steamcommunity.com/gid/"; private $steamCommunity; private $gid; + private $xml; public function __construct($gid, SteamCommunity $steamCommunity...
Added method to get list of members in a group
waylaidwanderer_PHP-SteamCommunity
train
83e52d61aeca3d3c722af4a4c92a949012024712
diff --git a/spec/LdapTools/Hydrator/OperationHydratorSpec.php b/spec/LdapTools/Hydrator/OperationHydratorSpec.php index <HASH>..<HASH> 100644 --- a/spec/LdapTools/Hydrator/OperationHydratorSpec.php +++ b/spec/LdapTools/Hydrator/OperationHydratorSpec.php @@ -97,6 +97,16 @@ class OperationHydratorSpec extends ObjectBeha...
Allow multi-valued RDNs on object creation from a schema object.
ldaptools_ldaptools
train
09bfd60821690784843c07543f835542756db488
diff --git a/Entity/LedgerEntryRepository.php b/Entity/LedgerEntryRepository.php index <HASH>..<HASH> 100644 --- a/Entity/LedgerEntryRepository.php +++ b/Entity/LedgerEntryRepository.php @@ -264,7 +264,7 @@ class LedgerEntryRepository extends CommonRepository return true == $realtime ? $results : $resultsWithK...
loop while data is empty (bad data)
TheDMSGroup_mautic-contact-ledger
train
31532e71a5151a5c0aa75ad1212fb4de4cf1d6c1
diff --git a/public/js/overrides.js b/public/js/overrides.js index <HASH>..<HASH> 100755 --- a/public/js/overrides.js +++ b/public/js/overrides.js @@ -47,6 +47,17 @@ Garp.mailtoOrUrlPlugin = { }; /** + * Override email VType. It otherwise doesn't support .amsterdam domainnames + * + * @TODO: decide if we need to im...
Added: form email validation now supports the .amsterdam TLD
grrr-amsterdam_garp3
train
56f1aa7a1f3af7c535bb5cf95f245ea8ae2de667
diff --git a/fermipy/irfs.py b/fermipy/irfs.py index <HASH>..<HASH> 100644 --- a/fermipy/irfs.py +++ b/fermipy/irfs.py @@ -593,7 +593,7 @@ def calc_exp(skydir, ltc, event_class, event_types, """ if npts is None: - npts = int(np.ceil(np.max(cth_bins[1:] - cth_bins[:-1]) / 0.05)) + npts = int(np...
Decrease default bin size for sampling IRFs in incidence angle.
fermiPy_fermipy
train