Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for podMounts (0.14 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        @GuardedBy("this")
        long totalWeight;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
         * loading size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        @GuardedBy("this")
        long totalWeight;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
         * loading size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    	waitPodExpireChan := make(chan struct{})
    	timeout := make(chan struct{})
    	go func() {
    		for {
    			select {
    			case <-timeout:
    				return
    			default:
    			}
    			pods, err := scache.PodCount()
    			if err != nil {
    				errChan <- fmt.Errorf("cache.List failed: %v", err)
    				return
    			}
    			if pods == 0 {
    				close(waitPodExpireChan)
    				return
    			}
    			time.Sleep(100 * time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top