Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 462 for wildcard$ (0.12 sec)

  1. 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)
  2. src/main/java/jcifs/smb/DosFileFilter.java

         * 
         * @param wildcard
         * @param attributes
         */
        public DosFileFilter ( String wildcard, int attributes ) {
            this.wildcard = wildcard;
            this.attributes = attributes;
        }
    
    
        /**
         * This returns true if the file's attributes contain any of the attributes
         * specified for this filter. The wildcard has no influence on this
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            def objects = new ModelType<List<? extends Object>>() {}.typeVariables[0]
    
            expect:
            extendsString.wildcard
            superString.wildcard
            objects.wildcard
            anything.wildcard
    
            !extendsString.isClass()
            !superString.isClass()
            !objects.isClass()
            !anything.isClass()
    
            extendsString.rawClass == String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top