HomeSort by relevance Sort by last modified time
    Searched defs:submitted (Results 1 - 3 of 3) sorted by null

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractListeningExecutorServiceTest.java 97 * A submitted privileged action runs to completion
120 * A submitted privileged exception action runs to completion
140 * A submitted failed privileged exception action reports exception
191 final CountDownLatch submitted = new CountDownLatch(1); local
207 submitted.countDown();
211 submitted.await();
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractExecutorServiceTest.java 88 * A submitted privileged action runs to completion
109 * A submitted privileged exception action runs to completion
127 * A submitted failed privileged exception action reports exception
174 final CountDownLatch submitted = new CountDownLatch(1); local
188 submitted.countDown();
192 submitted.await();
ForkJoinPoolTest.java 334 * A task submitted after shutdown is rejected
367 * pollSubmission returns unexecuted submitted task, if present
386 * drainTasksTo transfers unexecuted submitted tasks, if present
478 * A submitted privileged action runs to completion
498 * A submitted privileged exception action runs to completion
519 * A submitted failed privileged exception action reports exception
576 final CountDownLatch submitted = new CountDownLatch(1); local
588 submitted.countDown();
592 assertTrue(submitted.await(MEDIUM_DELAY_MS, MILLISECONDS));
    [all...]

Completed in 193 milliseconds