Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for QueryParams (0.42 sec)

  1. pkg/config/validation/virtualservice.go

    			errs = appendErrors(errs, validateStringMatch(match.GetAuthority(), "authority"))
    			for _, qp := range match.GetQueryParams() {
    				errs = appendErrors(errs, validateStringMatch(qp, "queryParams"))
    			}
    		}
    	}
    
    	for _, match := range http.Match {
    		if match != nil {
    			if match.Port != 0 {
    				errs = appendErrors(errs, agent.ValidatePort(int(match.Port)))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			// 3: number of header matches
    		case len(m1.Headers) != len(m2.Headers):
    			return len(m1.Headers) > len(m2.Headers)
    			// 4: number of query matches
    		default:
    			return len(m1.QueryParams) > len(m2.QueryParams)
    		}
    	})
    }
    
    // getURIRank ranks a URI match type. Exact > Prefix > Regex
    func getURIRank(match *istio.HTTPMatchRequest) int {
    	if match.Uri == nil {
    		return -1
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    		Hosts:    []string{},
    		Gateways: []string{"some-gateway"},
    		Http: []*networking.HTTPRoute{
    			{
    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "auth",
    						QueryParams: map[string]*networking.StringMatch{
    							"token": {
    								MatchType: &networking.StringMatch_Exact{
    									Exact: "foo",
    								},
    							},
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    			hvaluePrefix := hvalue.GetPrefix()
    			hvalueMatch := assignExactOrPrefix(hvalueExact, hvaluePrefix)
    			headerMap[hkey] = hvalueMatch
    		}
    
    		// set QueryParams
    		QPMap := make(map[string]string)
    		for qpkey, qpvalue := range match.QueryParams {
    			qpvalueExact := qpvalue.GetExact()
    			qpvaluePrefix := qpvalue.GetPrefix()
    			qpvalueMatch := assignExactOrPrefix(qpvalueExact, qpvaluePrefix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	}
    
    	if in.Scheme != nil {
    		matcher := translateHeaderMatch(HeaderScheme, in.Scheme)
    		out.Headers = append(out.Headers, matcher)
    	}
    
    	for name, stringMatch := range in.QueryParams {
    		matcher := translateQueryParamMatch(name, stringMatch)
    		out.QueryParameters = append(out.QueryParameters, matcher)
    	}
    
    	return out
    }
    
    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. istioctl/pkg/describe/describe.go

    		for key, val := range match.Headers {
    			headerConds = append(headerConds, fmt.Sprintf("%s=%s", key, renderStringMatch(val)))
    		}
    		retval += " when headers are " + strings.Join(headerConds, "; ")
    	}
    
    	// TODO QueryParams, maybe Gateways
    	return strings.TrimSpace(retval)
    }
    
    func printPod(writer io.Writer, pod *corev1.Pod, revision string) {
    	ports := []string{}
    	UserID := int64(1337)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                    : true'
                              queryParams:
                                description: "QueryParams specifies HTTP query parameter
                                  matchers. Multiple match values are ANDed together,
                                  meaning, a request must match all the specified query
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  addressed.
                                maximum: 4294967295
                                minimum: 0
                                type: integer
                              queryParams:
                                additionalProperties:
                                  oneOf:
                                  - not:
                                      anyOf:
                                      - required:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                                  addressed.
                                maximum: 4294967295
                                minimum: 0
                                type: integer
                              queryParams:
                                additionalProperties:
                                  oneOf:
                                  - not:
                                      anyOf:
                                      - required:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                description: Specifies the ports on the host that is being
                                  addressed.
                                type: integer
                              queryParams:
                                additionalProperties:
                                  oneOf:
                                  - not:
                                      anyOf:
                                      - required:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
Back to top