Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for runLockedCleanup (0.35 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * thread acquires the segment lock, immediately after acquiring the lock.
         */
        @GuardedBy("this")
        void preWriteCleanup() {
          runLockedCleanup();
        }
    
        void runCleanup() {
          runLockedCleanup();
        }
    
        void runLockedCleanup() {
          if (tryLock()) {
            try {
              maybeDrainReferenceQueues();
              readCount.set(0);
            } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * thread acquires the segment lock, immediately after acquiring the lock.
         */
        @GuardedBy("this")
        void preWriteCleanup() {
          runLockedCleanup();
        }
    
        void runCleanup() {
          runLockedCleanup();
        }
    
        void runLockedCleanup() {
          if (tryLock()) {
            try {
              maybeDrainReferenceQueues();
              readCount.set(0);
            } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

        void preWriteCleanup(long now) {
          runLockedCleanup(now);
        }
    
        /** Performs routine cleanup following a write. */
        void postWriteCleanup() {
          runUnlockedCleanup();
        }
    
        void cleanUp() {
          long now = map.ticker.read();
          runLockedCleanup(now);
          runUnlockedCleanup();
        }
    
        void runLockedCleanup(long now) {
          if (tryLock()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

        void preWriteCleanup(long now) {
          runLockedCleanup(now);
        }
    
        /** Performs routine cleanup following a write. */
        void postWriteCleanup() {
          runUnlockedCleanup();
        }
    
        void cleanUp() {
          long now = map.ticker.read();
          runLockedCleanup(now);
          runUnlockedCleanup();
        }
    
        void runLockedCleanup(long now) {
          if (tryLock()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top