Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 166 for wildcards (0.13 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/model/cluster_local.go

    	defaultClusterLocalServices   = []string{"kubernetes.default.svc"}
    )
    
    // ClusterLocalHosts is a map of host names or wildcard patterns which should only
    // be made accessible from within the same cluster.
    type ClusterLocalHosts struct {
    	specific sets.Set[host.Name]
    	wildcard sets.Set[host.Name]
    }
    
    // IsClusterLocal indicates whether the given host should be treated as a
    // cluster-local destination.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/config/analysis/analyzers/util/hosts_test.go

    	// wildcard, local scope
    	g.Expect(NewScopedFqdn("foo", "foo", "*")).To(Equal(ScopedFqdn("foo/*")))
    	// wildcard sub domain, local scope
    	g.Expect(NewScopedFqdn("foo", "foo", "*.xyz.abc")).To(Equal(ScopedFqdn("foo/*.xyz.abc")))
    	// wildcard, all namespaces scope
    	g.Expect(NewScopedFqdn("*", "foo", "*")).To(Equal(ScopedFqdn("*/*")))
    	// wildcard sub domain, all namespaces scope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top