Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 618 for band (0.06 sec)

  1. pkg/workloadapi/workload.pb.go

    	// A list of authorization policies applicable to this workload.
    	// NOTE: this *only* includes Selector based policies. Namespace and global polices
    	// are returned out of band.
    	// Authorization policies are only valid for workloads with `addresses` rather than `hostname`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // We extract the diagonals from k[0] up to and including k[1].
        // Addressing is 0 for the main diagonal. (So k = [0, 0] would just extract
        // the main diagonal). It's negative for subdiagonals (under and to the left
        // of the main diagonal) and positive for superdiagonals (above and to the
        // right of the main diagonal).
        int64_t k[2];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. src/go/printer/testdata/slow.golden

    	}
    }
    
    type Foo struct {
    	bar	*Bar
    	bang	*Bar
    }
    
    type Bar struct {
    	baz	*Baz
    	foo	[]*Foo
    }
    
    type Baz struct {
    	entries		map[int]interface{}
    	whatever	string
    }
    
    func newFoo() *Foo {
    	return &Foo{bar: &Bar{baz: &Baz{
    		entries: map[int]interface{}{
    			42:	&Foo{},
    			21:	&Bar{},
    			11:	&Baz{whatever: "it's just a test"}}}},
    		bang: &Bar{foo: []*Foo{
    			&Foo{bar: &Bar{baz: &Baz{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
  4. src/math/rand/v2/rand.go

    type Source interface {
    	Uint64() uint64
    }
    
    // A Rand is a source of random numbers.
    type Rand struct {
    	src Source
    }
    
    // New returns a new Rand that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	return &Rand{src: src}
    }
    
    // Int64 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *Rand) Int64() int64 { return int64(r.src.Uint64() &^ (1 << 63)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/math/rand/rand.go

    	readPos int8
    }
    
    // New returns a new [Rand] that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	s64, _ := src.(Source64)
    	return &Rand{src: src, s64: s64}
    }
    
    // Seed uses the provided seed value to initialize the generator to a deterministic state.
    // Seed should not be called concurrently with any other [Rand] method.
    func (r *Rand) Seed(seed int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K 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/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)
  8. src/crypto/rand/rand.go

    // 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)
    //     if available, and /dev/urandom otherwise.
    //   - On macOS and iOS, Reader uses arc4random_buf(3).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/runtime/rand.go

    	unlock(&globalRand.lock)
    }
    
    // rand32 is uint32(rand()), called from compiler-generated code.
    //
    //go:nosplit
    func rand32() uint32 {
    	return uint32(rand())
    }
    
    // rand returns a random uint64 from the per-m chacha8 state.
    // Do not change signature: used via linkname from other packages.
    //
    //go:nosplit
    //go:linkname rand
    func rand() uint64 {
    	// Note: We avoid acquirem here so that in the fast path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 11 11:02:01 UTC 2018
    - 3.5K bytes
    - Viewed (0)
Back to top