Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cacheEnabled (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope.go

    	transformers *lru.Cache
    
    	// baseTransformerFunc creates a new transformer for encrypting the data with the DEK.
    	baseTransformerFunc func(cipher.Block) (value.Transformer, error)
    
    	cacheSize    int
    	cacheEnabled bool
    }
    
    // NewEnvelopeTransformer returns a transformer which implements a KEK-DEK based envelope encryption scheme.
    // It uses envelopeService to encrypt and decrypt DEKs. Respective DEKs (in encrypted form) are prepended to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. 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