Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for waitForCall (0.09 seconds)

  1. guava-tests/test/com/google/common/util/concurrent/JdkFutureAdaptersTest.java

        void expectCall() {
          assertFalse("expectCall is already true", expectCall);
          expectCall = true;
        }
    
        boolean wasCalled() {
          return calledCountDown.getCount() == 0;
        }
    
        void waitForCall() throws InterruptedException {
          assertTrue("expectCall is false", expectCall);
          calledCountDown.await();
        }
      }
    
      public void testListenInPoolThreadIgnoresExecutorWhenDelegateIsDone() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 10K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/JdkFutureAdaptersTest.java

        void expectCall() {
          assertFalse("expectCall is already true", expectCall);
          expectCall = true;
        }
    
        boolean wasCalled() {
          return calledCountDown.getCount() == 0;
        }
    
        void waitForCall() throws InterruptedException {
          assertTrue("expectCall is false", expectCall);
          calledCountDown.await();
        }
      }
    
      public void testListenInPoolThreadIgnoresExecutorWhenDelegateIsDone() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 10K bytes
    - Click Count (0)
Back to Top