Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 132 for badlen (0.17 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    gy":false}}},"tracing":{"enabled":false,"ingress":{"enabled":false},"jaeger":{"accessMode":"ReadWriteMany","enabled":false,"hub":"docker.io/jaegertracing","memory":{"max_traces":50000},"namespace":"istio-system","persist":false,"spanStorageType":"badger","storageClassName":"","tag":"1.20"},"nodeSelector":{},"opencensus":{"exporters":{"stackdriver":{"enable_tracing":true}},"hub":"docker.io/omnition","resources":{"limits":{"cpu":"1","memory":"2Gi"},"requests":{"cpu":"200m","memory":"400Mi"}},"tag"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/runtime/os_windows.go

    )
    
    // writeConsole writes bufLen bytes from buf to the console File.
    // It returns the number of bytes written.
    func writeConsole(handle uintptr, buf unsafe.Pointer, bufLen int32) int {
    	const surr2 = (surrogateMin + surrogateMax + 1) / 2
    
    	// Do not use defer for unlock. May cause issues when printing a panic.
    	lock(&utf16ConsoleBackLock)
    
    	b := (*[1 << 30]byte)(buf)[:bufLen]
    	s := *(*string)(unsafe.Pointer(&b))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_test.go

    	}
    	if err := quick.Check(f1, nil); err != nil {
    		t.Error(err)
    	}
    }
    
    // fromBig sets v = n, and returns v. The bit length of n must not exceed 256.
    func (v *Element) fromBig(n *big.Int) *Element {
    	if n.BitLen() > 32*8 {
    		panic("edwards25519: invalid field element input size")
    	}
    
    	buf := make([]byte, 0, 32)
    	for _, word := range n.Bits() {
    		for i := 0; i < bits.UintSize; i += 8 {
    			if len(buf) >= cap(buf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_openbsd_mips64.go

    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, \
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    	SYS_DUP3           = 102 // { int sys_dup3(int from, int to, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 14.9K bytes
    - Viewed (0)
  5. src/math/big/natconv_test.go

    }
    
    func itoa(x nat, base int) []byte {
    	// special cases
    	switch {
    	case base < 2:
    		panic("illegal base")
    	case len(x) == 0:
    		return []byte("0")
    	}
    
    	// allocate buffer for conversion
    	i := x.bitLen()/log2(Word(base)) + 1 // +1: round up
    	s := make([]byte, i)
    
    	// don't destroy x
    	q := nat(nil).set(x)
    
    	// convert
    	for len(q) > 0 {
    		i--
    		var r Word
    		q, r = q.divW(q, Word(base))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    gy":false}}},"tracing":{"enabled":false,"ingress":{"enabled":false},"jaeger":{"accessMode":"ReadWriteMany","enabled":false,"hub":"docker.io/jaegertracing","memory":{"max_traces":50000},"namespace":"istio-system","persist":false,"spanStorageType":"badger","storageClassName":"","tag":"1.20"},"nodeSelector":{},"opencensus":{"exporters":{"stackdriver":{"enable_tracing":true}},"hub":"docker.io/omnition","resources":{"limits":{"cpu":"1","memory":"2Gi"},"requests":{"cpu":"200m","memory":"400Mi"}},"tag"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/go/constant/value_test.go

    }{
    	{0, 0},
    	{1, 1},
    	{-16, 5},
    	{1 << 61, 62},
    	{1 << 62, 63},
    	{-1 << 62, 63},
    	{-1 << 63, 64},
    }
    
    func TestBitLen(t *testing.T) {
    	for _, test := range bitLenTests {
    		if got := BitLen(MakeInt64(test.val)); got != test.want {
    			t.Errorf("%v: got %v, want %v", test.val, got, test.want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  8. src/math/big/float.go

    // If z's precision is 0, it is changed to the larger of x.BitLen()
    // or 64 (and rounding will have no effect).
    func (z *Float) SetInt(x *Int) *Float {
    	// TODO(gri) can be more efficient if z.prec > 0
    	// but small compared to the size of x, or if there
    	// are many trailing 0's.
    	bits := uint32(x.BitLen())
    	if z.prec == 0 {
    		z.prec = umax32(bits, 64)
    	}
    	z.acc = Exact
    	z.neg = x.neg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_GETPEERNAME              = 31  // { int getpeername(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }
    	SYS_GETSOCKNAME              = 32  // { int getsockname(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }
    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_GETPEERNAME              = 31  // { int getpeername(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }
    	SYS_GETSOCKNAME              = 32  // { int getsockname(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }
    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top