Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MatchingScopes (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/quota/v1/interfaces.go

    	// Matches returns true if the specified quota matches the input item
    	Matches(resourceQuota *corev1.ResourceQuota, item runtime.Object) (bool, error)
    	// MatchingScopes takes the input specified list of scopes and input object and returns the set of scopes that matches input object.
    	MatchingScopes(item runtime.Object, scopes []corev1.ScopedResourceSelectorRequirement) ([]corev1.ScopedResourceSelectorRequirement, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 30 21:02:09 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. pkg/quota/v1/evaluator/core/services.go

    func (p *serviceEvaluator) MatchingResources(input []corev1.ResourceName) []corev1.ResourceName {
    	return quota.Intersection(input, serviceResources)
    }
    
    // MatchingScopes takes the input specified list of scopes and input object. Returns the set of scopes resource matches.
    func (p *serviceEvaluator) MatchingScopes(item runtime.Object, scopes []corev1.ScopedResourceSelectorRequirement) ([]corev1.ScopedResourceSelectorRequirement, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    	return generic.Matches(resourceQuota, item, p.MatchingResources, generic.MatchesNoScopeFunc)
    }
    
    // MatchingScopes takes the input specified list of scopes and input object. Returns the set of scopes resource matches.
    func (p *pvcEvaluator) MatchingScopes(item runtime.Object, scopes []corev1.ScopedResourceSelectorRequirement) ([]corev1.ScopedResourceSelectorRequirement, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
Back to top