Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for timedWait (0.04 sec)

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

            if (shutdown && runningTasks == 0) {
              return true;
            } else if (nanos <= 0) {
              return false;
            } else {
              long now = System.nanoTime();
              NANOSECONDS.timedWait(lock, nanos);
              nanos -= System.nanoTime() - now; // subtract the actual time we waited
            }
          }
        }
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 16 14:23:59 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top