Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 260 for rand1 (0.06 sec)

  1. src/runtime/rand.go

    	mp.chacha8.Init64(seed)
    	mp.cheaprand = rand()
    }
    
    // randn is like rand() % n but faster.
    // Do not change signature: used via linkname from other packages.
    //
    //go:nosplit
    //go:linkname randn
    func randn(n uint32) uint32 {
    	// See https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/
    	return uint32((uint64(uint32(rand())) * uint64(n)) >> 32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/rand/rand.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package rand provides utilities related to randomization.
    package rand
    
    import (
    	"math/rand"
    	"sync"
    	"time"
    )
    
    var rng = struct {
    	sync.Mutex
    	rand *rand.Rand
    }{
    	rand: rand.New(rand.NewSource(time.Now().UnixNano())),
    }
    
    // Int returns a non-negative pseudo-random int.
    func Int() int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 11 11:02:01 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/cmd/bisect/rand.go

    // license that can be found in the LICENSE file.
    
    // Starting in Go 1.20, the global rand is auto-seeded,
    // with a better value than the current Unix nanoseconds.
    // Only seed if we're using older versions of Go.
    
    //go:build !go1.20
    
    package main
    
    import (
    	"math/rand"
    	"time"
    )
    
    func init() {
    	rand.Seed(time.Now().UnixNano())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 442 bytes
    - Viewed (0)
  4. src/crypto/rand/rand.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package rand implements a cryptographically secure
    // random number generator.
    package rand
    
    import "io"
    
    // Reader is a global, shared instance of a cryptographically
    // secure random number generator.
    //
    //   - On Linux, FreeBSD, Dragonfly, and Solaris, Reader uses getrandom(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc_test.go

    				classes[j].target = classes[j].lowerBound + rands.Float64()
    				lowSum += classes[j].lowerBound
    				highSum += classes[j].upperBound
    			})
    		default:
    			style = "not-set-by-bounds"
    			for j := 0; j < probLen; j++ {
    				x := math.Max(0, rands.Float64()*5-1)
    				classes[j].lowerBound = x
    				classes[j].target = x + 2*rands.Float64()
    				classes[j].upperBound = x + 3*rands.Float64()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 18:17:27 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/rand.go

    qmuntal <******@****.***> 1689090977 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 696 bytes
    - Viewed (0)
  7. src/compress/flate/testdata/huffman-rand-limit.golden

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 252 bytes
    - Viewed (0)
  8. src/compress/flate/testdata/huffman-rand-limit.in

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 247 bytes
    - Viewed (0)
  9. src/compress/flate/testdata/huffman-rand-1k.wb.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 1005 bytes
    - Viewed (0)
  10. src/compress/flate/testdata/huffman-rand-limit.dyn.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 229 bytes
    - Viewed (0)
Back to top