Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ignoreUriCase (0.24 sec)

  1. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice.go

    		}
    	}
    
    	// query params conflict
    	for key, value := range leaf.QueryParams {
    		if stringMatchConflict(root.QueryParams[key], value) {
    			return true
    		}
    	}
    
    	if root.IgnoreUriCase != leaf.IgnoreUriCase {
    		return true
    	}
    	if root.Port > 0 && leaf.Port > 0 && root.Port != leaf.Port {
    		return true
    	}
    
    	// sourceNamespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                description: The header keys must be lowercase and use
                                  hyphen as the separator, e.g.
                                type: object
                              ignoreUriCase:
                                description: Flag to specify whether the URI matching
                                  should be case-insensitive.
                                type: boolean
                              method:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                                description: The header keys must be lowercase and use
                                  hyphen as the separator, e.g.
                                type: object
                              ignoreUriCase:
                                description: Flag to specify whether the URI matching
                                  should be case-insensitive.
                                type: boolean
                              method:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                description: The header keys must be lowercase and use
                                  hyphen as the separator, e.g.
                                type: object
                              ignoreUriCase:
                                description: Flag to specify whether the URI matching
                                  should be case-insensitive.
                                type: boolean
                              method:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    string prefix: type: string regex: description: RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax). type: string type: object description: The header keys must be lowercase and use hyphen as the separator, e.g. type: object ignoreUriCase: description: Flag to specify whether the URI matching should be case-insensitive. type: boolean method: description: 'HTTP Method values are case-sensitive and formatted as follows: - `exact: "value"` for exact string match - `prefix: "value"`...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top