Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateTopologySelectorTerm (0.41 sec)

  1. pkg/apis/storage/validation/validation.go

    		return allErrs
    	}
    
    	rawTopologies := make([]map[string]sets.Set[string], len(topologies))
    	for i, term := range topologies {
    		idxPath := fldPath.Index(i)
    		exprMap, termErrs := apivalidation.ValidateTopologySelectorTerm(term, fldPath.Index(i))
    		allErrs = append(allErrs, termErrs...)
    
    		// TODO (verult) consider improving runtime
    		for _, t := range rawTopologies {
    			if helper.Semantic.DeepEqual(exprMap, t) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	return valueSet, allErrs
    }
    
    // ValidateTopologySelectorTerm tests that the specified topology selector term has valid data,
    // and constructs a map representing the term in raw form.
    func ValidateTopologySelectorTerm(term core.TopologySelectorTerm, fldPath *field.Path) (map[string]sets.Set[string], field.ErrorList) {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top