hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
67549e2da071e005c3c294a5913f49e9b0bcfca9
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ChangeLog 3.2.8 ------- ++ 【优化】- slot dispose 时增加是否主动移除 DOM 的判断,增加组件动态创建场景和销毁顺序不正确时的健壮性 + 【bug修复】- slot 中包含自定义标签时,ssr 下找不到对应组件类,不能正确渲染组件 + 【bug修复】- 一次时钟周期对列表同时进行 set 和 splice 操作时,渲染不正确 diff...
robustness: dynamic component + slot, dispose may error when out-of-order
baidu_san
train
71e40fb6f587cf9401013a2449e442ae244df727
diff --git a/jcvi/assembly/allmaps.py b/jcvi/assembly/allmaps.py index <HASH>..<HASH> 100644 --- a/jcvi/assembly/allmaps.py +++ b/jcvi/assembly/allmaps.py @@ -1637,6 +1637,8 @@ def path(args): plotall( [ inputbed, + "-w", + opts.weightsfile, ...
Pass weightsfile into plotall() called by path() (#<I>)
tanghaibao_jcvi
train
5b97dc2d507d4413d61852b6a55377baaf5e918e
diff --git a/rope/contrib/autoimport/models.py b/rope/contrib/autoimport/models.py index <HASH>..<HASH> 100644 --- a/rope/contrib/autoimport/models.py +++ b/rope/contrib/autoimport/models.py @@ -16,6 +16,8 @@ class Name: import_assist = "SELECT name, module, source FROM names WHERE name LIKE (? || '%')" + s...
Move SQL to Name.search_name_like
python-rope_rope
train
ad381d0c0297c5469a75f9a5dba341ebed50d991
diff --git a/biodata-tools/src/main/java/org/opencb/biodata/tools/variant/VariantMetadataManager.java b/biodata-tools/src/main/java/org/opencb/biodata/tools/variant/VariantMetadataManager.java index <HASH>..<HASH> 100644 --- a/biodata-tools/src/main/java/org/opencb/biodata/tools/variant/VariantMetadataManager.java +++ ...
tools: add sanity checks to the VariantMedatadataManager
opencb_biodata
train
e2d525c22c78ed1fa365fd9746baee2a55fb428d
diff --git a/eemeter/ee/meter.py b/eemeter/ee/meter.py index <HASH>..<HASH> 100644 --- a/eemeter/ee/meter.py +++ b/eemeter/ee/meter.py @@ -53,8 +53,7 @@ class EnergyEfficiencyMeter(object): ''' def __init__(self, default_model_mapping=None, - default_formatter_mapping=None, - ...
Remove cruft from meter.py
openeemeter_eemeter
train
a51d631ebd18a9a9be2fef52e83f6b47063e3cfa
diff --git a/core/model/src/main/java/it/unibz/inf/ontop/model/term/functionsymbol/impl/AbstractCommonDenominatorFunctionSymbol.java b/core/model/src/main/java/it/unibz/inf/ontop/model/term/functionsymbol/impl/AbstractCommonDenominatorFunctionSymbol.java index <HASH>..<HASH> 100644 --- a/core/model/src/main/java/it/uni...
Enable IF_ELSE_NULL lifting in a parsimonious.
ontop_ontop
train
6f4b7a5f70694a5d8cf280b86c9e8dcae373ab69
diff --git a/test/unit/test-cmd-alias.py b/test/unit/test-cmd-alias.py index <HASH>..<HASH> 100755 --- a/test/unit/test-cmd-alias.py +++ b/test/unit/test-cmd-alias.py @@ -25,7 +25,6 @@ class TestAliasCommand(unittest.TestCase): def setUp(self): self.errors = [] self.msgs = [] - import_rela...
Refert sync change with pdef
rocky_python3-trepan
train
10fa61aa9fdc184893b945eb0ef1a2aa581a69e1
diff --git a/lib/risc/builtin/integer.rb b/lib/risc/builtin/integer.rb index <HASH>..<HASH> 100644 --- a/lib/risc/builtin/integer.rb +++ b/lib/risc/builtin/integer.rb @@ -20,13 +20,13 @@ module Risc compiler = compiler_for(:Integer,:+ ,{other: :Integer}) me , other = compiler.self_and_int_arg(sour...
fix integer plus mostly forgot the return sequence
ruby-x_rubyx
train
9d9690987ae684789ad2361945b93f212b0dd7e4
diff --git a/core/server/api/v2/utils/serializers/output/utils/clean.js b/core/server/api/v2/utils/serializers/output/utils/clean.js index <HASH>..<HASH> 100644 --- a/core/server/api/v2/utils/serializers/output/utils/clean.js +++ b/core/server/api/v2/utils/serializers/output/utils/clean.js @@ -7,6 +7,17 @@ const tag = ...
🐛 Updated v2 content API output to return null instead of “” for empty fields (#<I>) refs #<I> - We are standardising on returning null from the Content API for any empty values - Updated `post`, `tag` and `author` APIs
TryGhost_Ghost
train
e560933f9c0a8b3b4e6ac62228e8dc401646a021
diff --git a/doc/source/serve/advanced.rst b/doc/source/serve/advanced.rst index <HASH>..<HASH> 100644 --- a/doc/source/serve/advanced.rst +++ b/doc/source/serve/advanced.rst @@ -386,11 +386,6 @@ as shown below. .. literalinclude:: ../../../python/ray/serve/examples/doc/conda_env.py -.. warning:: - The script mus...
[Serve] Add dependency management support for driver not running in a conda env (#<I>)
ray-project_ray
train
9286c266f02f797d99a3dc3a3e8b25490111c2dc
diff --git a/salt/modules/parted_partition.py b/salt/modules/parted_partition.py index <HASH>..<HASH> 100644 --- a/salt/modules/parted_partition.py +++ b/salt/modules/parted_partition.py @@ -545,6 +545,22 @@ def mkpart(device, part_type, fs_type=None, start=None, end=None): return out +def mkpartfs(device, par...
Re-added mkpartfs to not break compatibility - Re-added mkpartfs to not break compatibility, now it only calls mkpart. - Added a new unit test to make sure that mkpartfs is still there and all arguments are passed to mkpart
saltstack_salt
train
1e365c46f82c4dc1f4da61c0672efad073bd23f8
diff --git a/tchannel-core/src/main/java/com/uber/tchannel/api/RawRequest.java b/tchannel-core/src/main/java/com/uber/tchannel/api/RawRequest.java index <HASH>..<HASH> 100644 --- a/tchannel-core/src/main/java/com/uber/tchannel/api/RawRequest.java +++ b/tchannel-core/src/main/java/com/uber/tchannel/api/RawRequest.java @...
Disambiguate headers from transportHeaders
uber_tchannel-java
train
bca2961afe7d0f82ad53dc6ad23415689dea35b5
diff --git a/test/spec/router/ast.js b/test/spec/router/ast.js index <HASH>..<HASH> 100644 --- a/test/spec/router/ast.js +++ b/test/spec/router/ast.js @@ -167,8 +167,8 @@ module.exports = { { name: 'regexp - groups and params', test: function(){ - var actual = parsePath('page/(...
basis.router: try to make regexp tests browser independent
basisjs_basisjs
train
660523123103e904622a135940a1c12ad9256629
diff --git a/activerecord/lib/active_record/connection_adapters/connection_specification.rb b/activerecord/lib/active_record/connection_adapters/connection_specification.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/connection_adapters/connection_specification.rb +++ b/activerecord/lib/active_reco...
Add a note about ensuring the version is right for the adapter (since you might well have specified the right gem, but locked it to too low of a version)
rails_rails
train
1f46543ae263d3e6e53e8432771ff2abe816b48e
diff --git a/moto/ecs/models.py b/moto/ecs/models.py index <HASH>..<HASH> 100644 --- a/moto/ecs/models.py +++ b/moto/ecs/models.py @@ -502,10 +502,12 @@ class EC2ContainerServiceBackend(BaseBackend): def _calculate_task_resource_requirements(task_definition): resource_requirements = {"CPU": 0, "MEMORY": 0...
ECS CPU, memory hard limits and host ports are all optional. <URL>
spulec_moto
train
a5bd0e3baa3472c271d5b2c62d2b3a1cf3520e97
diff --git a/spec/integration/command_builder_spec.rb b/spec/integration/command_builder_spec.rb index <HASH>..<HASH> 100644 --- a/spec/integration/command_builder_spec.rb +++ b/spec/integration/command_builder_spec.rb @@ -28,6 +28,23 @@ RSpec.describe 'Building commands' do expect(user.task.title).to eql('Task ...
Extend spec with a deeply nested graph example
rom-rb_rom
train
6b7c8d614407104f7229b040b9ef735eef22611d
diff --git a/helpers.go b/helpers.go index <HASH>..<HASH> 100644 --- a/helpers.go +++ b/helpers.go @@ -26,7 +26,10 @@ func argName(arg ast.Expr) string { name := "" switch a := arg.(type) { case *ast.Ident: - if a.Obj.Kind == ast.Var || a.Obj.Kind == ast.Con { + switch { + case a.Obj == nil: + name = a.Name ...
argName: Handle *ast.Ident with nil Obj (#<I>) Would panic in cases where the Obj for an Ident was nil. Not sure when this applies (in general) but one case was given in from a test file. Fixes #<I>
y0ssar1an_q
train
d460a250a76461050b8ff2911cff671ec894449d
diff --git a/src/resumable.js b/src/resumable.js index <HASH>..<HASH> 100644 --- a/src/resumable.js +++ b/src/resumable.js @@ -840,13 +840,12 @@ function Resumable(opts) { $.xhr = new XMLHttpRequest(); // Progress - $.xhr.upload.addEventListener("progress", function (e) { + $.xhr.upload.addEve...
fix: progress callback should be asynchronous
flowjs_flow.js
train
1be941eed39938ed792a05d4867e81fd950aa69a
diff --git a/asv/__init__.py b/asv/__init__.py index <HASH>..<HASH> 100644 --- a/asv/__init__.py +++ b/asv/__init__.py @@ -1,9 +1,6 @@ # -*- coding: utf-8 -*- # Licensed under a 3-clause BSD style license - see LICENSE.rst -from __future__ import (absolute_import, division, print_function, - ...
Remove __future__ imports from __init__.pu, only needed for py2 compat (#<I>)
airspeed-velocity_asv
train
28ce1e3e811d6213e4d68373dfacdc45081b0203
diff --git a/src/Sulu/Bundle/AdminBundle/Resources/public/js/main.js b/src/Sulu/Bundle/AdminBundle/Resources/public/js/main.js index <HASH>..<HASH> 100644 --- a/src/Sulu/Bundle/AdminBundle/Resources/public/js/main.js +++ b/src/Sulu/Bundle/AdminBundle/Resources/public/js/main.js @@ -13,8 +13,8 @@ require.config({ ...
fixed pathes in main.js
sulu_sulu
train
89e37c4d5df1085fa7062b00ff13de863087e161
diff --git a/app/helpers/katello_url_helper.rb b/app/helpers/katello_url_helper.rb index <HASH>..<HASH> 100644 --- a/app/helpers/katello_url_helper.rb +++ b/app/helpers/katello_url_helper.rb @@ -13,12 +13,14 @@ module KatelloUrlHelper PORT = /(([:]\d{1,5})?)/ - PROTOCOLS = /(https?|ftp):\/\// + PROTOCOLS = /(ht...
support file based urls for validation
Katello_katello
train
5e0c95bb1032b12ac4a3d734ee2b0bfec4136876
diff --git a/cmd/transporter/node.go b/cmd/transporter/node.go index <HASH>..<HASH> 100644 --- a/cmd/transporter/node.go +++ b/cmd/transporter/node.go @@ -23,10 +23,10 @@ type Node struct { } // NewNode creates a node -func NewNode(name, kind string, extra adaptor.Config) (node Node, err error) { +func NewNode(name...
remove use of unnecessary named return vars
compose_transporter
train
603b33a748e5d26118672d28dd51e8352513346e
diff --git a/model/RdsResultStorage.php b/model/RdsResultStorage.php index <HASH>..<HASH> 100644 --- a/model/RdsResultStorage.php +++ b/model/RdsResultStorage.php @@ -22,7 +22,6 @@ namespace oat\taoOutcomeRds\model; use Doctrine\DBAL\Connection; use Doctrine\DBAL\Query\QueryBuilder; -use oat\generis\Helper\UuidPrim...
Moved Uuid generator to persistence class.
oat-sa_extension-tao-outcomerds
train
2260bdf9f816b5d31b4e98ad02a456da9faf8bcb
diff --git a/includes/Webhook.class.php b/includes/Webhook.class.php index <HASH>..<HASH> 100644 --- a/includes/Webhook.class.php +++ b/includes/Webhook.class.php @@ -51,6 +51,43 @@ class AC_Webhook extends ActiveCampaign { $response = $this->curl($request_url); return $response; } + + function example_pay...
added two new methods that are still being created in the system
ActiveCampaign_activecampaign-api-php
train
c0632d677d22f442308dd4d1997f3a840311296c
diff --git a/graylog2-server/src/main/java/org/graylog2/alerts/FormattedEmailAlertSender.java b/graylog2-server/src/main/java/org/graylog2/alerts/FormattedEmailAlertSender.java index <HASH>..<HASH> 100644 --- a/graylog2-server/src/main/java/org/graylog2/alerts/FormattedEmailAlertSender.java +++ b/graylog2-server/src/ma...
Fixing NPE if backlog is configured to be zero. Fixes #<I>
Graylog2_graylog2-server
train
2c6ff2f09f62bc4e89567b843489cb82e2b300cb
diff --git a/src/org/parboiled/Var.java b/src/org/parboiled/Var.java index <HASH>..<HASH> 100644 --- a/src/org/parboiled/Var.java +++ b/src/org/parboiled/Var.java @@ -24,6 +24,7 @@ public class Var<T> extends Reference<T> { private LinkedList<T> stack; private int level; + private String name; /**...
Added automatic naming of action variables for easier debugging
sirthias_parboiled
train
6510c936f4ed3064cb4e46ec76d7ca72129f1e3a
diff --git a/src/Payment.php b/src/Payment.php index <HASH>..<HASH> 100644 --- a/src/Payment.php +++ b/src/Payment.php @@ -59,8 +59,8 @@ class Payment extends Entity { $transfer = new Transfer(); - $transfer['payment_id'] = $this->id; + $transfer->payment_id = $this->id; - return ...
feat: List all transfers from a payment entity
razorpay_razorpay-php
train
264e6238260cd2f99c4096370d17a1faa3ae57bc
diff --git a/lib/connector/connector.js b/lib/connector/connector.js index <HASH>..<HASH> 100644 --- a/lib/connector/connector.js +++ b/lib/connector/connector.js @@ -54,7 +54,7 @@ function Connector (opts) { opts = _.extend({ networkName: 'livenet', - concurrency: 0 + concurrency: 10 }, opts) t...
limit concurrency to <I> by default
chromaway_blockchainjs
train
a40944bba3b1e4c6ba37d5f75024db6eb793c6b0
diff --git a/salt/cloud/clouds/nova.py b/salt/cloud/clouds/nova.py index <HASH>..<HASH> 100644 --- a/salt/cloud/clouds/nova.py +++ b/salt/cloud/clouds/nova.py @@ -386,8 +386,10 @@ def destroy(name, conn=None, call=None): {'name': name}, transport=__opts__['transport'] ) + print...
fixes for nova, porting fixes from the openstack driver
saltstack_salt
train
f70053df2d87ac2be15057e7b192f0e0e134795b
diff --git a/svg/svg_test.go b/svg/svg_test.go index <HASH>..<HASH> 100644 --- a/svg/svg_test.go +++ b/svg/svg_test.go @@ -22,23 +22,23 @@ func assertSVG(t *testing.T, input, expected string) { //////////////////////////////////////////////////////////////// func TestSVG(t *testing.T) { - assertSVG(t, "<!-- comment...
Reformat tests with backticks
tdewolff_minify
train
3191aba9b767b7ee1a87ae20f876b0eced627558
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -8,6 +8,8 @@ function TemplateCompiler (inputTree, options) { return new TemplateCompiler(inputTree, options); } + Filter.call(this, inputTree, options); // this._super() + this.inputTree = inputTree; }
Call parent classes constructor. In the future `broccoli-filter` base class may have more functionality added to its constructor. This keeps us as "future-proof" as possible.
ember-cli_ember-cli-htmlbars
train
d781c14d5482b839706c95acf89efc138d3a29bf
diff --git a/lib/passport-facebook/strategy.js b/lib/passport-facebook/strategy.js index <HASH>..<HASH> 100644 --- a/lib/passport-facebook/strategy.js +++ b/lib/passport-facebook/strategy.js @@ -56,7 +56,8 @@ function Strategy(options, verify) { util.inherits(Strategy, OAuth2Strategy); /** - * Return extra paramete...
Stylistic edits for applied patch.
HackBerkeley_passport-hackid
train
f3764d40aff6a7ce8388622036d50833a5aab66a
diff --git a/test/e2e/serial.e2e.js b/test/e2e/serial.e2e.js index <HASH>..<HASH> 100644 --- a/test/e2e/serial.e2e.js +++ b/test/e2e/serial.e2e.js @@ -87,8 +87,9 @@ describe('Serial Commands [@device]', () => { const { stdout, stderr, exitCode } = await cli.run(['serial', 'inspect']); const pass = words(stdout).f...
tweak end-to-end test assertion for `particle serial inspect` to improve reliability
particle-iot_particle-cli
train
66e96efd2f7dd91854b887166b3c81d383efda73
diff --git a/src/openbandparams/iii_v_zinc_blende_quaternary.py b/src/openbandparams/iii_v_zinc_blende_quaternary.py index <HASH>..<HASH> 100644 --- a/src/openbandparams/iii_v_zinc_blende_quaternary.py +++ b/src/openbandparams/iii_v_zinc_blende_quaternary.py @@ -356,7 +356,7 @@ class IIIVZincBlendeQuaternary(IIIVZincBl...
change missing alloy composition error type from `RuntimeError` to `TypeError`
scott-maddox_openbandparams
train
8417d8acc69a1ab8cefbaeedf3ca9ff93af14993
diff --git a/src/CeesVanEgmond/Minify/Minify.php b/src/CeesVanEgmond/Minify/Minify.php index <HASH>..<HASH> 100644 --- a/src/CeesVanEgmond/Minify/Minify.php +++ b/src/CeesVanEgmond/Minify/Minify.php @@ -206,7 +206,7 @@ class Minify */ private function getBaseUrl() { if (is_null($this->config['base_url']) ||...
Remove use env variable, used request::root to build the root
ceesvanegmond_minify
train
1021ae10986a2405bc0e79bdf9c7a8aece37afff
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,5 +1,3 @@ -require "bundler/setup" - ENV["MT_NO_EXPECTATIONS"] = "1" # disable Minitest's expectations monkey-patches require "minitest/autorun"
Don't require "bundler/setup" It causes the build for <I> to fail on Travis CI.
janko_image_processing
train
7a7e5a6e859235604fc2bd62b3c7369fc3783f69
diff --git a/src/server/pfs/drive/driver.go b/src/server/pfs/drive/driver.go index <HASH>..<HASH> 100644 --- a/src/server/pfs/drive/driver.go +++ b/src/server/pfs/drive/driver.go @@ -391,7 +391,7 @@ func (d *driver) PutFile(file *pfs.File, handle string, shard uint64, reader io. } diffInfo.Appends[path.Clean(file...
Re-enable the logic to handle the block writes per handle.This fixes the negative test case from the previous commit. Now the test output will show 'output[barfoofoo]'
pachyderm_pachyderm
train
291d490f29ab22e0da3349ca2e493475a700c9e3
diff --git a/system/core/Database.php b/system/core/Database.php index <HASH>..<HASH> 100644 --- a/system/core/Database.php +++ b/system/core/Database.php @@ -406,36 +406,26 @@ class Database } foreach ($values as $field => &$value) { - $this->filterValue($scheme, $values, $field, $value)...
Filter null values before inserting to DB + refactoring
gplcart_gplcart
train
7a2187ff36d4dd315c3b39a4860133e0dfc02ba2
diff --git a/modules/openidProvider/hooks/hook_frontpage.php b/modules/openidProvider/hooks/hook_frontpage.php index <HASH>..<HASH> 100644 --- a/modules/openidProvider/hooks/hook_frontpage.php +++ b/modules/openidProvider/hooks/hook_frontpage.php @@ -10,6 +10,6 @@ function openidProvider_hook_frontpage(&$links) { $...
Fix translation tag for hook for openid provider
simplesamlphp_saml2
train
39901a180bb9ab63dc6b45fa3a4b2696998b9c36
diff --git a/lib/janus/routes.rb b/lib/janus/routes.rb index <HASH>..<HASH> 100644 --- a/lib/janus/routes.rb +++ b/lib/janus/routes.rb @@ -33,7 +33,7 @@ module ActionDispatch # :nodoc: # # def janus(*resources) - ApplicationController.send(:include, Janus::Helpers) unless ApplicationContro...
Controller helpers are now added to ActionController::Base instead of ApplicationController, in order to not overwrite any custom method used in app's ApplicationController, while still allowing to call super methods.
ysbaddaden_janus
train
fbcf7a77a9d0e0dee4a9d0790c52b4a3c55c069d
diff --git a/lib/src/main/java/com/lsjwzh/widget/recyclerviewpager/RecyclerViewPager.java b/lib/src/main/java/com/lsjwzh/widget/recyclerviewpager/RecyclerViewPager.java index <HASH>..<HASH> 100644 --- a/lib/src/main/java/com/lsjwzh/widget/recyclerviewpager/RecyclerViewPager.java +++ b/lib/src/main/java/com/lsjwzh/widge...
fix bug:unable to collapse toolbar when we scroll recyclerview vertically by touching down on RecyclerViewPager widget.
lsjwzh_RecyclerViewPager
train
4e9e4ff79cfd30c66393997bc14a629a546a30a0
diff --git a/rest_framework_swagger/docgenerator.py b/rest_framework_swagger/docgenerator.py index <HASH>..<HASH> 100644 --- a/rest_framework_swagger/docgenerator.py +++ b/rest_framework_swagger/docgenerator.py @@ -283,6 +283,8 @@ class DocumentationGenerator(object): data['required'].append(name) ...
exclude HiddenField from parsed fields
marcgibbons_django-rest-swagger
train
21320ccf6a2efa1c6e2d54ccffed1780476a2d6f
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -376,7 +376,13 @@ plugin.nodeAfter = function(node) { }; ``` -### transform(ast) +### transformBefore(ast) + +Called before esformatter loops through all the nodes, allows plugin authors to +modify the AST before esfor...
add hook for plugins and also to keep API consistent. closes #<I>
millermedeiros_esformatter
train
e4fbf333b624aa1543712967668f48ad8ea1d587
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -77,7 +77,7 @@ CaseSensitivePathsPlugin.prototype.fileExistsWithCaseSync = function (filepath) } // If exact match exists, recurse through directory tree until root. - var recurse = this.fileExistsWithCaseSync...
Catch errors in plugin and propagate them
Urthen_case-sensitive-paths-webpack-plugin
train
ecffaed81331934828d350a6ce4e1d3e837f7a05
diff --git a/presto-orc/src/test/java/com/facebook/presto/orc/OrcTester.java b/presto-orc/src/test/java/com/facebook/presto/orc/OrcTester.java index <HASH>..<HASH> 100644 --- a/presto-orc/src/test/java/com/facebook/presto/orc/OrcTester.java +++ b/presto-orc/src/test/java/com/facebook/presto/orc/OrcTester.java @@ -137,7...
Move OrcTester format decisions to format abstraction
prestodb_presto
train
c44e7a03c664ad7df178e8a1c7fce4aaea9d3049
diff --git a/cbamf/comp/exactpsf.py b/cbamf/comp/exactpsf.py index <HASH>..<HASH> 100644 --- a/cbamf/comp/exactpsf.py +++ b/cbamf/comp/exactpsf.py @@ -629,7 +629,7 @@ class ExactLineScanConfocalPSF(psfs.PSF): self._ifftn = psfs.irfft2(self._ifftn_data, threads=self.threads, planner_eff...
changed name to reflect cheb nature of psf
peri-source_peri
train
ebdb7eae2d4a122cab05f494570f4acfc701ea47
diff --git a/salt/cloud/clouds/nova.py b/salt/cloud/clouds/nova.py index <HASH>..<HASH> 100644 --- a/salt/cloud/clouds/nova.py +++ b/salt/cloud/clouds/nova.py @@ -93,6 +93,7 @@ import os import logging import socket import pprint +import yaml # Import generic libcloud functions from salt.cloud.libcloudfuncs impo...
Add create_attach_volume to nova driver
saltstack_salt
train
b9e3193a8ae4e24a956deb27dee1f87de0056736
diff --git a/test/rtcpeerconnection.js b/test/rtcpeerconnection.js index <HASH>..<HASH> 100644 --- a/test/rtcpeerconnection.js +++ b/test/rtcpeerconnection.js @@ -1563,15 +1563,15 @@ describe('Edge shim', () => { 'a=rtcp-rsize\r\n' + 'a=rtpmap:102 vp8/90000\r\n' + 'a=rtpmap:103 rtx/9000...
test: more RTX tests more rtx tests to increase branch coverage.
otalk_rtcpeerconnection-shim
train
aa48dfb427856d99143e67113eecfc53356e466a
diff --git a/Entity/EventRepository.php b/Entity/EventRepository.php index <HASH>..<HASH> 100644 --- a/Entity/EventRepository.php +++ b/Entity/EventRepository.php @@ -155,10 +155,10 @@ class EventRepository extends CommonRepository if (!empty($options['paginated'])) { // Get a total count along ...
[ENG-<I>] Query optimized (join dropped)
TheDMSGroup_mautic-contact-client
train
36bcd46244f4167eca32b93e4fd43eccab6844bb
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,9 @@ except ImportError: from distutils.core import Extension, setup +PACKAGE_DATA = {'': ['*.pyx', '*.pxd', '*.txt', '*.tokens']} + + PACKAGES = [ 'spacy', 'spacy.tokens', @@ -76,39 +79,56 @@ MOD...
Integrate patch from @mikepb re building OpenMP-supporting wheels for macOS / OSX. I'm running blind on this, so this commit might not be <I>%. Rollback if there are any problems. See Issue #<I>.
explosion_spaCy
train
ff087a6f575f9bf727c99846cd91ce9bf9e8758d
diff --git a/packages/neos-ui-decorators/src/neos.js b/packages/neos-ui-decorators/src/neos.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui-decorators/src/neos.js +++ b/packages/neos-ui-decorators/src/neos.js @@ -22,7 +22,7 @@ export default mapRegistriesToProps => WrappedComponent => { render() { ...
revert change to @neos decorator
neos_neos-ui
train
e99fe1c5201bd2abf1399c9a9d8f5ee49a63ef81
diff --git a/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java b/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java index <HASH>..<HASH> 100644 --- a/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java +++ b/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java @@ -4...
Further improve exception handling in BrowserTest: - show exception name - send full stack trace to executionLog
fhoeben_hsac-fitnesse-fixtures
train
53ee08d95fb5092b41a3c368f4cf28c30d4a497d
diff --git a/elasticsearch_dsl/faceted_search.py b/elasticsearch_dsl/faceted_search.py index <HASH>..<HASH> 100644 --- a/elasticsearch_dsl/faceted_search.py +++ b/elasticsearch_dsl/faceted_search.py @@ -3,7 +3,7 @@ from six import iteritems, itervalues from .search import Search from .filter import F -from .aggs im...
Add Histogram support to faceted search
elastic_elasticsearch-dsl-py
train
2fb59295cc13318bb5dc208237a5910c95e06164
diff --git a/src/Config.php b/src/Config.php index <HASH>..<HASH> 100644 --- a/src/Config.php +++ b/src/Config.php @@ -161,6 +161,11 @@ class Config break; case 'sqlite': break; + case 'sqlsrv': + if (!$this->getAddress()) { + t...
feat: basic sqlsrv support
linkorb_connector
train
40c4e474f78cf4118ec2a74f22559a499d553809
diff --git a/src/renderers/template.js b/src/renderers/template.js index <HASH>..<HASH> 100644 --- a/src/renderers/template.js +++ b/src/renderers/template.js @@ -6,7 +6,9 @@ import { errorHtml } from '../util'; /* eslint-disable no-console */ // Expose VDO globally so JSX pragma can see it in every template +// Al...
Fix: Expose VDO as global.h
sapegin_fledermaus
train
acb8561762aa5890428449b8b9161738f5ca92af
diff --git a/dispatch/api/urls.py b/dispatch/api/urls.py index <HASH>..<HASH> 100644 --- a/dispatch/api/urls.py +++ b/dispatch/api/urls.py @@ -10,7 +10,7 @@ router = routers.DefaultRouter() router.register(r'articles', views.ArticleViewSet, base_name='articles') router.register(r'frontpage', views.FrontpageViewSet, b...
API: change "person" route to "people"
ubyssey_dispatch
train
f647ac14c98c18515ea9b2b19cf85d100c9cfcfd
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -19,21 +19,14 @@ Now in your application configuration file, you can use the following view rende ```php return [ - 'aliases' => [ - '@yii/mustache' => '@vendor/cedx/yii2-mustache/lib', - ], 'view' => [ - 'c...
Backup of <I> at 6:<I> PM
cedx_yii2-mustache
train
c6e42053c5782936f0038ea51388679c18168678
diff --git a/lib/set.js b/lib/set.js index <HASH>..<HASH> 100644 --- a/lib/set.js +++ b/lib/set.js @@ -2,32 +2,13 @@ const set = require('lodash.set'); module.exports = function(db, params, options) { - - // Fetch entry - let fetched = db.prepare(`SELECT * FROM ${options.table} WHERE ID = (?)`).get(params.id); ...
refactor(set): it now inserts or replaces, if the entry exists already Compact code and better one. 😉
TrueXPixels_quick.db
train
70f1e5521404e05d904c312c772d62a7ca50ba79
diff --git a/src/admin/class-papi-admin-entry-post.php b/src/admin/class-papi-admin-entry-post.php index <HASH>..<HASH> 100644 --- a/src/admin/class-papi-admin-entry-post.php +++ b/src/admin/class-papi-admin-entry-post.php @@ -158,6 +158,12 @@ class Papi_Admin_Entry_Post extends Papi_Admin_Entry { add_action( 'load-...
Move add_filter to setup_filters
wp-papi_papi
train
bb526a37782afc4e93ecaa82a4dbc2e002108c87
diff --git a/lib/danger/commands/init.rb b/lib/danger/commands/init.rb index <HASH>..<HASH> 100644 --- a/lib/danger/commands/init.rb +++ b/lib/danger/commands/init.rb @@ -82,11 +82,11 @@ module Danger def setup_github_account ui.header 'Step 2: Creating a GitHub account' - ui.say "In order to get the...
Update some spelling and wording mistakes in init wizard
danger_danger
train
5982353cfa9874f7f99c8f51c6610458e72431ad
diff --git a/dist/navigationStore.js b/dist/navigationStore.js index <HASH>..<HASH> 100644 --- a/dist/navigationStore.js +++ b/dist/navigationStore.js @@ -192,6 +192,13 @@ if(back){ res.headerLeft=renderBackButton&&renderBackButton(state)||_react2.default.createElement(BackNavBarButton,_extends({},state,{__source:{fil...
Allow to hide left button via Actions.refresh (#<I>) * Allow to hide back button via Actions.refresh * conditions fixes * undefined condition fix * Change left button instead of just hide back
aksonov_react-native-router-flux
train
54aef2c98d60ea7d0811e5e6527b9e5725f2c279
diff --git a/examples/app.js b/examples/app.js index <HASH>..<HASH> 100644 --- a/examples/app.js +++ b/examples/app.js @@ -1,5 +1,4 @@ var connect = require('connect'); -var MemoryStore = require('connect/middleware/session/memory'); var auth= require('../lib/index'); // We let the example run without npm, by s...
Update example app to work with latest connect
ciaranj_connect-auth
train
827ed691f0056318aa440ee4d4f8a0f79d814edc
diff --git a/salt/returners/couchbase_return.py b/salt/returners/couchbase_return.py index <HASH>..<HASH> 100644 --- a/salt/returners/couchbase_return.py +++ b/salt/returners/couchbase_return.py @@ -112,10 +112,12 @@ VERIFIED_VIEWS = False def _verify_views(): ''' - verify that you have the views you need + ...
Add config to disable view checking on every query
saltstack_salt
train
dec0bce100a08797d37961e43f9d0ec519aaaf53
diff --git a/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/authentication/AuthorizationCodeAuthenticationToken.java b/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/authentication/AuthorizationCodeAuthenticationToken.java index <HASH>..<HASH> 100644 --- a/o...
Remove authorities -> AuthorizationGrantAuthenticationToken constructor Fixes gh-<I>
spring-projects_spring-security
train
39cdc2f4fe244ef80d922b25d3172a5775384f97
diff --git a/Tests/DomHandler/Wsdl/Tag/TagDocumentationTest.php b/Tests/DomHandler/Wsdl/Tag/TagDocumentationTest.php index <HASH>..<HASH> 100755 --- a/Tests/DomHandler/Wsdl/Tag/TagDocumentationTest.php +++ b/Tests/DomHandler/Wsdl/Tag/TagDocumentationTest.php @@ -28,4 +28,23 @@ class TagDocumentationTest extends TestCas...
add unit test to ensure documentation tag successfuly find the enumeration tag when the tag is contained by an enumeration tag
WsdlToPhp_PackageGenerator
train
03c28f4ca5081a8f47e63193c2ea539f39a7073e
diff --git a/src/main/java/com/j256/ormlite/field/FieldType.java b/src/main/java/com/j256/ormlite/field/FieldType.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/j256/ormlite/field/FieldType.java +++ b/src/main/java/com/j256/ormlite/field/FieldType.java @@ -6,6 +6,7 @@ import java.lang.reflect.InvocationTarget...
Fix for persisting classes with parameterized ForeignCollection in supertype (issue #<I>)
j256_ormlite-core
train
0d7c3c41f5e4d63f30b100dcb7b30e9c989c3b48
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -84,7 +84,7 @@ if (date.getMonth() === 1) { return this.L(date) === '1' ? '29' : '28' } - if ([0, 2, 4, 6, 7, 9, 11].indexOf(date.getMonth())) { + if ([0, 2, 4, 6, 7, 9, 11].indexOf(date.getMon...
look for -1 to match those numbers for "t" token
nkcmr_phpdate
train
6f177c30be5280875873ac5cd28570383837ec24
diff --git a/salt/pillar/vault.py b/salt/pillar/vault.py index <HASH>..<HASH> 100644 --- a/salt/pillar/vault.py +++ b/salt/pillar/vault.py @@ -45,6 +45,7 @@ Multiple Vault sources may also be used: ext_pillar: - vault: path=secret/salt - vault: path=secret/root + - vault: path=secret/minions/{mi...
salt/pillar/vault.py: Support having minion_id in vault path like in consul pillar
saltstack_salt
train
4f45999073595025f76356a112a05e17c9a2c414
diff --git a/resource_openstack_compute_instance_v2.go b/resource_openstack_compute_instance_v2.go index <HASH>..<HASH> 100644 --- a/resource_openstack_compute_instance_v2.go +++ b/resource_openstack_compute_instance_v2.go @@ -382,7 +382,7 @@ func resourceComputeInstanceV2Read(d *schema.ResourceData, meta interface{}) ...
typo with netname when no networks are specified
terraform-providers_terraform-provider-openstack
train
aeb1e08f83948c5f554a533752eb267add90830d
diff --git a/lfsapi/stats.go b/lfsapi/stats.go index <HASH>..<HASH> 100644 --- a/lfsapi/stats.go +++ b/lfsapi/stats.go @@ -11,6 +11,7 @@ import ( ) type httpTransfer struct { + URL string Key string RequestBodySize int64 Start time.Time @@ -35,7 +36,10 @@ func (c *Client) Log...
allow http stats logger to send different http req events
git-lfs_git-lfs
train
575fb0b2bc28d83afde58cba4893dc2df209d959
diff --git a/molgenis-core-ui/src/main/resources/js/molgenis.js b/molgenis-core-ui/src/main/resources/js/molgenis.js index <HASH>..<HASH> 100644 --- a/molgenis-core-ui/src/main/resources/js/molgenis.js +++ b/molgenis-core-ui/src/main/resources/js/molgenis.js @@ -3,6 +3,10 @@ molgenis.contextUrl = contextUrl; }; ...
Create link to entityExplorer for xref and mref values
molgenis_molgenis
train
d46fe925fef72222818ff6bb8715015cc794406b
diff --git a/lib/sprout/system/base_system.rb b/lib/sprout/system/base_system.rb index <HASH>..<HASH> 100644 --- a/lib/sprout/system/base_system.rb +++ b/lib/sprout/system/base_system.rb @@ -68,7 +68,7 @@ module Sprout::System # Raises a +Sprout::Errors::ExecutionError+ if the process writes to stderr # ...
Removed extraneous text from systeme.execute output
lukebayes_project-sprouts
train
46527808aabae62da3a1d923d77ab197b824b827
diff --git a/node_exporter.go b/node_exporter.go index <HASH>..<HASH> 100644 --- a/node_exporter.go +++ b/node_exporter.go @@ -41,8 +41,10 @@ var ( memProfile = flag.String("debug.memprofile-file", "", "Write memory profile to this file upon receipt of SIGUSR1.") listenAddress = flag.String("web.listen-a...
Filter list of collectors enabled by default Enabled by default collectors are chosen for Linux, which supports all of the implemented collectors. But for other OSes (OS X, for example) this list is not suitable, because they lack most of those collectors. Because of that, it is not possible to run node_exporter with...
prometheus_node_exporter
train
7c86c0f4f0150042b4c6a40264c946e457cdd580
diff --git a/lib/riot/assertion_macros.rb b/lib/riot/assertion_macros.rb index <HASH>..<HASH> 100644 --- a/lib/riot/assertion_macros.rb +++ b/lib/riot/assertion_macros.rb @@ -34,7 +34,7 @@ module Riot # asserts("test") { raise My::Exception, "Foo Bar" }.raises(My::Exception, /Bar/) # asserts("test") { rai...
Forgot to test raises assertion macro when nothing is raised
thumblemonks_riot
train
51c78b50049ea113b862e6881471414b77c860ce
diff --git a/redcap/methods/base.py b/redcap/methods/base.py index <HASH>..<HASH> 100644 --- a/redcap/methods/base.py +++ b/redcap/methods/base.py @@ -255,7 +255,7 @@ class Base: to_import: List[dict], import_format: Literal["json"], return_format_type: Literal["json", "csv", "xml"], - ...
:recycle: Change param name for initialize_import_payload
redcap-tools_PyCap
train
028db87995552b5f1c8e353274aa59aad1179455
diff --git a/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/PopupMenuSeparatorPainter.java b/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/PopupMenuSeparatorPainter.java index <HASH>..<HASH> 100644 --- a/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter...
Just call fillRect. This only does the one thing.
khuxtable_seaglass
train
cf21275428b814daa382053d0ecd4ce06dbfd9a7
diff --git a/lib/brainstem/api_docs/formatters/markdown/helper.rb b/lib/brainstem/api_docs/formatters/markdown/helper.rb index <HASH>..<HASH> 100644 --- a/lib/brainstem/api_docs/formatters/markdown/helper.rb +++ b/lib/brainstem/api_docs/formatters/markdown/helper.rb @@ -78,6 +78,35 @@ module Brainstem text...
Extract generation of associations markdown table into the Markdown Helper
mavenlink_brainstem
train
8ab678402616cb2d63aa557b1e0719036f317b06
diff --git a/lib/toxencryptsave.js b/lib/toxencryptsave.js index <HASH>..<HASH> 100644 --- a/lib/toxencryptsave.js +++ b/lib/toxencryptsave.js @@ -543,10 +543,11 @@ ToxEncryptSave.prototype.encryptedKeySave = function(key, callback) { return; } + var _this = this; this.getEncryptedSize(function(err, encSi...
Even more toxencryptsave
saneki-discontinued_node-toxcore
train
be9f4c5557b96a6f0b8244f2de5a6e40ee2e81ab
diff --git a/.no-header.php-cs-fixer.dist.php b/.no-header.php-cs-fixer.dist.php index <HASH>..<HASH> 100644 --- a/.no-header.php-cs-fixer.dist.php +++ b/.no-header.php-cs-fixer.dist.php @@ -28,8 +28,16 @@ $finder = Finder::create() ->notName('#Logger\.php$#'); $overrides = [ - // @TODO Remove once live in c...
Add support for new fixers added in <I>
codeigniter4_CodeIgniter4
train
980124b4a1c900706d08f94182afa1d6e3bb2303
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -24,8 +24,8 @@ function getCfg() { feat: 'Features', fix: 'Bug Fixes', perf: 'Performance Improvements', - docs: 'Reverts', - revert: 'Documentation', + docs: 'Documentation', + revert:...
fix: Switched texts for "docs" and "revert"
Alorel_conventional-changelog-personal
train
39e1c7296f72bf32607a29027381105b37ca553a
diff --git a/src/Server/Remote/NativeSsh.php b/src/Server/Remote/NativeSsh.php index <HASH>..<HASH> 100644 --- a/src/Server/Remote/NativeSsh.php +++ b/src/Server/Remote/NativeSsh.php @@ -105,7 +105,6 @@ class NativeSsh implements ServerInterface */ public function upload($local, $remote) { - $loc...
fixed uploading of files containing spaces only remote-path need to be escaped as those are evaluated twice.
deployphp_deployer
train
11d695a2973d67906145e7f0972b6e693bdaa3f9
diff --git a/devmapper/deviceset_devmapper.go b/devmapper/deviceset_devmapper.go index <HASH>..<HASH> 100644 --- a/devmapper/deviceset_devmapper.go +++ b/devmapper/deviceset_devmapper.go @@ -168,6 +168,7 @@ func (devices *DeviceSetDM) saveMetadata() error { } func (devices *DeviceSetDM) registerDevice(id int, hash ...
Add debug messages while testing devicemapper
containers_storage
train
3099740dc280f71a0c7c9b1d9661d65aa4aeb2eb
diff --git a/src/Ifsnop/Mysqldump/Mysqldump.php b/src/Ifsnop/Mysqldump/Mysqldump.php index <HASH>..<HASH> 100644 --- a/src/Ifsnop/Mysqldump/Mysqldump.php +++ b/src/Ifsnop/Mysqldump/Mysqldump.php @@ -837,6 +837,7 @@ class Mysqldump $ret = array(); $columnTypes = $this->tableColumnTypes[$tableName]; ...
Added hook into Mysqldump to transform values before dumping them
ifsnop_mysqldump-php
train
c8ddb195fae3f2b74d403cc1bd756cc8451e9360
diff --git a/tia/bbg/v3api.py b/tia/bbg/v3api.py index <HASH>..<HASH> 100644 --- a/tia/bbg/v3api.py +++ b/tia/bbg/v3api.py @@ -469,8 +469,7 @@ class IntradayTickResponse(object): class IntradayTickRequest(Request): def __init__(self, sid, start=None, end=None, events=['TRADE'], include_condition_codes=None, ...
Removed overrides from intraday requests
bpsmith_tia
train
622c7ae61e98358d14e098863fa406df0a98102c
diff --git a/lib/active_delegate/attributes.rb b/lib/active_delegate/attributes.rb index <HASH>..<HASH> 100644 --- a/lib/active_delegate/attributes.rb +++ b/lib/active_delegate/attributes.rb @@ -279,12 +279,12 @@ module ActiveDelegate # Define attribute scope methods def define_attribute_scope_methods(a...
use define_singleton_method instead of scope for attribute scope methods
hardpixel_active-delegate
train
6bac4e4c340f6ab8f722224fef2763b09664a85c
diff --git a/packages/build-tools/tasks/webpack-tasks.js b/packages/build-tools/tasks/webpack-tasks.js index <HASH>..<HASH> 100644 --- a/packages/build-tools/tasks/webpack-tasks.js +++ b/packages/build-tools/tasks/webpack-tasks.js @@ -89,7 +89,6 @@ async function server(customWebpackConfig) { ui: false, ...
chore(micro-journeys): revert tunnel:true in browserSync config
bolt-design-system_bolt
train
b5801ed9d6f96929515b8ac0866fc696f573ae19
diff --git a/lib/knapsack_pro/adapters/base_adapter.rb b/lib/knapsack_pro/adapters/base_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/knapsack_pro/adapters/base_adapter.rb +++ b/lib/knapsack_pro/adapters/base_adapter.rb @@ -11,7 +11,19 @@ module KnapsackPro end def bind - # TODO + if Kn...
Add implementation and spec for base adapter
KnapsackPro_knapsack_pro-ruby
train
1a88846de4dccd2699c2bbf37cd18e34deb5e7e2
diff --git a/entity-store/src/main/java/jetbrains/exodus/entitystore/iterate/EntitiesOfTypeIterable.java b/entity-store/src/main/java/jetbrains/exodus/entitystore/iterate/EntitiesOfTypeIterable.java index <HASH>..<HASH> 100644 --- a/entity-store/src/main/java/jetbrains/exodus/entitystore/iterate/EntitiesOfTypeIterable....
make EntitiesOfTypeIterable inner classes static
JetBrains_xodus
train
be119c1dcb3ff91ac9626fd404b07c7410611640
diff --git a/load.php b/load.php index <HASH>..<HASH> 100644 --- a/load.php +++ b/load.php @@ -24,7 +24,7 @@ global $themeisle_sdk_max_path; $themeisle_sdk_relative_licenser_path = '/src/Modules/Licenser.php'; global $themeisle_sdk_abs_licenser_path; -if ( ! file_exists( $themeisle_sdk_path . $themeisle_sdk_relativ...
fix: adds is_file for file existence check
Codeinwp_themeisle-sdk
train
c92f53890612630de5ef856c6cbf5f3c43bbff89
diff --git a/datapoint/Manager.py b/datapoint/Manager.py index <HASH>..<HASH> 100644 --- a/datapoint/Manager.py +++ b/datapoint/Manager.py @@ -3,6 +3,7 @@ Datapoint python module """ import datetime +from time import time import requests @@ -68,6 +69,12 @@ class Manager(object): self.api_key = api_key...
Cache site requests for an hour. Resolves #<I>.
jacobtomlinson_datapoint-python
train
a6b3e0a9e9d95fc996b8ff2390a3043b2e54d0e8
diff --git a/vendor/plugins/authentication/app/controllers/admin/users_controller.rb b/vendor/plugins/authentication/app/controllers/admin/users_controller.rb index <HASH>..<HASH> 100644 --- a/vendor/plugins/authentication/app/controllers/admin/users_controller.rb +++ b/vendor/plugins/authentication/app/controllers/adm...
Load authlogic before other plugins and set users to active when creating them.
refinery_refinerycms
train
64bd9639a14afd83bf3f03ffe82825be2c8e940c
diff --git a/protractor-shared.js b/protractor-shared.js index <HASH>..<HASH> 100644 --- a/protractor-shared.js +++ b/protractor-shared.js @@ -38,7 +38,7 @@ var browsers = argv['browsers'].split(','); var CHROME_OPTIONS = { 'args': ['--js-flags=--expose-gc'], 'perfLoggingPrefs': { - 'traceCategories': 'v8,bli...
fix(benchmarks): fix tracing categories to work with Dartium Closes #<I>
angular_angular
train
599d4ddd0c53da3c12fbc61a92a4b1c5146b2868
diff --git a/salt/client/ssh/state.py b/salt/client/ssh/state.py index <HASH>..<HASH> 100644 --- a/salt/client/ssh/state.py +++ b/salt/client/ssh/state.py @@ -34,8 +34,8 @@ class SSHState(salt.state.State): Load up the modules for remote compilation via ssh ''' self.functions = self.wrapper -...
client.ssh.state.SSHState.load_modules: avoid shadowing locals() built-in
saltstack_salt
train
303bb4e296c112523e05aa12ba175b61fe27533f
diff --git a/properties/base.py b/properties/base.py index <HASH>..<HASH> 100644 --- a/properties/base.py +++ b/properties/base.py @@ -235,9 +235,9 @@ class HasProperties(with_metaclass(PropertyMetaclass, object)): rcl=json_dict['__class__'], cl=cls.__name__ ), RuntimeWarni...
Prevent modification of dictionary during deserialization
seequent_properties
train
c50c441aa472d08ab08c28064239e69ad2ea4cdd
diff --git a/bin/readme.py b/bin/readme.py index <HASH>..<HASH> 100755 --- a/bin/readme.py +++ b/bin/readme.py @@ -13,7 +13,7 @@ repo = sys.argv[1] command = sys.argv[2] warning = f""" -> **Note:** The README.md page is outomatically generated, do not edit it. +> **Note:** The README-old.md page is outomatically ge...
wrong filename should be README.md
cloudmesh_cloudmesh-common
train
3e5adfbbe8d8ba59241ee5e532ff128eded84016
diff --git a/bucket.go b/bucket.go index <HASH>..<HASH> 100644 --- a/bucket.go +++ b/bucket.go @@ -94,14 +94,13 @@ type hlpGetHandler func(ioGetCallback) (pendingOp, error) func (b *Bucket) hlpGetExec(valuePtr interface{}, execFn hlpGetHandler) (casOut Cas, errOut error) { signal := make(chan bool, 1) - var bytesO...
Orphan: Fix bug causing get decoding to fail.
couchbase_gocb
train
794640b392f2eac5420e188d3479730c9156d9cb
diff --git a/dipper/sources/ClinVarXML_alpha.py b/dipper/sources/ClinVarXML_alpha.py index <HASH>..<HASH> 100755 --- a/dipper/sources/ClinVarXML_alpha.py +++ b/dipper/sources/ClinVarXML_alpha.py @@ -619,6 +619,12 @@ with gzip.open(FILENAME, 'rt') as fh: _evidence_id, 'SEPIO:000...
also attach source to association per <I> cmap
monarch-initiative_dipper
train
5cb3d07f44d35a904db511c01dcd8fc64dfd64ec
diff --git a/src/Control/Middleware/ConfirmationMiddleware/HttpMethodBypass.php b/src/Control/Middleware/ConfirmationMiddleware/HttpMethodBypass.php index <HASH>..<HASH> 100644 --- a/src/Control/Middleware/ConfirmationMiddleware/HttpMethodBypass.php +++ b/src/Control/Middleware/ConfirmationMiddleware/HttpMethodBypass.p...
FIX: Avoid pass-literal-by-reference warning in PHP 8
silverstripe_silverstripe-framework
train
90201f13d89c9fa1a9da8dadb315e4cf3159be40
diff --git a/test/test_json_request.rb b/test/test_json_request.rb index <HASH>..<HASH> 100644 --- a/test/test_json_request.rb +++ b/test/test_json_request.rb @@ -23,7 +23,7 @@ describe RC::JsonRequest do would 'encode false and nil' do [[nil, 'null'], [false, 'false'], [true, 'true']].each do |(value, exp)| ...
for the latest rest-builder, we're sending payload for DELETE requests
godfat_rest-core
train
393603fc0bfa5c31009808e55815c93064032d27
diff --git a/.gitignore b/.gitignore index <HASH>..<HASH> 100644 --- a/.gitignore +++ b/.gitignore @@ -107,6 +107,8 @@ youtube_credentials.json *.mp4 *.mp3 *.webm +*.m4a +*.tmp .DS_Store settings.json test.py diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -9,7 +9...
add Soundcloud support closes #8
Music-Moo_music2storage
train