Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 332 for vand (0.04 sec)

  1. src/compress/flate/testdata/huffman-rand-1k.dyn.expect

    Klaus Post <******@****.***> 1460282413 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 18 02:30:46 UTC 2016
    - 1005 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding.go

    	}
    }
    
    // DealIntoHand shuffles and deals according to the Dealer's parameters,
    // using the given hashValue as the source of entropy and then
    // returns the dealt cards as a slice of `int`.
    // If `hand` has the correct length as Dealer's handSize, it will be used as-is and no allocations will be made.
    // If `hand` is nil or too small, it will be extended (performing an allocation).
    // If `hand` is too large, a sub-slice will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 08:38:03 UTC 2019
    - 4K bytes
    - Viewed (0)
  3. src/archive/tar/testdata/file-and-dir.tar

    Caio Marcelo de Oliveira Filho <******@****.***> 1514852203 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 18:36:49 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  4. src/crypto/tls/generate_cert.go

    	case "":
    		if *ed25519Key {
    			_, priv, err = ed25519.GenerateKey(rand.Reader)
    		} else {
    			priv, err = rsa.GenerateKey(rand.Reader, *rsaBits)
    		}
    	case "P224":
    		priv, err = ecdsa.GenerateKey(elliptic.P224(), rand.Reader)
    	case "P256":
    		priv, err = ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    	case "P384":
    		priv, err = ecdsa.GenerateKey(elliptic.P384(), rand.Reader)
    	case "P521":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:22:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. src/compress/flate/testdata/huffman-rand-limit.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
    - 186 bytes
    - Viewed (0)
  6. src/go/doc/testdata/pkgdoc/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package pkgdoc
    
    import (
    	crand "crypto/rand"
    	"math/rand"
    )
    
    type T int
    
    type U int
    
    func (T) M() {}
    
    var _ = rand.Int
    var _ = crand.Reader
    
    type G[T any] struct{ x T }
    
    func (g G[T]) M1() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 06:33:18 UTC 2022
    - 376 bytes
    - Viewed (0)
  7. src/crypto/rand/example_test.go

    // license that can be found in the LICENSE file.
    
    package rand_test
    
    import (
    	"bytes"
    	"crypto/rand"
    	"fmt"
    )
    
    // This example reads 10 cryptographically secure pseudorandom numbers from
    // rand.Reader and writes them to a byte slice.
    func ExampleRead() {
    	c := 10
    	b := make([]byte, c)
    	_, err := rand.Read(b)
    	if err != nil {
    		fmt.Println("error:", err)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 621 bytes
    - Viewed (0)
  8. src/crypto/ecdsa/example_test.go

    package ecdsa_test
    
    import (
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/sha256"
    	"fmt"
    )
    
    func Example() {
    	privateKey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    	if err != nil {
    		panic(err)
    	}
    
    	msg := "hello, world"
    	hash := sha256.Sum256([]byte(msg))
    
    	sig, err := ecdsa.SignASN1(rand.Reader, privateKey, hash[:])
    	if err != nil {
    		panic(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 21 19:38:55 UTC 2020
    - 686 bytes
    - Viewed (0)
  9. cmd/erasure-common.go

    package cmd
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"math/rand"
    	"sync"
    	"time"
    
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    func (er erasureObjects) getOnlineDisks() (newDisks []StorageAPI) {
    	disks := er.getDisks()
    	var wg sync.WaitGroup
    	var mu sync.Mutex
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    	for _, i := range r.Perm(len(disks)) {
    		i := i
    		wg.Add(1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. 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)
Back to top