Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for wildcards (0.25 sec)

  1. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

        check(rule.startsWith(WILDCARD_CHAR)) {
          """Wildcard Assertion Failure: '$rule'
    A wildcard rule was added with a wildcard that is not in leftmost position! We'll need to change the ${PublicSuffixDatabase::class.java.name} to handle this."""
        }
        check(rule.indexOf(WILDCARD_CHAR, 1) == -1) {
          """Wildcard Assertion Failure: '$rule'
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

        @Test
        fun `recognizes segments that are partially wildcarded`() {
            val instance = createFromPaths(listOf("foo*/*bar*/*baz/*.xml"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/bar/baz/.xml")))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo1/2bar3/4baz/abc.xml")))
        }
    
        @Test
        fun `recognizes double-asterisk wildcards across path segments`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/mrf.go

    			// is '.minio.sys'
    			if u.bucket == minioMetaBucket {
    				// No MRF needed for temporary objects
    				if wildcard.Match("buckets/*/.metacache/*", u.object) {
    					continue
    				}
    				if wildcard.Match("tmp/*", u.object) {
    					continue
    				}
    				if wildcard.Match("multipart/*", u.object) {
    					continue
    				}
    				if wildcard.Match("tmp-old/*", u.object) {
    					continue
    				}
    			}
    
    			now := time.Now()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        // Hostname and pattern are now in lower case -- domain names are case-insensitive.
    
        if ("*" !in pattern) {
          // Not a wildcard pattern -- hostname and pattern must match exactly.
          return hostname == pattern
        }
    
        // Wildcard pattern
    
        // WILDCARD PATTERN RULES:
        // 1. Asterisk (*) is only permitted in the left-most domain name label and must be the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        parentRef:
          name: isolation
          namespace: gateway-conformance-infra
          sectionName: wildcard-example-com
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: attaches-to-wildcard-foo-example-com-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/workload.go

    		addresses = req.Delta.Subscribed
    	} else {
    		if w.Wildcard {
    			addresses = updatedAddresses
    		} else {
    			// this is from the external triggers instead of request
    			// send response for all the subscribed intersect with the updated
    			addresses = updatedAddresses.IntersectInPlace(subs)
    		}
    	}
    
    	if !w.Wildcard {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top