Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 198 for wildCards (0.14 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. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

                throws CIFSException {
            this.parent = parent;
            this.wildcard = wildcard;
            this.nameFilter = filter;
            this.searchAttributes = searchAttributes;
    
            this.treeHandle = th.acquire();
            try {
                this.next = open();
                if ( this.next == null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/smb1/smb1/DosFileFilter.java

        protected String wildcard;
        protected int attributes;
    
    /* This filter can be considerably more efficient than other file filters
     * as the specifed wildcard and attributes are passed to the server for
     * filtering there (although attributes are largely ignored by servers
     * they are filtered locally by the default accept method).
     */
        public DosFileFilter( String wildcard, int attributes ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top