Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isHeldByCurrentThread (0.78 sec)

  1. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

        @Override
        public LockGraphNode getLockGraphNode() {
          return lockGraphNode;
        }
    
        @Override
        public boolean isAcquiredByCurrentThread() {
          return isHeldByCurrentThread();
        }
    
        ///// Overridden ReentrantLock methods. /////
    
        @Override
        public void lock() {
          aboutToAcquire(this);
          try {
            super.lock();
          } finally {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 17:06:34 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

        @Override
        public LockGraphNode getLockGraphNode() {
          return lockGraphNode;
        }
    
        @Override
        public boolean isAcquiredByCurrentThread() {
          return isHeldByCurrentThread();
        }
    
        ///// Overridden ReentrantLock methods. /////
    
        @Override
        public void lock() {
          aboutToAcquire(this);
          try {
            super.lock();
          } finally {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 17:06:34 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

                  return true;
                }
                return false;
              }
            }
    
            return false;
          } finally {
            unlock();
            if (!isHeldByCurrentThread()) { // don't clean up inside of put
              postWriteCleanup();
            }
          }
        }
    
        @CanIgnoreReturnValue
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 19:35:11 UTC 2025
    - 148.9K bytes
    - Viewed (0)
Back to top