Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 166 for wildcards (0.24 sec)

  1. 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)
  2. pilot/pkg/security/authz/matcher/string.go

    			Exact: exact,
    		},
    	}
    }
    
    // StringMatcherWithPrefix creates a string matcher for v with the extra prefix inserted to the
    // created string matcher, note the prefix is ignored if v is wildcard ("*").
    // The wildcard "*" will be generated as ".+" instead of ".*".
    func StringMatcherWithPrefix(v, prefix string) *matcher.StringMatcher {
    	switch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. cmd/batch-job-common-types.go

    func (kv BatchJobKV) Empty() bool {
    	return kv.Key == "" && kv.Value == ""
    }
    
    // Match matches input kv with kv, value will be wildcard matched depending on the user input
    func (kv BatchJobKV) Match(ikv BatchJobKV) bool {
    	if kv.Empty() {
    		return true
    	}
    	if strings.EqualFold(kv.Key, ikv.Key) {
    		return wildcard.Match(kv.Value, ikv.Value)
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. releasenotes/notes/49364.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 49364
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 01:20:21 UTC 2024
    - 224 bytes
    - Viewed (0)
  5. src/net/ipsock_plan9.go

    	}
    	return newFD(fd.net, name, listen, ctl, data, fd.laddr, raddr)
    }
    
    func isWildcard(a Addr) bool {
    	var wildcard bool
    	switch a := a.(type) {
    	case *TCPAddr:
    		wildcard = a.isWildcard()
    	case *UDPAddr:
    		wildcard = a.isWildcard()
    	case *IPAddr:
    		wildcard = a.isWildcard()
    	}
    	return wildcard
    }
    
    func toLocal(a Addr, net string) Addr {
    	switch a := a.(type) {
    	case *TCPAddr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ExcludeMetadata.java

    public interface ExcludeMetadata {
        /**
         * The coordinates of the module to be excluded.
         * A '*' value for group or name indicates a wildcard match.
         */
        ModuleIdentifier getModuleId();
    
        /**
         * The attributes of the artifact to be excluded. A '*' value for any attribute indicates a wildcard match.
         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/local/ivy/LocallyAvailableResourceFinderFactory.java

            int wildcardPos = pattern.indexOf("/*/");
            int patternPos = pattern.indexOf("/[");
            if (wildcardPos < 0 && patternPos < 0) {
                throw new IllegalArgumentException(String.format("Unsupported pattern '%s'", pattern));
            }
            int chopAt;
            if (wildcardPos >= 0 && patternPos >= 0) {
                chopAt = Math.min(wildcardPos, patternPos);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. releasenotes/notes/44195.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 44195
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 04 16:40:09 UTC 2023
    - 288 bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTypeModelRuleExtractorTest.groovy

            "wildcardType"   | "Type '?' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)."                                 | "wildcard type parameter"
            "extendsType"    | "Type '? extends ${BinarySpec.getName()}' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)." | "extends type parameter"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. releasenotes/notes/36452.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 04 20:10:18 UTC 2022
    - 179 bytes
    - Viewed (0)
Back to top