Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 466 for tent (0.2 sec)

  1. cmd/metrics.go

    func networkMetricsPrometheus(ch chan<- prometheus.Metric) {
    	connStats := globalConnStats.toServerConnStats()
    
    	// Network Sent/Received Bytes (internode)
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(interNodeNamespace, "tx", "bytes_total"),
    			"Total number of bytes sent to the other peer nodes by current MinIO server instance",
    			nil, nil),
    		prometheus.CounterValue,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/ztunnel-dashboard.gen.json

             "type": "timeseries"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Bytes sent and recieved per instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	startTime time.Time
    
    	// inputC is sent values to fuzz by the coordinator. Any worker may receive
    	// values from this channel. Workers send results to resultC.
    	inputC chan fuzzInput
    
    	// minimizeC is sent values to minimize by the coordinator. Any worker may
    	// receive values from this channel. Workers send results to resultC.
    	minimizeC chan fuzzMinimizeInput
    
    	// resultC is sent results of fuzzing by workers. The coordinator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top