Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for QueryParams (0.13 sec)

  1. cmd/signature-v4_test.go

    	testCases := []struct {
    		queryParams map[string]string
    		headers     map[string]string
    		region      string
    		expected    APIErrorCode
    	}{
    		// (0) Should error without a set URL query.
    		{
    			region:   globalMinioDefaultRegion,
    			expected: ErrInvalidQueryParams,
    		},
    		// (1) Should error on an invalid access key.
    		{
    			queryParams: map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package queryparams provides conversion from versioned
    // runtime objects to URL query values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 747 bytes
    - Viewed (0)
  3. cmd/signature-v2_test.go

    		secretKey = globalActiveCred.SecretKey
    	)
    	testCases := []struct {
    		queryParams map[string]string
    		expected    APIErrorCode
    	}{
    		// (0) Should error without a set URL query.
    		{
    			expected: ErrInvalidQueryParams,
    		},
    		// (1) Should error on an invalid access key.
    		{
    			queryParams: map[string]string{
    				"Expires":        "60",
    				"Signature":      "badsignature",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/duplicate-query-match.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: duplicate-query-match
    spec:
      rules:
      - matches:
        - queryParams:
          - name: foo
            value: bar
          - name: foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 223 bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			{name: "post-ignore-validation", path: "/namespaces/default/simples", verb: "POST", data: validJSONDataPost, queryParams: ignoreFieldValidation, expectedStatusCode: http.StatusCreated},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  7. pkg/config/validation/virtualservice_test.go

    				},
    			}},
    		}, valid: true},
    		{
    			name: "prefix queryParams match", route: &networking.HTTPRoute{
    				Delegate: &networking.Delegate{
    					Name:      "test",
    					Namespace: "test",
    				},
    				Match: []*networking.HTTPMatchRequest{{
    					QueryParams: map[string]*networking.StringMatch{
    						"q": {
    							MatchType: &networking.StringMatch_Prefix{Prefix: "test"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/basic-http.yaml

            type: PathPrefix
            value: /bar
        backendRefs:
        - name: my-service1
          port: 8080
      - matches:
        - headers:
          - type: Exact
            name: magic
            value: foo
          queryParams:
          - type: Exact
            name: great
            value: example
          path:
            type: PathPrefix
            value: /some/thing
          method: GET
        backendRefs:
        - name: my-service2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. fastapi/datastructures.py

    from starlette.datastructures import FormData as FormData  # noqa: F401
    from starlette.datastructures import Headers as Headers  # noqa: F401
    from starlette.datastructures import QueryParams as QueryParams  # noqa: F401
    from starlette.datastructures import State as State  # noqa: F401
    from starlette.datastructures import UploadFile as StarletteUploadFile
    from typing_extensions import Annotated, Doc
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice.go

    	out.Headers = maps.MergeCopy(root.Headers, delegate.Headers)
    
    	// withoutheaders
    	out.WithoutHeaders = maps.MergeCopy(root.WithoutHeaders, delegate.WithoutHeaders)
    
    	// queryparams
    	out.QueryParams = maps.MergeCopy(root.QueryParams, delegate.QueryParams)
    
    	if out.Port == 0 {
    		out.Port = root.Port
    	}
    
    	// SourceLabels
    	out.SourceLabels = maps.MergeCopy(root.SourceLabels, delegate.SourceLabels)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top