Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 840 for SUFFIX (0.09 sec)

  1. pilot/pkg/security/authz/matcher/header.go

    func HeaderMatcher(k, v string) *routepb.HeaderMatcher {
    	// We must check "*" first to make sure we'll generate a non empty value in the prefix/suffix case.
    	// Empty prefix/suffix value is invalid in HeaderMatcher.
    	if v == "*" {
    		return &routepb.HeaderMatcher{
    			Name: k,
    			HeaderMatchSpecifier: &routepb.HeaderMatcher_PresentMatch{
    				PresentMatch: true,
    			},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/alias.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 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. src/cmd/go/testdata/script/list_constraints.txt

    go list -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^C cgoimport cgotag suffix tag $'
    
    # Disabling cgo should exclude cgo files and their imports.
    env CGO_ENABLED=0
    go list -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout 'empty.go suffix_linux.go tag.go'
    go list -f '{{range .CgoFiles}}{{.}} {{end}}'
    ! stdout .
    go list -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^suffix tag $'
    
    # Changing OS should exclude linux sources.
    env GOOS=darwin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  5. test/rangegen.go

    				}
    				if code++; allowed(code) {
    					p(b, "	if code == %v { break L%d%ssw }\n", code, i, suffix)
    				}
    				if code++; allowed(code) {
    					p(b, "	if code == %v { break L%d%ssel }\n", code, i, suffix)
    				}
    				if code++; allowed(code) {
    					p(b, "	if code == %v { break L%d%sfor }\n", code, i, suffix)
    				}
    				if code++; allowed(code) {
    					p(b, "	if code == %v { continue L%d%sfor }\n", code, i, suffix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/ClassMethodNameStackTraceSpec.java

            if (this.className == null || !targetClassName.startsWith(className)) {
                return false;
            }
    
            String suffix = targetClassName.substring(className.length());
    
            return suffix.isEmpty() || ANONYMOUS_CLASS_NAME_SUFFIX.matcher(suffix).matches();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/simple.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-simple
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pkg/kubelet/network/dns/dns_windows.go

    		if err != nil {
    			return nil, err
    		}
    		if suffixes == "" {
    			continue
    		}
    		for _, suffix := range strings.Split(suffixes, ",") {
    			if !elemInList(suffix, allSuffixes) {
    				allSuffixes = append(allSuffixes, suffix)
    			}
    		}
    	}
    
    	return allSuffixes, nil
    }
    
    func getNetworkParams() (*FixedInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. 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)
Back to top