Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for autotune (0.38 sec)

  1. cmd/speedtest.go

    )
    
    const speedTest = "speedtest"
    
    type speedTestOpts struct {
    	objectSize       int
    	concurrencyStart int
    	concurrency      int
    	duration         time.Duration
    	autotune         bool
    	storageClass     string
    	bucketName       string
    	enableSha256     bool
    }
    
    // Get the max throughput and iops numbers.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Jan 28 18:04:17 GMT 2024
    - 9K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	if !sufficientCapacity {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, AdminError{
    			Code:       "XMinioSpeedtestInsufficientCapacity",
    			Message:    capacityErrMsg,
    			StatusCode: http.StatusInsufficientStorage,
    		}), r.URL)
    		return
    	}
    
    	if autotune && !canAutotune {
    		autotune = false
    	}
    
    	if customBucket == "" {
    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)
Back to top