Lines Matching +full:q +full:- +full:touch
2 let Q = require('q'); variable
15 desc('Top-level zerbofrangazoomy task');
36 const originalOption = jake.program.opts['allow-rejection'];
41 …jake.program.opts['allow-rejection'] = originalOption; // Restore original 'allow-rejection' option
45 …jake.program.opts['allow-rejection'] = false; // Do not allow rejection so the rejection is passed…
88 // Do args pass-through
98 // Do args pass-through
136 desc('The bar:promise task has no prerequisites, is async, returns Q-based promise.');
138 return Q()
150 desc('The bar:brokenPromise task is a failing Q-promise based async task.');
152 return Q()
231 file('foo/from-src1.txt', ['fileTest:foo', 'fileTest:foo/src1.txt'], function () {
233 fs.writeFileSync('foo/from-src1.txt', data);
234 console.log('fileTest:foo/from-src1.txt task');
238 task('touch-prereq', function () {
243 file('foo/from-prereq.txt', ['fileTest:foo', 'foo/prereq.txt'], function () {
245 fs.writeFileSync('foo/from-prereq.txt', data);
246 console.log('fileTest:foo/from-prereq.txt task');
339 const name = "leaf-" + i;
341 if (name === "leaf-12" || name === "leaf-123") {