hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
1209f39379702949f837c8a27b14441d292872c3
diff --git a/src/main/java/org/jfree/graphics2d/svg/SVGUtils.java b/src/main/java/org/jfree/graphics2d/svg/SVGUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jfree/graphics2d/svg/SVGUtils.java +++ b/src/main/java/org/jfree/graphics2d/svg/SVGUtils.java @@ -127,7 +127,7 @@ public class SVGUtils { * ...
Fix version number for method introduced in <I>
jfree_jfreesvg
train
b483123bbead63308f59951dd2fe2eafae4dd713
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -211,6 +211,76 @@ describe('Spotify Controller', function(){ }); }); + it('should set the repeating to false', function(done){ + spotify.setRepeating(false, function(){ + sp...
added tests for setting/getting/toggling of repeating and shuffling
andrehaveman_spotify-node-applescript
train
fe52ff08bf5ba1f1a725cd509b62d4533a1fef6f
diff --git a/src/Ambidex.server.js b/src/Ambidex.server.js index <HASH>..<HASH> 100644 --- a/src/Ambidex.server.js +++ b/src/Ambidex.server.js @@ -342,7 +342,6 @@ Ambidex.prototype._initStack = function () { self.stack = new mach.stack(); self.stack.use(mach.logger); self.stack.use(mach.gzip); - self.stack.us...
Preparing for mach <I>
appsforartists_ambidex
train
4c1628850203783b52dcb4cd96200fb16ec9563d
diff --git a/pool_test.go b/pool_test.go index <HASH>..<HASH> 100644 --- a/pool_test.go +++ b/pool_test.go @@ -24,7 +24,11 @@ func TestAllocatePortInUse(t *testing.T) { // make the pool use the port already in use via a port range _, portStr, _ := net.SplitHostPort(l.Addr().String()) port, _ := strconv.Atoi(portS...
skip the error log in TestAllocatePortInUse We know we're going to see an error, so don't log it too: $ go test -run TestAllocatePortInUse <I>/<I>/<I> <I>:<I>:<I> ERROR: pool could not allocate runner ... PASS ok github.com/chromedp/chromedp <I>s
chromedp_chromedp
train
b8e4c19a22f9fef1a5c5f467b1fb232c0bf3708a
diff --git a/nMemcached.js b/nMemcached.js index <HASH>..<HASH> 100644 --- a/nMemcached.js +++ b/nMemcached.js @@ -300,7 +300,7 @@ Client.config = { // Add to queue as multiple get key key key key key returns multiple values if( !multi ){ - queue.push( response[ key ] = dataSet); + ...
Patched the value parsing, i killed it when i fixed the multi get.
3rd-Eden_memcached
train
8b71c24f909cb1be57a66e33d0623e527c25a7dc
diff --git a/lib/vagrant/plugin/v2/trigger.rb b/lib/vagrant/plugin/v2/trigger.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/plugin/v2/trigger.rb +++ b/lib/vagrant/plugin/v2/trigger.rb @@ -5,7 +5,7 @@ require 'fileutils' require "vagrant/util/subprocess" require Vagrant.source_root.join("plugins/provisioners/shell/...
Match properly on guests with trigger filtering
hashicorp_vagrant
train
20d895ff95414d4da23d07115c57920f5813a95d
diff --git a/gson/src/main/java/com/google/gson/Gson.java b/gson/src/main/java/com/google/gson/Gson.java index <HASH>..<HASH> 100644 --- a/gson/src/main/java/com/google/gson/Gson.java +++ b/gson/src/main/java/com/google/gson/Gson.java @@ -392,8 +392,9 @@ public final class Gson { */ @SuppressWarnings("unchecked"...
Fix primitive wrapping and casting. Issue: <I>
google_gson
train
364626508fc353db4611d6c9cdc6f033c2442f1e
diff --git a/eventsourcing/contrib/paxos/application.py b/eventsourcing/contrib/paxos/application.py index <HASH>..<HASH> 100644 --- a/eventsourcing/contrib/paxos/application.py +++ b/eventsourcing/contrib/paxos/application.py @@ -135,7 +135,6 @@ class PaxosAggregate(AggregateRoot): ) def setattrs_from_...
Removed a todo that has been done. Removed ununsed code.
johnbywater_eventsourcing
train
2f982b4eba368e5eb567bffdfef91ac71c679140
diff --git a/server/src/main/java/org/jboss/as/server/deployment/DeploymentUnitPhaseService.java b/server/src/main/java/org/jboss/as/server/deployment/DeploymentUnitPhaseService.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/org/jboss/as/server/deployment/DeploymentUnitPhaseService.java +++ b/server/src/ma...
[WFCORE-<I>] Convert DeploymentUnitPhaseService to use a for loop instead of a stream to capture known subsystem names.
wildfly_wildfly-core
train
4403a8efdf58293f3b68bb888a062591e59e5e2e
diff --git a/mqlight.js b/mqlight.js index <HASH>..<HASH> 100644 --- a/mqlight.js +++ b/mqlight.js @@ -369,14 +369,12 @@ Client.prototype.connect = function(callback) { client.emit('message', data, delivery); } } - if (!messenger.stopped) { + if (client.state === 'connected') { ...
switch mqlight.js to use internal connected state rather than messenger one
mqlight_nodejs-mqlight
train
b1e99846ddaa185e4d8093c249ff17de0ef607cd
diff --git a/pykwalify/types.py b/pykwalify/types.py index <HASH>..<HASH> 100644 --- a/pykwalify/types.py +++ b/pykwalify/types.py @@ -159,7 +159,7 @@ def is_url(obj): :param obj: Object that is to be validated :return: True/False if obj is valid """ - return re.match('http[s]?://(?:[a-zA-Z]|[0-9]|[$...
Add simple test for is_url type. Fixed deprecation warning for wrong escape sequence by making regex a raw-string instead. Fixes #<I>
Grokzen_pykwalify
train
0956714a5939697851b28811818f5e90efa7b8ea
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -378,8 +378,6 @@ If your domain is located within an AWS Route 53 Hosted Zone and you've defined And your domain will be verified, certified and registered! -Please note that this can take around 45 minutes to take e...
fixes #<I> remove downtime during certificate updates
Miserlou_Zappa
train
fc9320a7a81f604ab67e19c5829592de14fa97ea
diff --git a/lib/rvc/modules/vm.rb b/lib/rvc/modules/vm.rb index <HASH>..<HASH> 100644 --- a/lib/rvc/modules/vm.rb +++ b/lib/rvc/modules/vm.rb @@ -129,7 +129,7 @@ def create dest, opts :operation => :add, :fileOperation => :create, :device => VIM.VirtualDisk( - :key => 0, + ...
fix device keys in vm.create
vmware_rvc
train
5f8d61553a9d83087604fe5b68146503cf55d1be
diff --git a/lib/puppet/type.rb b/lib/puppet/type.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/type.rb +++ b/lib/puppet/type.rb @@ -1383,7 +1383,9 @@ class Type < Puppet::Element obj = dep else # Skip autorequires that we aren't managing - ...
Removed some of the autorequire stuff from :exec because it created untenable require loops, and created a test case for some complicated exec + file recursion. The test case fails, and I want to have a clean committed repository before i mess much more in trying to fix it, which might actually not be possible. git-s...
puppetlabs_puppet
train
4081fe820430c4c310bb967f7c0b1b837abc7933
diff --git a/categories/views.py b/categories/views.py index <HASH>..<HASH> 100644 --- a/categories/views.py +++ b/categories/views.py @@ -1,3 +1,4 @@ +import django from django.shortcuts import get_object_or_404 from django.template import RequestContext from django.http import HttpResponse, Http404 @@ -46,10 +47,1...
Allow for using django-cbv in Django <I>.x
callowayproject_django-categories
train
ac4c99d3f7c73301e84e1f957f8a1632b9e7f96e
diff --git a/src/main/java/com/github/jsonj/JsonObject.java b/src/main/java/com/github/jsonj/JsonObject.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/jsonj/JsonObject.java +++ b/src/main/java/com/github/jsonj/JsonObject.java @@ -207,7 +207,7 @@ public class JsonObject implements Map<String, JsonElemen...
improve put of JsonDataObject instances to actually work; add test for this
jillesvangurp_jsonj
train
4e1a4108c2960226cada5251619cca2d13bcd0db
diff --git a/lib/SAML2/Assertion.php b/lib/SAML2/Assertion.php index <HASH>..<HASH> 100644 --- a/lib/SAML2/Assertion.php +++ b/lib/SAML2/Assertion.php @@ -879,14 +879,20 @@ class SAML2_Assertion implements SAML2_SignedElement { /** * Convert this assertion to an XML element. * + * @param DOMNode|NULL $parentEl...
SAML2: Fix declaration of 'xs' namespace. $document->importNode(...) "helpfully" optimizes away the namespace declaration for the 'xs' namespace. Fix this by avoiding to use that function.
simplesamlphp_saml2
train
6d52cfc9cd9abe7352f17a9852af773d2621c37c
diff --git a/src/ImboClient/ImboClient.php b/src/ImboClient/ImboClient.php index <HASH>..<HASH> 100644 --- a/src/ImboClient/ImboClient.php +++ b/src/ImboClient/ImboClient.php @@ -12,7 +12,7 @@ namespace ImboClient; use ImboClient\Http, Guzzle\Common\Collection, - Guzzle\Service\Client, + Guzzle\Service\Cl...
Use Guzzle\Service\Client as GuzzleClient Use Guzzle\Service\Client as GuzzleClient to prevent name collision: Fatal error: Cannot use Guzzle\Service\Client as Client because the name is already in use
imbo_imboclient-php
train
f35e8f347e578e8034204bef6f18ba53b6197bb5
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -181,6 +181,14 @@ module.exports = function(grunt) { sass: { files: ['./stylesheets/*.scss'], tasks: ['sass'] + }, + libtextsecure: { + files: ['./libtextsecure/*.js', ...
Add grunt watch tasks to rebuild libs
ForstaLabs_librelay-node
train
5bc09601936a7d42192c64f8b314addaa6eab27b
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - Fixed: bug causing rules in extended configs to be merged with, rather than replaced by, the extending config. - Fixed: bug where fractional keyframes yielded false positives in `selector-class...
Ignore matches() and catch parse errors in selector-max-specificity (#<I>)
stylelint_stylelint
train
ad3296fc4d6407f2e0d4aaf3074094a422252214
diff --git a/azkaban-common/src/main/java/azkaban/jobtype/JobTypeManager.java b/azkaban-common/src/main/java/azkaban/jobtype/JobTypeManager.java index <HASH>..<HASH> 100644 --- a/azkaban-common/src/main/java/azkaban/jobtype/JobTypeManager.java +++ b/azkaban-common/src/main/java/azkaban/jobtype/JobTypeManager.java @@ -3...
Added logging for classpath information while loading plugins (#<I>) Adding a log statement to capture plugin details and the classpath which is used to create the classloader for loading plugins.
azkaban_azkaban
train
0fdc22f788817112a1c06d96a2f8fbaa9116dce3
diff --git a/abilian/web/forms/widgets.py b/abilian/web/forms/widgets.py index <HASH>..<HASH> 100644 --- a/abilian/web/forms/widgets.py +++ b/abilian/web/forms/widgets.py @@ -1356,15 +1356,16 @@ class Select2Ajax(object): structure of a Select2 widget. :param format_result: `formatResult` arg of Select2. Must b...
don't set formatResult if undefined
abilian_abilian-core
train
7c105d9669aa83811cbda7b5cd993f3267c9beee
diff --git a/core/shared/labs.js b/core/shared/labs.js index <HASH>..<HASH> 100644 --- a/core/shared/labs.js +++ b/core/shared/labs.js @@ -15,6 +15,10 @@ const messages = { // flags in this list always return `true`, allows quick global enable prior to full flag removal const GA_FEATURES = [ + 'tierWelcomePages'...
Bumped new tiers beta features from individual flags Tiers will soon go to GA, and these small features that were added as part of tiers beta are now ready to go live as well along with tiers GA, so we are removing their flags and bumping them as part of tiers beta.
TryGhost_Ghost
train
4999bb93cf64bec7bd1e11a98cbd4ea138a33bae
diff --git a/lib/db/feature-toggle-store.js b/lib/db/feature-toggle-store.js index <HASH>..<HASH> 100644 --- a/lib/db/feature-toggle-store.js +++ b/lib/db/feature-toggle-store.js @@ -51,6 +51,14 @@ class FeatureToggleStore { .then(this.rowToFeature); } + hasFeatureName(name) { + return thi...
Should not be allow creation of archived toggle closes #<I>
Unleash_unleash
train
953d88337a917e195b32b7e7e5d7a565a96e0fdb
diff --git a/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/AbstractRegionPainter.java b/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/AbstractRegionPainter.java index <HASH>..<HASH> 100644 --- a/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/Abstrac...
Cleaned up some badly formatted comments.
khuxtable_seaglass
train
db26961e68a5ec5c4aca8faf8b82be4ad3e183eb
diff --git a/acceptancetests/assess_deploy_webscale.py b/acceptancetests/assess_deploy_webscale.py index <HASH>..<HASH> 100755 --- a/acceptancetests/assess_deploy_webscale.py +++ b/acceptancetests/assess_deploy_webscale.py @@ -1,7 +1,7 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python """ Test webscale deployment - ...
Move to python 2 as the generic default
juju_juju
train
8a1251d9cd03d74ed578b75799032b3e4ab80be5
diff --git a/tests/setup_transaction_tests.py b/tests/setup_transaction_tests.py index <HASH>..<HASH> 100644 --- a/tests/setup_transaction_tests.py +++ b/tests/setup_transaction_tests.py @@ -1,3 +1,5 @@ +from functools import wraps + from viper import parser, compile_lll, utils from viper import compiler from ethere...
Added decorator and contract_with_gas_estimation function
ethereum_vyper
train
2e42423e2008c99c5986244b6dcc3ae6d516d833
diff --git a/src/main/java/org/drizzle/jdbc/internal/common/Protocol.java b/src/main/java/org/drizzle/jdbc/internal/common/Protocol.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/drizzle/jdbc/internal/common/Protocol.java +++ b/src/main/java/org/drizzle/jdbc/internal/common/Protocol.java @@ -230,6 +230,6 @@ p...
Fixes issue #<I> Replacing tabs by spaces (probably added by eclipse)
krummas_DrizzleJDBC
train
47fdb757976ccaceaada5b06ad75b74db2f31b43
diff --git a/lib/generators/rolify/role/templates/initializer.rb b/lib/generators/rolify/role/templates/initializer.rb index <HASH>..<HASH> 100644 --- a/lib/generators/rolify/role/templates/initializer.rb +++ b/lib/generators/rolify/role/templates/initializer.rb @@ -4,5 +4,5 @@ Rolify.configure do |c| # Role class p...
fixed the initializer file to properly load dynamic shortcuts closes #<I>
RolifyCommunity_rolify
train
8240c5306d99bf13c84c72f504fc465a87579feb
diff --git a/pescador/core.py b/pescador/core.py index <HASH>..<HASH> 100644 --- a/pescador/core.py +++ b/pescador/core.py @@ -1,6 +1,5 @@ #!/usr/bin/python """Core classes""" -from contextlib import ContextDecorator import collections import inspect import sklearn.base @@ -9,7 +8,7 @@ import six from sklearn.uti...
removing context decorator for python2
pescadores_pescador
train
09f2b7a513af58b788a4a91200d43d3e8962024b
diff --git a/src/plugin.js b/src/plugin.js index <HASH>..<HASH> 100644 --- a/src/plugin.js +++ b/src/plugin.js @@ -27,8 +27,6 @@ module.exports.default = class extends Plugin { this.minVotes = 0; this.widgetEnabled = true; - this.widgetEntries = 16; - this.widgetTopCount = 3; this.widgetWidth = 1...
Added new NaN-fixes.
ManiaJS_plugins
train
96789a58b9b09b38698b3bd9f26d0d25ab7d0de1
diff --git a/pulsectl/pulsectl.py b/pulsectl/pulsectl.py index <HASH>..<HASH> 100644 --- a/pulsectl/pulsectl.py +++ b/pulsectl/pulsectl.py @@ -10,15 +10,13 @@ from . import _pulsectl as c if sys.version_info.major >= 3: - decodable = bytes print_err = ft.partial(print, file=sys.stderr, flush=True) else: - range...
Use true string values consistently in both py2 and py3
mk-fg_python-pulse-control
train
2668e9b147e2d79822b6fc991c9a2cf825a723b7
diff --git a/Twig/GridExtension.php b/Twig/GridExtension.php index <HASH>..<HASH> 100644 --- a/Twig/GridExtension.php +++ b/Twig/GridExtension.php @@ -43,12 +43,4 @@ final class GridExtension extends \Twig_Extension new \Twig_SimpleFunction('sylius_grid_render_filter', [$this->gridHelper, 'renderFilter'], ...
Remove unused "getName" method from Twig extensions
Sylius_SyliusGridBundle
train
2bceaae42399ce33e8c724d1ac435eca6759637b
diff --git a/integration-cli/docker_cli_exec_test.go b/integration-cli/docker_cli_exec_test.go index <HASH>..<HASH> 100644 --- a/integration-cli/docker_cli_exec_test.go +++ b/integration-cli/docker_cli_exec_test.go @@ -186,3 +186,30 @@ func TestExecAfterDaemonRestart(t *testing.T) { logDone("exec - exec running con...
test case for preserving env in exec session Docker-DCO-<I>-
containers_storage
train
091a47e1f0a0595ca422dead55c3b642f22a9c70
diff --git a/python/segyio/segy.py b/python/segyio/segy.py index <HASH>..<HASH> 100644 --- a/python/segyio/segy.py +++ b/python/segyio/segy.py @@ -67,6 +67,8 @@ class SegyFile(object): self._tracecount = metrics['tracecount'] self._ext_headers = metrics['ext_headers'] + self._dtype = np.dtype...
Add dtype attribute to file handle Add and expose the underlying data type object (from numpy, dtype), corresponding to how the file is interpreted. It allows clients to query what dtype is most reasonable for them to format in order to efficiently write, and also what they can expect to be returned from segyio.
equinor_segyio
train
a279f2285c02c758bef8dda693fb361c49b62ced
diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -22,7 +22,8 @@ class Configuration implements ConfigurationInterface $rootNode ->child...
Allow redirection, fix config
tuimedia_session-bundle
train
21c5cb2cea4d9d86c729a7d7eaffcbdbefcc0bde
diff --git a/lib/memcached/memcached.rb b/lib/memcached/memcached.rb index <HASH>..<HASH> 100644 --- a/lib/memcached/memcached.rb +++ b/lib/memcached/memcached.rb @@ -42,7 +42,7 @@ Hostname lookups are not currently supported; you need to use the IP address. Valid option parameters are: <tt>:namespace</tt>:: A name...
Mention new :murmur hash type.
arthurnn_memcached
train
b3463e4cdd0e0dd1643e23f3f0015669fb53c88b
diff --git a/run.go b/run.go index <HASH>..<HASH> 100644 --- a/run.go +++ b/run.go @@ -357,6 +357,7 @@ loop: atTime-(atTime%(100*time.Millisecond)), atTime-(atTime%(100*time.Millisecond)), ) + fmt.Printf("\n") // Sort and print metrics. metrics := make(map[string]*stats.Metric, len(engine.Metrics)) @@ -37...
[feat] Better metric display (my UI design is A+)
loadimpact_k6
train
5a3115c362bea30b20df810888e7409537322581
diff --git a/monitor/services/src/main/java/org/eobjects/datacleaner/monitor/configuration/DefaultJobContext.java b/monitor/services/src/main/java/org/eobjects/datacleaner/monitor/configuration/DefaultJobContext.java index <HASH>..<HASH> 100644 --- a/monitor/services/src/main/java/org/eobjects/datacleaner/monitor/confi...
Fixed job caching issue, if configuration is updated, but job isn't
datacleaner_DataCleaner
train
07473e085dd174da6f661ecdfb3a606c894931f0
diff --git a/lib/collection/response.js b/lib/collection/response.js index <HASH>..<HASH> 100644 --- a/lib/collection/response.js +++ b/lib/collection/response.js @@ -2,6 +2,7 @@ var util = require('../util'), _ = util.lodash, fileType = require('file-type'), mimeType = require('mime-types'), + charse...
Find the encoding from the header and encode the stream response accordingly
postmanlabs_postman-collection
train
b8a6c56865617191b2172888f6f7ec90cb6e481a
diff --git a/lib/active_merchant/billing/gateways/elavon.rb b/lib/active_merchant/billing/gateways/elavon.rb index <HASH>..<HASH> 100644 --- a/lib/active_merchant/billing/gateways/elavon.rb +++ b/lib/active_merchant/billing/gateways/elavon.rb @@ -330,7 +330,19 @@ module ActiveMerchant #:nodoc: def post_data(para...
Elavon: Pass customer_number correctly The customer_number field is, according to Elavon, a custom field and therefore cannot contain the `ssl_` prefix the other API fields have.
activemerchant_active_merchant
train
1c18392990f1339d4a6261258ec6bbbbc8549f51
diff --git a/go/teams/loader2.go b/go/teams/loader2.go index <HASH>..<HASH> 100644 --- a/go/teams/loader2.go +++ b/go/teams/loader2.go @@ -641,6 +641,10 @@ func (l *TeamLoader) checkReaderKeyMaskCoverage(ctx context.Context, state *keybase1.TeamData, gen keybase1.PerTeamKeyGeneration) error { for _, app := range ...
don't check seitan rkm coverage
keybase_client
train
4c6e4cf405e67aed5f94cfe231b382eea68a64fc
diff --git a/Lib/fontParts/test/test_world.py b/Lib/fontParts/test/test_world.py index <HASH>..<HASH> 100644 --- a/Lib/fontParts/test/test_world.py +++ b/Lib/fontParts/test/test_world.py @@ -129,14 +129,14 @@ class TestSortFonts(unittest.TestCase): # isMonospace - def test_sortBy_isMnospace_postscriptIsFixe...
More test changes. Still trying to fix this remotely. Sorry for all the commits.
robotools_fontParts
train
d766fb4a632969f3ca831b338d363cac2c9221ef
diff --git a/tests/Doctrine/Tests/DBAL/ConnectionTest.php b/tests/Doctrine/Tests/DBAL/ConnectionTest.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/Tests/DBAL/ConnectionTest.php +++ b/tests/Doctrine/Tests/DBAL/ConnectionTest.php @@ -403,11 +403,20 @@ SQLSTATE[HY000]: General error: 1 near \"MUUHAAAAHAAAA\""); ...
Re-working test to use reflection and simply check that the _conn property has be nullified
doctrine_dbal
train
0aeeefb20be135480591c3af95e30e36ca434473
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -122,7 +122,7 @@ function toBuffer(buf) { return buf; } buf += ''; - return Buffer.from ? Buffer.from(buf) : new Buffer(buf); + return new Buffer(buf); } exports.toBuffer = toBuffer; diff -...
fix: Buffer.from compatibility issues
avwo_whistle
train
2493162ba557bffd49eafe4f794871c43f7964d3
diff --git a/spambl.py b/spambl.py index <HASH>..<HASH> 100644 --- a/spambl.py +++ b/spambl.py @@ -236,7 +236,7 @@ class HpHosts(object): if self._LISTED in data: elements = data.split(',') - classification = elements[1] if len(elements) > 1 else None + classificati...
Modify spam classification assignement in HpHosts.lookup Spam classification is now passed in a tuple.
piotr-rusin_spam-lists
train
447228c53014b6288aa19f1786e807e9029ef041
diff --git a/spec/airborne/expect_json_keys_spec.rb b/spec/airborne/expect_json_keys_spec.rb index <HASH>..<HASH> 100644 --- a/spec/airborne/expect_json_keys_spec.rb +++ b/spec/airborne/expect_json_keys_spec.rb @@ -17,5 +17,17 @@ describe 'expect_json_keys' do mock_get('simple_json') get '/simple_json', {} ...
Added tests for expect_json_keys with path
brooklynDev_airborne
train
fd205edd7dacc832dd6298531702dbea00aba8dd
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/core_ext/module/delegation.rb +++ b/activesupport/lib/active_support/core_ext/module/delegation.rb @@ -170,7 +17...
Improve error message of ActiveSupport delegate ActiveSupport `delegate` has `to` option, but it's not a option hash anymore and now it's a keyword argument. When `to` argument is not given, it raises an ArgumentError but the message suggests supplying "options hash", which is now wrong. Now it's fixed to provide corr...
rails_rails
train
4aa12ea501aa038712c4cce1b8081e3e2c19229d
diff --git a/lib/thorium/base.rb b/lib/thorium/base.rb index <HASH>..<HASH> 100644 --- a/lib/thorium/base.rb +++ b/lib/thorium/base.rb @@ -24,7 +24,15 @@ module ThoriumCLI desc 'pubkey', 'Get id_rsa.pub (default) in your clipboard' def pubkey - copy_to_clipboard Dir.glob(File.expand_path('~/.ssh/id_rsa...
Base class refactoring: - pubkey task to fail if there is no default key (+ prompt for a new one) - generate pubkey private routine - copy to clipboard method should check for content
danstn_thorium
train
777a8ddd90de1b3b114f4c1cf33712b6b72c7dfe
diff --git a/collector/textfile.go b/collector/textfile.go index <HASH>..<HASH> 100644 --- a/collector/textfile.go +++ b/collector/textfile.go @@ -70,7 +70,7 @@ func (c *textFileCollector) Update(ch chan<- prometheus.Metric) (err error) { func (c *textFileCollector) parseTextFiles() []*dto.MetricFamily { error := ...
Remove unneeded `make` in empty slice initialization.
prometheus_node_exporter
train
50a84a2c55e558399bfdfc5aa612576de27e2c2f
diff --git a/hadoopy/_freeze.py b/hadoopy/_freeze.py index <HASH>..<HASH> 100644 --- a/hadoopy/_freeze.py +++ b/hadoopy/_freeze.py @@ -43,6 +43,10 @@ def _run(path): def _copytree(src, dst): """Similar to shutils.copytree, except that dst is already there """ + try: + os.makedirs(dst) + except O...
Try to make freeze destination directory as it may not be made
bwhite_hadoopy
train
c32cd30516852427691da04bf83b32f2b031af13
diff --git a/source/models/Conference.php b/source/models/Conference.php index <HASH>..<HASH> 100644 --- a/source/models/Conference.php +++ b/source/models/Conference.php @@ -89,4 +89,14 @@ final class Conference extends AudioMixin { { return new ConferenceMember($this->id); } + + /** + * Get audio ...
Added getAudioUrl() function for Conference Model.
Bandwidth_php-bandwidth
train
8b563a46507b240076ff2c772a459cd08f9d25da
diff --git a/pkg/controller/controller.go b/pkg/controller/controller.go index <HASH>..<HASH> 100644 --- a/pkg/controller/controller.go +++ b/pkg/controller/controller.go @@ -146,6 +146,8 @@ type Controller struct { uuid string stop chan struct{} update chan struct{} + ctxDoFu...
controller: Cancel controller function on controller removal Instead of waiting for the controller function to exit on its own, send a cancelation request via the context to expedite termination.
cilium_cilium
train
0341d952c5a4c2cb67454d4d54ae6a3589e868ea
diff --git a/src/sap.ui.core/src/sap/ui/core/Element.js b/src/sap.ui.core/src/sap/ui/core/Element.js index <HASH>..<HASH> 100644 --- a/src/sap.ui.core/src/sap/ui/core/Element.js +++ b/src/sap.ui.core/src/sap/ui/core/Element.js @@ -486,6 +486,9 @@ sap.ui.define([ return; } + // determine whether parent exists ...
[INTERNAL] Element: Destroy should remove DOM sync when there is no parent to invalidate - The idea of asynchronous DOM removal of destroy was relying on the invalidation and subsequent rendering of the parent. If there is no parent to invalidate we need to remove the DOM synchronously as before. BCP: <I> Change-Id...
SAP_openui5
train
613439c97e8ab3a62670411fd9367aa126fed2cf
diff --git a/stub/src/main/java/io/grpc/stub/ClientCalls.java b/stub/src/main/java/io/grpc/stub/ClientCalls.java index <HASH>..<HASH> 100644 --- a/stub/src/main/java/io/grpc/stub/ClientCalls.java +++ b/stub/src/main/java/io/grpc/stub/ClientCalls.java @@ -577,8 +577,9 @@ public final class ClientCalls { */ // TOD...
stub: Reorder blocking request()s for message throughput This can provide a ~2x performance increase to Netty and <I>% increase for OkHttp. Netty async saw a ~3x gain from MigratingDeframer, so blocking trails behind a bit. But OkHttp's async gains from MigratingDeframer were also <I>%, so this provides the same gain ...
grpc_grpc-java
train
7549d868f3e1a1391752d9625edfd7345e4fb8a6
diff --git a/lib/capistrano-unicorn/capistrano_integration.rb b/lib/capistrano-unicorn/capistrano_integration.rb index <HASH>..<HASH> 100644 --- a/lib/capistrano-unicorn/capistrano_integration.rb +++ b/lib/capistrano-unicorn/capistrano_integration.rb @@ -39,8 +39,8 @@ module CapistranoUnicorn _cset(:unicorn_...
rename primary_config_path and secondary_config_path for clarity
sosedoff_capistrano-unicorn
train
0edc7cc26b53c776e2c665084fb6db931b7c21c1
diff --git a/delphi/jupyter_tools.py b/delphi/jupyter_tools.py index <HASH>..<HASH> 100644 --- a/delphi/jupyter_tools.py +++ b/delphi/jupyter_tools.py @@ -1,12 +1,11 @@ import pandas as pd from typing import List from indra.statements import Influence -from IPython.display import Image, HTML -from .viz import to_agr...
refactoring some functions, improved jupyter table display
ml4ai_delphi
train
42971404785531d71b86f788dd9bd4d3f35af309
diff --git a/versionwarning/__init__.py b/versionwarning/__init__.py index <HASH>..<HASH> 100644 --- a/versionwarning/__init__.py +++ b/versionwarning/__init__.py @@ -131,7 +131,11 @@ def generate_data_js(app, config): 'url': '.', }, }) - with open(os.path.join(static_path, 'data', 'data.j...
Creates data path if it doesn't exist
humitos_sphinx-version-warning
train
5e12f838594784f8992b58e1c7e14885951e6928
diff --git a/wxmplot/baseframe.py b/wxmplot/baseframe.py index <HASH>..<HASH> 100644 --- a/wxmplot/baseframe.py +++ b/wxmplot/baseframe.py @@ -279,6 +279,8 @@ Matt Newville <newville@cars.uchicago.edu>""" % __version__ title = self.GetTitle() title = title.strip() + if title is None: + ...
make sure export-data has a filename prefix
newville_wxmplot
train
8e5f5d8c35b4bcc15c1575ee75a31465e6cab602
diff --git a/b2handle/searcher.py b/b2handle/searcher.py index <HASH>..<HASH> 100644 --- a/b2handle/searcher.py +++ b/b2handle/searcher.py @@ -201,6 +201,16 @@ class Searcher(object): msg = 'No search terms have been specified. Please specify'+\ ' at least one key-value-pair.' ...
Enabled searching for CHECKSUM only. This fixes issue #<I>.
EUDAT-B2SAFE_B2HANDLE
train
3eaa8fd85cbc75e8b4b1fd797a650cce33d42d43
diff --git a/src/future/backports/email/base64mime.py b/src/future/backports/email/base64mime.py index <HASH>..<HASH> 100644 --- a/src/future/backports/email/base64mime.py +++ b/src/future/backports/email/base64mime.py @@ -28,6 +28,7 @@ from __future__ import division from __future__ import absolute_import from futur...
Compare headers to correct definition of str
PythonCharmers_python-future
train
85288a262f525655378aae7e97c5974b49ebf720
diff --git a/lib/redfish_plus/dsl.rb b/lib/redfish_plus/dsl.rb index <HASH>..<HASH> 100644 --- a/lib/redfish_plus/dsl.rb +++ b/lib/redfish_plus/dsl.rb @@ -312,5 +312,55 @@ module RedfishPlus domain.data['jms_hosts'][name]['admin_username'] = admin_username domain.data['jms_hosts'][name]['admin_password'] ...
Add some helpers to create jdbc resources
realityforge_redfish
train
973ef4548cad8373fc92d41fc313859d50dfff9f
diff --git a/tests/utils/test_dns_utils.py b/tests/utils/test_dns_utils.py index <HASH>..<HASH> 100644 --- a/tests/utils/test_dns_utils.py +++ b/tests/utils/test_dns_utils.py @@ -24,12 +24,12 @@ def test_find_existing_record(mock_session): assert find_existing_record(MOCK_VALUES['env'], ...
made the dns test more explicit
foremast_foremast
train
a6eef78d0bce523bb44920ba96233f034b60316a
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os from setuptools import setup, find_packages -__version__ = '0.2.0' +__version__ = '0.2.1' setup( name = "cfmeta",
Bump to version <I>
pacificclimate_cfmeta
train
d619fabc2eb159805f82089f2cfe1b28df0f4f31
diff --git a/cmd/serve.go b/cmd/serve.go index <HASH>..<HASH> 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -32,7 +32,7 @@ var serveControls = `## Configuration ORY Hydra can be configured using environment variables as well as a configuration file. For more information on configuration options, open the configurat...
fix: update link to config docs displayed on `hydra serve help` (#<I>) Closes #<I>
ory_hydra
train
6b08a5f06a2f0ec4a6ade5b5dd448be8bc52c9e3
diff --git a/test/net/http/post/test_multipart.rb b/test/net/http/post/test_multipart.rb index <HASH>..<HASH> 100644 --- a/test/net/http/post/test_multipart.rb +++ b/test/net/http/post/test_multipart.rb @@ -5,6 +5,7 @@ #++ require 'net/http/post/multipart' +require 'test/unit' class Net::HTTP::Post::MultiPartTes...
require 'test/unit' here too, in case it gets loaded first
ioquatix_multipart-post
train
7efa86aed815f757a0179dc103876bf3c90a7540
diff --git a/pyrtl/corecircuits.py b/pyrtl/corecircuits.py index <HASH>..<HASH> 100644 --- a/pyrtl/corecircuits.py +++ b/pyrtl/corecircuits.py @@ -556,7 +556,8 @@ def enum_mux(cntrl, table, default=None, strict=True): def and_all_bits(vector): """ Returns WireVector, the result of "and"ing all items of the argume...
doc update to and/or/xor all bits
UCSBarchlab_PyRTL
train
0c7d5e0d58841db43a4f92bf26eb7559c9be1a74
diff --git a/tests/conftest.py b/tests/conftest.py index <HASH>..<HASH> 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -122,7 +122,7 @@ def experiment_dir_merged(experiment_dir, active_config): os.chdir(current_dir) -@pytest.fixture(scope="class") +@pytest.fixture def bartlett_dir(root): os.ch...
Remove tiny optimization not worth the loss of test isolation
Dallinger_Dallinger
train
2875fbb31fdaea403dab5fbd6de852abc60cae01
diff --git a/bokeh/model.py b/bokeh/model.py index <HASH>..<HASH> 100644 --- a/bokeh/model.py +++ b/bokeh/model.py @@ -100,14 +100,21 @@ class Model(with_metaclass(Viewable, HasProps, CallbackManager)): return self._document def trigger(self, attr, old, new, hint=None): - dirty = { 'count' : 0 } ...
allow hinted events to bypass invalidation
bokeh_bokeh
train
4962423cbac126c7b298a25c42ef6a7ee6fa792a
diff --git a/flag.go b/flag.go index <HASH>..<HASH> 100644 --- a/flag.go +++ b/flag.go @@ -420,6 +420,51 @@ func (f IntFlag) GetName() string { return f.Name } +// Int64Flag is a flag that takes a 64-bit integer +// Errors if the value provided cannot be parsed +type Int64Flag struct { + Name string + Value...
Adding Int<I>Flag type and related tests
urfave_cli
train
b8bbf00ede3296d65317533a4bfe8147bfbd689b
diff --git a/src/test/java/com/spotify/docker/client/DefaultDockerClientTest.java b/src/test/java/com/spotify/docker/client/DefaultDockerClientTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/spotify/docker/client/DefaultDockerClientTest.java +++ b/src/test/java/com/spotify/docker/client/DefaultDockerClien...
Test blkio options with block device, not character device
spotify_docker-client
train
21e65c5aff79760a5b4f548d6e889972c6bd6d89
diff --git a/src/scs_core/aws/security/organisation_manager.py b/src/scs_core/aws/security/organisation_manager.py index <HASH>..<HASH> 100644 --- a/src/scs_core/aws/security/organisation_manager.py +++ b/src/scs_core/aws/security/organisation_manager.py @@ -153,7 +153,9 @@ class OrganisationManager(object): r...
Refactored security CLUs
south-coast-science_scs_core
train
88304d5c4284c77525ab2b21b3428d0aef805c0a
diff --git a/lib/urlify.js b/lib/urlify.js index <HASH>..<HASH> 100644 --- a/lib/urlify.js +++ b/lib/urlify.js @@ -23,6 +23,11 @@ function trim(text, seq) { .replace(new RegExp("("+pattern+"){2,}", "g"), seq); } +var setImmediate = function(cb) { cb(); }; +if(typeof process !== 'undefined' && typeof process.nextT...
Implementing asynchronous call style. Fixes #4
Gottox_node-urlify
train
154f14c281992b8ca24d980f530c898deac3da34
diff --git a/scripts/prepare_compliance_data.py b/scripts/prepare_compliance_data.py index <HASH>..<HASH> 100644 --- a/scripts/prepare_compliance_data.py +++ b/scripts/prepare_compliance_data.py @@ -19,9 +19,18 @@ import generate_gff3_db class ComplianceDataMunger(object): - def __init__(self, args): - s...
made compliance data prep code usable as a library.
ga4gh_ga4gh-server
train
41de52175a1a7e55e52cdf02f563db0169c77790
diff --git a/ella/newman/media/js/newman.js b/ella/newman/media/js/newman.js index <HASH>..<HASH> 100644 --- a/ella/newman/media/js/newman.js +++ b/ella/newman/media/js/newman.js @@ -958,6 +958,23 @@ $( function() { } delete loaded_media[ MEDIA_URL + 'js/admin/DateTimeShortcuts.js' ]; }); + //...
Dynamically loaded suggester in newman now work with non-empty BASE_URL.
ella_ella
train
8611d9a20a7ae4dde2528124961a4e178a76e2a1
diff --git a/lib/mongoid/config/defaults.rb b/lib/mongoid/config/defaults.rb index <HASH>..<HASH> 100644 --- a/lib/mongoid/config/defaults.rb +++ b/lib/mongoid/config/defaults.rb @@ -50,6 +50,8 @@ module Mongoid # All flag defaults currently reflect 8.0 behavior. when "8.1" # All flag def...
Bump master to <I> (#<I>) * Bump master to <I> * Reset fallbacks to fix tests * Revert "Reset fallbacks to fix tests" This reverts commit c1a<I>a<I>cabfd<I>fe3e<I>d<I>d.
mongodb_mongoid
train
cdcbbf4451f6c536653ad0ba57c507655059f861
diff --git a/conftest.py b/conftest.py index <HASH>..<HASH> 100644 --- a/conftest.py +++ b/conftest.py @@ -18,3 +18,9 @@ collect_ignore = [ "setup.py", "tensorflow_probability/python/experimental/substrates/" ] + +def pytest_sessionstart(session): + from absl import app + # Unlike bazel, `pytest` doesn't i...
Handle app flags in pytest session hook to fix CI
tensorflow_probability
train
8b256cad5ee37716e6c2c21efbe32948d4a752d2
diff --git a/src/main/java/com/jfinal/plugin/activerecord/PageSqlKit.java b/src/main/java/com/jfinal/plugin/activerecord/PageSqlKit.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/jfinal/plugin/activerecord/PageSqlKit.java +++ b/src/main/java/com/jfinal/plugin/activerecord/PageSqlKit.java @@ -68,7 +68,12 @@ pu...
jfinal <I> release ^_^
jfinal_jfinal
train
a7ed33c15f275099d93ff6c1c2363b2da9a31b5a
diff --git a/packages/neos-ui-sagas/src/UI/PageTree/index.js b/packages/neos-ui-sagas/src/UI/PageTree/index.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui-sagas/src/UI/PageTree/index.js +++ b/packages/neos-ui-sagas/src/UI/PageTree/index.js @@ -132,7 +132,21 @@ export function * watchSearch({configuration}) { ...
BUGFIX: Properly reload the page tree if filter or search is reset #<I> (#<I>) [BUGFIX] Properly reload the page tree if filter or search is reset
neos_neos-ui
train
341ee3a249da910bd7b37c46021dfd05b271b223
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,7 @@ module.exports = { 'unicorn' ], rules: { - 'unicorn/catch-error-name': ['off', {name: 'error'}], + 'unicorn/catch-error-name': ['error', {name: 'error'}], 'unicorn/explicit-length-check':...
Re-enable the `catch-error-name` rule It was disabled because of <URL>
sindresorhus_eslint-plugin-unicorn
train
630a2bc4b4d29c3f8ddf13882c8d847e2bf13317
diff --git a/src/sap.ui.integration/src/sap/ui/integration/controls/ActionsToolbar.js b/src/sap.ui.integration/src/sap/ui/integration/controls/ActionsToolbar.js index <HASH>..<HASH> 100644 --- a/src/sap.ui.integration/src/sap/ui/integration/controls/ActionsToolbar.js +++ b/src/sap.ui.integration/src/sap/ui/integration/...
[INTERNAL] Integration Cards: Hides toolbar if there are no visible actions Makes an initial check for visible actions. If there are no visible actions - hides the toolbar. Change-Id: I<I>ea9e<I>e<I>ed<I>e<I>f1e<I>fc JIRA: DIGITALWORKPLACE-<I>
SAP_openui5
train
1eaf3555f310da8ba77f84ca8f4e94763b4bdd52
diff --git a/ChangeLog b/ChangeLog index <HASH>..<HASH> 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,14 @@ 2007-09-30 Brian Warner <warner@lothar.com> + * buildbot/interfaces.py (IStatus.generateFinishedBuilds): add a + 'max_search=' argument, to limit the number of builds that are + examined while trying to ...
limit the number of builds we examine in generateFinishedBuilds
buildbot_buildbot
train
2c36116d93111dbf1723d833bb72300fd8e67e61
diff --git a/Di/ContainerTrait.php b/Di/ContainerTrait.php index <HASH>..<HASH> 100644 --- a/Di/ContainerTrait.php +++ b/Di/ContainerTrait.php @@ -111,8 +111,9 @@ trait ContainerTrait if ($this->hasDependency($className)) throw new \RuntimeException( - "Failed to register dependen...
Fixed a bug with missing type hints
Talesoft_tale-di
train
965d2f9efd7e4eff9841cc733fc830d1b3054b68
diff --git a/src/core/Tags.java b/src/core/Tags.java index <HASH>..<HASH> 100644 --- a/src/core/Tags.java +++ b/src/core/Tags.java @@ -293,7 +293,8 @@ public final class Tags { final short name_width = tsdb.tag_names.width(); final short value_width = tsdb.tag_values.width(); // TODO(tsuna): Can do a bin...
Modify the Tags class to handle salted row keys
OpenTSDB_opentsdb
train
46d9051cd5883d488116f1def2c55eac41915ed3
diff --git a/version/version.go b/version/version.go index <HASH>..<HASH> 100644 --- a/version/version.go +++ b/version/version.go @@ -13,16 +13,16 @@ import ( "runtime" "strings" - "github.com/juju/version" + semversion "github.com/juju/version" ) // The presence and format of this constant is very important...
Changed package variable back for CI. CI searches for the "version" variable. Rather than make them do a bunch of work, I've just changed it back to what they parsed for and renamed the package import.
juju_juju
train
fc9f26b79e10f9f91827b3514e7271237ed9d080
diff --git a/scapy/layers/lltd.py b/scapy/layers/lltd.py index <HASH>..<HASH> 100644 --- a/scapy/layers/lltd.py +++ b/scapy/layers/lltd.py @@ -12,9 +12,9 @@ https://msdn.microsoft.com/en-us/library/cc233983.aspx import struct from scapy.fields import BitField, FlagsField, ByteField, ByteEnumField, \ - ShortField...
LLTD: support QueryResp messages
secdev_scapy
train
97adced0cf5c98e9b64c2d1d029306d3e41a73d0
diff --git a/pycbc/workflow/jobsetup.py b/pycbc/workflow/jobsetup.py index <HASH>..<HASH> 100644 --- a/pycbc/workflow/jobsetup.py +++ b/pycbc/workflow/jobsetup.py @@ -840,7 +840,7 @@ class LigolwSSthincaExecutable(Executable): node.new_output_file_opt(jobSegment, '.xml.gz', '--output-file', ...
A typo crept in while rebasing, fixing that. This is changes for sstinca to explicitly state its output file
gwastro_pycbc
train
3eb780a2fbaf0a2538ba1107d5eeeb00a2f5c328
diff --git a/languagetool-server/src/main/java/org/languagetool/server/ResultExtender.java b/languagetool-server/src/main/java/org/languagetool/server/ResultExtender.java index <HASH>..<HASH> 100644 --- a/languagetool-server/src/main/java/org/languagetool/server/ResultExtender.java +++ b/languagetool-server/src/main/ja...
don't lose parameters (especially 'mode') when querying second server
languagetool-org_languagetool
train
89d15271ac6e339657ca349d56226d550e94156c
diff --git a/Tar.php b/Tar.php index <HASH>..<HASH> 100644 --- a/Tar.php +++ b/Tar.php @@ -166,10 +166,20 @@ class Tar implements ExtractableInterface while ($position < strlen($data)) { - $info = @unpack( - "a100filename/a8mode/a8uid/a8gid/a12size/a12mtime/a8checksum/Ctypeflag/a100link/a6magic/a2version/a...
B/C breaking change in unpack() for PHP <I>
joomla-framework_archive
train
b191633c8efbdf2afa2030059d4679272fc16d12
diff --git a/build/controllers/PhpDocController.php b/build/controllers/PhpDocController.php index <HASH>..<HASH> 100644 --- a/build/controllers/PhpDocController.php +++ b/build/controllers/PhpDocController.php @@ -86,7 +86,7 @@ class PhpDocController extends Controller $nFilesUpdated = 0; foreach ($f...
hashing at `PhpDocController` improved
yiisoft_yii-core
train
60273bab90dd1809c626f3a8573cc3868f62015c
diff --git a/axes/decorators.py b/axes/decorators.py index <HASH>..<HASH> 100644 --- a/axes/decorators.py +++ b/axes/decorators.py @@ -144,13 +144,12 @@ def is_user_lockable(request): else: return True - -def get_user_attempts(request): +def _get_user_attempts(request): """Returns access attempt re...
Reload the queryset after certain objects have been deleted.
jazzband_django-axes
train
7097ae0561e6f0be8154b0da1eaf0be882b1cbef
diff --git a/potsdb/tests/test_potsdb.py b/potsdb/tests/test_potsdb.py index <HASH>..<HASH> 100644 --- a/potsdb/tests/test_potsdb.py +++ b/potsdb/tests/test_potsdb.py @@ -23,7 +23,7 @@ class TestPotsDB(TestCase): extratag = str(random.randint(0, 1000000)) t.log('test.metric1', random.randint(0...
Tests: changed deprecated assertEquals to assertEqual
orionvm_potsdb
train
390a4b2c72f62e2ee63be358e4c7595868093505
diff --git a/event.go b/event.go index <HASH>..<HASH> 100644 --- a/event.go +++ b/event.go @@ -6,6 +6,9 @@ const ( TermChangeEventType = "termChange" AddPeerEventType = "addPeer" RemovePeerEventType = "removePeer" + + HeartbeatTimeoutEventType = "heartbeatTimeout" + ElectionTimeoutThresholdEventType ...
Add election threshold and heartbeat timeout events.
influxdata_influxdb
train
cdf5813d7d49f612a5d9989f09685ddb82a34eae
diff --git a/js/southxchange.js b/js/southxchange.js index <HASH>..<HASH> 100644 --- a/js/southxchange.js +++ b/js/southxchange.js @@ -79,6 +79,8 @@ module.exports = class southxchange extends Exchange { async fetchBalance (params = {}) { await this.loadMarkets (); let balances = await this.priva...
southxchange: fetchBalance: throw on bad response
ccxt_ccxt
train
f10212d33abc7d33903da9524cb7381198fd1daf
diff --git a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/network/api/ApiBroker.java b/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/network/api/ApiBroker.java index <HASH>..<HASH> 100644 --- a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/network/api/ApiBroker.jav...
fix(core): Fixing handling RPC responses on deserialization errors
actorapp_actor-platform
train
af4489fb225c7f301189813619560ec5f63cf596
diff --git a/openstack/lb_v2_shared.go b/openstack/lb_v2_shared.go index <HASH>..<HASH> 100644 --- a/openstack/lb_v2_shared.go +++ b/openstack/lb_v2_shared.go @@ -734,9 +734,11 @@ func resourceLBV2LoadBalancerStatusRefreshFuncNeutron(lbClient *gophercloud.Serv if err != nil { if _, ok := err.(gophercloud.ErrDefa...
Fix "composite literal uses unkeyed fields" go vet (#<I>)
terraform-providers_terraform-provider-openstack
train
e11ba9a2d7c89a1ecea8613589f05399b45a33bf
diff --git a/src/Dev/BulkLoader.php b/src/Dev/BulkLoader.php index <HASH>..<HASH> 100644 --- a/src/Dev/BulkLoader.php +++ b/src/Dev/BulkLoader.php @@ -223,19 +223,30 @@ abstract class BulkLoader extends ViewableData **/ public function getImportSpec() { - $spec = array(); + $singleton = Da...
BUG Fix many_many through crashing ModelAdmin
silverstripe_silverstripe-framework
train
6503d8a5e8c1015ebd5f9c220dc28d0dd5572f21
diff --git a/src/main/java/net/finmath/marketdata/products/Portfolio.java b/src/main/java/net/finmath/marketdata/products/Portfolio.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/finmath/marketdata/products/Portfolio.java +++ b/src/main/java/net/finmath/marketdata/products/Portfolio.java @@ -38,8 +38,8 @@ pub...
ArrayList representing the portfolio will be cloned (shallow). git-svn-id: <URL>
finmath_finmath-lib
train
6057604394a0acfee26a8ee787437b3abccecb20
diff --git a/thinc/extra/datasets.py b/thinc/extra/datasets.py index <HASH>..<HASH> 100644 --- a/thinc/extra/datasets.py +++ b/thinc/extra/datasets.py @@ -77,13 +77,13 @@ def read_conll(loc): yield words, tags -def mnist(): +def mnist(n=60000): from ._vendorized.keras_datasets import load_mnist ...
Add param to use less data in mnist
explosion_thinc
train
b718ace960402b8e1f43e124c1734a3f5f7097e0
diff --git a/tq/manifest.go b/tq/manifest.go index <HASH>..<HASH> 100644 --- a/tq/manifest.go +++ b/tq/manifest.go @@ -19,7 +19,6 @@ type Manifest struct { concurrentTransfers int basicTransfersOnly bool tusTransfersAllowed bool - remote string downloadAdapterFuncs map[string]NewAdapterFunc ...
tq: remove 'remote' property from Manifest
git-lfs_git-lfs
train