hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
8c3f7b0dde910a62c533d207da84c1e825cacfd9
diff --git a/helios-services/src/test/java/com/spotify/helios/servicescommon/statistics/FastForwardReporterTest.java b/helios-services/src/test/java/com/spotify/helios/servicescommon/statistics/FastForwardReporterTest.java index <HASH>..<HASH> 100644 --- a/helios-services/src/test/java/com/spotify/helios/servicescommon...
small cleanup in FastForwardReporterTest
spotify_helios
train
10836d9735d7f5fbbd9a2a1f5b2e45b15b249b49
diff --git a/splunklib/client.py b/splunklib/client.py index <HASH>..<HASH> 100644 --- a/splunklib/client.py +++ b/splunklib/client.py @@ -1690,16 +1690,17 @@ class Stanza(Entity): """This class contains a single configuration stanza.""" def submit(self, stanza): - """Sets the keys in *stanza* on thi...
Edited Stanza.submit Edited the doc strings for Stanza.submit. I am saying raw strings are deprecated--correct?
splunk_splunk-sdk-python
train
2ec9e5e76c7973390bd105b0d285a04f503757b5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -124,6 +124,8 @@ if int(setuptools.__version__.split(".", 1)[0]) < 18: assert "bdist_wheel" not in sys.argv, "setuptools 18 or later is required for wheels." if sys.version_info[:2] < (3, 5): install_require...
use PEP <I> when setuptools is version <I> or higher
django-extensions_django-extensions
train
d6a3b4af567aa516ef9c3e76b6cbe7e0483d2306
diff --git a/app/templates/src/main/java/package/_Application.java b/app/templates/src/main/java/package/_Application.java index <HASH>..<HASH> 100644 --- a/app/templates/src/main/java/package/_Application.java +++ b/app/templates/src/main/java/package/_Application.java @@ -52,11 +52,12 @@ public class Application { ...
Don't add profile if already defined via environment Fix #<I>
jhipster_generator-jhipster
train
dbcb8a42a2861eab018670cbfc290eea6f9577aa
diff --git a/ford/__init__.py b/ford/__init__.py index <HASH>..<HASH> 100644 --- a/ford/__init__.py +++ b/ford/__init__.py @@ -46,7 +46,7 @@ __appname__ = "FORD" __author__ = "Chris MacMackin, Jacob Williams, Marco Restelli" __credits__ = ["Stefano Zhagi", "Izaak Beekman", "Gavin Huttley"] __license__ =...
Fixed an extra parentheses and comman that would sometimes arise when printing intent() information. Preparing for next release.
Fortran-FOSS-Programmers_ford
train
efe8153a423cb03d4f713acba6b1011361756892
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/roles_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/roles_helper.rb index <HASH>..<HASH> 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/roles_helper.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/roles_helper.rb @@ -2...
SONAR-<I> User list is not correctly sorted in the Groups page
SonarSource_sonarqube
train
b97c1b9aeb23a401ca86e8388409332c2ea61bb8
diff --git a/luigi/interface.py b/luigi/interface.py index <HASH>..<HASH> 100644 --- a/luigi/interface.py +++ b/luigi/interface.py @@ -1,4 +1,4 @@ -import worker +import worker, daemon class Register: def __init__(self): @@ -32,6 +32,8 @@ class ArgParseInterface(Interface): import argparse par...
added code not to run same process twice
spotify_luigi
train
e767b1297f4b6a6f8eb7f367eab17af13920e46d
diff --git a/DataFixtures/AbstractDataFixture.php b/DataFixtures/AbstractDataFixture.php index <HASH>..<HASH> 100644 --- a/DataFixtures/AbstractDataFixture.php +++ b/DataFixtures/AbstractDataFixture.php @@ -19,6 +19,7 @@ use Doctrine\Common\Persistence\ObjectManager; use Faker\Factory as FakerFactory; use Symfony\Com...
Modified fixtures (cherry picked from commit e<I>a<I>bbd7ef<I>b<I>c<I>c2d<I>b1)
WellCommerce_CouponBundle
train
f2a0265a42734a0f6b0299493984341af6c9681c
diff --git a/ext/looksee/extconf.rb b/ext/looksee/extconf.rb index <HASH>..<HASH> 100644 --- a/ext/looksee/extconf.rb +++ b/ext/looksee/extconf.rb @@ -1,5 +1,6 @@ require 'mkmf' +$CPPFLAGS << " -DRUBY_VERSION=#{RUBY_VERSION.tr('.', '')}" dir_config("looksee") create_makefile("looksee") diff --git a/ext/looksee/l...
Fix running under ruby <I>. * <I> does not define RCLASS_* macros. * RSpec mixes InstanceExecHelper into Object under <I>. * <I> formats %x differently when negative. * String#lines not defined.
oggy_looksee
train
e8c50e6772ae9a0dcbd83cdb12cff189e5c7fd0d
diff --git a/gremlin-core/src/main/java/com/tinkerpop/gremlin/structure/Vertex.java b/gremlin-core/src/main/java/com/tinkerpop/gremlin/structure/Vertex.java index <HASH>..<HASH> 100644 --- a/gremlin-core/src/main/java/com/tinkerpop/gremlin/structure/Vertex.java +++ b/gremlin-core/src/main/java/com/tinkerpop/gremlin/str...
Add test for Vertex.has with the BiPredicate.
apache_tinkerpop
train
eaf84ec601183123b034945ae9830e27945a6daf
diff --git a/api/client/client.go b/api/client/client.go index <HASH>..<HASH> 100644 --- a/api/client/client.go +++ b/api/client/client.go @@ -109,6 +109,7 @@ func (srv *server) post(url string, jsonData []byte) (*api.Response, error) { err = fmt.Errorf("failed POST to %s: %v", url, err) return nil, errors.Wrap(e...
Change api client to always close connections. Fixes 'too many open files' error with many connections.
cloudflare_cfssl
train
8d4c490c0d58ef0ffcc86fd626c9e980c656ee9c
diff --git a/projects/samskivert/src/java/com/samskivert/servlet/MessageManager.java b/projects/samskivert/src/java/com/samskivert/servlet/MessageManager.java index <HASH>..<HASH> 100644 --- a/projects/samskivert/src/java/com/samskivert/servlet/MessageManager.java +++ b/projects/samskivert/src/java/com/samskivert/servl...
Added code to cache resolved resource bundles in the request object so that we don't have to re-resolve the bundle for every single message lookup. git-svn-id: <URL>
samskivert_samskivert
train
93c29238a43847bef001f66909f576e8623cbdca
diff --git a/src/main/java/com/stackify/api/common/ApiConfigurations.java b/src/main/java/com/stackify/api/common/ApiConfigurations.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/stackify/api/common/ApiConfigurations.java +++ b/src/main/java/com/stackify/api/common/ApiConfigurations.java @@ -71,32 +71,34 @@ p...
Check existence of properties before constructing File object
stackify_stackify-api-java
train
87bee25bc52df417e64d53c8569cef82b02690f5
diff --git a/properties/extras/uid.py b/properties/extras/uid.py index <HASH>..<HASH> 100644 --- a/properties/extras/uid.py +++ b/properties/extras/uid.py @@ -4,7 +4,6 @@ import uuid from six import string_types, text_type from .. import base, basic, handlers, utils -from ..base.instance import CLASS_TYPES cla...
Appease pylint
seequent_properties
train
37d43495667114b832d0c24b281cd9ce97bcca8c
diff --git a/src/Embera/Provider/Chainflix.php b/src/Embera/Provider/Chainflix.php index <HASH>..<HASH> 100644 --- a/src/Embera/Provider/Chainflix.php +++ b/src/Embera/Provider/Chainflix.php @@ -21,7 +21,7 @@ use Embera\Url; class Chainflix extends ProviderAdapter implements ProviderInterface { /** inline {@inhe...
Updated Chainflix Endpoint/Patterns
mpratt_Embera
train
de9392e0dc1c290f7f767d5b9a12e7f36d34e39f
diff --git a/scvelo/tools/velocity_graph.py b/scvelo/tools/velocity_graph.py index <HASH>..<HASH> 100644 --- a/scvelo/tools/velocity_graph.py +++ b/scvelo/tools/velocity_graph.py @@ -64,8 +64,12 @@ class VelocityGraph: if self.sqrt_transform: self.V = np.sqrt(np.abs(self.V)) * np.sign(self.V) self.V -...
set n_recurse_neighbors default (depending on mode_neighbors)
theislab_scvelo
train
75c94e342410d4504cf0eb5346d0ea5e54c99008
diff --git a/spec/unit/node.rb b/spec/unit/node.rb index <HASH>..<HASH> 100755 --- a/spec/unit/node.rb +++ b/spec/unit/node.rb @@ -136,13 +136,6 @@ describe Puppet::Node, "when indirecting" do end end -describe Puppet::Node do - # LAK:NOTE This is used to keep track of when a given node has connected, - #...
Removing an obsolete, unimplemented test
puppetlabs_puppet
train
b1f87414e5ec20d1bcf9127d99f34b21c88df1a4
diff --git a/modules/getintentBidAdapter.js b/modules/getintentBidAdapter.js index <HASH>..<HASH> 100644 --- a/modules/getintentBidAdapter.js +++ b/modules/getintentBidAdapter.js @@ -49,7 +49,7 @@ export const spec = { * Callback for bids, after the call to DSP completes. * Parse the response from the server in...
Getintent adapter: support multisize bids (#<I>) * GetIntent adapter - added support for multi size bids * GetIntent adapter - add test case * GetIntent adapter - check malformed sizes in bid request
prebid_Prebid.js
train
accc94f8de82619a780958a3004a96d384bee607
diff --git a/src/BugsnagServiceProvider.php b/src/BugsnagServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/BugsnagServiceProvider.php +++ b/src/BugsnagServiceProvider.php @@ -269,8 +269,8 @@ class BugsnagServiceProvider extends ServiceProvider if (!isset($config['user']) || $config['user']) { ...
Only capture attributes when fetching user data (#<I>) When a user is connected to many other models, calling toArray can be intensive, and the data gathered may not be much more useful from a debugging perspective. This change reduces the overhead of fetching the user.
bugsnag_bugsnag-laravel
train
3a8225869747306afb9dcf05bb902cb61a296cfc
diff --git a/test/spec/fused_spec.rb b/test/spec/fused_spec.rb index <HASH>..<HASH> 100644 --- a/test/spec/fused_spec.rb +++ b/test/spec/fused_spec.rb @@ -15,8 +15,7 @@ # require 'spec_helper' -require 'poise/fused' -require 'poise/lwrp_polyfill' + describe Poise::Resource::Fused do resource(:poise_test) do
Those are part of the public interface.
poise_poise
train
c6bcf0528793de3bd9cedec85a5b280f1f6af86a
diff --git a/src/Symfony/Component/Debug/Exception/FlattenException.php b/src/Symfony/Component/Debug/Exception/FlattenException.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Debug/Exception/FlattenException.php +++ b/src/Symfony/Component/Debug/Exception/FlattenException.php @@ -239,17 +239,20 @@ class F...
add a limit and a test to FlattenExceptionTest.
symfony_symfony
train
7de3f8aea4e4ca5fe4677c4d2053e042528598d7
diff --git a/angr/state_plugins/symbolic_memory.py b/angr/state_plugins/symbolic_memory.py index <HASH>..<HASH> 100644 --- a/angr/state_plugins/symbolic_memory.py +++ b/angr/state_plugins/symbolic_memory.py @@ -448,6 +448,11 @@ class SimSymbolicMemory(SimMemory): #pylint:disable=abstract-method eternal...
SimSymbolicMemory: Be nice to users and warn about missing bytes.
angr_angr
train
82a4fa46397a211f993513d9c14c4d97b19a1126
diff --git a/cnxeasybake/oven.py b/cnxeasybake/oven.py index <HASH>..<HASH> 100755 --- a/cnxeasybake/oven.py +++ b/cnxeasybake/oven.py @@ -503,7 +503,11 @@ class Oven(): elem = element.etree_element elif self.is_pending_element(element): elem = step['pending_elems'][-1][1].tree - ...
look for previous buckets when setting, as well
openstax_cnx-easybake
train
5071e014ff387d3e6ddd02058b58d227224dd660
diff --git a/spec/ConfigurationSpec.php b/spec/ConfigurationSpec.php index <HASH>..<HASH> 100644 --- a/spec/ConfigurationSpec.php +++ b/spec/ConfigurationSpec.php @@ -10,11 +10,13 @@ */ use CodeAnalyzer\Configuration; +use CodeAnalyzer\ConfigurationBuilder; use CodeAnalyzer\Result; use CodeAnalyzer\Result\File; ...
Configration to immutable object
cloak-php_cloak
train
db9993e1bce4a754549e2fd0441b506078c0350d
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -24,12 +24,12 @@ module.exports = function (opts) { tfs.init(); tfs.checkout([file.path]).then(function () { gutil.log('Checked out file "' + file.path + '"'); - cb(); + cb(null, file); },...
pass file as second arguments of callback on tfs checkout
MadsMadsDk_gulp-tfs-checkout
train
0287e89b1a1323f4d1e3277b3bac89d536f421ab
diff --git a/src/Api.js b/src/Api.js index <HASH>..<HASH> 100644 --- a/src/Api.js +++ b/src/Api.js @@ -57,7 +57,7 @@ class Api { route(destination) { const newPosition = this[route].concat([destination]); - return new Api( + let api = new Api( this[boundObject].then(object => Binding.getBinding(object).rou...
implemented multirouting in owe.Api
owejs_core
train
06bdea13f4b3e2e90674d7eef8140aa058f13295
diff --git a/build.xml b/build.xml index <HASH>..<HASH> 100644 --- a/build.xml +++ b/build.xml @@ -69,7 +69,7 @@ </target> <target name="compile" depends="mkdirs"> - <javac srcdir="${src}" destdir="${classes}" includeantruntime="false"> + <javac srcdir="${src}" destdir="${classes}" includeantruntime="false" deb...
Additional toString() methods plus build with debug on
mqlight_java-mqlight
train
f35b5be65652c7fe19243cbba92dc7afb546bc6b
diff --git a/features/pickle/create_from_active_record.feature b/features/pickle/create_from_active_record.feature index <HASH>..<HASH> 100644 --- a/features/pickle/create_from_active_record.feature +++ b/features/pickle/create_from_active_record.feature @@ -65,4 +65,3 @@ Feature: I can easily create models from my blu...
Implement referenceable models for find with table
ianwhite_pickle
train
6fb84bc61c02862ecbac06502517f3b7b15d6e1c
diff --git a/netty/src/main/java/io/grpc/netty/NettyClientHandler.java b/netty/src/main/java/io/grpc/netty/NettyClientHandler.java index <HASH>..<HASH> 100644 --- a/netty/src/main/java/io/grpc/netty/NettyClientHandler.java +++ b/netty/src/main/java/io/grpc/netty/NettyClientHandler.java @@ -767,7 +767,6 @@ class NettyCl...
Call the HTTP/2 close() so that GOAWAY is issued
grpc_grpc-java
train
cd985580621dabf1bdb1965f788077cc4cc9360d
diff --git a/src/test/java/org/cactoos/iterable/IterableEnvelopeTest.java b/src/test/java/org/cactoos/iterable/IterableEnvelopeTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/cactoos/iterable/IterableEnvelopeTest.java +++ b/src/test/java/org/cactoos/iterable/IterableEnvelopeTest.java @@ -108,7 +108,7 @@ p...
(#<I>) Update reasons in tests
yegor256_cactoos
train
1c94f835c76432c0bcdbe1781539dfd8e11d1f5e
diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AotGenerateMojo.java b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AotGenerateMojo.java index <HASH>..<HASH> 100644 --- a/spring-boot-p...
Copy AOT-generated classes Closes gh-<I>
spring-projects_spring-boot
train
71f04667352932f675e25627150324f8ab8ee0bf
diff --git a/peppy/project.py b/peppy/project.py index <HASH>..<HASH> 100644 --- a/peppy/project.py +++ b/peppy/project.py @@ -313,7 +313,7 @@ class Project(PathExAttMap): sample_indexer = \ subsample_table[sample_colname] == sample[SAMPLE_NAME_ATTR] this_sample_rows = subsamp...
drop subsample table call only if all are vals missing
pepkit_peppy
train
97bc7a2d25c3e9a0b3ffedff22ab399f7baeddcc
diff --git a/allennlp/commands/train.py b/allennlp/commands/train.py index <HASH>..<HASH> 100644 --- a/allennlp/commands/train.py +++ b/allennlp/commands/train.py @@ -103,20 +103,18 @@ def train_model_from_args(args: argparse.Namespace): for package_name in args.include_package: import_submodules(package_...
Combined recovery logic, made it not crash on beaker (#<I>)
allenai_allennlp
train
d306d8f3d52cc5000f79936b8d4d31f2dc1c99a8
diff --git a/api.go b/api.go index <HASH>..<HASH> 100644 --- a/api.go +++ b/api.go @@ -515,8 +515,8 @@ func (api *API) InterruptAttachingToTangle() error { } type BroadcastTransactionsRequest struct { - Command string `json:"command"` - Trytes []Trytes `json:"trytes"` + Command string `json:"command"` + T...
use a slice of Transaction instead of Trytes for BroadcastTransactionsRequest
iotaledger_iota.go
train
f1b327e24783025c1cafb08034bf6a9b021c765e
diff --git a/robe-admin/src/main/java/io/robe/admin/hibernate/dao/RoleDao.java b/robe-admin/src/main/java/io/robe/admin/hibernate/dao/RoleDao.java index <HASH>..<HASH> 100644 --- a/robe-admin/src/main/java/io/robe/admin/hibernate/dao/RoleDao.java +++ b/robe-admin/src/main/java/io/robe/admin/hibernate/dao/RoleDao.java @...
Missing test added to RoleResourceTest.java
robeio_robe
train
5796ad85837fd719dd63b78f7ae686f1f4735861
diff --git a/concrete/src/Page/Controller/MarketplaceDashboardPageController.php b/concrete/src/Page/Controller/MarketplaceDashboardPageController.php index <HASH>..<HASH> 100644 --- a/concrete/src/Page/Controller/MarketplaceDashboardPageController.php +++ b/concrete/src/Page/Controller/MarketplaceDashboardPageControll...
Fix: unset variables to work with PHP 8
concrete5_concrete5
train
4a32290f44aba6f81eb9372f001e74152c83e293
diff --git a/src/components/inputs/TextInput.js b/src/components/inputs/TextInput.js index <HASH>..<HASH> 100644 --- a/src/components/inputs/TextInput.js +++ b/src/components/inputs/TextInput.js @@ -171,10 +171,10 @@ export default class TextInput extends BaseInput { const {inputWidth, value} = this.state; co...
fix text input - put style last in order
wix_react-native-ui-lib
train
593d33f989ee6aa041e1875dc90cfb5a4ea88a22
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -256,7 +256,7 @@ async function npmTest() { } ); } -async function askVersionType( currentVersion ) { +async function askVersionType( currentVersion, diffFiles ) { let isPrerelease = currentVersion.indexOf( '-' ...
Release candidate prereleases now allow for empty commits
Zelgadis87_npm-versionator
train
fbe7451229661fd34d9cb238f417da347cd4ca50
diff --git a/queryize.js b/queryize.js index <HASH>..<HASH> 100644 --- a/queryize.js +++ b/queryize.js @@ -18,13 +18,12 @@ var idCounter = 0; */ var queryize = function (original) { - var debugEnabled = false; - var useBoundParameters = queryize.useBoundParameters; var dataBindings = {}; var attributes =...
Moved debugEnabled to attributes object.
Twipped_QueryizeJS
train
ae001369f378d4c67b4cea143bcd9eaf23ac064c
diff --git a/pysat/utils/files.py b/pysat/utils/files.py index <HASH>..<HASH> 100644 --- a/pysat/utils/files.py +++ b/pysat/utils/files.py @@ -124,10 +124,6 @@ def process_parsed_filenames(stored, two_digit_year_break=None): def parse_fixed_width_filenames(files, format_str): """Parse list of files, extracting da...
STY: Removed info per reviewer
rstoneback_pysat
train
a1207e056d2c37700c5eb3ddf50e5a4160e0cbba
diff --git a/hazelcast/src/main/java/com/hazelcast/partition/impl/InternalPartitionServiceImpl.java b/hazelcast/src/main/java/com/hazelcast/partition/impl/InternalPartitionServiceImpl.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/partition/impl/InternalPartitionServiceImpl.java +++ b/haze...
NPE is fixed when owner is null in the InternalPartitionServiceImpl.
hazelcast_hazelcast
train
bdb9c8ffd0244f812d47d600ba4423593552f856
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index <HASH>..<HASH> 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -2486,7 +2486,7 @@ class NDFrame(PandasObject): method : {'backfill', 'bfill', 'pad', 'ffill', None} Method to use for filling holes in reindexed Se...
Change "methdo" to "method" in asfreq's docstring.
pandas-dev_pandas
train
680277b9b2f6d50c283ee6daa1d42d59008ab4e2
diff --git a/vault/expiration.go b/vault/expiration.go index <HASH>..<HASH> 100644 --- a/vault/expiration.go +++ b/vault/expiration.go @@ -245,9 +245,10 @@ func (m *ExpirationManager) Renew(vaultID string, increment time.Duration) (*log resp.Lease.VaultID = vaultID // Update the lease entry + leaseTotal := resp.L...
vault: Respect grace period for revocation
hashicorp_vault
train
d9edf39ed2fc10bbe7a20d1ca3fa95ce795a6d15
diff --git a/java/client/test/org/openqa/selenium/testing/JUnit4TestBase.java b/java/client/test/org/openqa/selenium/testing/JUnit4TestBase.java index <HASH>..<HASH> 100644 --- a/java/client/test/org/openqa/selenium/testing/JUnit4TestBase.java +++ b/java/client/test/org/openqa/selenium/testing/JUnit4TestBase.java @@ -5...
SimonStewart: Keep hold of the driver instance for as long as possible. Test suites will now need to remember to kill the driver instance once complete r<I>
SeleniumHQ_selenium
train
4ed11b067c550ae1209ab4ee6525b89bfc0a3e2f
diff --git a/Sniffs/Commenting/ClassCommentSniff.php b/Sniffs/Commenting/ClassCommentSniff.php index <HASH>..<HASH> 100644 --- a/Sniffs/Commenting/ClassCommentSniff.php +++ b/Sniffs/Commenting/ClassCommentSniff.php @@ -49,6 +49,8 @@ class Oxid_Sniffs_Commenting_ClassCommentSniff extends PEAR_Sniffs_Commenting_FileComm...
Disabled all Tags for the Class documentation
OXID-eSales_coding_standards
train
ecd949d6e90243e52f5cb0bf5c2e74049a335b25
diff --git a/src/Storage/Repository.php b/src/Storage/Repository.php index <HASH>..<HASH> 100644 --- a/src/Storage/Repository.php +++ b/src/Storage/Repository.php @@ -1,6 +1,8 @@ <?php namespace Bolt\Storage; + use Doctrine\Common\Persistence\ObjectRepository; +use Bolt\Events\StorageEvents; /** @@ -19,13 +21,1...
pass the db fetches through the hydrator
bolt_bolt
train
fb5fc8a9f2710efec43fe516a96fdb7a86734a1a
diff --git a/lib/puppet/pops/binder/hiera2/bindings_provider.rb b/lib/puppet/pops/binder/hiera2/bindings_provider.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/pops/binder/hiera2/bindings_provider.rb +++ b/lib/puppet/pops/binder/hiera2/bindings_provider.rb @@ -35,7 +35,7 @@ module Puppet::Pops::Binder::Hiera2 ...
(maint) Fix wrong filename from being shown in hiera-2 related errors
puppetlabs_puppet
train
c6361113d70964cbe8764cbbb9aaeec277033566
diff --git a/lib/yard/templates/helpers/markup/rdoc_markup.rb b/lib/yard/templates/helpers/markup/rdoc_markup.rb index <HASH>..<HASH> 100644 --- a/lib/yard/templates/helpers/markup/rdoc_markup.rb +++ b/lib/yard/templates/helpers/markup/rdoc_markup.rb @@ -3,12 +3,14 @@ module YARD module Helpers module Marku...
Add support for RDoc <I> which no longer requires 'rdoc' inside markup sources
lsegal_yard
train
0e2046509004c5f6eacda95d2ee7cef9e233a7d8
diff --git a/reactor-core/src/main/java/reactor/core/publisher/MonoDelayUntil.java b/reactor-core/src/main/java/reactor/core/publisher/MonoDelayUntil.java index <HASH>..<HASH> 100644 --- a/reactor-core/src/main/java/reactor/core/publisher/MonoDelayUntil.java +++ b/reactor-core/src/main/java/reactor/core/publisher/MonoD...
Handle `null` publisher in `MonoDelayUntil` (#<I>) The null check was missing and the NPE error message was lacking the important detail
reactor_reactor-core
train
885a5301e6bf6c3f11f865843f06b250019c839d
diff --git a/modules/cmsadmin/models/NavItem.php b/modules/cmsadmin/models/NavItem.php index <HASH>..<HASH> 100644 --- a/modules/cmsadmin/models/NavItem.php +++ b/modules/cmsadmin/models/NavItem.php @@ -85,6 +85,10 @@ class NavItem extends \yii\db\ActiveRecord public function validateRewrite() { + $d...
[*] added model check when updating the nav item is attribute is dirty
luyadev_luya
train
d9d87ce4d3d1a8810ed41208d97e1569a1cf8ab0
diff --git a/Source/com/drew/metadata/iptc/IptcReader.java b/Source/com/drew/metadata/iptc/IptcReader.java index <HASH>..<HASH> 100644 --- a/Source/com/drew/metadata/iptc/IptcReader.java +++ b/Source/com/drew/metadata/iptc/IptcReader.java @@ -61,14 +61,16 @@ public class IptcReader implements MetadataReader ...
Removed code that used to search for the beginning of IPTC data. Now that we have separate handling for Photoshop metadata it doesn't seem necessary anymore. It was previously erroneously masking out IPTC segments where the first value belonged to records other than Record 2 as well. git-svn-id: <URL>
drewnoakes_metadata-extractor
train
dd2e08e185bf89250cb5e64ead9d076fcf44bfbf
diff --git a/discord/client.py b/discord/client.py index <HASH>..<HASH> 100644 --- a/discord/client.py +++ b/discord/client.py @@ -36,6 +36,7 @@ from .role import Role, Permissions from .message import Message from . import utils from .invite import Invite +from .object import Object import traceback import requ...
Add support for passing in Object to methods.
Rapptz_discord.py
train
aef3ccfd764049ed977a1207424280a1d63beb9f
diff --git a/django_bootstrap_breadcrumbs/templatetags/django_bootstrap_breadcrumbs.py b/django_bootstrap_breadcrumbs/templatetags/django_bootstrap_breadcrumbs.py index <HASH>..<HASH> 100644 --- a/django_bootstrap_breadcrumbs/templatetags/django_bootstrap_breadcrumbs.py +++ b/django_bootstrap_breadcrumbs/templatetags/d...
coverage: exclude Django compat statements
prymitive_bootstrap-breadcrumbs
train
e88d0c5f0e54630a99eeb74b0e9fe0c3bd58608f
diff --git a/lib/utils/openBrowser.js b/lib/utils/openBrowser.js index <HASH>..<HASH> 100644 --- a/lib/utils/openBrowser.js +++ b/lib/utils/openBrowser.js @@ -20,15 +20,15 @@ function displayManualOpenMessage(url, err) { } module.exports = function openBrowser(url) { - let browser = process.env.BROWSER; - if (bro...
refactor: Ensure async function format
serverless_serverless
train
668f557292d570e838fafc0ce366e060ab2cf3cc
diff --git a/config/site.php b/config/site.php index <HASH>..<HASH> 100644 --- a/config/site.php +++ b/config/site.php @@ -4,7 +4,7 @@ return [ 'name' => 'Coaster CMS', 'email' => 'info@example.com', - 'version' => 'v5.3.16', + 'version' => 'v5.3.17', 'pages' => '0', 'groups' => '0', 's...
<I> + repeater order block_id fix for strict mysql
Web-Feet_coasterframework
train
703e659ee2705b509b105a9b2a4f09d29c129643
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( name='cltk', packages=find_packages(), url='https://github.com/cltk/cltk', - version='0.1.64', + version='0.1.65', zip_safe=True, test_suite='cltk.tests.test_cltk', )
Increment version to trigger auto build
cltk_cltk
train
218dc0a3d32e466062ddf0d8038b3c3cdcdad850
diff --git a/railties/test/generators/plugin_test_runner_test.rb b/railties/test/generators/plugin_test_runner_test.rb index <HASH>..<HASH> 100644 --- a/railties/test/generators/plugin_test_runner_test.rb +++ b/railties/test/generators/plugin_test_runner_test.rb @@ -63,7 +63,7 @@ class PluginTestRunnerTest < ActiveSupp...
fix build broken by <I>e<I>f<I>d<I>da0.
rails_rails
train
91336ec33a377ebe306e2d1b0d26790bc65d4e13
diff --git a/lib/bliptv/base.rb b/lib/bliptv/base.rb index <HASH>..<HASH> 100644 --- a/lib/bliptv/base.rb +++ b/lib/bliptv/base.rb @@ -86,7 +86,7 @@ module BlipTV url, path = "#{username}.blip.tv", "/posts/?skin=api" request = Net::HTTP.get(url, path) hash = Hash.from_xml(request) - parse_vide...
minor edits, made the case where a user has no videos returns an emptry array, rather than an exception ;)
kellysutton_bliptv
train
6c93bc6bb34a479ea7300a8fd6f63a9eb2497673
diff --git a/src/StrawberryfieldFilePersisterService.php b/src/StrawberryfieldFilePersisterService.php index <HASH>..<HASH> 100644 --- a/src/StrawberryfieldFilePersisterService.php +++ b/src/StrawberryfieldFilePersisterService.php @@ -1400,6 +1400,70 @@ class StrawberryfieldFilePersisterService { ); } ...
Restore identify, was only removed for 5 min sorry. What was i thinking?
esmero_strawberryfield
train
a192858c7bf6948b16e363d0f6d1a9307e75c6f3
diff --git a/lib/komponent/version.rb b/lib/komponent/version.rb index <HASH>..<HASH> 100644 --- a/lib/komponent/version.rb +++ b/lib/komponent/version.rb @@ -1,3 +1,3 @@ module Komponent - VERSION = "1.0.0.pre.1" + VERSION = "1.0.0.pre.2" end
Bump to <I>.pre<I>
komposable_komponent
train
ce2d661ce7b1aa13f7d2bc6cacb4e1b1f0785e73
diff --git a/lib/ohai/plugins/timezone.rb b/lib/ohai/plugins/timezone.rb index <HASH>..<HASH> 100644 --- a/lib/ohai/plugins/timezone.rb +++ b/lib/ohai/plugins/timezone.rb @@ -15,9 +15,10 @@ # limitations under the License. Ohai.plugin(:Timezone) do - provides "timezone" + provides "time/timezone" collect_dat...
Move timezone value under time This prevents us from breaking the various timezone cookbooks that already use that namespace. Attributes are hard. Good thing lamont is going to fix this all ;)
chef_ohai
train
bb0a90c4bf0ca9306d52e6fac573332eeebe4756
diff --git a/ee/src/main/java/org/jboss/as/ee/naming/ModuleContextProcessor.java b/ee/src/main/java/org/jboss/as/ee/naming/ModuleContextProcessor.java index <HASH>..<HASH> 100644 --- a/ee/src/main/java/org/jboss/as/ee/naming/ModuleContextProcessor.java +++ b/ee/src/main/java/org/jboss/as/ee/naming/ModuleContextProcesso...
WFLY-<I> ModuleContextProcessor doesn't cleanup its Attachments on undeploy()
wildfly_wildfly
train
9aec6feab01e28cd2ba58c74b1a08318d400e756
diff --git a/src/BackwardsCompatiblePayloadSerializerFactory.php b/src/BackwardsCompatiblePayloadSerializerFactory.php index <HASH>..<HASH> 100644 --- a/src/BackwardsCompatiblePayloadSerializerFactory.php +++ b/src/BackwardsCompatiblePayloadSerializerFactory.php @@ -540,7 +540,8 @@ class BackwardsCompatiblePayloadSeria...
III-<I>: Fix coding standard violation
cultuurnet_udb3-php
train
d0559d669f09869c01a4ede1f6a644a1051e1f03
diff --git a/lib/fast_haml/parser.rb b/lib/fast_haml/parser.rb index <HASH>..<HASH> 100644 --- a/lib/fast_haml/parser.rb +++ b/lib/fast_haml/parser.rb @@ -27,7 +27,7 @@ module FastHaml end end unless @filter_parser.enabled? - parse_line(line, @line_parser.lineno) + parse_l...
lineno is kept by LineParser
eagletmt_faml
train
bea760800356145e42af43f1b2f9997213cec6e3
diff --git a/dev/igv-dev.html b/dev/igv-dev.html index <HASH>..<HASH> 100644 --- a/dev/igv-dev.html +++ b/dev/igv-dev.html @@ -324,7 +324,7 @@ $(document).ready(function () { var div, - options; + options; div = $("#myDiv")[0]; options = { @@ -336,8 +336,9 @...
dataRange. Now, autoscale is set to false if user manually sets data range. (#<I>)
igvteam_igv.js
train
19fdb5c53fb5c3ca5fc2a7dda25baefcf2031994
diff --git a/dclab/rtdc_dataset/writer.py b/dclab/rtdc_dataset/writer.py index <HASH>..<HASH> 100644 --- a/dclab/rtdc_dataset/writer.py +++ b/dclab/rtdc_dataset/writer.py @@ -194,7 +194,7 @@ class RTDCWriter: + "for you and assume that you are storing " + "m...
tests: remove warning (#<I>)
ZELLMECHANIK-DRESDEN_dclab
train
5e2ebed929ec6face96d22655b0f4d4d4a4631a9
diff --git a/py3status/__init__.py b/py3status/__init__.py index <HASH>..<HASH> 100755 --- a/py3status/__init__.py +++ b/py3status/__init__.py @@ -1007,8 +1007,7 @@ class Module(Thread): 'full_text': '' }, 'method': m...
qa: cleanup obsolete position handling and validation
ultrabug_py3status
train
e7fcea0f185c89ad404e10d7c89097494d1e7a48
diff --git a/shinken/objects/service.py b/shinken/objects/service.py index <HASH>..<HASH> 100644 --- a/shinken/objects/service.py +++ b/shinken/objects/service.py @@ -1252,15 +1252,19 @@ class Services(Items): # we can register it (s) (depend on) -> (hname, desc) ...
Fix : make service property service_dependencies take a void hostname, so it will take host of this service instead.
Alignak-monitoring_alignak
train
fec8d51e4a1df7109cc7039ea3181eb06d697bce
diff --git a/lib/testium-driver-wd.js b/lib/testium-driver-wd.js index <HASH>..<HASH> 100644 --- a/lib/testium-driver-wd.js +++ b/lib/testium-driver-wd.js @@ -39,16 +39,9 @@ const { v1: uuidV1 } = require('uuid'); const debug = require('debug')('testium-driver-wd'); const wd = require('wd'); const assert = require('...
fix: remove legacy lighthouse loading code
testiumjs_testium-driver-wd
train
dc88d182c5ae5711bed3e31548571841131bec5b
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -181,14 +181,14 @@ function builder(el, builderParams) { }, 1500); // update search keyword appending the current key - searchKey += e.key || String.fromCharCode(e.keyCode...
Search in panel - autocomplete - keydown tests
custom-select_custom-select
train
1321bfcaf9ce87cd1e8b09dd28705c29e4623fc4
diff --git a/platform/windows_platform.go b/platform/windows_platform.go index <HASH>..<HASH> 100644 --- a/platform/windows_platform.go +++ b/platform/windows_platform.go @@ -213,3 +213,7 @@ func (p WindowsPlatform) GetDefaultNetwork() (boshsettings.Network, error) { func (p WindowsPlatform) GetHostPublicKey() (string...
Add stub for new Platform method
cloudfoundry_bosh-agent
train
f0c4ded5ae211b324a2b1cd2fd01e812569bfb0a
diff --git a/src/Controller/AdminController.php b/src/Controller/AdminController.php index <HASH>..<HASH> 100644 --- a/src/Controller/AdminController.php +++ b/src/Controller/AdminController.php @@ -820,16 +820,44 @@ class AdminController extends Controller */ protected function redirectToReferrer() { -...
<I>: Redirect problems
EasyCorp_EasyAdminBundle
train
c4707d31aac2ba349a00d1321bf96b7f20b906eb
diff --git a/src/main/com/mongodb/DBCollection.java b/src/main/com/mongodb/DBCollection.java index <HASH>..<HASH> 100644 --- a/src/main/com/mongodb/DBCollection.java +++ b/src/main/com/mongodb/DBCollection.java @@ -373,7 +373,7 @@ public abstract class DBCollection { cmd.append( "remove", remove ); ...
Adding findAndModify tests for upsert=true
mongodb_mongo-java-driver
train
545d1febf0bacf9b5e43733c4b4bf7085d124571
diff --git a/h2o-core/src/main/java/water/rapids/transforms/H2OColOp.java b/h2o-core/src/main/java/water/rapids/transforms/H2OColOp.java index <HASH>..<HASH> 100644 --- a/h2o-core/src/main/java/water/rapids/transforms/H2OColOp.java +++ b/h2o-core/src/main/java/water/rapids/transforms/H2OColOp.java @@ -9,8 +9,15 @@ impo...
Fix assembly: Recursive substitution of frame placeholders
h2oai_h2o-3
train
5301b76239400070931d4c358d2093afcea3f5ab
diff --git a/src/orb/backends/sql/postgresql/connection.py b/src/orb/backends/sql/postgresql/connection.py index <HASH>..<HASH> 100644 --- a/src/orb/backends/sql/postgresql/connection.py +++ b/src/orb/backends/sql/postgresql/connection.py @@ -104,6 +104,9 @@ class PSQLConnection(SQLConnection): db.roll...
added some more logging if a query times out
orb-framework_orb
train
b027d0463aaa6f85bc7531fbac7b2a7346fd08fe
diff --git a/common/src/js/selenium/locator_strategies.js b/common/src/js/selenium/locator_strategies.js index <HASH>..<HASH> 100644 --- a/common/src/js/selenium/locator_strategies.js +++ b/common/src/js/selenium/locator_strategies.js @@ -21,6 +21,7 @@ limitations under the License. goog.provide('core.LocatorStrateg...
SimonStewart: Starting the process of adding a 'webdriver' and 'stored' locator to selenium core r<I>
SeleniumHQ_selenium
train
ebba0a8a13683a611a46c59ba1d89f9b7675f4da
diff --git a/library/SimplePie/File.php b/library/SimplePie/File.php index <HASH>..<HASH> 100644 --- a/library/SimplePie/File.php +++ b/library/SimplePie/File.php @@ -106,7 +106,7 @@ class SimplePie_File curl_setopt($fp, CURLOPT_FAILONERROR, 1); curl_setopt($fp, CURLOPT_TIMEOUT, $timeout); curl_setopt($f...
Remove HTTP credentials in HTTP Referer (#<I>) The HTTP Referer might appear in various logs and should not contain HTTP credentials `<URL>` to strip credentials from a URL, before such a use. Piece of this downstream PR: <URL>
simplepie_simplepie
train
e58752981302cbca27b25998d66193b5b161ba1c
diff --git a/spyder/plugins/tests/test_ipythonconsole.py b/spyder/plugins/tests/test_ipythonconsole.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/tests/test_ipythonconsole.py +++ b/spyder/plugins/tests/test_ipythonconsole.py @@ -959,6 +959,7 @@ def test_stderr_file_remains_two_kernels(ipyconsole, qtbot, monkeypat...
Testing: Skip test_kernel_crash on Windows because it fails
spyder-ide_spyder
train
0d1bf391192f8977481c0d77852585657824078a
diff --git a/lib/inventory_refresh/target.rb b/lib/inventory_refresh/target.rb index <HASH>..<HASH> 100644 --- a/lib/inventory_refresh/target.rb +++ b/lib/inventory_refresh/target.rb @@ -23,8 +23,8 @@ module InventoryRefresh # A Rails recommended interface for deserializing an object # @return [InventoryRef...
Explicitly pass keyword arguments to load for ruby 3 support
ManageIQ_inventory_refresh
train
b002b33deaca96b729cc05f4a0348c0933478e47
diff --git a/src/web/org/codehaus/groovy/grails/web/metaclass/RedirectDynamicMethod.java b/src/web/org/codehaus/groovy/grails/web/metaclass/RedirectDynamicMethod.java index <HASH>..<HASH> 100644 --- a/src/web/org/codehaus/groovy/grails/web/metaclass/RedirectDynamicMethod.java +++ b/src/web/org/codehaus/groovy/grails/we...
fixed redirect method bug where context path was not included when redirecting to a uri git-svn-id: <URL>
grails_grails-core
train
2fe25bdc99f8c92e6d23a0d3947535b830a0ae63
diff --git a/lib/feed2email/cli.rb b/lib/feed2email/cli.rb index <HASH>..<HASH> 100644 --- a/lib/feed2email/cli.rb +++ b/lib/feed2email/cli.rb @@ -30,6 +30,15 @@ module Feed2Email exec('sqlite3', Sequel::Model.db.opts[:database]) end + desc 'config', 'Open configuration file with $EDITOR' + def conf...
Add "config" command to open config with $EDITOR
agorf_feed2email
train
4c649e36c293b6e6b9d68a7cdc2cd683bc1195db
diff --git a/definition.go b/definition.go index <HASH>..<HASH> 100644 --- a/definition.go +++ b/definition.go @@ -964,7 +964,10 @@ func (gt *Enum) Values() []*EnumValueDefinition { } func (gt *Enum) Serialize(value interface{}) interface{} { v := value - if reflect.ValueOf(v).Kind() == reflect.Ptr { + rv := reflec...
Prevent panic when trying to serialize nil pointer in Enum
graphql-go_graphql
train
4bb41055116d6b24354fae7e18b3cfaf1f5e05ca
diff --git a/cmd/main.go b/cmd/main.go index <HASH>..<HASH> 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -16,6 +16,7 @@ func main() { manager.Register(&cmd.App{}) manager.Register(&cmd.Key{}) manager.Register(&cmd.Team{}) + manager.Register(&cmd.Target{}) //removing the command name from args args := os.Args...
cmd: added target command, this command will be used to define tsuru server Solves partially the issue #<I>. Other commands should use the target defined in .tsuru_target, instead of hard coded host.
tsuru_tsuru
train
20cf330da31af5da6ad94b2541068b4af811e862
diff --git a/mitemp_bt/mitemp_bt_poller.py b/mitemp_bt/mitemp_bt_poller.py index <HASH>..<HASH> 100644 --- a/mitemp_bt/mitemp_bt_poller.py +++ b/mitemp_bt/mitemp_bt_poller.py @@ -31,7 +31,7 @@ class MiTempBtPoller(object): """ self._mac = mac - self._bt_interface = BluetoothInterface(backend,...
Upgrade to btlewrap <I>
ratcashdev_mitemp
train
0c52f5a0e116b86e50068bd2fdf79109ac9311b9
diff --git a/doc-src/SASS_CHANGELOG.md b/doc-src/SASS_CHANGELOG.md index <HASH>..<HASH> 100644 --- a/doc-src/SASS_CHANGELOG.md +++ b/doc-src/SASS_CHANGELOG.md @@ -10,6 +10,8 @@ * When printing a Sass error into a CSS comment, escape `*/` so the comment doesn't end prematurely. +* Preserve the `!` in `/*! ... */`-...
Preserve the bang in /*! comments.
sass_ruby-sass
train
979f473bdd50f635eb9a7dd672b3ec8f3b913335
diff --git a/Services/MySQLClient.php b/Services/MySQLClient.php index <HASH>..<HASH> 100644 --- a/Services/MySQLClient.php +++ b/Services/MySQLClient.php @@ -162,7 +162,10 @@ class MySQLClient $stmt->bindValue($paramName, $paramValue); } - $stmt->execute(); + if (!$stmt->execute()...
throws an exception when an sql query execute with failure
Antonyan_ddd-mappers-infrastructure
train
76b871cf375823f2ddbb8e0a3d7e285167a2935e
diff --git a/connector.go b/connector.go index <HASH>..<HASH> 100644 --- a/connector.go +++ b/connector.go @@ -252,11 +252,13 @@ func (this *DefaultConnector) send(correlationId int32, conn *net.TCPConn, reque encoder := NewBinaryEncoder(bytes) writer.Write(encoder) + conn.SetWriteDeadline(time.Now().Add(this.wri...
Fixed fetch response incomplete messages handling, added connection deadlines. re #6, re #<I>
elodina_siesta
train
b6812b53330a0329ad6a10cb886251d1d3f9e5fa
diff --git a/annis-libgui/src/main/java/annis/libgui/Helper.java b/annis-libgui/src/main/java/annis/libgui/Helper.java index <HASH>..<HASH> 100644 --- a/annis-libgui/src/main/java/annis/libgui/Helper.java +++ b/annis-libgui/src/main/java/annis/libgui/Helper.java @@ -32,6 +32,7 @@ import com.sun.jersey.client.apache4.co...
Avoid nullpointer errors when no session is available.
korpling_ANNIS
train
48b95a235da24182bb3db8319a7373cff6fcf41e
diff --git a/glymur/jp2k.py b/glymur/jp2k.py index <HASH>..<HASH> 100644 --- a/glymur/jp2k.py +++ b/glymur/jp2k.py @@ -883,7 +883,7 @@ class Jp2k(Jp2kBox): dparam.nb_tile_to_decode = 1 with ExitStack() as stack: - if hasattr(_opj2.OPENJPEG, 'opj_stream_create_default_file_stream_v3'):...
Starting to filter out tests handled by <I>+ but not <I> official. #<I>
quintusdias_glymur
train
e3cf8fdd626f8cb6bd71d9106d9948933ee202c1
diff --git a/gosu-core/src/main/java/gw/internal/gosu/parser/TypeLord.java b/gosu-core/src/main/java/gw/internal/gosu/parser/TypeLord.java index <HASH>..<HASH> 100644 --- a/gosu-core/src/main/java/gw/internal/gosu/parser/TypeLord.java +++ b/gosu-core/src/main/java/gw/internal/gosu/parser/TypeLord.java @@ -1094,11 +1094...
ensure no type vars leak through
gosu-lang_gosu-lang
train
e6e0772061bc9dfd2f2243156311ed35a90bde22
diff --git a/pygmsh/common/geometry.py b/pygmsh/common/geometry.py index <HASH>..<HASH> 100644 --- a/pygmsh/common/geometry.py +++ b/pygmsh/common/geometry.py @@ -1,5 +1,3 @@ -import math - import gmsh import meshio import numpy @@ -163,7 +161,7 @@ class CommonGeometry: lateral = [Dummy(*e) for e in out_dim...
be less strict on angles for occ::revolve()
nschloe_pygmsh
train
375e500b832fe012fc659f2f9a93167b394db457
diff --git a/src/metpy/plots/_mpl.py b/src/metpy/plots/_mpl.py index <HASH>..<HASH> 100644 --- a/src/metpy/plots/_mpl.py +++ b/src/metpy/plots/_mpl.py @@ -225,8 +225,9 @@ if not hasattr(Axes, 'scattertext'): if renderer.flipy(): y = canvash - y - # Can ...
MNT: Updates for matplotlib <I> A few items got deprecated/removed and need updating.
Unidata_MetPy
train
71722e919318c6508a3f7853b758b1f1a4ac296a
diff --git a/tests/unit/deploy/test_deployer.py b/tests/unit/deploy/test_deployer.py index <HASH>..<HASH> 100644 --- a/tests/unit/deploy/test_deployer.py +++ b/tests/unit/deploy/test_deployer.py @@ -813,7 +813,8 @@ def test_lambda_deployer_delete(ui): lambda_function_name = 'api-handler' deployed = DeployedRe...
test case to cover delete_rule in deployer.py
aws_chalice
train
5d061f20b97be0401d65e914068deb2d50bdc2f4
diff --git a/crawler.js b/crawler.js index <HASH>..<HASH> 100644 --- a/crawler.js +++ b/crawler.js @@ -17,11 +17,12 @@ function Executor(opts) { this.timeoutMs = (1 / this.maxRatePerSecond) * 1000; } -Executor.prototype.submit = function(func, context, args) { +Executor.prototype.submit = function(func, context, ...
- Adds the ability to skip urls to the working queue executor - Skipping already crawled urls - Optimization: if te current depth is 1, then no point in calling '_crawlUrls' recursively as '_crawlUrl' will return immediately for every url
antivanov_js-crawler
train
1f02a9c7a0a8b4885becd385a118454de6d7bf82
diff --git a/boa/code/method.py b/boa/code/method.py index <HASH>..<HASH> 100644 --- a/boa/code/method.py +++ b/boa/code/method.py @@ -65,7 +65,6 @@ class Method(): tokenizer = None - local_stores = None start_line_no = None @@ -219,10 +218,10 @@ class Method(): def tokenize(self): - + ...
string operations including concatenation work
CityOfZion_neo-python
train
ccbfcbf7f3e304b3ba6c84152ce91daa48613ea6
diff --git a/test/phantomBase.js b/test/phantomBase.js index <HASH>..<HASH> 100644 --- a/test/phantomBase.js +++ b/test/phantomBase.js @@ -2,18 +2,27 @@ * Created by JiaHao on 18/8/15. */ + +var async = require('async'); var phantomBase = require('./../lib/phantomBase'); + const testUrls = ['http://techcrunch...
Change test case to test with multiple urls
jiahaog_Revenant
train
dd993edf5d1da9368e3ba355d8f2c1de4d718f22
diff --git a/salt/minion.py b/salt/minion.py index <HASH>..<HASH> 100644 --- a/salt/minion.py +++ b/salt/minion.py @@ -117,6 +117,21 @@ class Minion(object): ''' Return the functions and the returners loaded up from the loader module ''' + pre_opts = {} + salt.config.load_config...
Repair issue where existing grain was not overwritten with update
saltstack_salt
train
440285601d402e6f8137c0f0a4afa76f7c55637c
diff --git a/shared/chat/inbox/container/filtered.js b/shared/chat/inbox/container/filtered.js index <HASH>..<HASH> 100644 --- a/shared/chat/inbox/container/filtered.js +++ b/shared/chat/inbox/container/filtered.js @@ -53,7 +53,10 @@ const score = (lcFilter: string, lcYou: string, names: Array<string>, insertMatc //...
check filter in filtered container (#<I>)
keybase_client
train
2c4fdada66b30420329e0fcf81f201315808c60d
diff --git a/web/http.go b/web/http.go index <HASH>..<HASH> 100644 --- a/web/http.go +++ b/web/http.go @@ -54,15 +54,15 @@ func HTTPRequest(r *http.Request) *HTTPRequestEvent { // HTTPRequestEvent records type HTTPRequestEvent struct { - Method string `json:"method"` - URI string `json:"u...
Moved web support to new style events. Required some simplification of headers.
codahale_lunk
train
63bcf2eb1223abe8f1e716a000fb567bb9e0d7b3
diff --git a/src/ServiceMap.php b/src/ServiceMap.php index <HASH>..<HASH> 100644 --- a/src/ServiceMap.php +++ b/src/ServiceMap.php @@ -6,6 +6,7 @@ namespace Lookyman\PHPStan\Symfony; use Lookyman\PHPStan\Symfony\Exception\XmlContainerNotExistsException; use PhpParser\Node; +use PhpParser\Node\Expr\BinaryOp\Concat; ...
Added support for string concatenation
lookyman_phpstan-symfony
train