Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 198 for wildCards (0.27 sec)

  1. src/cmd/go/testdata/script/mod_get_moved.txt

    go list -m all
    stdout 'example.com/join/subpkg v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    # (A wildcard pattern applies to both packages and modules,
    # because we define wildcard matching to apply after version resolution.)
    go get example.com/join/subpkg/...@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. releasenotes/notes/pod-ip-listener.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 28178
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 240 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top