Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkClient (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    		return false
    	}
    }
    
    // CheckClient accepts client and calculate the support per endpoint and caches it.
    func (f *defaultFeatureSupportChecker) CheckClient(ctx context.Context, c client, feature storage.Feature) {
    	switch feature {
    	case storage.RequestWatchProgress:
    		f.checkClient(ctx, c)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	}
    	if utilfeature.DefaultFeatureGate.Enabled(features.ConsistentListFromCache) || utilfeature.DefaultFeatureGate.Enabled(features.WatchList) {
    		etcdfeature.DefaultFeatureSupportChecker.CheckClient(c.Ctx(), c, storage.RequestWatchProgress)
    	}
    	return s
    }
    
    // Versioner implements storage.Interface.Versioner.
    func (s *store) Versioner() storage.Versioner {
    	return s.versioner
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top