Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for QueryParams (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                    : true'
                              queryParams:
                                description: |-
                                  QueryParams specifies HTTP query parameter matchers. Multiple match
                                  values are ANDed together, meaning, a request must match all the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top