Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for wildCards (0.27 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

      hosts:
      - '*.example.com'
      http:
      - match:
        - uri:
            prefix: /wildcard-example-com
        name: gateway-conformance-infra.attaches-to-wildcard-example-com-with-hostname-intersection.0
        route:
        - destination:
            host: infra-backend-v1.gateway-conformance-infra.svc.domain.suffix
            port:
              number: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. cmd/mrf.go

    			// is '.minio.sys'
    			if u.bucket == minioMetaBucket {
    				// No MRF needed for temporary objects
    				if wildcard.Match("buckets/*/.metacache/*", u.object) {
    					continue
    				}
    				if wildcard.Match("tmp/*", u.object) {
    					continue
    				}
    				if wildcard.Match("multipart/*", u.object) {
    					continue
    				}
    				if wildcard.Match("tmp-old/*", u.object) {
    					continue
    				}
    			}
    
    			now := time.Now()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

    class PatternStepFactoryTest extends Specification {
        def "creates step for ** wildcard"() {
            expect:
            def step = PatternStepFactory.getStep("**", true);
            step instanceof AnyWildcardPatternStep
            step.matches("anything")
            step.matches("")
        }
    
        def "creates step for * wildcard"() {
            expect:
            def step = PatternStepFactory.getStep("*", true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/service_lookup.go

    			}
    		}
    	}
    
    	// Now check wildcard matches, namespace scoped or all namespaces
    	// (This more expensive checking left for last)
    	// Assumes the wildcard entries are correctly formatted ("*<dns suffix>")
    	for seHostScopedFqdn, s := range serviceEntryHosts {
    		scope, seHost := seHostScopedFqdn.GetScopeAndFqdn()
    
    		// Skip over non-wildcard entries
    		if !strings.HasPrefix(seHost, Wildcard) {
    			continue
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top