Home
last modified time | relevance | path

Searched refs:actionsToRun (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/npm/lib/install/
Dactions.js113 function doParallel (type, staging, actionsToRun, log, next) { argument
115 const acts = actionsToRun.reduce((acc, todo) => {
136 function doSerial (type, staging, actionsToRun, log, next) { argument
138 log.silly('doSerial', '%s %d', type, actionsToRun.length)
139 runSerial(type, staging, actionsToRun, log, next)
143 function doReverseSerial (type, staging, actionsToRun, log, next) { argument
145 log.silly('doReverseSerial', '%s %d', type, actionsToRun.length)
146 runSerial(type, staging, [].concat(actionsToRun).reverse(), log, next)
149 function runSerial (type, staging, actionsToRun, log, next) { argument
150 const acts = actionsToRun.reduce((acc, todo) => {
/third_party/node/deps/npm/lib/
Ddoctor.js37 const actionsToRun = [
49 chain(actionsToRun, function (stderr, stdout) {
Dinstall.js578 Installer.prototype.rollbackFailedOptional = function (staging, actionsToRun, cb) { argument
580 var failed = uniq(actionsToRun.map(function (action) {
591 Installer.prototype.commit = function (staging, actionsToRun, cb) { argument
592 …var toCommit = actionsToRun.map(function (action) { return action[1] }).filter(function (pkg) { re…
/third_party/typescript/src/testRunner/unittests/tsserver/
Dhelpers.ts116 const actionsToRun = this.postExecActions; constant
118 for (const action of actionsToRun) {
/third_party/skia/tools/viewer/
DViewer.cpp2848 SkTArray<std::function<void()>> actionsToRun; in onIdle() local
2849 actionsToRun.swap(fDeferredActions); in onIdle()
2851 for (const auto& fn : actionsToRun) { in onIdle()