Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NOW (0.08 sec)

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

        if (oldHead != Waiter.TOMBSTONE) {
          Waiter node = new Waiter();
          do {
            node.setNext(oldHead);
            if (ATOMIC_HELPER.casWaiters(this, oldHead, node)) {
              // we are on the stack, now wait for completion.
              while (true) {
                LockSupport.park(this);
                // Check interruption first, if we woke up due to interruption we need to honor that.
                if (Thread.interrupted()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        if (oldHead != Waiter.TOMBSTONE) {
          Waiter node = new Waiter();
          do {
            node.setNext(oldHead);
            if (ATOMIC_HELPER.casWaiters(this, oldHead, node)) {
              // we are on the stack, now wait for completion.
              while (true) {
                LockSupport.park(this);
                // Check interruption first, if we woke up due to interruption we need to honor that.
                if (Thread.interrupted()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
Back to top