Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for benchmarkPutObject (0.21 sec)

  1. cmd/object-api-putobject_test.go

    	benchmarkPutObject(b, "FS", 10*humanize.KiByte)
    }
    
    // BenchmarkPutObject10KbErasure - Benchmark Erasure.PutObject() for object size of 10KB.
    func BenchmarkPutObject10KbErasure(b *testing.B) {
    	benchmarkPutObject(b, "Erasure", 10*humanize.KiByte)
    }
    
    // BenchmarkPutObject100KbFS - Benchmark FS.PutObject() for object size of 100KB.
    func BenchmarkPutObject100KbFS(b *testing.B) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 25.8K bytes
    - Viewed (0)
  2. cmd/benchmark-utils_test.go

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