Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for wildCards (0.17 sec)

  1. src/net/http/request.go

    	}
    }
    
    // patIndex returns the index of name in the list of named wildcards of the
    // request's pattern, or -1 if there is no such name.
    func (r *Request) patIndex(name string) int {
    	// The linear search seems expensive compared to a map, but just creating the map
    	// takes a lot of time, and most patterns will just have a couple of wildcards.
    	if r.pat == nil {
    		return -1
    	}
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         *
         * @param wildcard
         *            a wildcard expression
         * @throws SmbException
         * @return An array of <code>SmbResource</code> objects representing file
         *         and directories, workgroups, servers, or shares depending on the context
         *         of the resource URL
         */
        public SmbFile[] listFiles ( String wildcard ) throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. src/cmd/go/internal/modget/get.go

    		})
    	}
    }
    
    // performWildcardQueries populates the candidates for each query whose pattern
    // is a wildcard.
    //
    // The candidates for a given module path matching (or containing a package
    // matching) a wildcard query depend only on the initial build list, but the set
    // of modules may be expanded by other queries, so wildcard queries need to be
    // re-evaluated whenever a potentially-matching module path is added to the
    // build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		}
    
    		// Next check the hostnames are a match. This is a bi-directional wildcard match. Only one route
    		// hostname must match for it to be allowed (but the others will be filtered at runtime)
    		// If either is empty its treated as a wildcard which always matches
    
    		if len(hostnames) == 0 {
    			hostnames = []k8s.Hostname{"*"}
    		}
    		if len(parent.Hostnames) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    			for _, m := range matches {
    				roots = append(roots, m.Pkgs...)
    			}
    			return roots
    		},
    	})
    
    	// One last pass to finalize wildcards.
    	updateMatches(ld.requirements, ld)
    
    	// List errors in matching patterns (such as directory permission
    	// errors for wildcard patterns).
    	if !ld.SilencePackageErrors {
    		for _, match := range matches {
    			for _, err := range match.Errs {
    				ld.error(err)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    				"*.cluster.local": nil,
    			},
    			expectedGateway: map[string][]string{
    				// Exact service matches do not get the wildcard applied
    				"alt-known.default.svc.cluster.local": {"outbound|80||alt-known.default.svc.cluster.local"},
    				"known.default.svc.cluster.local":     {"outbound|80||known.default.svc.cluster.local"},
    				// The wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    			if !localMatch {
    				// If the wildcard doesn't even match this service, it won't be in the index
    				continue
    			}
    			// The mostSpecificWildcardVsIndex ensures that each VirtualService host is only associated with
    			// a single service in the registry. This is generally results in the most specific wildcard match for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    				},
    			},
    		}
    		g.Expect(vhosts[0].Routes[0].Action.(*envoyroute.Route_Route).Route.HashPolicy).To(ConsistOf(hashPolicy))
    	})
    
    	t.Run("for virtualservices and services with overlapping wildcard hosts", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{
    			Configs: []config.Config{
    				virtualServiceWithWildcardHost,
    				virtualServiceWithNestedWildcardHost,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            given:
            if (!(convention instanceof Wildcard)) {
                if (convention instanceof Provider) {
                    property.convention((Provider) convention)
                } else {
                    property.convention((Iterable) convention)
                }
            }
            if (!(explicit instanceof Wildcard)) {
                if (explicit instanceof Provider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    		// is '.minio.sys'
    		if bucket == minioMetaBucket {
    			if wildcard.Match("buckets/*/.metacache/*", entry.name) {
    				return nil
    			}
    			if wildcard.Match("tmp/*", entry.name) {
    				return nil
    			}
    			if wildcard.Match("multipart/*", entry.name) {
    				return nil
    			}
    			if wildcard.Match("tmp-old/*", entry.name) {
    				return nil
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top