OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:aftercalled
(Results
1 - 2
of
2
) sorted by null
/libcore/jsr166-tests/src/test/java/jsr166/
ThreadPoolExecutorSubclassTest.java
199
final CountDownLatch
afterCalled
= new CountDownLatch(1);
209
afterCalled
.countDown();
218
public boolean
afterCalled
() {
219
return
afterCalled
.getCount() == 0;
[
all
...]
ThreadPoolExecutorTest.java
52
final CountDownLatch
afterCalled
= new CountDownLatch(1);
62
afterCalled
.countDown();
71
public boolean
afterCalled
() {
72
return
afterCalled
.getCount() == 0;
[
all
...]
Completed in 291 milliseconds