Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for LabelledBreakTarget (0.1 seconds)

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

      //   and we could use that to make a decision about whether or not we timed out prior to being
      //   unparked.
    
      @SuppressWarnings({
        "LabelledBreakTarget", // TODO(b/345814817): Maybe fix?
        "nullness", // TODO(b/147136275): Remove once our checker understands & and |.
      })
      @ParametricNullness
      final V blockingGet(long timeout, TimeUnit unit)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 33.2K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/Monitor.java

       * @throws InterruptedException if interrupted while waiting
       */
      @SuppressWarnings({
        "GoodTime", // should accept a java.time.Duration
        "LabelledBreakTarget", // TODO(b/345814817): Maybe fix.
      })
      public boolean enterWhen(Guard guard, long time, TimeUnit unit) throws InterruptedException {
        long timeoutNanos = toSafeNanos(time, unit);
        if (guard.monitor != this) {
    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)
Back to Top