Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 166 for wildcards (0.52 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. pkg/config/host/name_test.go

    		{"wildcard matches anything", "*", "*", true},
    		{"wildcard matches anything", "", "*", true},
    
    		{"wildcarded domain matches wildcarded subdomain", "*.foo.com", "*.com", true},
    		{"wildcarded sub-domain does not match domain", "*.foo.com", "foo.com", false},
    
    		{"long wildcard does not match short host", "*.foo.bar.baz", "baz", false},
    		{"long name matches short wildcard", "foo.bar.baz", "*.baz", true},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/config/analysis/analyzers/testdata/gateway-duplicate-certificate.yaml

      name: 02-test-04-wildcard-cert
      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 01-test-05-wildcard-cert
      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 02-test-05-wildcard-cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  6. 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)
  7. src/net/ipsock_posix.go

    //     IPV6_V6ONLY=0, wildcard address listen. The dual stack
    //     wildcard address listen may fall back to an IPv6-only,
    //     AF_INET6 and IPV6_V6ONLY=1, wildcard address listen.
    //     Otherwise we prefer an IPv4-only, AF_INET, wildcard address
    //     listen.
    //
    //   - A listen for a wildcard communication domain, "tcp" or
    //     "udp", with an IPv4 wildcard address: same as above.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestFilter.java

         *
         * @param testNamePatterns class or method name patterns to set, may contain wildcard '*'
         * @return this filter object
         */
        TestFilter setIncludePatterns(String... testNamePatterns);
    
        /**
         * Sets the test name patterns to be excluded in the filter. Wildcard '*' is supported. Replaces any existing test name patterns.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/net/platform_test.go

    	if err != nil {
    		return false
    	}
    	var ip IP
    	var wildcard bool
    	switch addr := addr.(type) {
    	case *TCPAddr:
    		ip = addr.IP
    		wildcard = addr.isWildcard()
    	case *UDPAddr:
    		ip = addr.IP
    		wildcard = addr.isWildcard()
    	case *IPAddr:
    		ip = addr.IP
    		wildcard = addr.isWildcard()
    	}
    
    	// Test wildcard IP addresses.
    	if wildcard && !testenv.HasExternalNetwork() {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

      hosts:
      - '*.example.com'
      http:
      - match:
        - uri:
            prefix: /wildcard-example-com
        name: gateway-conformance-infra.attaches-to-wildcard-example-com-with-hostname-intersection.0
        route:
        - destination:
            host: infra-backend-v1.gateway-conformance-infra.svc.domain.suffix
            port:
              number: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top