Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 636 for tent (0.04 sec)

  1. cmd/storage-rest-server.go

    // operations, such as bitrot verification or data usage scanning.
    // Every 10 seconds a space character is sent.
    // keepHTTPReqResponseAlive will wait for the returned body to be read before starting the ticker.
    // The returned function should always be called to release resources.
    // An optional error can be sent which will be picked as text only error,
    // without its original type by the receiver.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_tls13.go

    		// replace a server or join a pool. That's the same requirement that
    		// applies to mixing or replacing with any TLS 1.2 server.
    		c.sendAlert(alertUnsupportedExtension)
    		return errors.New("tls: client sent unexpected early data")
    	}
    
    	hs.hello.sessionId = hs.clientHello.sessionId
    	hs.hello.compressionMethod = compressionNone
    
    	preferenceList := defaultCipherSuitesTLS13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. cmd/http-stats.go

    		internodeInputBytes:  s.getInternodeInputBytes(),  // Traffic internode received
    		internodeOutputBytes: s.getInternodeOutputBytes(), // Traffic internode sent
    		s3InputBytes:         s.getS3InputBytes(),         // Traffic S3 received
    		s3OutputBytes:        s.getS3OutputBytes(),        // Traffic S3 sent
    	}
    }
    
    // Prepare new ConnStats structure
    func newConnStats() *connStats {
    	return &connStats{}
    }
    
    type bucketS3RXTX struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/request-files.md

        E.g. `pip install python-multipart`.
    
        This is because uploaded files are sent as "form data".
    
    ## Import `File`
    
    Import `File` and `UploadFile` from `fastapi`:
    
    === "Python 3.9+"
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/request_files/tutorial001_an_py39.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// The stage for events generated once the response headers are sent, but before the response body
    	// is sent. This stage is only generated for long-running requests (e.g. watch).
    	StageResponseStarted Stage = "ResponseStarted"
    	// The stage for events generated once the response body has been completed, and no more bytes
    	// will be sent.
    	StageResponseComplete Stage = "ResponseComplete"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

                      checks [Default: Enabled]'
                    type: string
                  logSeverityScreen:
                    description: 'LogSeverityScreen is the log severity above which logs
                      are sent to the stdout. [Default: Info]'
                    type: string
                required:
                - controllers
                type: object
              status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  7. pkg/zdsapi/zds.pb.go

    }
    
    func (x *AddWorkload) GetWorkloadInfo() *WorkloadInfo {
    	if x != nil {
    		return x.WorkloadInfo
    	}
    	return nil
    }
    
    // Keep workload that we can't find in the fd cache. This can only be sent before SnapshotSent is sent
    // to signal ztunnel to not delete the workload if it has it.
    type KeepWorkload struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. src/net/http/fs.go

    // the ETag and remaining text after consuming ETag is returned. Otherwise,
    // it returns "", "".
    func scanETag(s string) (etag string, remain string) {
    	s = textproto.TrimString(s)
    	start := 0
    	if strings.HasPrefix(s, "W/") {
    		start = 2
    	}
    	if len(s[start:]) < 2 || s[start] != '"' {
    		return "", ""
    	}
    	// ETag is either W/"text" or "text".
    	// See RFC 7232 2.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. fastapi/security/oauth2.py

                ),
            ] = "",
            client_id: Annotated[
                Union[str, None],
                Form(),
                Doc(
                    """
                    If there's a `client_id`, it can be sent as part of the form fields.
                    But the OAuth2 specification recommends sending the `client_id` and
                    `client_secret` (if any) using HTTP Basic auth.
                    """
                ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/net/http/httputil/reverseproxy.go

    func (p *ReverseProxy) flushInterval(res *http.Response) time.Duration {
    	resCT := res.Header.Get("Content-Type")
    
    	// For Server-Sent Events responses, flush immediately.
    	// The MIME type is defined in https://www.w3.org/TR/eventsource/#text-event-stream
    	if baseCT, _, _ := mime.ParseMediaType(resCT); baseCT == "text/event-stream" {
    		return -1 // negative means immediately
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top