Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for sleepUninterruptibly (0.09 seconds)

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

       */
      @J2ktIncompatible
      @GwtIncompatible // concurrency
      @IgnoreJRERequirement // Users will use this only if they're already using Duration.
      public static void sleepUninterruptibly(Duration sleepFor) {
        sleepUninterruptibly(toNanosSaturated(sleepFor), NANOSECONDS);
      }
    
      // TODO(user): Support Sleeper somehow (wrapper or interface method)?
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 23:24:32 GMT 2026
    - 22.5K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

            @Override
            public void run() {
              Uninterruptibles.sleepUninterruptibly(delay, MILLISECONDS);
              notifyStarted();
            }
          }.start();
        }
    
        @Override
        protected void doStop() {
          new Thread() {
            @Override
            public void run() {
              Uninterruptibles.sleepUninterruptibly(delay, MILLISECONDS);
              notifyStopped();
            }
          }.start();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

            @Override
            public void run() {
              Uninterruptibles.sleepUninterruptibly(delay, MILLISECONDS);
              notifyStarted();
            }
          }.start();
        }
    
        @Override
        protected void doStop() {
          new Thread() {
            @Override
            public void run() {
              Uninterruptibles.sleepUninterruptibly(delay, MILLISECONDS);
              notifyStopped();
            }
          }.start();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

              return stopwatch.elapsed(MICROSECONDS);
            }
    
            @Override
            protected void sleepMicrosUninterruptibly(long micros) {
              if (micros > 0) {
                Uninterruptibles.sleepUninterruptibly(micros, MICROSECONDS);
              }
            }
          };
        }
      }
    
      private static void checkPermits(int permits) {
        checkArgument(permits > 0, "Requested permits (%s) must be positive", permits);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:05:27 GMT 2025
    - 21.8K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        @Override
        protected void doAction() {}
      }
    
      private static void sleepSuccessfully(long sleepMillis) {
        Completion completed = new Completion(sleepMillis - SLEEP_SLACK);
        Uninterruptibles.sleepUninterruptibly(sleepMillis, MILLISECONDS);
        completed.assertCompletionExpected();
      }
    
      private static void assertTimeNotPassed(Stopwatch stopwatch, long timelimitMillis) {
    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)
  6. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        @Override
        protected void doAction() {}
      }
    
      private static void sleepSuccessfully(long sleepMillis) {
        Completion completed = new Completion(sleepMillis - SLEEP_SLACK);
        Uninterruptibles.sleepUninterruptibly(sleepMillis, MILLISECONDS);
        completed.assertCompletionExpected();
      }
    
      private static void assertTimeNotPassed(Stopwatch stopwatch, long timelimitMillis) {
    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