Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ignoreUriCase (0.38 sec)

  1. pilot/pkg/model/virtualservice_test.go

    			*m = map[string]string{"test": "fuzz"}
    		})
    
    	root := &networking.HTTPMatchRequest{}
    	f.Fuzz(root)
    	root.SourceNamespace = ""
    	root.SourceLabels = nil
    	root.Gateways = nil
    	root.IgnoreUriCase = false
    	delegate := &networking.HTTPMatchRequest{}
    	merged := mergeHTTPMatchRequest(root, delegate)
    
    	assert.Equal(t, merged, root)
    }
    
    var gatewayNameTests = []struct {
    	gateway   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	retval := "Match: "
    	// TODO Are users interested in seeing Scheme, Method, Authority?
    	if match.Uri != nil {
    		retval += renderStringMatch(match.Uri)
    
    		if match.IgnoreUriCase {
    			retval += " uncased"
    		}
    	}
    
    	if len(match.Headers) > 0 {
    		headerConds := []string{}
    		for key, val := range match.Headers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    			out.PathSpecifier = &route.RouteMatch_SafeRegex{
    				SafeRegex: &matcher.RegexMatcher{
    					Regex: m.Regex,
    				},
    			}
    		}
    	}
    
    	out.CaseSensitive = &wrapperspb.BoolValue{Value: !in.IgnoreUriCase}
    
    	if in.Method != nil {
    		matcher := translateHeaderMatch(HeaderMethod, in.Method)
    		out.Headers = append(out.Headers, matcher)
    	}
    
    	if in.Authority != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top