Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for prefixEach (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    		var prefix string
    		prefix, name = parts[0], parts[1]
    		if len(prefix) == 0 {
    			errs = append(errs, "prefix part "+EmptyError())
    		} else if msgs := IsDNS1123Subdomain(prefix); len(msgs) != 0 {
    			errs = append(errs, prefixEach(msgs, "prefix part ")...)
    		}
    	default:
    		return append(errs, "a qualified name "+RegexError(qualifiedNameErrMsg, qualifiedNameFmt, "MyName", "my.name", "123-abc")+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tests/integration/pilot/ingress_test.go

    			failureChecker := check.Status(http.StatusNotFound)
    			count := 2 * t.Clusters().Len()
    
    			// TODO check all clusters were hit
    			cases := []struct {
    				name       string
    				path       string
    				prefixPath string
    				call       echo.CallOptions
    			}{
    				{
    					// Basic HTTP call
    					name: "http",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            boolean onlyDotsSinceLastSeparator = true;
            for (int i = 0; i < prefixPath.length(); i++) {
                char currentChar = prefixPath.charAt(i);
                if (currentChar == '/' || currentChar == '\\') {
                    if (onlyDotsSinceLastSeparator) {
                        return FileUtils.normalize(new File(searchDir, prefixPath));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                parentFile.mkdirs()
                writeText(text.trimIndent())
            }
    
        private
        fun File.withUniqueDirectory(prefixPath: String): File =
            Files.createTempDirectory(
                withDirectory(prefixPath.substringBeforeLast("/")).toPath(),
                prefixPath.substringAfterLast("/")
            ).toFile()
    
        private
        fun File.withDirectory(path: String): File =
            resolve(path).apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. cmd/object-api-utils.go

    	}
    	return false
    }
    
    // Returns the part file name which matches the partNumber and etag.
    func getPartFile(entriesTrie *trie.Trie, partNumber int, etag string) (partFile string) {
    	for _, match := range entriesTrie.PrefixMatch(fmt.Sprintf("%.5d.%s.", partNumber, etag)) {
    		partFile = match
    		break
    	}
    	return partFile
    }
    
    func partNumberToRangeSpec(oi ObjectInfo, partNumber int) *HTTPRangeSpec {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top