Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cacheEnabled (0.09 sec)

  1. pkg/kubelet/pleg/generic.go

    		}
    	}
    
    	var needsReinspection map[types.UID]*kubecontainer.Pod
    	if g.cacheEnabled() {
    		needsReinspection = make(map[types.UID]*kubecontainer.Pod)
    	}
    
    	// If there are events associated with a pod, we should update the
    	// podCache.
    	for pid, events := range eventsByPodID {
    		pod := g.podRecords.getCurrent(pid)
    		if g.cacheEnabled() {
    			// updateCache() will inspect the pod and update the cache. If an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			}
    		})
    	}
    }
    
    func RunTestConsistentList(ctx context.Context, t *testing.T, store storage.Interface, compaction Compaction, cacheEnabled, consistentReadsSupported bool) {
    	outPod := &example.Pod{}
    	inPod := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "default", Name: "foo"}}
    	err := store.Create(ctx, computePodKey(inPod), inPod, outPod, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top