hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
271d09924e08404b070c0fa94f7f46160d574443
diff --git a/engine/orchestrator/score-orchestrator-impl/src/main/java/io/cloudslang/orchestrator/repositories/RunningExecutionPlanRepository.java b/engine/orchestrator/score-orchestrator-impl/src/main/java/io/cloudslang/orchestrator/repositories/RunningExecutionPlanRepository.java index <HASH>..<HASH> 100644 --- a/eng...
formatting code bsed on code climate
CloudSlang_score
train
c7b2ea95b14b7f7a38cd2926055622625ba20856
diff --git a/qa_tests/uhs_unittest.py b/qa_tests/uhs_unittest.py index <HASH>..<HASH> 100644 --- a/qa_tests/uhs_unittest.py +++ b/qa_tests/uhs_unittest.py @@ -16,6 +16,8 @@ import numpy +import os +import shutil import unittest from openquake.db.models import OqCalculation @@ -99,3 +101,34 @@ class UniformHaza...
Added a qa test to cover the --output-type=xml case
gem_oq-engine
train
8a59f9068594a396b6ec1f8d9e359a1f92d3da5e
diff --git a/test/templates.js b/test/templates.js index <HASH>..<HASH> 100644 --- a/test/templates.js +++ b/test/templates.js @@ -182,9 +182,6 @@ describe('Templates', function() { it('should render fragments containing async components correctly', async () => { const req = apos.task.getReq(); const resul...
With phrases pushing into browser space, we can't do a simplistic test of the output for the string "error". But we also don't need to because in the event of an error all of the other asserts will fail.
apostrophecms_apostrophe
train
0babfcc42c94956e605eb9181f61ba2122cffef8
diff --git a/scheduler/reconcile.go b/scheduler/reconcile.go index <HASH>..<HASH> 100644 --- a/scheduler/reconcile.go +++ b/scheduler/reconcile.go @@ -525,10 +525,11 @@ func (a *allocReconciler) computeGroup(group string, all allocSet) bool { // Final check to see if the deployment is complete is to ensure everything...
Make sure that task group has a deployment state before using it
hashicorp_nomad
train
b3c0d093a31db3f4e38ae89c0401f20585dba745
diff --git a/groupcache.go b/groupcache.go index <HASH>..<HASH> 100644 --- a/groupcache.go +++ b/groupcache.go @@ -198,7 +198,7 @@ func (g *Group) Name() string { func (g *Group) initPeers() { if g.peers == nil { - g.peers = getPeers() + g.peers = getPeers(g.name) } } diff --git a/peers.go b/peers.go index ...
portPicker function now takes group name, RegisterPerGroupPeerPicker added to set this function
golang_groupcache
train
5a75746bfdccabe0bc66efd11b21be76498c6142
diff --git a/jquery.smoothState.js b/jquery.smoothState.js index <HASH>..<HASH> 100644 --- a/jquery.smoothState.js +++ b/jquery.smoothState.js @@ -392,8 +392,7 @@ updateContent = function (url) { // If the content has been requested and is done: var containerId...
Bug: Firefox crash if caching disabled If pageCacheSize is set to 0, Firefox chokes when looking up into the undefined `cache` object. Also cleaned up debugging message that would fail if cache lookup failed.
miguel-perez_smoothState.js
train
46a5c7519689b85e5ac043871fd00d25fce13d61
diff --git a/lib/testing/generator/data_generator.php b/lib/testing/generator/data_generator.php index <HASH>..<HASH> 100644 --- a/lib/testing/generator/data_generator.php +++ b/lib/testing/generator/data_generator.php @@ -103,6 +103,9 @@ EOD; * @return component_generator_base or rather an instance of the approp...
MDL-<I> testing: Make global $CFG available when including generators This will remove the requirement to add the global $CFG call to the top of generator scripts.
moodle_moodle
train
eadb0ac83113f0c4d388d8e9d152df00e425ff13
diff --git a/lib/vagrant/errors.rb b/lib/vagrant/errors.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/errors.rb +++ b/lib/vagrant/errors.rb @@ -656,6 +656,10 @@ module Vagrant error_key(:snapshot_force) end + class SnapshotNotSupported < VagrantError + error_key(:snapshot_not_supported) + en...
Raise exception if provider doesn't have snapshot capability Prior to this commit, if a user attempted to use the `vagrant snapshot save` or `vagrant snapshot list` commands on a vm whose provider did not support snapshots, it would simply print a warning. This commit changes that behavior by instead raising an error.
hashicorp_vagrant
train
1b05049c362097cb88c9c1fc24fe9012ac0e4e05
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ ### Changes * `require:` only does relative includes when it starts with a `.`. ([@ptarjan][]) +* `Style/IfUnlessModifier` does not trigger if the body is another conditional. ([@amuino][]) ...
Skip modifier when the if body is a conditional When the content of an `if` sentence is a conditional (specially with the ternary operator), the single line version is much harder to read. Before this commit, conditions like ``` if running? tired? ? "please stop" : "keep going" end ``` become ``` tired? ? "please...
rubocop-hq_rubocop
train
65d62f1a00ca2c9f4f222bdfba2f217e70a2e5c4
diff --git a/tests/contrib/storage/test_linux_storage_utils.py b/tests/contrib/storage/test_linux_storage_utils.py index <HASH>..<HASH> 100644 --- a/tests/contrib/storage/test_linux_storage_utils.py +++ b/tests/contrib/storage/test_linux_storage_utils.py @@ -63,6 +63,15 @@ class MiscStorageUtilsTests(unittest.TestCase)...
Added an extra test for an edge case.
juju_charm-helpers
train
595ab4ab32ed9ec1415b0e965014dabdef49c7bd
diff --git a/js/kkex.js b/js/kkex.js index <HASH>..<HASH> 100644 --- a/js/kkex.js +++ b/js/kkex.js @@ -118,8 +118,8 @@ module.exports = class kkex extends Exchange { }; limits = { 'amount': { - 'min': Math.min (this.safeFloat ...
kkex reversed limits min/max logic
ccxt_ccxt
train
8c6e85256c561011742243c3aeca67ef58f0193f
diff --git a/src/Cli/BaseCommand.php b/src/Cli/BaseCommand.php index <HASH>..<HASH> 100644 --- a/src/Cli/BaseCommand.php +++ b/src/Cli/BaseCommand.php @@ -145,7 +145,7 @@ abstract class BaseCommand extends Command */ protected function filterByInputOptions(DependencyPairCollection $dependencies, array $optio...
Fix internals to be false by default
mihaeu_dephpend
train
4cd886cf44b1b55ccd5c32647daac9aeac98bad6
diff --git a/angr/analyses/cfg_fast.py b/angr/analyses/cfg_fast.py index <HASH>..<HASH> 100644 --- a/angr/analyses/cfg_fast.py +++ b/angr/analyses/cfg_fast.py @@ -1530,8 +1530,31 @@ class CFGFast(ForwardAnalysis, CFGBase): # pylint: disable=abstract-method :return: """ - # helper methods +...
CFGFast: in memory reference collection, only switch to iropt_level=0 if architecture is X<I> or AMD<I>.
angr_angr
train
2eea30c7017275330b8791c4e86732eace4f3f8f
diff --git a/src/Services/FileService.php b/src/Services/FileService.php index <HASH>..<HASH> 100644 --- a/src/Services/FileService.php +++ b/src/Services/FileService.php @@ -27,9 +27,11 @@ class FileService extends AbstractService array $guzzleConfig = []) { if (is_null($...
fileservice: fixed injection of Filesystem
czim_laravel-service
train
62566c9335dec8c3a3b17c3f020e965dca875779
diff --git a/gdax/websocket_client.py b/gdax/websocket_client.py index <HASH>..<HASH> 100644 --- a/gdax/websocket_client.py +++ b/gdax/websocket_client.py @@ -63,7 +63,10 @@ class WebsocketClient(object): if self.type == "heartbeat": sub_params = {"type": "heartbeat", "on": True} - se...
Moved heartbeat disable command to connect() Fixes #<I>. Sending the heartbeat disable command in close() was causing a WebSocketConnectionClosedException if websocket was already closed.
danpaquin_coinbasepro-python
train
de16cb5bc86b6b788059502c4981e55ec3505ffd
diff --git a/markus/__init__.py b/markus/__init__.py index <HASH>..<HASH> 100644 --- a/markus/__init__.py +++ b/markus/__init__.py @@ -17,6 +17,6 @@ __author__ = 'Will Kahn-Greene' __email__ = 'willkg@mozilla.com' # yyyymmdd -__releasedate__ = '20171030' +__releasedate__ = '' # x.y or x.y.dev0 -__version__ = '1.0'...
Prep for <I> development
willkg_markus
train
e0fbc81f214f83ef4a3abdd89fd3077895c460cb
diff --git a/cmd/deploy2.go b/cmd/deploy2.go index <HASH>..<HASH> 100644 --- a/cmd/deploy2.go +++ b/cmd/deploy2.go @@ -35,7 +35,7 @@ func (c Deploy2Cmd) Run(opts DeployOpts) error { return bosherr.Errorf(errMsg, c.deployment.Name(), man.Name) } - diff, err := c.deployment.Diff(bytes, opts.RedactDiff) + diff, err...
Uses correct flag for redacting diff [#<I>](<URL>)
cloudfoundry_bosh-cli
train
ac0de3d316b081ebcf67d6299420f0c59a50ab3e
diff --git a/cmd/empire/main.go b/cmd/empire/main.go index <HASH>..<HASH> 100644 --- a/cmd/empire/main.go +++ b/cmd/empire/main.go @@ -48,9 +48,10 @@ const ( FlagRoute53InternalZoneID = "route53.zoneid.internal" - FlagSecret = "secret" - FlagReporter = "reporter" - FlagRunner = "runner" + FlagSecret = "...
Add a LogsStreamer interface. Streaming logs is disabled by default.
remind101_empire
train
a75e1e27db356267ef5574c3026b9a719961f421
diff --git a/core/server/models/post.js b/core/server/models/post.js index <HASH>..<HASH> 100644 --- a/core/server/models/post.js +++ b/core/server/models/post.js @@ -683,9 +683,26 @@ Post = ghostBookshelf.Model.extend({ return attrs; }, + + // NOTE: overloads models base method to take `post_meta` c...
🐛 Fixed cache invalidation when editing post_meta fields closes #<I> - The change detection didn't work when editing post_meta fileds because we only check current model's `_changed` fields when performing `wasChanged()` check - A solution was adding change tracking of post_meta relation to currently edited post mod...
TryGhost_Ghost
train
ca64202f662a21612420fe0e643f27a66390bf0f
diff --git a/resources/lang/ja-JP/forms.php b/resources/lang/ja-JP/forms.php index <HASH>..<HASH> 100644 --- a/resources/lang/ja-JP/forms.php +++ b/resources/lang/ja-JP/forms.php @@ -49,12 +49,12 @@ return [ 'name' => '名前', 'status' => '状況', 'component' => '...
New translations forms.php (Japanese)
CachetHQ_Cachet
train
5c35567e9e47631fec6bebbc01c1fd0b5fd16f4b
diff --git a/lib/access_control_config.py b/lib/access_control_config.py index <HASH>..<HASH> 100644 --- a/lib/access_control_config.py +++ b/lib/access_control_config.py @@ -186,5 +186,7 @@ CFG_WEBACCESS_WARNING_MSGS = { 14: """Error(14): Could not login using '%s', because this user is...
New support for checking correctness of email addresses provided at local registration time exploiting mailcookies.
inveniosoftware_invenio-access
train
f87ab198b82f712a7fd9ae5cc706b803a2b09a3e
diff --git a/test/integration/api/v2/version_information_test.rb b/test/integration/api/v2/version_information_test.rb index <HASH>..<HASH> 100644 --- a/test/integration/api/v2/version_information_test.rb +++ b/test/integration/api/v2/version_information_test.rb @@ -48,4 +48,12 @@ class VersionInformationTest < ActionD...
Test api v2 version response when rubygem has dot in name
rubygems_rubygems.org
train
4578a5eb7a33b9c90598d2ea639baa7c3a8148f7
diff --git a/lib/blocklib.php b/lib/blocklib.php index <HASH>..<HASH> 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -661,6 +661,18 @@ class block_manager { } /** + * Create all the bock instances for all the blocks that were loaded by + * load_blocks. This is used, for example, to ensure t...
block MDL-<I> Initialise all blocks on this page before output is started.
moodle_moodle
train
cf777ecafb764ddce04d66c68ef08a292b3c0739
diff --git a/src/main/java/reactor/core/publisher/Flux.java b/src/main/java/reactor/core/publisher/Flux.java index <HASH>..<HASH> 100644 --- a/src/main/java/reactor/core/publisher/Flux.java +++ b/src/main/java/reactor/core/publisher/Flux.java @@ -2639,7 +2639,7 @@ public abstract class Flux<T> implements Publisher<T> {...
fix elapsed() stateful composition
reactor_reactor-core
train
fef22157b07f101229d29544d578bfe2cb9fedfe
diff --git a/activemodel/lib/active_model/observer_array.rb b/activemodel/lib/active_model/observer_array.rb index <HASH>..<HASH> 100644 --- a/activemodel/lib/active_model/observer_array.rb +++ b/activemodel/lib/active_model/observer_array.rb @@ -4,34 +4,16 @@ module ActiveModel # Stores the enabled/disabled state o...
Fix bug with AM::Observer disablement. Now that we propagate the enabling/disabling to descendants, we no longer have to check the disabled_observer Set on each superclass of the model class. This was causing a bug when disabling all observers at a superclass level and then enabling an individual observer at a subcla...
rails_rails
train
f856a0821ee01ce02a21ee1879aa756753a2b135
diff --git a/pymatgen/analysis/local_env.py b/pymatgen/analysis/local_env.py index <HASH>..<HASH> 100644 --- a/pymatgen/analysis/local_env.py +++ b/pymatgen/analysis/local_env.py @@ -1105,6 +1105,7 @@ class MinimumDistanceNN(NearNeighbors): Args: tol (float): tolerance parameter for neighbor identificatio...
allow the MimimumDistanceNN class to only use the cutoff distance as the filter. This is intended for analyzing the migration path for diffusion analysis
materialsproject_pymatgen
train
67ae4b58d5dde7611e5f30df7ecb6a14b7224ff0
diff --git a/aa_composer.js b/aa_composer.js index <HASH>..<HASH> 100644 --- a/aa_composer.js +++ b/aa_composer.js @@ -375,6 +375,7 @@ function handleTrigger(conn, batch, trigger, params, stateVars, arrDefinition, a var objStateUpdate; var count = 0; var originalStateVars = _.cloneDeep(stateVars); + var originalB...
restore original balances if estimation bounced, update balances of this AA only
byteball_ocore
train
a68b96b06f24496ababb21018d82edd5091ee74b
diff --git a/presto-main/src/main/java/com/facebook/presto/spiller/TempStorageSingleStreamSpiller.java b/presto-main/src/main/java/com/facebook/presto/spiller/TempStorageSingleStreamSpiller.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/spiller/TempStorageSingleStreamSpiller.java +...
Split large pages in TempSingleStreamSpiller This prevents int overflow when serializing pages, since page serialization requires the page size in bytes to fit in an integer. Was already added for FileSingleStreamSpiller at commit f<I>df1b
prestodb_presto
train
32e0e43d129ffe04b3f31a947d67389ad7808f23
diff --git a/core/interpreterV2/pom.xml b/core/interpreterV2/pom.xml index <HASH>..<HASH> 100644 --- a/core/interpreterV2/pom.xml +++ b/core/interpreterV2/pom.xml @@ -8,9 +8,22 @@ <version>2.2.0</version> </parent> <groupId>org.overturetool.core</groupId> - <artifactId>interpreter</artifactId> + <artifactId>...
Unclashing vdmj namespace in astV2 - from vdmj to vdmjV2
overturetool_overture
train
cc7d95bf628f3f98d4947455cc2551f22e175570
diff --git a/tests/conftest.py b/tests/conftest.py index <HASH>..<HASH> 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -14,6 +14,41 @@ import shutil from cookiecutter import utils +def backup_dir(original_dir, backup_dir): + # If the default original_dir is pre-existing, move it to a temp location + ...
Update conftest.py to also clean up replay files
audreyr_cookiecutter
train
2f748307adf98ec141d39fb0805abad1957d38f4
diff --git a/docs/static/bundle.js b/docs/static/bundle.js index <HASH>..<HASH> 100644 --- a/docs/static/bundle.js +++ b/docs/static/bundle.js @@ -888,6 +888,17 @@ function _onDocumentTouchEnd(e) { } } +function _getClosestParent(elem, selector) { + var el = elem; + + // Get the closest matching element +...
Allow hosts which are nested deeper than 1 level;
makeup-js_makeup-expander
train
4abf247b2a1aaeee70561aea4d24e3aada24cd1e
diff --git a/src/utils/__tests__/toMongoDottedObject-test.js b/src/utils/__tests__/toMongoDottedObject-test.js index <HASH>..<HASH> 100644 --- a/src/utils/__tests__/toMongoDottedObject-test.js +++ b/src/utils/__tests__/toMongoDottedObject-test.js @@ -28,4 +28,16 @@ describe('toMongoDottedObject()', () => { 'a.b'...
fix: Support builtin js objects in dotted notation Converting a dotted notation shouldn't try and nest keys of builtin objects
graphql-compose_graphql-compose-mongoose
train
1e7dec609203d86f7e48a150a33809b9461e8eed
diff --git a/lib/brokerage.js b/lib/brokerage.js index <HASH>..<HASH> 100644 --- a/lib/brokerage.js +++ b/lib/brokerage.js @@ -105,8 +105,9 @@ Brokerage.prototype.__updateInjectedComponent = function(changedComponent, whatC .then(() => { this.__updateInjectedElements(changedComponent, updatedElement); ...
SMC-<I>: created fromRemotePeer function for readability
happner_happner-cluster
train
c3f1c76e2b139916c6260b43568f4cd7c6b6e3d8
diff --git a/src/confluent_kafka/admin/__init__.py b/src/confluent_kafka/admin/__init__.py index <HASH>..<HASH> 100644 --- a/src/confluent_kafka/admin/__init__.py +++ b/src/confluent_kafka/admin/__init__.py @@ -363,6 +363,14 @@ class AdminClient (_AdminClientImpl): return futmap + def list_topics(self, ...
AdminClient: Add list_topics and list_groups to Admin.py (#<I>) _AdminClientImpl supports list_topics and list_groups, which are helpful functions to have available on the Py equivalent AdminClient. Add these functions to Py class, so that the documentation could be more consistent and other tools (such as IDE's) coul...
confluentinc_confluent-kafka-python
train
230d3012688dcca4920d61457cb7573db5923d30
diff --git a/tests/conftest.py b/tests/conftest.py index <HASH>..<HASH> 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -70,7 +70,7 @@ def spoof(tmpdir_factory, **kwargs): """ env = os.environ.copy() slug = '-'.join(v.replace('.py', '') for v in sorted(kwargs.values())) - spoofer_base = Path...
conftest: py<I> path issue
jbarlow83_OCRmyPDF
train
6db0e6b7739481f27d954548388bd3f0ed2c6fdd
diff --git a/kernel/user/forgotpassword.php b/kernel/user/forgotpassword.php index <HASH>..<HASH> 100644 --- a/kernel/user/forgotpassword.php +++ b/kernel/user/forgotpassword.php @@ -108,16 +108,39 @@ if ( $module->isCurrentAction( "Generate" ) ) null, ...
EZP-<I>: Forgotpassword hash is insecure
ezsystems_ezpublish-legacy
train
0011a7892ca2374be9c2ee0848cebcdf68b02915
diff --git a/Gemfile.lock b/Gemfile.lock index <HASH>..<HASH> 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - redlander (0.4.0) + redlander (0.4.1) ffi (~> 1.1) xml_schema (~> 0.1.0) diff --git a/lib/redlander/model_proxy.rb b/lib/redlander/model_proxy.r...
delete_all now accepts a pattern; renamed a few arguments for clarity
cordawyn_redlander
train
8034f2d5e123e420d37e5a87baf43acdc1811f14
diff --git a/TYPO3.Flow/Classes/Security/Account.php b/TYPO3.Flow/Classes/Security/Account.php index <HASH>..<HASH> 100644 --- a/TYPO3.Flow/Classes/Security/Account.php +++ b/TYPO3.Flow/Classes/Security/Account.php @@ -51,7 +51,7 @@ class Account { protected $credentialsSource; /** - * @var \F3\Party\Domain\Mode...
[~TASK] FLOW3 (Security): Use PartyInterface so we can decouple better Change-Id: I<I>d6f7e<I>c<I>e<I>a<I>d<I>d0fe<I>fc0e Original-Commit-Hash: <I>d<I>b<I>b0c<I>b<I>fe<I>c<I>f<I>d3
neos_flow-development-collection
train
7c5f143c9d92dccc7cab6198829283456fe44a0c
diff --git a/salesforce/backend/introspection.py b/salesforce/backend/introspection.py index <HASH>..<HASH> 100644 --- a/salesforce/backend/introspection.py +++ b/salesforce/backend/introspection.py @@ -218,6 +218,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): if params['max_len'] > field...
Fix introspection with Django <I>
django-salesforce_django-salesforce
train
22002657da5c2b85e27e4f0cb315e868c53821f1
diff --git a/src/main/java/com/gistlabs/mechanize/form/Form.java b/src/main/java/com/gistlabs/mechanize/form/Form.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/gistlabs/mechanize/form/Form.java +++ b/src/main/java/com/gistlabs/mechanize/form/Form.java @@ -71,7 +71,7 @@ public class Form extends PageElement i...
Form now recognized input elements with unknown type represented directly using the FormElement class. This will add support for unsupported HTML5 input fields.
GistLabs_mechanize
train
49bacff945dc623f23812a51f521394d5d48dce5
diff --git a/kind.go b/kind.go index <HASH>..<HASH> 100644 --- a/kind.go +++ b/kind.go @@ -71,6 +71,17 @@ func IsDocument(buf []byte) bool { return kind != types.Unknown } +// Application tries to match a file as an application type +func Application(buf []byte) (types.Type, error) { + return doMatchMap(buf, match...
fix(#<I>): add application file matchers
h2non_filetype
train
a2f5cdc21973bf485152d267241f3f5fbcbd51a1
diff --git a/test/test_gitvcs.py b/test/test_gitvcs.py index <HASH>..<HASH> 100644 --- a/test/test_gitvcs.py +++ b/test/test_gitvcs.py @@ -79,3 +79,8 @@ def test_git(tmpdir): check_call(GIT + ['commit', '-m', 'Added file'], cwd=fake1path) clone1repo.pullchanges() assert os.path.exists(os.path.join(clone1...
Dirty hack to clean up asyncio main loop
phodge_homely
train
221107427eadb2c0e095898984d887e8358c66b7
diff --git a/concepts/frame-list/main.js b/concepts/frame-list/main.js index <HASH>..<HASH> 100644 --- a/concepts/frame-list/main.js +++ b/concepts/frame-list/main.js @@ -12,7 +12,7 @@ var frameListEditor = frameList(frames) var state = mercury.hash({ frames: mercury.hash(initialFrameData), - editor: frameLi...
use frameListEditor correctly There were two callsites using `frameList` instead of `frameListEditor`. This seems to be a bug. `frameList` is a function not an observable and it doesn't make sense to set the content of an observable
Raynos_mercury
train
09c83457846c6109cee9206ba73ec649d4938433
diff --git a/facets/impl/src/main/java/org/jboss/forge/addon/facets/FacetFactoryImpl.java b/facets/impl/src/main/java/org/jboss/forge/addon/facets/FacetFactoryImpl.java index <HASH>..<HASH> 100644 --- a/facets/impl/src/main/java/org/jboss/forge/addon/facets/FacetFactoryImpl.java +++ b/facets/impl/src/main/java/org/jbos...
FORGE-<I>: Checking for required facets before attempting to register a facet
forge_core
train
921fd947143ea9afc41195c1ac218922582b7beb
diff --git a/src/bidmanager.js b/src/bidmanager.js index <HASH>..<HASH> 100644 --- a/src/bidmanager.js +++ b/src/bidmanager.js @@ -158,10 +158,12 @@ function getKeyValueTargetingPairs(bidderCode, custBidObj) { if (bidderCode && custBidObj && bidder_settings && bidder_settings[bidderCode]) { // setKeys(keyValues...
replace useGenericKey by alwaysUseBid in bidderSetting. getAdserverTargeting now return a list of bids instead of only one bid. Fix the ordering of winning bid
prebid_Prebid.js
train
151a5ae40a210f75cd6700429db70823026acc40
diff --git a/doc/sphinxext/gen_rst.py b/doc/sphinxext/gen_rst.py index <HASH>..<HASH> 100644 --- a/doc/sphinxext/gen_rst.py +++ b/doc/sphinxext/gen_rst.py @@ -36,8 +36,7 @@ plot_rst_template = """ %(docstring)s -.. image:: images/%(image_name)s - :align: center +%(image_list)s **Python source code:** :downlo...
Fetching every figure generated by the example scripts. As requested on the wiki, this script now fetches every figure generated by the example scripts. If there is only one figure fetched, it will use the rst instruction 'image', but if there is more than one, it will use the instruction 'hlist' in the .rst file.
sphinx-gallery_sphinx-gallery
train
06b60b0e7fdc1dd37baa6c8c34f582d4c084d179
diff --git a/lib/api/2011-02-01/batch.js b/lib/api/2011-02-01/batch.js index <HASH>..<HASH> 100644 --- a/lib/api/2011-02-01/batch.js +++ b/lib/api/2011-02-01/batch.js @@ -58,6 +58,7 @@ exports.createHandler = function(context) { processor.load(batches) .next(function(result) { + response.contentTyp...
Return response with the content type application/json from batch API
groonga_gcs
train
82524a32bc27edd844f0207c19e3748e271af579
diff --git a/spec/unit/liquid/filters/html_spec.rb b/spec/unit/liquid/filters/html_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/liquid/filters/html_spec.rb +++ b/spec/unit/liquid/filters/html_spec.rb @@ -5,7 +5,8 @@ describe Locomotive::Steam::Liquid::Filters::Html do include Locomotive::Steam::Liquid::Filter...
spec: additional test coverage for asset_host functionality
locomotivecms_steam
train
235f8e14b2c863e5dbf580d53c60764569617970
diff --git a/src/vivarium/interpolation.py b/src/vivarium/interpolation.py index <HASH>..<HASH> 100644 --- a/src/vivarium/interpolation.py +++ b/src/vivarium/interpolation.py @@ -226,7 +226,7 @@ class Order0Interp: left_edge = self.data[p[1]].drop_duplicates().sort_values() max_right = self.da...
Vectorizes a couple of loops
ihmeuw_vivarium
train
2e64a0babfa48eb473606e03080df9eb5e3c4478
diff --git a/pulsar/client/staging/up.py b/pulsar/client/staging/up.py index <HASH>..<HASH> 100644 --- a/pulsar/client/staging/up.py +++ b/pulsar/client/staging/up.py @@ -116,6 +116,7 @@ class FileStager(object): self.new_working_directory = job_config['working_directory'] self.new_outputs_directory...
Fix Pulsar client staging up for $__tool_directory__ references.
galaxyproject_pulsar
train
4cfa9f1dda9e2193e9f8e9054a46be7c57df23a7
diff --git a/lib/origen/boot/app.rb b/lib/origen/boot/app.rb index <HASH>..<HASH> 100644 --- a/lib/origen/boot/app.rb +++ b/lib/origen/boot/app.rb @@ -85,35 +85,6 @@ ________________________________________________________________________________ ' - if Origen.os.windows? - PATH_WARNING = %q( -Warning, you...
Fixed sub_block definition bug and removed lbin PATH warning
Origen-SDK_origen
train
ca3f16c510c0f5e2fb4f9889e2bfbefc4e4a39ad
diff --git a/client_unix_test.go b/client_unix_test.go index <HASH>..<HASH> 100644 --- a/client_unix_test.go +++ b/client_unix_test.go @@ -33,6 +33,7 @@ func init() { case "s390x": testImage = "docker.io/s390x/alpine:latest" default: - testImage = "docker.io/library/alpine:latest" + // FIXME: change this back ...
[tmp] Use amd<I> test image This is a workaround because official images were pushed with multi-arch support recently and the current Pull code is not accounting for this.
containerd_containerd
train
0c5a633c310c8c3befea22df186fc6d25f00811a
diff --git a/packages/teraslice/lib/cluster/services/cluster/backends/kubernetes/k8sState.js b/packages/teraslice/lib/cluster/services/cluster/backends/kubernetes/k8sState.js index <HASH>..<HASH> 100644 --- a/packages/teraslice/lib/cluster/services/cluster/backends/kubernetes/k8sState.js +++ b/packages/teraslice/lib/cl...
Updated for slicer name change and new labels
terascope_teraslice
train
ea263f6caaf81960792eb664fc5494659524b451
diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index <HASH>..<HASH> 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -33,6 +33,7 @@ - We now include `cloudpickle` as a required dependency, and no longer depend on `dill` (see [#4858](https://github.com/pymc-devs/pymc3/pull/4858)). - The `incomplete_beta` func...
Issue #<I>, PR revision 1. (#<I>) * Issue #<I>, PR revision 1. * Issue #<I>, PR revision 1. * Test and release notes for Issue #<I>, PR revision 1. * Update pymc3/tests/test_sampling.py
pymc-devs_pymc
train
03a4d3cc91c91dcc6908b070ae98ac68100c2669
diff --git a/src/you_get/common.py b/src/you_get/common.py index <HASH>..<HASH> 100755 --- a/src/you_get/common.py +++ b/src/you_get/common.py @@ -735,7 +735,7 @@ def download_urls(urls, title, ext, total_size, output_dir='.', refer=None, merg if has_ffmpeg_installed(): from .processor.ffm...
common.py: Print merged filename after successful merge Instead of just "Done.".
soimort_you-get
train
843260203dcf59a4b9a5539ec2df259544256a2f
diff --git a/lvmify/__main__.py b/lvmify/__main__.py index <HASH>..<HASH> 100644 --- a/lvmify/__main__.py +++ b/lvmify/__main__.py @@ -28,6 +28,54 @@ class Filesystem: return self.block_size * self.block_count +class BtrFS(Filesystem): + def read_superblock(self): + self.block_size = None + ...
Add Btrfs support.
g2p_blocks
train
ecdccb918ddd392e2dbd1cf46b6e89d773eb73a9
diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index <HASH>..<HASH> 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -2190,29 +2190,6 @@ function xmldb_main_upgrade($oldversion) { } if (!empty($themes)) { - - list($insql, $inparams) = $DB->get_in_or_equal($themes, SQL_PAR...
MDL-<I> themes: Remove re-setting of user/site/course theme These themes cannot be chosen, so this part of the upgrade step is not necessary.
moodle_moodle
train
e6f0d547ab16096d7a2c24824c6e398c082c0d50
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index <HASH>..<HASH> 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -54,16 +54,31 @@ testgroup_member = ( # currently these tests are selected because they pass on qemu-arm test_dirs = ('basics', 'micropython', 'float', 'ext...
tools/tinytest-codegen: More excludes after enabling expected output match.
micropython_micropython
train
49e9ffc38378db61ae3a3d56d796fcb055d95b00
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -105,14 +105,8 @@ Config.prototype._loadArchetypePackage = function (name) { } } - try { - // Require resolve it - var modPath = require.resolve(name); - pkgPath = path.join(modPath, "pa...
Disable require.resolve until done properly. #<I>
FormidableLabs_builder
train
0c134a8cb32e595afa336bd3c11d2af61b19c319
diff --git a/routing/chainview/neutrino.go b/routing/chainview/neutrino.go index <HASH>..<HASH> 100644 --- a/routing/chainview/neutrino.go +++ b/routing/chainview/neutrino.go @@ -250,12 +250,21 @@ func (c *CfFilteredChainView) FilterBlock(blockHash *chainhash.Hash) (*FilteredB Height: blockHeight, } + // If we d...
routing/chainview: if the chain filter is empty, don't fetch the cfilter
lightningnetwork_lnd
train
fb6ecd29d2864c39e6b0238632cf0b877682ccea
diff --git a/flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/kafka/ReadFromKafka.java b/flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/kafka/ReadFromKafka.java index <HASH>..<HASH> 100644 --- a/flink-examples/flink-examples-streaming/s...
[hotfix] [streamExamples] Fix typo in comment. This closes #<I>.
apache_flink
train
71ed897055c7b76b3141967bfdc894275f232fcb
diff --git a/packages/prose-editor/ProseEditor.js b/packages/prose-editor/ProseEditor.js index <HASH>..<HASH> 100644 --- a/packages/prose-editor/ProseEditor.js +++ b/packages/prose-editor/ProseEditor.js @@ -55,6 +55,17 @@ class ProseEditor extends AbstractEditor { getToolbar() { return this.refs.toolbar } + ...
Update toolbar explicitly in ProseEditor implementation.
substance_substance
train
17da36cee2324edde303a24d0d033edc0ddba26b
diff --git a/src/CSV/Reader.php b/src/CSV/Reader.php index <HASH>..<HASH> 100644 --- a/src/CSV/Reader.php +++ b/src/CSV/Reader.php @@ -142,7 +142,7 @@ class Reader implements DataReaderInterface /** * {@inheritdoc} */ - public function getData($start = 0, int $length = null) + public function get...
remove scalar declaration to support php <I>
juliardi_data-reader
train
0d2903711202b072484e6edae0317586fdd13f48
diff --git a/com/jetbrains/teamsys/dnq/database/TransientSessionImpl.java b/com/jetbrains/teamsys/dnq/database/TransientSessionImpl.java index <HASH>..<HASH> 100644 --- a/com/jetbrains/teamsys/dnq/database/TransientSessionImpl.java +++ b/com/jetbrains/teamsys/dnq/database/TransientSessionImpl.java @@ -1388,11 +1388,17 ...
don't try to delete unique indices if their calculation is postponed
JetBrains_xodus-dnq
train
b10862aed447cf0c559a5266cdec9524e7bc8894
diff --git a/angr/analyses/cfg_fast.py b/angr/analyses/cfg_fast.py index <HASH>..<HASH> 100644 --- a/angr/analyses/cfg_fast.py +++ b/angr/analyses/cfg_fast.py @@ -1419,6 +1419,11 @@ class CFGFast(ForwardAnalysis, CFGBase): # e.g. t7 = LDle:I64(0x0000000000600ff8) _process(irsb,...
CFGFast: _collect_data_references() support Binop
angr_angr
train
555af9b79214f413ea8f22caca64e4a57ea4eefe
diff --git a/run.go b/run.go index <HASH>..<HASH> 100644 --- a/run.go +++ b/run.go @@ -276,6 +276,8 @@ func run(w io.Writer, appArgs []string) (bool, error) { } } for _, imp := range f.Import { + // Match the root too. + imp = strings.TrimSuffix(imp, "/...") if strings.HasSuffix(imp, "...") { con...
govendor: match the end directory as well when "..." are specified. Fixes #<I> Change-Id: I<I>e2e6cd7f<I>c1e<I>c<I>dfbf0f<I>f9
kardianos_govendor
train
e4472f5893a9464f7deb4e672ce6564393927790
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -44,6 +44,7 @@ "parse-iso-duration": "^1.0.0", "random-string": "^0.1.2", "ratelimiter": "^2.1.2", + "request": "^2.70.0", "router": "^1.1.4", "try-json-parse": "^0.1.1", "ultro...
auth: add ReCaptcha verification to user registration
u-wave_http-api
train
873f3a7fc95684102b53e5a251c7cd081e24e499
diff --git a/tests/data/test_minute_bars.py b/tests/data/test_minute_bars.py index <HASH>..<HASH> 100644 --- a/tests/data/test_minute_bars.py +++ b/tests/data/test_minute_bars.py @@ -439,40 +439,42 @@ class BcolzMinuteBarTestCase(WithTradingCalendars, 'volume': [10.0] } - first_minute = s...
BUG: Fix end session metadata for minute bar writer. When opening with a new `end_session`, i.e. opening for append, write the new end session to the metadata. Fixes an issue where the calendar on minute bar readers did not include the recently appended day, causing reads on the last values to fail. According, updat...
quantopian_zipline
train
fd14291edcef96dbdae8f85c5b6368174a268e1a
diff --git a/lib/rworkflow/flow.rb b/lib/rworkflow/flow.rb index <HASH>..<HASH> 100644 --- a/lib/rworkflow/flow.rb +++ b/lib/rworkflow/flow.rb @@ -411,7 +411,6 @@ module Rworkflow return klass end - private :read_flow_class def registered?(id) return registry.include?(id) diff -...
added parent_class options to flow registry all
barcoo_rworkflow
train
6044058bea3b1ff1eb2f2a06cd72dac295f5c5d5
diff --git a/spec/PhpGuard/Application/Listener/ChangesetListenerSpec.php b/spec/PhpGuard/Application/Listener/ChangesetListenerSpec.php index <HASH>..<HASH> 100644 --- a/spec/PhpGuard/Application/Listener/ChangesetListenerSpec.php +++ b/spec/PhpGuard/Application/Listener/ChangesetListenerSpec.php @@ -8,6 +8,7 @@ use P...
added spec for more verbose message when debugging
phpguard_phpguard
train
97545a4ec8dc5fb87ac64baab404ba2ae6d24543
diff --git a/jbpm-flow-builder/src/main/java/org/jbpm/compiler/ProcessBuilderImpl.java b/jbpm-flow-builder/src/main/java/org/jbpm/compiler/ProcessBuilderImpl.java index <HASH>..<HASH> 100644 --- a/jbpm-flow-builder/src/main/java/org/jbpm/compiler/ProcessBuilderImpl.java +++ b/jbpm-flow-builder/src/main/java/org/jbpm/co...
when generating a ParserError always report the resource that generated it
kiegroup_jbpm
train
f06b4380ad660123f237d6d8ffdf746735481d62
diff --git a/config/bootstrap.php b/config/bootstrap.php index <HASH>..<HASH> 100644 --- a/config/bootstrap.php +++ b/config/bootstrap.php @@ -2,8 +2,10 @@ use Cake\Core\Configure; use Cake\Event\EventManager; use RolesCapabilities\Event\ModelBeforeFindEventsListener; +use RolesCapabilities\Event\AddPersonalPermissi...
Loading new event (#task <I>)
QoboLtd_cakephp-roles-capabilities
train
7aef9b90142570f5fb629414c2a5d0bdd23e197a
diff --git a/WeaveServices/src/weave/config/ISQLConfig.java b/WeaveServices/src/weave/config/ISQLConfig.java index <HASH>..<HASH> 100644 --- a/WeaveServices/src/weave/config/ISQLConfig.java +++ b/WeaveServices/src/weave/config/ISQLConfig.java @@ -96,7 +96,7 @@ public interface ISQLConfig /** * @return A list of A...
Added overwriteAttributeColumnInfo; changed findAttributeColumnInfo to accept AttributeColumnInfo arg.
WeaveTeam_WeaveJS
train
f049b36e057d54f402d3a84a9e2522a01e1ceb30
diff --git a/openquake/calculators/hazard/general.py b/openquake/calculators/hazard/general.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/hazard/general.py +++ b/openquake/calculators/hazard/general.py @@ -719,6 +719,11 @@ def signal_task_complete(job_id, num_sources): class BaseHazardCalculatorNext(b...
calculators/hazard/general: Fixing pylint complaints about 'missing docstring' and 'method could be a function'. Former-commit-id: bb<I>ff<I>d<I>de<I>a7f<I>efd7b6c<I>e
gem_oq-engine
train
c7007a708c286259550903290763cc02483c9d19
diff --git a/pystache/renderengine.py b/pystache/renderengine.py index <HASH>..<HASH> 100644 --- a/pystache/renderengine.py +++ b/pystache/renderengine.py @@ -155,7 +155,7 @@ class RenderEngine(object): # don't use self.literal). template = unicode(template) - _template = Template(template=te...
The Template class no longer has a template attribute.
defunkt_pystache
train
f52a6630f5c60b45cadb941a43c3630bf48104f6
diff --git a/builtin/providers/test/resource.go b/builtin/providers/test/resource.go index <HASH>..<HASH> 100644 --- a/builtin/providers/test/resource.go +++ b/builtin/providers/test/resource.go @@ -19,7 +19,7 @@ func testResource() *schema.Resource { }, CustomizeDiff: func(d *schema.ResourceDiff, _ interface{}...
create a downstream failure from a computed value These are the largest source of the old "diffs didn't match after apply" errors. It's almost always an upstream dependency that caused the final error.
hashicorp_terraform
train
741adcee43e27e874e3baa9b19e3f19ae683aa91
diff --git a/types/parser_driver/value_expr.go b/types/parser_driver/value_expr.go index <HASH>..<HASH> 100644 --- a/types/parser_driver/value_expr.go +++ b/types/parser_driver/value_expr.go @@ -17,7 +17,9 @@ import ( "fmt" "io" "strconv" + "strings" + "github.com/pingcap/errors" "github.com/pingcap/parser/as...
types: impl ast.Recoverable for ValueExpr and ParamMarkerExpr (#<I>)
pingcap_tidb
train
8911acc5b61324ab8917f4c6b3c4fb98e24db2e2
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,7 +1,8 @@ module.exports = function (grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), - repo: 'jDataView/jDataView', + libName: 'jDataView', + repo: 'jDataView/<%= libName %>', ...
Added libName Grunt config option.
jDataView_jDataView
train
45665406b49680967d246de647a9b95a27e14b39
diff --git a/openstack_dashboard/api/cinder.py b/openstack_dashboard/api/cinder.py index <HASH>..<HASH> 100644 --- a/openstack_dashboard/api/cinder.py +++ b/openstack_dashboard/api/cinder.py @@ -172,7 +172,7 @@ class VolumePool(base.APIResourceWrapper): def get_auth_params_from_request(request): auth_url = base.u...
Prefer volumev3 and volumev2 endpoints over volume Make cinderclient use volumev3 or volumev2 endpoints, before falling back to the volume endpoint, otherwise Horizon is trying to use the v1 API, and that doesn't work with the "sort" parameter that we are using, resulting in an empty volumes list. Change-Id: Id<I>d<I...
openstack_horizon
train
698f296d3da9b63f26021dcbf35714910292aacd
diff --git a/azurerm/internal/services/storage/resource_arm_storage_account_network_rules.go b/azurerm/internal/services/storage/resource_arm_storage_account_network_rules.go index <HASH>..<HASH> 100644 --- a/azurerm/internal/services/storage/resource_arm_storage_account_network_rules.go +++ b/azurerm/internal/services...
r/storage_account_network_rules: switching to use the networkruleset from props
terraform-providers_terraform-provider-azurerm
train
afa22c4cf6feef66ee13d3b48920222e4b965f4c
diff --git a/addon/mixins/attachable.js b/addon/mixins/attachable.js index <HASH>..<HASH> 100644 --- a/addon/mixins/attachable.js +++ b/addon/mixins/attachable.js @@ -126,17 +126,49 @@ export default Ember.Mixin.create({ } return record; }), (function(reason) { - var error = adapter.ajaxError(re...
Handle full versions. Critical changes when adding errors.
abuiles_ember-attachable
train
8627d8212be777f3fe6ef3fb85c568969d294d38
diff --git a/tasks/grunt-fontsmith.js b/tasks/grunt-fontsmith.js index <HASH>..<HASH> 100644 --- a/tasks/grunt-fontsmith.js +++ b/tasks/grunt-fontsmith.js @@ -73,11 +73,11 @@ module.exports = function (grunt) { }, done = this.async(); - // // DEV: Override fontsmith for faster iterations - // ...
Moving to offline dev for going airborn
twolfson_grunt-fontsmith
train
f3bbe8d33f592e7f9b326f9ab9d1eb3052084bb4
diff --git a/command/workspace_delete.go b/command/workspace_delete.go index <HASH>..<HASH> 100644 --- a/command/workspace_delete.go +++ b/command/workspace_delete.go @@ -119,6 +119,8 @@ func (c *WorkspaceDeleteCommand) Run(args []string) int { } if err := stateMgr.RefreshState(); err != nil { + // We need to re...
command/workspace delete: release lock after workspace removal warning (#<I>)
hashicorp_terraform
train
b5d67582534d068d54926238b6594fb130084db3
diff --git a/salt/fileserver/hgfs.py b/salt/fileserver/hgfs.py index <HASH>..<HASH> 100644 --- a/salt/fileserver/hgfs.py +++ b/salt/fileserver/hgfs.py @@ -699,11 +699,12 @@ def serve_file(load, fnd): ''' if 'env' in load: salt.utils.warn_until( - 'Carbon', - 'Passing a salt envi...
salt/fileserver/hgfs.py: remove env support
saltstack_salt
train
9b0aaee6d1e357f0293e3389ac2adc5a4ad674ff
diff --git a/cleverhans/attacks_tf.py b/cleverhans/attacks_tf.py index <HASH>..<HASH> 100644 --- a/cleverhans/attacks_tf.py +++ b/cleverhans/attacks_tf.py @@ -608,7 +608,7 @@ class CarliniWagnerL2: # placeholders for the best l2, score, and image attack found so far o_bestl2 = [1e10]*batch_size ...
Minor change to make attack fail gracefully
tensorflow_cleverhans
train
9f72b1e6b10f14595d06d1a344244561f1ef6434
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,17 @@ This plugin will deploy your ember-cli app to firebase hosting. -## What is an ember-cli-deploy plugin? +## What is an ember-cli-deploy plugin? ## A plugin is an addon that can be executed as a part ...
Add deployToken option for firebase for use with multiple accounts. Change fireBaseAppName to firebase.appName to fit with config hash. Does not break 'context.config.fireBaseAppName'
ibroadfo_ember-cli-deploy-firebase
train
fdb21d5700824f26398d2c02ef4e678e17accf0c
diff --git a/tasks/lib/helpers.js b/tasks/lib/helpers.js index <HASH>..<HASH> 100644 --- a/tasks/lib/helpers.js +++ b/tasks/lib/helpers.js @@ -67,7 +67,10 @@ exports.init = function (grunt) { [].concat(options.include).forEach(function (include) { environment.appendPath(include); }); - environment.a...
Fix search paths in manifest mode (Closes #<I>)
pirxpilot_grunt-mincer
train
20245d72510c90493ca6dfccadeea1076bf9652f
diff --git a/lib/bixby-agent/websocket/client.rb b/lib/bixby-agent/websocket/client.rb index <HASH>..<HASH> 100644 --- a/lib/bixby-agent/websocket/client.rb +++ b/lib/bixby-agent/websocket/client.rb @@ -87,6 +87,7 @@ module Bixby begin api.message(e) rescue Exception => ex + ...
exit properly if auth fails on startup
chetan_bixby-agent
train
4cd42e96680efa1d2fcd071f2bd6f733bb9bf117
diff --git a/azkaban-web-server/src/main/java/azkaban/webapp/AzkabanWebServer.java b/azkaban-web-server/src/main/java/azkaban/webapp/AzkabanWebServer.java index <HASH>..<HASH> 100644 --- a/azkaban-web-server/src/main/java/azkaban/webapp/AzkabanWebServer.java +++ b/azkaban-web-server/src/main/java/azkaban/webapp/Azkaban...
Instantiate OnExecutionEventListener for Containerization
azkaban_azkaban
train
74ed4567fe46b089c4b741cff569a2840d01ccb4
diff --git a/lib/command.js b/lib/command.js index <HASH>..<HASH> 100644 --- a/lib/command.js +++ b/lib/command.js @@ -30,10 +30,9 @@ module.exports = function Command(template, opts) { }); // Include node_modules/.bin on the path when we execute the command. - var isWindows = /^win/.test(process.platform); var...
use node built-in path.delimiter
m19c_gulp-run
train
3bab0f6bd7df1598abc06cf38a814f5694612d28
diff --git a/auth/config/auth.twofactor.php b/auth/config/auth.twofactor.php index <HASH>..<HASH> 100644 --- a/auth/config/auth.twofactor.php +++ b/auth/config/auth.twofactor.php @@ -18,7 +18,7 @@ * - 'DEVICE' to enable one-time codes from a device */ -$config['authTwoFactorMode'] = 'DEVICE'; +$config['authTwoFac...
Default auth shouldn't have MFA enabled
nails_module-auth
train
93658be667747656cda91400e2266dac4e694b58
diff --git a/src/Convert.php b/src/Convert.php index <HASH>..<HASH> 100644 --- a/src/Convert.php +++ b/src/Convert.php @@ -34,7 +34,7 @@ class Convert extends Command { $readmeFile = $this->getReadmeFile($input); $readmeData = file_get_contents($readmeFile); - $markdownData = Converter...
Rollback insane slug detection: most readmes are in 'readme.txt'
wpreadme2markdown_wp2md
train
38d8396c2deff07461fe2705a657d0c4c34dd43a
diff --git a/recipe-server/client/control/components/RecipeList.js b/recipe-server/client/control/components/RecipeList.js index <HASH>..<HASH> 100644 --- a/recipe-server/client/control/components/RecipeList.js +++ b/recipe-server/client/control/components/RecipeList.js @@ -2,6 +2,7 @@ import React, { PropTypes as pt }...
Gracefully handle rendering null attributes in the Recipe list view. typeof null === 'object', which means the check to see if a value is an object will pass for null attributes. However, calling .map on the value afterwards will throw if it is null. Instead, this fix uses the isObject helper from underscore.
mozilla_normandy
train
99655e235f03911c0d98aaddea4d33c866db4b26
diff --git a/src/Protocol/Http/Authenticator/JwtAuthenticator.php b/src/Protocol/Http/Authenticator/JwtAuthenticator.php index <HASH>..<HASH> 100644 --- a/src/Protocol/Http/Authenticator/JwtAuthenticator.php +++ b/src/Protocol/Http/Authenticator/JwtAuthenticator.php @@ -36,53 +36,52 @@ class JwtAuthenticator implements...
rename jwsCreatedAt to jwsValidTo; jwsValidTo is DateTime; remove setJwsLifetime method; use the constructor for injecting the lifetime;
ZhukV_AppleApnPush
train
ae3e036157e97202a42849673303cffdb912a7b7
diff --git a/vite-plugin/src/scss-transform.js b/vite-plugin/src/scss-transform.js index <HASH>..<HASH> 100644 --- a/vite-plugin/src/scss-transform.js +++ b/vite-plugin/src/scss-transform.js @@ -23,7 +23,13 @@ export function createScssTransform (fileExtension, sassVariables) { return prefix + content } -...
fix(vite-plugin): sass variables for files with only @use statements (#<I>) * sass variables for files with only @use statements scss-transform will fail currently for file like this: ```sass @use 'A' @use 'B' -- no new line here ``` gives ``` [vite] Internal server error: @use rules must be written before a...
quasarframework_quasar
train
76256df821e259e1e199b6ef0236cc4bcd157070
diff --git a/src/dmuploader.js b/src/dmuploader.js index <HASH>..<HASH> 100644 --- a/src/dmuploader.js +++ b/src/dmuploader.js @@ -16,6 +16,7 @@ method: 'POST', extraData: {}, maxFileSize: 0, + maxFiles : 10, allowedTypes: '*', extFilter: null, dataType: null, @@ -30,7 +31,8 @@ o...
Added MaxFiles Extends in order to supply a `maxFiles` params
danielm_uploader
train
c24fbd017267a1c898ee2fe30d74c80913912cab
diff --git a/pywindow/trajectory.py b/pywindow/trajectory.py index <HASH>..<HASH> 100644 --- a/pywindow/trajectory.py +++ b/pywindow/trajectory.py @@ -350,7 +350,8 @@ class DLPOLY(object): pool.terminate() raise _ParallelAnalysisError("Parallel analysis failed.") - def check_HISTORY_for_e...
Changed check_HISTORY into a classmethod. Added exception to loading elements from system when making modular.
marcinmiklitz_pywindow
train
282bb20cc8c60271e0b3913b938482e902158fae
diff --git a/src/Grant/RefreshTokenGrant.php b/src/Grant/RefreshTokenGrant.php index <HASH>..<HASH> 100644 --- a/src/Grant/RefreshTokenGrant.php +++ b/src/Grant/RefreshTokenGrant.php @@ -66,10 +66,9 @@ class RefreshTokenGrant extends AbstractGrant /** * Set the rotation boolean of the refresh token - *...
Fix docblocks + method name
thephpleague_oauth2-server
train
0189e66b2f9111180efd58296df2bbcd056868fe
diff --git a/rest/src/main/java/org/jboss/pnc/rest/endpoint/BuildEndpoint.java b/rest/src/main/java/org/jboss/pnc/rest/endpoint/BuildEndpoint.java index <HASH>..<HASH> 100644 --- a/rest/src/main/java/org/jboss/pnc/rest/endpoint/BuildEndpoint.java +++ b/rest/src/main/java/org/jboss/pnc/rest/endpoint/BuildEndpoint.java @...
NCL-<I> add ssh credentials to BuildEndpoint#getSpecific
project-ncl_pnc
train
c2ce275873e40f210abb0900c4d9a50ecc11f5a6
diff --git a/core/src/main/java/com/capitalone/dashboard/repository/CloudSubNetworkRepository.java b/core/src/main/java/com/capitalone/dashboard/repository/CloudSubNetworkRepository.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/capitalone/dashboard/repository/CloudSubNetworkRepository.java +++ b/core/sr...
Fixed a bug in mogo query by list.
Hygieia_Hygieia
train