Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for fStruct (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_FHSTATFS                 = 558 // { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }
    	SYS_MKNODAT                  = 559 // { int mknodat(int fd, char *path, mode_t mode, dev_t dev); }
    	SYS_KEVENT                   = 560 // { int kevent(int fd, struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue13337.go

    package s
    
    type S0 struct{ f int }
    func (S0) m() {}
    
    type S1 struct{ S0 }
    type S2 struct{ S1 }
    type S3 struct{ S2 }
    type S4 struct{ S3 }
    type S5 struct{ S4 }
    type S6 struct{ S5 }
    type S7 struct{ S6 }
    type S8 struct{ S7 }
    type S9 struct{ S8 }
    type S10 struct{ S9 }
    type S11 struct{ S10 }
    type S12 struct{ S11 }
    type S13 struct{ S12 }
    
    var _ = S13{}.f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 653 bytes
    - Viewed (0)
  6. 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)
  7. src/syscall/ztypes_linux_amd64.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
    - 12K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.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)
Back to top