Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for uint16 (0.12 sec)

  1. src/cmd/internal/goobj/builtinlist.go

    	{"type:int8", 0},
    	{"type:*int8", 0},
    	{"type:uint8", 0},
    	{"type:*uint8", 0},
    	{"type:int16", 0},
    	{"type:*int16", 0},
    	{"type:uint16", 0},
    	{"type:*uint16", 0},
    	{"type:int32", 0},
    	{"type:*int32", 0},
    	{"type:uint32", 0},
    	{"type:*uint32", 0},
    	{"type:int64", 0},
    	{"type:*int64", 0},
    	{"type:uint64", 0},
    	{"type:*uint64", 0},
    	{"type:float32", 0},
    	{"type:*float32", 0},
    	{"type:float64", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. internal/http/transports.go

    	LookupHost  LookupHost  // Custom lookupHost, is nil on containerized deployments.
    	DialTimeout time.Duration
    
    	// TLS Settings
    	RootCAs          *x509.CertPool
    	CipherSuites     []uint16
    	CurvePreferences []tls.CurveID
    
    	// HTTP2
    	EnableHTTP2 bool
    
    	// TCP Options
    	TCPOptions TCPOptions
    }
    
    func (s ConnSettings) getDefaultTransport(maxIdleConnsPerHost int) *http.Transport {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/prometheus/kube.go

    		}
    		pod := pods[0]
    
    		svc, err := cls.Kube().CoreV1().Services(cfg.TelemetryNamespace).Get(context.TODO(), serviceName, metav1.GetOptions{})
    		if err != nil {
    			return nil, err
    		}
    		port := uint16(svc.Spec.Ports[0].Port)
    
    		forwarder, err := cls.NewPortForwarder(pod.Name, pod.Namespace, "", 0, int(port))
    		if err != nil {
    			return nil, err
    		}
    
    		if err := forwarder.Start(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/log/slog/value_test.go

    		{[]Attr{Int("i", 3)}, GroupValue(Int("i", 3))},
    		{IntValue(4), IntValue(4)},
    		{uint(2), Uint64Value(2)},
    		{uint8(3), Uint64Value(3)},
    		{uint16(4), Uint64Value(4)},
    		{uint32(5), Uint64Value(5)},
    		{uint64(6), Uint64Value(6)},
    		{uintptr(7), Uint64Value(7)},
    		{int8(8), Int64Value(8)},
    		{int16(9), Int64Value(9)},
    		{int32(10), Int64Value(10)},
    		{int64(11), Int64Value(11)},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/crypto/tls/key_schedule.go

    // expandLabel implements HKDF-Expand-Label from RFC 8446, Section 7.1.
    func (c *cipherSuiteTLS13) expandLabel(secret []byte, label string, context []byte, length int) []byte {
    	var hkdfLabel cryptobyte.Builder
    	hkdfLabel.AddUint16(uint16(length))
    	hkdfLabel.AddUint8LengthPrefixed(func(b *cryptobyte.Builder) {
    		b.AddBytes([]byte("tls13 "))
    		b.AddBytes([]byte(label))
    	})
    	hkdfLabel.AddUint8LengthPrefixed(func(b *cryptobyte.Builder) {
    		b.AddBytes(context)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/runtime/netpoll_wasip1.go

    	// upper 16 bits, and index of the write subscription in the lower bits.
    	// A disarmed=^uint16(0) sentinel is used to represent no subscription.
    	// There is thus a maximum of 65535 total subscriptions.
    	pd.user = uint32(disarmed)<<16 | uint32(disarmed)
    
    	unlock(&mtx)
    	return 0
    }
    
    const disarmed = 0xFFFF
    
    func netpollarm(pd *pollDesc, mode int) {
    	lock(&mtx)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/const.go

    				return true
    			case Uint, Uintptr:
    				if s := uint(sizeof(typ)) * 8; s < 64 {
    					return 0 <= x && x <= int64(1)<<s-1
    				}
    				return 0 <= x
    			case Uint8:
    				const s = 8
    				return 0 <= x && x <= 1<<s-1
    			case Uint16:
    				const s = 16
    				return 0 <= x && x <= 1<<s-1
    			case Uint32:
    				const s = 32
    				return 0 <= x && x <= 1<<s-1
    			case Uint64:
    				return 0 <= x
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/internal/fmtsort/sort_test.go

    	ct(reflect.TypeOf(int8(0)), -1, 0, 1),
    	ct(reflect.TypeOf(int16(0)), -1, 0, 1),
    	ct(reflect.TypeOf(int32(0)), -1, 0, 1),
    	ct(reflect.TypeOf(int64(0)), -1, 0, 1),
    	ct(reflect.TypeOf(uint(0)), 0, 1, 5),
    	ct(reflect.TypeOf(uint8(0)), 0, 1, 5),
    	ct(reflect.TypeOf(uint16(0)), 0, 1, 5),
    	ct(reflect.TypeOf(uint32(0)), 0, 1, 5),
    	ct(reflect.TypeOf(uint64(0)), 0, 1, 5),
    	ct(reflect.TypeOf(uintptr(0)), 0, 1, 5),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_js.go

    	S_IWGRP = 020
    	S_IXGRP = 010
    
    	S_IRWXO = 07
    	S_IROTH = 04
    	S_IWOTH = 02
    	S_IXOTH = 01
    )
    
    type Stat_t struct {
    	Dev       int64
    	Ino       uint64
    	Mode      uint32
    	Nlink     uint32
    	Uid       uint32
    	Gid       uint32
    	Rdev      int64
    	Size      int64
    	Blksize   int32
    	Blocks    int32
    	Atime     int64
    	AtimeNsec int64
    	Mtime     int64
    	MtimeNsec int64
    	Ctime     int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/go/types/const.go

    				return true
    			case Uint, Uintptr:
    				if s := uint(sizeof(typ)) * 8; s < 64 {
    					return 0 <= x && x <= int64(1)<<s-1
    				}
    				return 0 <= x
    			case Uint8:
    				const s = 8
    				return 0 <= x && x <= 1<<s-1
    			case Uint16:
    				const s = 16
    				return 0 <= x && x <= 1<<s-1
    			case Uint32:
    				const s = 32
    				return 0 <= x && x <= 1<<s-1
    			case Uint64:
    				return 0 <= x
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top