Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for struct (0.19 sec)

  1. src/syscall/ztypes_linux_mips64.go

    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_ppc64.go

    	Family uint16
    	Data   [14]uint8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]uint8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    	Offset int64
    	Length uint64
    	Buffer *byte
    }
    
    type Log2phys_t struct {
    	Flags uint32
    	_     [16]byte
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    type Dirent struct {
    	Ino     uint64
    	Seekoff uint64
    	Reclen  uint16
    	Namlen  uint16
    	Type    uint8
    	Name    [1024]int8
    	_       [3]byte
    }
    
    type Attrlist struct {
    	Bitmapcount uint16
    	Reserved    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_loong64.go

    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  5. src/syscall/ztypes_netbsd_386.go

    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. src/syscall/ztypes_netbsd_amd64.go

    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  7. src/go/parser/testdata/tparams.go2

    // go.dev/issue/49482
    type (
    	_[a *[]int] struct{}
    	_[a *t,] struct{}
    	_[a *t|[]int] struct{}
    	_[a *t|t,] struct{}
    	_[a *t|~t,] struct{}
    	_[a *struct{}|t] struct{}
    	_[a *t|struct{}] struct{}
    	_[a *struct{}|~t] struct{}
    )
    
    // go.dev/issue/51488
    type (
    	_[a *t|t,] struct{}
    	_[a *t|t, b t] struct{}
    	_[a *t|t] struct{}
    	_[a *[]t|t] struct{}
    	_[a ([]t)] struct{}
    	_[a ([]t)|t] struct{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/reflect/visiblefields_test.go

    }
    
    type SF2 struct {
    	SF1
    }
    
    type SG struct {
    	G int
    }
    
    type SG1 struct {
    	SG
    }
    
    type sFG struct {
    	F int
    	G int
    }
    
    type RS1 struct {
    	i int
    }
    
    type RS2 struct {
    	RS1
    }
    
    type RS3 struct {
    	RS2
    	RS1
    }
    
    type M map[string]any
    
    type Rec1 struct {
    	*Rec2
    }
    
    type Rec2 struct {
    	F string
    	*Rec1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 08 13:44:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_KTIMER_GETTIME           = 238 // { int ktimer_gettime(int timerid, struct itimerspec *value); }
    	SYS_KTIMER_GETOVERRUN        = 239 // { int ktimer_getoverrun(int timerid); }
    	SYS_NANOSLEEP                = 240 // { int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  10. src/syscall/ztypes_solaris_amd64.go

    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *int8
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name         *byte
    	Namelen      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5.6K bytes
    - Viewed (0)
Back to top