Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for validateTolerations (0.23 sec)

  1. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, ValidateDNS1123Subdomain(hostname, fldPath.Index(i).Child("hostnames").Index(j))...)
    		}
    	}
    	return allErrs
    }
    
    // ValidateTolerations tests if given tolerations have valid data.
    func ValidateTolerations(tolerations []core.Toleration, fldPath *field.Path) field.ErrorList {
    	allErrors := field.ErrorList{}
    	for i, toleration := range tolerations {
    		idxPath := fldPath.Index(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

                    .run()
            }
    
            then:
    
            events.operations.size() == 3
            validateOperations(events, projectFModuleMissing, projectF2)
            events.operations.pop().result.class.getSimpleName() == DefaultFileDownloadSuccessResult.class.getSimpleName()
        }
    
        private validateOperations(ProgressEvents events, MavenHttpModule projectFModuleMissing, MavenHttpModule projectF2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top