Lines Matching refs:task

5 task('default', function () {
10 task({'noAction': ['default']});
13 task('noActionNoPrereqs');
16 task('zerbofrangazoomy', function () {
21 task('throwy', function () {
35 task('promiseRejecter', function () {
51 task('argsEnvVars', function () {
64 task('bar', function () {
76 task('baz', ['foo:bar'], function () {
81 task('qux', ['foo:bar[asdf,qwer]'], function () {
86 task('frang', function () {
96 task('zerb', function () {
106 task('zoobie', function () {
111 task('voom', function () {
121 task('asdf', ['foo:bar', 'foo:baz'], function () {
129 task('foo', async function () {
137 task('promise', function () {
146 task('dependOnpromise', ['promise'], function () {
151 task('brokenPromise', function () {
159 task('bar', ['bar:foo'], function () {
167 task('hoge', function () {
172 task('piyo', function () {
177 task('fuga', ['hoge:hoge', 'hoge:piyo'], function () {
182 task('charan', ['hoge:fuga'], function () {
187 task('gero', ['hoge:fuga'], function () {
192 task('kira', ['hoge:charan', 'hoge:gero'], function () {
238 task('touch-prereq', function () {
273 task('blammo');
275 task('voom', ['blammo'], function () {
280 task('voom', ['noActionNoPrereqs']);
283 task('groo', function () {
290 task('zong', function () {
297 task('one', function () {
304 task('two', ['one:one'], function () {
309 task('selfdepconst', [], function () {
310 task('selfdep', ['selfdep'], function () {
314 task('selfdepdyn', function () {
315 task('selfdeppar', [], {concurrency: 2}, function () {
318 task('selfdeppar', ['selfdeppar']);
323 task("leaf", function () {
333 task("same", same, { concurrency: 2 }, function () {
340 task(name, function () {
349 task("different", different, { concurrency: 2 } , function () {