Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for unbind (0.17 sec)

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

      @GuardedBy("lock")
      private void endWaitingFor(Guard guard) {
        int waiters = --guard.waiterCount;
        if (waiters == 0) {
          // unlink guard from activeGuards
          for (Guard p = activeGuards, pred = null; ; pred = p, p = p.next) {
            if (p == guard) {
              if (pred == null) {
                activeGuards = p.next;
              } else {
    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)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

             * clearListeners.
             */
            Runnable task = requireNonNull(curr.task);
            if (task instanceof SetFuture) {
              SetFuture<?> setFuture = (SetFuture<?>) task;
              // We unwind setFuture specifically to avoid StackOverflowErrors in the case of long
              // chains of SetFutures
              // Handling this special case is important because there is no way to pass an executor to
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  3. LICENSE

          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
          the original version of the Work and any modifications or additions
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 22 18:59:39 GMT 2023
    - 11.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

                this.previousWrite = previous;
              }
            };
    
        // implements Queue
    
        @Override
        public boolean offer(ReferenceEntry<K, V> entry) {
          // unlink
          connectWriteOrder(entry.getPreviousInWriteQueue(), entry.getNextInWriteQueue());
    
          // add to tail
          connectWriteOrder(head.getPreviousInWriteQueue(), entry);
          connectWriteOrder(entry, head);
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

                this.previousWrite = previous;
              }
            };
    
        // implements Queue
    
        @Override
        public boolean offer(ReferenceEntry<K, V> entry) {
          // unlink
          connectWriteOrder(entry.getPreviousInWriteQueue(), entry.getNextInWriteQueue());
    
          // add to tail
          connectWriteOrder(head.getPreviousInWriteQueue(), entry);
          connectWriteOrder(entry, head);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top