Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,586 for struct (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go

    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go

    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go

    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, type Public interface, Y()
    pkg p1, type S struct
    pkg p1, type S struct, Public *int
    pkg p1, type S struct, Public //deprecated
    pkg p1, type S struct, PublicTime Time
    pkg p1, type S2 struct
    pkg p1, type S2 struct, Extra bool
    pkg p1, type S2 struct, embedded S
    pkg p1, type S2 struct, embedded S //deprecated
    pkg p1, type SI struct
    pkg p1, type SI struct, I int
    pkg p1, type T struct
    pkg p1, type TPtrExported struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    type off int32
    type Mode_t uint32
    
    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    type Timeval32 struct {
    	Sec  int32
    	Usec int32
    }
    
    type Timex struct{}
    
    type Time_t int32
    
    type Tms struct{}
    
    type Utimbuf struct {
    	Actime  int32
    	Modtime int32
    }
    
    type Timezone struct {
    	Minuteswest int32
    	Dsttime     int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/decls3.go

    }
    
    func issue4355() {
    	type (
    	    T1 struct {X int}
    	    T2 struct {T1}
    	    T3 struct {T2}
    	    T4 struct {T2}
    	    T5 struct {T3; T4} // X is embedded twice at the same level via T3->T2->T1->X, T4->T2->T1->X
    	)
    
    	var t T5
    	_ = t.X /* ERROR "ambiguous selector t.X" */
    }
    
    func _() {
    	type State int
    	type A struct{ State }
    	type B struct{ fmt.State }
    	type T struct{ A; B }
    
    	var t T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue39938.go

    type E0[P any] []P
    type E1[P any] *P
    type E2[P any] struct{ _ P }
    type E3[P any] struct{ _ *P }
    type E5[P any] struct{ _ [10]P }
    
    type T0 struct {
            _ E0[T0]
    }
    
    type T0_ struct {
            E0[T0_]
    }
    
    type T1 struct {
            _ E1[T1]
    }
    
    type T2 /* ERROR "invalid recursive type" */ struct {
            _ E2[T2]
    }
    
    type T3 struct {
            _ E3[T3]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 948 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	SizeofBpfZbufHeader = 0x20
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv uint32
    	Drop uint32
    }
    
    type BpfZbuf struct {
    	Bufa   *byte
    	Bufb   *byte
    	Buflen uint32
    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    type FpReg struct {
    	Q  [32][16]uint8
    	Sr uint32
    	Cr uint32
    	_  [8]byte
    }
    
    type FpExtendedPrecision struct{}
    
    type PtraceIoDesc struct {
    	Op   int32
    	Offs uintptr
    	Addr *byte
    	Len  uint64
    }
    
    type Kevent_t struct {
    	Ident  uint64
    	Filter int16
    	Flags  uint16
    	Fflags uint32
    	Data   int64
    	Udata  *byte
    	Ext    [4]uint64
    }
    
    type FdSet struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    	Data   [24]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 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top