Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for awaitNanos (0.07 seconds)

  1. android/guava/src/com/google/common/util/concurrent/Monitor.java

            return false;
          }
        }
    
        boolean satisfied = false;
        boolean threw = true;
        try {
          satisfied =
              guard.isSatisfied()
                  || awaitNanos(
                      guard,
                      (startTime == 0L) ? timeoutNanos : remainingNanos(startTime, timeoutNanos),
                      reentrant);
          threw = false;
          return satisfied;
        } finally {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 28 22:39:02 GMT 2026
    - 43.5K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

            condition.awaitUninterruptibly();
          } finally {
            lock.unlock();
          }
        }
    
        @Override
        public long awaitNanos(long nanosTimeout) throws InterruptedException {
          lock.lock();
          try {
            return condition.awaitNanos(nanosTimeout);
          } finally {
            lock.unlock();
          }
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 38.1K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

            condition.awaitUninterruptibly();
          } finally {
            lock.unlock();
          }
        }
    
        @Override
        public long awaitNanos(long nanosTimeout) throws InterruptedException {
          lock.lock();
          try {
            return condition.awaitNanos(nanosTimeout);
          } finally {
            lock.unlock();
          }
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 38.1K bytes
    - Click Count (0)
Back to Top