Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 199 for wildcards (0.13 sec)

  1. android/guava/src/com/google/common/reflect/TypeVisitor.java

     * default, no recursion is done for type arguments or type bounds. But subclasses can opt to do
     * recursion by calling {@link #visit} for any {@code Type} while visitation is in progress. For
     * example, this can be used to reject wildcards or type variables contained in a type as in:
     *
     * <pre>{@code
     * new TypeVisitor() {
     *   protected void visitParameterizedType(ParameterizedType t) {
     *     visit(t.getOwnerType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/gofmt/rewrite.go

    // of wildcards and pos used as the position of tokens from the pattern.
    // if m == nil, subst returns a copy of pattern and doesn't change the line
    // number information.
    func subst(m map[string]reflect.Value, pattern reflect.Value, pos reflect.Value) reflect.Value {
    	if !pattern.IsValid() {
    		return reflect.Value{}
    	}
    
    	// Wildcard gets replaced with map value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_goroot_symlink.txt

    stdout '^encoding/binary: '$WORK${/}lib${/}goroot${/}src${/}encoding${/}binary'$'
    
    # Most path lookups in GOROOT are not sensitive to symlinks. However, patterns
    # involving '...' wildcards must use Walk to check the GOROOT tree, which makes
    # them more sensitive to symlinks (because Walk doesn't follow them).
    #
    # So we check such a pattern to confirm that it works and reports a path relative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. docs/debugging/README.md

    ```
    
    ### Using xl-meta
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/gofmt/doc.go

    The rewrite rule specified with the -r flag must be a string of the form:
    
    	pattern -> replacement
    
    Both pattern and replacement must be valid Go expressions.
    In the pattern, single-character lowercase identifiers serve as
    wildcards matching arbitrary sub-expressions; those expressions
    will be substituted for the same identifiers in the replacement.
    
    When gofmt reads from standard input, it accepts either a full Go program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. src/net/http/routing_index_test.go

    }
    
    // generatePatterns generates all possible patterns using a representative
    // sample of parts.
    func generatePatterns() []*pattern {
    	var pats []*pattern
    
    	collect := func(s string) {
    		// Replace duplicate wildcards with unique ones.
    		var b strings.Builder
    		wc := 0
    		for {
    			i := strings.Index(s, "{x}")
    			if i < 0 {
    				b.WriteString(s)
    				break
    			}
    			b.WriteString(s[:i])
    			fmt.Fprintf(&b, "{x%d}", wc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/validation/validation.go

    		}
    
    		if url != "" && strings.ContainsRune(url[:len(url)-1], '*') {
    			allErrs = append(allErrs, field.Invalid(fldPath.Index(i), url, "non-resource URL wildcards '*' must be the final character of the rule"))
    		}
    	}
    	return allErrs
    }
    
    func validateResources(groupResources []audit.GroupResources, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 15 14:13:07 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/cors.md

    To achieve this, the backend must have a list of "allowed origins".
    
    In this case, it would have to include `http://localhost:8080` for the frontend to work correctly.
    
    ## Wildcards
    
    It's also possible to declare the list as `"*"` (a "wildcard") to say that all are allowed.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 20:28:37 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. tests/testdata/config/se-example.yaml

    ---
    #The following example demonstrates the use of wildcards in the hosts for
    #external services. If the connection has to be routed to the IP address
    #requested by the application (i.e. application resolves DNS and attempts
    #to connect to a specific IP), the discovery mode must be set to `NONE`.
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-wildcard-example
      namespace: seexamples
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  10. pkg/config/host/names_test.go

    		{
    			host.Names{"b", "a", "aa"},
    			host.Names{"aa", "a", "b"},
    		},
    		{
    			host.Names{"foo.com", "bar.com", "foo.bar.com"},
    			host.Names{"foo.bar.com", "bar.com", "foo.com"},
    		},
    		// We sort wildcards last, always
    		{
    			host.Names{"a", "*", "z"},
    			host.Names{"a", "z", "*"},
    		},
    		{
    			host.Names{"foo.com", "bar.com", "*.com"},
    			host.Names{"bar.com", "foo.com", "*.com"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top