Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkConcatImplementation (0.1 sec)

  1. cmd/object-api-utils_test.go

    			concatNaive(data...)
    		}
    	})
    	b.Run("concat fast", func(b *testing.B) {
    		b.ResetTimer()
    		b.ReportAllocs()
    		for i := 0; i < b.N; i++ {
    			concat(data...)
    		}
    	})
    }
    
    func BenchmarkConcatImplementation(b *testing.B) {
    	data := make([]string, 2)
    	rng := rand.New(rand.NewSource(0))
    	for i := 0; i < 2; i++ {
    		var tmp [16]byte
    		rng.Read(tmp[:])
    		data[i] = hex.EncodeToString(tmp[:])
    	}
    	b.ResetTimer()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 08 15:29:58 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top