Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for runLockedCleanup (0.15 seconds)

  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 {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (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 {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (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()) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (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()) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
Back to Top