Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AsValidatedSelector (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    // the request if the Set contains invalid values.
    func (ls Set) AsSelector() Selector {
    	return SelectorFromSet(ls)
    }
    
    // AsValidatedSelector converts labels into a selectors.
    // The Set is validated client-side, which allows to catch errors early.
    func (ls Set) AsValidatedSelector() (Selector, error) {
    	return ValidatedSelectorFromSet(ls)
    }
    
    // AsSelectorPreValidated converts labels into a selector, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    // equivalent to Everything().
    //
    // Callers MUST ensure the underlying Set is not mutated, and that it is already validated. If these
    // constraints are not met, Set.AsValidatedSelector should be preferred
    //
    // None of the Selector methods mutate the underlying Set, but Add() and Requirements() convert to
    // the less optimized version.
    type ValidatedSetSelector Set
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
Back to top