Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 342 for wildcard$ (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/wildcard-tls-gateway.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: wildcard-tls-gateway
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: foo-https
        protocol: HTTPS
        port: 443
        hostname: foo.example.com
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: foo-example-com-cert
      - name: wildcard-https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 576 bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard-tproxy.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/simple-policy-principal-with-wildcard-out.yaml

    Kuat <******@****.***> 1697560546 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-principal-with-wildcard-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. releasenotes/notes/45415-overlapping-wildcards.yaml

    issue:
      - 45415
    
    releaseNotes:
      - |
        **Fixed** a bug where overlapping wildcard hosts in a VirtualService would produce incorrect routing configuration when wildcard services were selected (e.g. in ServiceEntries).
    
    upgradeNotes:
      - title: Overlapping Wildcard Conflicts
        content: |
          This fix changes the behavior of overlapping wildcard hosts in VirtualService. Previously, the oldest VirtualService would take precedence
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 09 14:22:50 UTC 2023
    - 786 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

    apiVersion: gateway.networking.k8s.io/v1
    kind: HTTPRoute
    metadata:
      name: attaches-to-wildcard-example-com-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec:
      parentRefs:
        - name: isolation
          namespace: gateway-conformance-infra
          sectionName: wildcard-example-com
      hostnames:
        - "bar.com" # doesn't match wildcard-example-com listener
        - "*.example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/net/http/routing_tree.go

    	// those with a multi wildcard.
    	// We skip this step if the segment is a trailing slash, because single wildcards
    	// don't match trailing slashes.
    	if seg != "/" {
    		if n, m := n.emptyChild.matchPath(rest, append(matches, seg)); n != nil {
    			return n, m
    		}
    	}
    	// Lastly, match the pattern (there can be at most one) that has a multi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/config.go

    		return mostSpecificHostWildcardMatch(string(needle[1:]), wildcard)
    	}
    
    	// exact match first
    	if v, ok := specific[needle]; ok {
    		return needle, v, true
    	}
    
    	// check wildcard
    	return mostSpecificHostWildcardMatch(string(needle), wildcard)
    }
    
    func mostSpecificHostWildcardMatch[V any](needle string, wildcard map[host.Name]V) (host.Name, V, bool) {
    	found := false
    	var matchHost host.Name
    	var matchValue V
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/net/http/pattern_test.go

    		{"/{w}x", "at offset 1: bad wildcard segment"},
    		{"/x{w}", "at offset 1: bad wildcard segment"},
    		{"/{wx", "at offset 1: bad wildcard segment"},
    		{"/a/{/}/c", "at offset 3: bad wildcard segment"},
    		{"/a/{%61}/c", "at offset 3: bad wildcard name"}, // wildcard names aren't unescaped
    		{"/{a$}", "at offset 1: bad wildcard name"},
    		{"/{}", "at offset 1: empty wildcard"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top