Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for benchmarkPutObjectPart (0.23 sec)

  1. cmd/object-api-multipart_test.go

    func BenchmarkPutObjectPart5MbFS(b *testing.B) {
    	benchmarkPutObjectPart(b, "FS", 5*humanize.MiByte)
    }
    
    // BenchmarkPutObjectPart5MbErasure - Benchmark Erasure.PutObjectPart() for object size of 5MB.
    func BenchmarkPutObjectPart5MbErasure(b *testing.B) {
    	benchmarkPutObjectPart(b, "Erasure", 5*humanize.MiByte)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  2. cmd/benchmark-utils_test.go

    			}
    		}
    	}
    	// Benchmark ends here. Stop timer.
    	b.StopTimer()
    }
    
    // creates Erasure/FS backend setup, obtains the object layer and calls the runPutObjectPartBenchmark function.
    func benchmarkPutObjectPart(b *testing.B, instanceType string, objSize int) {
    	// create a temp Erasure/FS backend.
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Dec 23 15:46:00 GMT 2022
    - 8.2K bytes
    - Viewed (0)
Back to top