Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sanitize (0.16 sec)

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

          return (startTime == 0L) ? 1L : startTime;
        }
      }
    
      /**
       * Returns the remaining nanos until the given timeout, or 0L if the timeout has already elapsed.
       * Caller must have previously sanitized timeoutNanos using toSafeNanos.
       */
      private static long remainingNanos(long startTime, long timeoutNanos) {
        // assert timeoutNanos == 0L || startTime != 0L;
    
        // TODO : NOT CORRECT, BUT TESTS PASS ANYWAYS!
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 18:22:01 GMT 2023
    - 38.6K bytes
    - Viewed (0)
Back to top