Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RunParallel (0.07 sec)

  1. lib/fips140/v1.1.0-rc1.zip

    can be found in the LICENSE file. package drbg import ( "crypto/internal/fips140" "testing" ) func BenchmarkDBRG(b *testing.B) { old := fips140.Enabled defer func() { fips140.Enabled = old }() fips140.Enabled = true const N = 64 b.SetBytes(N) b.RunParallel(func(pb *testing.PB) { buf := make([]byte, N) for pb.Next() { Read(buf) } }) } golang.org/fips140@v1.1.0-rc1/fips140/v1.1.0-rc1/ecdh/cast.go // Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top