Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 461 for wildCards (0.31 sec)

  1. src/cmd/internal/pkgpattern/pkgpattern.go

    func TreeCanMatchPattern(pattern string) func(name string) bool {
    	wildCard := false
    	if i := strings.Index(pattern, "..."); i >= 0 {
    		wildCard = true
    		pattern = pattern[:i]
    	}
    	return func(name string) bool {
    		return len(name) <= len(pattern) && hasPathPrefix(pattern, name) ||
    			wildCard && strings.HasPrefix(name, pattern)
    	}
    }
    
    // MatchPattern(pattern)(name) reports whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/simple-policy-principal-with-wildcard-out.yaml

    Kuat <******@****.***> 1697560546 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/simple-policy-principal-with-wildcard-in.yaml

    Yangmin Zhu <******@****.***> 1617305101 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 381 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    }
    
    // containsString returns true if either `x` or `wildcard` is in
    // `list`.  The wildcard is not a pattern to match against `x`; rather
    // the presence of the wildcard in the list is the caller's way of
    // saying that all values of `x` should match the list.  This function
    // assumes that if `wildcard` is in `list` then it is the only member
    // of the list, which is enforced by validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

      public static final MediaType ANY_TYPE = createConstant(WILDCARD, WILDCARD);
      public static final MediaType ANY_TEXT_TYPE = createConstant(TEXT_TYPE, WILDCARD);
      public static final MediaType ANY_IMAGE_TYPE = createConstant(IMAGE_TYPE, WILDCARD);
      public static final MediaType ANY_AUDIO_TYPE = createConstant(AUDIO_TYPE, WILDCARD);
      public static final MediaType ANY_VIDEO_TYPE = createConstant(VIDEO_TYPE, WILDCARD);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation_test.go

    		{"happy", strings.Repeat("x", 63), ""},
    		{"wildcard", "*", ""},
    		{"wildcard multi-segment", "*.bar.com", ""},
    		{"wildcard single segment", "*foo", ""},
    		{"wildcard prefix", "*foo.bar.com", ""},
    		{"wildcard prefix dash", "*-foo.bar.com", ""},
    		{"bad wildcard", "foo.*.com", "invalid"},
    		{"bad wildcard", "foo*.bar.com", "invalid"},
    		{"IP address", "1.1.1.1", "invalid"},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelection.java

     * those limitations.
     */
    public class XCTestSelection {
        public static final String INCLUDE_ALL_TESTS = "All";
        private static final String WILDCARD = "*";
        private final Set<String> includedTests = new LinkedHashSet<String>();
    
        public XCTestSelection(Collection<String> includedTests, Collection<String> includedTestsCommandLine) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/query.go

    // to a package and/or module.
    type pathSet struct {
    	// path is a package (if "all" or "-u" or a non-wildcard) or module (if
    	// wildcard) path that could be resolved by adding any of the modules in this
    	// set. For a wildcard pattern that so far matches no packages, the path is
    	// the wildcard pattern itself.
    	//
    	// Each path must occur only once in a query's candidate sets, and the path is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

                boolean wildcard = nodeNameTest.isWildcard();
                String testName = nodeNameTest.getNodeName().getName();
                String testPrefix = nodeNameTest.getNodeName().getPrefix();
                if (wildcard && testPrefix == null) {
                    return true;
                }
                if (wildcard || testName.equals(nodeName)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. 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)
Back to top