Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for exact_match (0.38 sec)

  1. istioctl/pkg/authz/testdata/configdump.yaml

                           "or_rules": {
                            "rules": [
                             {
                              "header": {
                               "name": ":method",
                               "exact_match": "GET"
                              }
                             }
                            ]
                           }
                          },
                          {
                           "or_rules": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  2. 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