Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 461 for wildCards (0.16 sec)

  1. src/cmd/go/internal/load/pkg.go

    	// cmdlinePkg is for a package mentioned on the command line.
    	cmdlinePkg
    
    	// cmdlinePkgLiteral is for a package mentioned on the command line
    	// without using any wildcards or meta-patterns.
    	cmdlinePkgLiteral
    )
    
    // LoadPackage does Load import, but without a parent package load contezt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/smb/SmbEnumerationUtil.java

        static CloseableIterator<SmbResource> doEnum ( SmbFile parent, String wildcard, int searchAttributes, ResourceNameFilter fnf, ResourceFilter ff )
                throws CIFSException {
            DosFileFilter dff = unwrapDOSFilter(ff);
            if ( dff != null ) {
                if ( dff.wildcard != null )
                    wildcard = dff.wildcard;
                searchAttributes = dff.attributes;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/TypeMetaData.java

                return false;
            }
            TypeMetaData that = (TypeMetaData) o;
            return arrayDimensions == that.arrayDimensions &&
                varargs == that.varargs &&
                wildcard == that.wildcard &&
                Objects.equals(name, that.name) &&
                Objects.equals(typeArgs, that.typeArgs) &&
                Objects.equals(upperBounds, that.upperBounds) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/net/http/pattern.go

    //     a literal or a wildcard of the form "{name}", "{name...}", or "{$}".
    //
    // METHOD, HOST and PATH are all optional; that is, the string can be "/".
    // If METHOD is present, it must be followed by at least one space or tab.
    // Wildcard names must be valid Go identifiers.
    // The "{$}" and "{name...}" wildcard must occur at the end of PATH.
    // PATH may end with a '/'.
    // Wildcard names in a path must be distinct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top