Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 132 for badlen (0.13 sec)

  1. src/syscall/zsysnum_openbsd_riscv64.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: Wed Oct 04 02:55:38 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. src/runtime/alg.go

    //   - github.com/puzpuzpuz/xsync/v2
    //   - github.com/puzpuzpuz/xsync/v3
    //   - github.com/segmentio/parquet-go
    //   - github.com/parquet-go/parquet-go
    //   - github.com/authzed/spicedb
    //   - github.com/pingcap/badger
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname memhash
    func memhash(p unsafe.Pointer, h, s uintptr) uintptr
    
    // memhash32 should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    		"1.2",
    		"3.14159265",
    		// TODO(gri) expand
    	} {
    		var x Rat
    		_, ok := x.SetString(want)
    		if !ok {
    			t.Errorf("invalid fraction %s", want)
    			continue
    		}
    		n := max(x.Num().BitLen(), x.Denom().BitLen())
    
    		var f1, f2 Float
    		f2.SetPrec(1000)
    		f1.SetRat(&x)
    		f2.SetRat(&x)
    
    		// check precision when set automatically
    		if n < 64 {
    			n = 64
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_GETPEERNAME    = 31  // { int sys_getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }
    	SYS_GETSOCKNAME    = 32  // { int sys_getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }
    	SYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }
    	SYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	tests := []struct {
    		bytes  []byte
    		bitLen int
    	}{
    		{nil, 0},
    		{[]byte{0x00}, 0},
    		{[]byte{0x00, 0x00}, 0},
    		{[]byte{0xf0}, 4},
    		{[]byte{0x88}, 5},
    		{[]byte{0xff}, 8},
    		{[]byte{0xff, 0x80}, 9},
    		{[]byte{0xff, 0x81}, 16},
    	}
    
    	for i, test := range tests {
    		if got := asn1BitLength(test.bytes); got != test.bitLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_GETPEERNAME    = 31  // { int sys_getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }
    	SYS_GETSOCKNAME    = 32  // { int sys_getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }
    	SYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }
    	SYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    			ipAddr = ipp.Addr()
    			maxCidrPrefix = uint32(ipp.Bits())
    		} else {
    			ipa, err := netip.ParseAddr(m)
    			if err != nil {
    				continue
    			}
    
    			ipAddr = ipa
    			maxCidrPrefix = uint32(ipAddr.BitLen())
    		}
    
    		res = append(res, &security.Address{
    			Address: ipAddr.AsSlice(),
    			Length:  maxCidrPrefix,
    		})
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    func (selfRelativeSD *SECURITY_DESCRIPTOR) copySelfRelativeSecurityDescriptor() *SECURITY_DESCRIPTOR {
    	sdLen := int(selfRelativeSD.Length())
    	const min = int(unsafe.Sizeof(SECURITY_DESCRIPTOR{}))
    	if sdLen < min {
    		sdLen = min
    	}
    
    	src := unsafe.Slice((*byte)(unsafe.Pointer(selfRelativeSD)), sdLen)
    	// SECURITY_DESCRIPTOR has pointers in it, which means checkptr expects for it to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. pkg/util/iptree/iptree.go

    // or, if IPv4, the broadcast address (RFC 1878).
    func (t *Tree[T]) GetHostIPPrefixMatches(ip netip.Addr) map[netip.Prefix]T {
    	// walk the tree to find all the prefixes containing this IP
    	ipPrefix := netip.PrefixFrom(ip, ip.BitLen())
    	prefixes := map[netip.Prefix]T{}
    	t.WalkPath(ipPrefix, func(k netip.Prefix, v T) bool {
    		if prefixContainIP(k, ipPrefix.Addr()) {
    			prefixes[k] = v
    		}
    		return false
    	})
    	return prefixes
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/transform/transform.go

    		i++
    		low = i
    	}
    
    	// If c.errStart > 0, this means we found a fatal error.  We will clear
    	// all upstream buffers. At this point, no more progress can be made
    	// downstream, as Transform would have bailed while handling ErrShortDst.
    	if c.errStart > 0 {
    		for i := 1; i < c.errStart; i++ {
    			c.link[i].p, c.link[i].n = 0, 0
    		}
    		err, c.errStart, c.err = c.err, 0, nil
    	}
    	return dstL.n, srcL.p, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top