Searched defs:tpe (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/java/util/concurrent/ScheduledThreadPoolExecutor/
H A DBasicCancelTest.java54 void checkTerminated(final ThreadPoolExecutor tpe) { argument
56 checkShutdown(tpe);
57 check(tpe.getQueue().isEmpty());
58 check(tpe.isTerminated());
59 check(! tpe.isTerminating());
60 equal(tpe.getActiveCount(), 0);
61 equal(tpe.getPoolSize(), 0);
62 equal(tpe.getTaskCount(), tpe.getCompletedTaskCount());
63 check(tpe
[all...]
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DConfigChanges.java43 static void report(ThreadPoolExecutor tpe) { argument
48 tpe.getTaskCount(),
49 tpe.getCompletedTaskCount(),
50 tpe.getQueue().size(),
51 tpe.getPoolSize(),
52 tpe.getCorePoolSize(),
53 tpe.getMaximumPoolSize());
57 static void report(String label, ThreadPoolExecutor tpe) { argument
59 report(tpe);
80 static void checkTerminated(final ThreadPoolExecutor tpe) { argument
[all...]
H A DThrowingTasks.java143 static void checkTerminated(ThreadPoolExecutor tpe) { argument
145 check(tpe.getQueue().isEmpty());
146 check(tpe.isShutdown());
147 check(tpe.isTerminated());
148 check(! tpe.isTerminating());
149 equal(tpe.getActiveCount(), 0);
150 equal(tpe.getPoolSize(), 0);
151 equal(tpe.getTaskCount(), tpe.getCompletedTaskCount());
152 check(tpe
[all...]

Completed in 31 milliseconds