Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for exact_match (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                return MatchResult.EXACT_MATCH;
            }
            for (Capability capability : capabilitiesSet) {
                capability = unwrap(capability);
                if (group.equals(capability.getGroup()) && name.equals(capability.getName())) {
                    boolean exactMatch = capabilitiesSet.size() == 1;
                    return exactMatch ? MatchResult.EXACT_MATCH : MatchResult.MATCHES_ALL;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_internal_test.go

    						Prefix: "/",
    					},
    					Headers: []*route.HeaderMatcher{
    						{
    							Name: "Authentication",
    							HeaderMatchSpecifier: &route.HeaderMatcher_ExactMatch{
    								ExactMatch: "test",
    							},
    						},
    					},
    				},
    			},
    			want: false,
    		},
    		{
    			name: "uri regex with headers",
    			route: &route.Route{
    				Name: "non-catch-all",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// or the URL already has a trailing slash, then we're done.
    	if !exactMatch(n, path) && u != nil && !strings.HasSuffix(path, "/") {
    		// If there is an exact match with a trailing slash, then redirect.
    		path += "/"
    		n2, _ := mux.tree.match(host, method, path)
    		if exactMatch(n2, path) {
    			return nil, nil, &url.URL{Path: cleanPath(u.Path) + "/", RawQuery: u.RawQuery}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top