Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/metrics-v2.go

    	mg := &MetricsGroupV2{
    		cacheInterval: 10 * time.Second,
    	}
    	mg.RegisterRead(func(ctx context.Context) []MetricV2 {
    		return getHistogramMetrics(bucketHTTPRequestsDuration,
    			getBucketTTFBDistributionMD(), true)
    	})
    	return mg
    }
    
    func getS3TTFBMetric() *MetricsGroupV2 {
    	mg := &MetricsGroupV2{
    		cacheInterval: 10 * time.Second,
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  2. cmd/data-usage-cache_gen.go

    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *dataUsageEntry) EncodeMsg(en *msgp.Writer) (err error) {
    	// check for omitted fields
    	zb0001Len := uint32(10)
    	var zb0001Mask uint16 /* 10 bits */
    	_ = zb0001Mask
    	if z.ReplicationStats == nil {
    		zb0001Len--
    		zb0001Mask |= 0x80
    	}
    	if z.AllTierStats == nil {
    		zb0001Len--
    		zb0001Mask |= 0x100
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 100.8K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	// also has expected response data.
    	testCases := []struct {
    		byteRange      string
    		expectedString string
    	}{
    		// request for byte range 10-11.
    		// expecting the result to contain only putContent[10:12] bytes.
    		{"10-11", putContent[10:12]},
    		// request for object data after the first byte.
    		{"1-", putContent[1:]},
    		// request for object data after the first byte.
    		{"6-", putContent[6:]},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    						if err != nil {
    							start, rangeLen = 0, ci.Size
    						}
    
    						// Set content length.
    						w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    						if rs != nil {
    							contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, ci.Size)
    							w.Header().Set(xhttp.ContentRange, contentRange)
    						}
    
    						io.Copy(w, bytes.NewReader(ci.Data))
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  5. internal/s3select/csv/testdata/testdata.zip

    19:27:00,N,1,-73.863761901855469,40.732769012451172,-73.87249755859375,40.742450714111328,1,1.92,10,0,0.5,0,0,,,10.5,2,1,196,82,green,0.00,0.0,0.0,63,41,6.93,1288,717.02,4,Queens,071702,4071702,I,QN18,Rego Park,4108,661,461,4,Queens,046100,4046100,E,QN29,Elmhurst,4107^3389326,2,2014-03-15 17:56:29,2014-03-15 17:57:21,N,5,-73.863265991210937,40.734638214111328,-73.929191589355469,40.861343383789063,1,0.00,10,0,0,0,0,,,10,1,2,196,243,green,0.00,0.0,0.0,58,42,8.95,1288,717.02,4,Queens,071702,4071702,I,QN18,Rego...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    		case <-ctx.Done():
    			// server could be restarting - need
    			// to exit immediately
    			return
    		}
    	}
    }
    
    const (
    	resyncWorkerCnt        = 10 // limit of number of bucket resyncs is progress at any given time
    	resyncParallelRoutines = 10 // number of parallel resync ops per bucket
    )
    
    func newresyncer() *replicationResyncer {
    	rs := replicationResyncer{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  7. cmd/site-replication.go

    	ctx, cancel := globalLeaderLock.GetLock(ctx)
    	defer cancel()
    
    	healTimer := time.NewTimer(siteHealTimeInterval)
    	defer healTimer.Stop()
    
    	var maxRefreshDurationSecondsForLog float64 = 10 // 10 seconds..
    
    	for {
    		select {
    		case <-healTimer.C:
    			c.RLock()
    			enabled := c.enabled
    			c.RUnlock()
    			if enabled {
    				refreshStart := time.Now()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  8. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

            "h": 6,
            "w": 12,
            "x": 0,
            "y": 0
          },
          "id": 52,
          "options": {
            "displayMode": "basic",
            "maxVizHeight": 300,
            "minVizHeight": 10,
            "minVizWidth": 0,
            "namePlacement": "auto",
            "orientation": "horizontal",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
    Json
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 102K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.TopLocksAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	count := 10 // by default list only top 10 entries
    	if countStr := r.Form.Get("count"); countStr != "" {
    		var err error
    		count, err = strconv.Atoi(countStr)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  10. cmd/object-handlers_test.go

    			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,
    
    			expectedContent:    bytesData[0].byteData[10:101],
    			expectedRespStatus: http.StatusPartialContent,
    		},
    		// Test case - 4.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top