Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 449 for Suffix (0.11 sec)

  1. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // ```
    // <quantity>        ::= <signedNumber><suffix>
    //
    // 	(Note that <suffix> may be empty, from the "" case in <decimalSI>.)
    //
    // <digit>           ::= 0 | 1 | ... | 9
    // <digits>          ::= <digit> | <digit><digits>
    // <number>          ::= <digits> | <digits>.<digits> | <digits>. | .<digits>
    // <sign>            ::= "+" | "-"
    // <signedNumber>    ::= <number> | <sign><number>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/TemporaryFileProvider.java

        /**
         * Allocates and creates a new temporary file with the given prefix, suffix,
         * and path, relative to the temporary file directory.
         */
        File createTemporaryFile(String prefix, @Nullable String suffix, String... path);
    
        File createTemporaryDirectory(String prefix, @Nullable String suffix, String... path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/DefaultTemporaryFileProvider.java

                }
            };
        }
    
        @Override
        public File createTemporaryFile(String prefix, @Nullable String suffix, String... path) {
            File dir = newTemporaryFile(path);
            forceMkdir(dir);
            try {
                return TempFiles.createTempFile(prefix, suffix, dir);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 21:16:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "isolation-istio.gateway-conformance-infra.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/allow-path-in.yaml

    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      rules:
        - to:
            - operation:
                paths: ["/exact", "/prefix/*", "*/suffix", "*", "/path/template/{*}", "/{**}/path/template"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 454 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

        val codeSection = codeStatements.joinToString("") { "$it\n" }
    
        val prefix = "${packageSection}${importSection}class Script {init {"
        val suffix = "}}"
        val codeOffset = prefix.length
        return Triple("$prefix$codeSection$suffix", codeOffset, suffix.length)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/multi-gateway.status.yaml.golden

        message: 'Assigned to service(s) example.com:34000, example.com:80, istio-ingressgateway.istio-system.svc.domain.suffix:34000,
          and istio-ingressgateway.istio-system.svc.domain.suffix:80, but failed to assign
          to all requested addresses: hostname "istio-ingressgateway.not-default.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

            this.consoleMetaData = consoleMetaData;
            this.progressBarPrefix = progressBarPrefix;
            this.progressBarWidth = progressBarWidth;
            this.progressBarSuffix = progressBarSuffix;
            this.fillerChar = completeChar;
            this.incompleteChar = incompleteChar;
            this.suffix = suffix;
            this.current = initialProgress;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. internal/etag/etag.go

    		return ETag(etag), nil
    	}
    
    	prefix, suffix := s[:n], s[n:]
    	if len(prefix) != 32 {
    		return nil, fmt.Errorf("etag: invalid prefix length %d", len(prefix))
    	}
    	if len(suffix) <= 1 {
    		return nil, errors.New("etag: suffix is not a part number")
    	}
    
    	etag, err := hex.DecodeString(prefix)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    			}
    			exs, ok := ids[prefix]
    			if !ok {
    				continue
    			}
    			ex.Suffix = suffix
    			*exs = append(*exs, ex)
    			break
    		}
    	}
    
    	// Sort list of example according to the user-specified suffix name.
    	for _, exs := range ids {
    		slices.SortFunc(*exs, func(a, b *Example) int {
    			return cmp.Compare(a.Suffix, b.Suffix)
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top