Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RequestWatchProgress (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    )
    
    // Feature is the name of each feature in storage that we check in feature_support_checker.
    type Feature = string
    
    // RequestWatchProgress is an etcd feature that may use to check if it supported or not.
    var RequestWatchProgress Feature = "RequestWatchProgress"
    
    // Versioner abstracts setting and retrieving metadata fields from database response
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	mockHandler := func(*watchCacheEvent) {}
    	wc := &testWatchCache{}
    	wc.bookmarkRevision = make(chan int64, 1)
    	wc.stopCh = make(chan struct{})
    	pr := newConditionalProgressRequester(wc.RequestWatchProgress, &immediateTickerFactory{}, nil)
    	go pr.Run(wc.stopCh)
    	wc.watchCache = newWatchCache(keyFunc, mockHandler, getAttrsFunc, versioner, indexers, testingclock.NewFakeClock(time.Now()), schema.GroupResource{Resource: "pods"}, pr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	pathPrefix          string
    	groupResource       schema.GroupResource
    	groupResourceString string
    	watcher             *watcher
    	leaseManager        *leaseManager
    }
    
    func (s *store) RequestWatchProgress(ctx context.Context) error {
    	// Use watchContext to match ctx metadata provided when creating the watch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	requestWatchProgressSupported := etcdfeature.DefaultFeatureSupportChecker.Supports(storage.RequestWatchProgress)
    	if utilfeature.DefaultFeatureGate.Enabled(features.ConsistentListFromCache) && requestWatchProgressSupported && w.notFresh(resourceVersion) {
    		w.waitingUntilFresh.Add()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top