HomeSort by relevance Sort by last modified time
    Searched refs:TestExecutor (Results 1 - 5 of 5) sorted by null

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingExecutorServiceTest.java 49 TestExecutor testExecutor = new TestExecutor(mock);
50 assertFalse(testExecutor.awaitTermination(10, TimeUnit.MILLISECONDS));
52 assertFalse(testExecutor.isTerminated());
54 assertFalse(testExecutor.isShutdown());
56 testExecutor.shutdown();
58 List<Runnable> list = testExecutor.shutdownNow();
65 TestExecutor testExecutor = new TestExecutor(mock)
    [all...]
WrappingScheduledExecutorServiceTest.java 46 TestExecutor testExecutor = new TestExecutor(mock);
48 testExecutor.schedule(DO_NOTHING, 10, TimeUnit.MINUTES);
51 testExecutor.schedule(Executors.callable(DO_NOTHING), 5, TimeUnit.SECONDS);
57 TestExecutor testExecutor = new TestExecutor(mock);
58 testExecutor.scheduleWithFixedDelay(DO_NOTHING, 100, 10, TimeUnit.MINUTES);
61 testExecutor.scheduleAtFixedRate(DO_NOTHING, 3, 7, TimeUnit.SECONDS)
    [all...]
  /external/deqp/execserver/tools/
xsTest.cpp 200 class TestExecutor
203 TestExecutor (TestContext& testCtx);
204 ~TestExecutor (void);
213 TestExecutor::TestExecutor (TestContext& testCtx)
218 TestExecutor::~TestExecutor (void)
222 void TestExecutor::runCases (const std::vector<TestCase*>& testCases)
266 bool TestExecutor::runCase (TestCase* testCase)
909 TestExecutor executor(testCtx)
    [all...]
  /external/syzkaller/pkg/ipc/
ipc_test.go 55 // TestExecutor runs all internal executor unit tests.
57 func TestExecutor(t *testing.T) {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DiskLruCacheTest.java 60 private final TestExecutor executor = new TestExecutor();
    [all...]

Completed in 96 milliseconds