Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for requestKind (0.3 sec)

  1. src/cmd/go/internal/test/test.go

    			// testdata during fuzzing, nor do we want to fail with surprising errors
    			// if GOROOT isn't writable (as is often the case for Go toolchains
    			// installed through package managers).
    			//
    			// If the user is requesting to fuzz a standard-library package, ensure
    			// that they are in the same module as that package (just like when
    			// fuzzing any other package).
    			if strings.HasPrefix(pkgs[0].ImportPath, "cmd/") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	// HTTP request.
    	//
    	// This is unrelated to the similarly named TCP keep-alives.
    	DisableKeepAlives bool
    
    	// DisableCompression, if true, prevents the Transport from
    	// requesting compression with an "Accept-Encoding: gzip"
    	// request header when the Request contains no existing
    	// Accept-Encoding value. If the Transport requests gzip on
    	// its own and gets a gzipped response, it's transparently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                              type: boolean
                            allowHeaders:
                              description: List of HTTP headers that can be used when
                                requesting the resource.
                              items:
                                type: string
                              type: array
                            allowMethods:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                              type: boolean
                            allowHeaders:
                              description: List of HTTP headers that can be used when
                                requesting the resource.
                              items:
                                type: string
                              type: array
                            allowMethods:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    				getAPIError(ErrNoSuchKey),
    				getGetObjectURL("", bucketName, "abcd"), "", "")),
    			expectedRespStatus: http.StatusNotFound,
    		},
    		// Test case - 3.
    		// Requesting from range 10-100.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			byteRange:  "bytes=10-100",
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    		if _, err := cst.c.Get(cst.ts.URL); err != nil {
    			if tooShort(err) {
    				continue
    			}
    			t.Fatalf("got error: %s", err)
    		}
    	}
    }
    
    // This tests that a client requesting a content range won't also
    // implicitly ask for gzip support. If they want that, they need to do it
    // on their own.
    // golang.org/issue/8923
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	expectTest(100, "100-continue", true, "100 Continue"),
    	expectTest(100, "100-cOntInUE", true, "100 Continue"),
    
    	// No 100-continue.
    	expectTest(100, "", true, "200 OK"),
    
    	// 100-continue but requesting client to deny us,
    	// so it never reads the body.
    	expectTest(100, "100-continue", false, "401 Unauthorized"),
    	// Likewise without 100-continue:
    	expectTest(100, "", false, "401 Unauthorized"),
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	PortHeader = "port"
    	// Name of header that specifies a request ID used to associate the error
    	// and data streams for a single forwarded connection
    	PortForwardRequestIDHeader = "requestID"
    )
    
    // ComponentConditionType defines type and constants for component health validation.
    type ComponentConditionType string
    
    // These are the valid conditions for the component.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	// ConnPool optionally specifies an alternate connection pool to use.
    	// If nil, the default is used.
    	ConnPool http2ClientConnPool
    
    	// DisableCompression, if true, prevents the Transport from
    	// requesting compression with an "Accept-Encoding: gzip"
    	// request header when the Request contains no existing
    	// Accept-Encoding value. If the Transport requests gzip on
    	// its own and gets a gzipped response, it's transparently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    							Description: "Information about the requesting user. See user.Info interface for details.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"uid": {
    						SchemaProps: spec.SchemaProps{
    							Description: "UID information about the requesting user. See user.Info interface for details.",
    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top