Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for uwcache (0.09 sec)

  1. pkg/controller/daemon/update.go

    	histories, err := dsc.historyLister.ControllerRevisions(ds.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion with
    	// an uncached quorum read sometime after listing Pods (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/reconciler_test.go

    	return &reconciler{
    		client:                client,
    		maxEndpointsPerSubset: maxEndpointsPerSubset,
    		endpointSliceTracker:  endpointsliceutil.NewEndpointSliceTracker(),
    		metricsCache:          metrics.NewCache(maxEndpointsPerSubset),
    		eventRecorder:         recorder,
    	}
    }
    
    func expectEndpointSlices(t *testing.T, num, maxEndpointsPerSubset int, endpoints corev1.Endpoints, endpointSlices []discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/controller.go

    			// - we have it in our cache -> don't remove it until we are told that it got removed
    			// - we don't have it in our cache anymore, but we have seen it before -> it was deleted, remove it
    			// - not in our cache, not seen -> double-check with API server before removal
    
    			keepEntry := true
    
    			// Tracking deleted pods in the LRU cache is an
    			// optimization. Without this cache, the code would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. src/internal/fuzz/fuzz.go

    }
    
    func (c *coordinator) elapsed() time.Duration {
    	return time.Since(c.startTime).Round(1 * time.Second)
    }
    
    // readCache creates a combined corpus from seed values and values in the cache
    // (in GOCACHE/fuzz).
    //
    // TODO(fuzzing): need a mechanism that can remove values that
    // aren't useful anymore, for example, because they have the wrong type.
    func (c *coordinator) readCache() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheBuilder.java

     * by the garbage collector. Entries with reclaimed keys or values may be removed from the cache on
     * each cache modification, on occasional cache accesses, or on calls to {@link Cache#cleanUp}; such
     * entries may be counted in {@link Cache#size}, but will never be visible to read or write
     * operations.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.2.md

    ## Changes since v1.2.2
    
    ### Action Required
    
    * Make watch cache treat resourceVersion consistent with uncached watch ([#24008](https://github.com/kubernetes/kubernetes/pull/24008), [@liggitt](https://github.com/liggitt))
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
Back to top