Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for Tstruct (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup_test.go

    	n2BeforeWaitWG := sync.WaitGroup{}
    	// so we know when all requests in n2 have called Done and
    	// are finished using the waitgroup
    	n2DoneWG := sync.WaitGroup{}
    
    	startCh, blockedCh := make(chan struct{}), make(chan struct{})
    	n1DoneWG.Add(n1)
    	for i := 0; i < n1; i++ {
    		go func() {
    			defer n1DoneWG.Done()
    			<-startCh
    
    			target.Add(1)
    			// let's finish using the waitgroup immediately
    			target.Done()
    		}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // ProcThreadAttributeListContainer.List.
    type ProcThreadAttributeList struct{}
    
    type ProcThreadAttributeListContainer struct {
    	data     *ProcThreadAttributeList
    	pointers []unsafe.Pointer
    }
    
    type ProcessInformation struct {
    	Process   Handle
    	Thread    Handle
    	ProcessId uint32
    	ThreadId  uint32
    }
    
    type ProcessEntry32 struct {
    	Size            uint32
    	Usage           uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/testdata/tparams.go

    // go.dev/issue/49482
    type (
    	t[a *[]int] struct{}
    	t[a *t,] struct{}
    	t[a *t|[]int] struct{}
    	t[a *t|t,] struct{}
    	t[a *t|~t,] struct{}
    	t[a *struct{}|t] struct{}
    	t[a *t|struct{}] struct{}
    	t[a *struct{}|~t] struct{}
    )
    
    // go.dev/issue/51488
    type (
    	t[a *t|t,] struct{}
    	t[a *t|t, b t] struct{}
    	t[a *t|t] struct{}
    	t[a *[]t|t] struct{}
    	t[a ([]t)] struct{}
    	t[a ([]t)|t] struct{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 17:49:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/testdata/issue49482.go

    type (
            // these need a comma to disambiguate
            _[P *T,] struct{}
            _[P *T, _ any] struct{}
            _[P (*T),] struct{}
            _[P (*T), _ any] struct{}
            _[P (T),] struct{}
            _[P (T), _ any] struct{}
    
            // these parse as name followed by type
            _[P *struct{}] struct{}
            _[P (*struct{})] struct{}
            _[P ([]int)] struct{}
    
            // array declarations
            _ [P(T)]struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 965 bytes
    - Viewed (0)
  5. src/go/printer/testdata/generics.input

    func _[P ~int, Q int | string]() {}
    func _[P struct{f int}, Q *P]() {}
    
    // various potentially ambiguous type parameter lists (issue #49482)
    type _[P *T,] struct{}
    type _[P T | T] struct{}
    type _[P T | T | T | T] struct{}
    type _[P *T, _ any] struct{}
    type _[P (*T),] struct{}
    type _[P (*T), _ any] struct{}
    type _[P (T),] struct{}
    type _[P (T), _ any] struct{}
    
    type _[P *struct{}] struct{}
    type _[P (*struct{})] struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 16:18:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. src/reflect/type.go

    // mapType represents a map type.
    type mapType struct {
    	abi.MapType
    }
    
    // ptrType represents a pointer type.
    type ptrType struct {
    	abi.PtrType
    }
    
    // sliceType represents a slice type.
    type sliceType struct {
    	abi.SliceType
    }
    
    // Struct field
    type structField = abi.StructField
    
    // structType represents a struct type.
    type structType struct {
    	abi.StructType
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    type Mode_t uint32
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int32
    	_    [4]byte
    }
    
    type Timeval32 struct {
    	Sec  int32
    	Usec int32
    }
    
    type Timex struct{}
    
    type Time_t int64
    
    type Tms struct{}
    
    type Utimbuf struct {
    	Actime  int64
    	Modtime int64
    }
    
    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
    - 5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.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 uint64
    }
    
    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.7K bytes
    - Viewed (0)
  9. test/fixedbugs/bug336.go

    	_ = &T7{&T4{}}
    	_ = &T8{&T4{}}
    	_ = &T9{&T4{}}
    	_ = &T12{&T15{}, &T13{}, &T16{}}
    
    	var (
    		tn    struct{ Next *T11 }
    		tz    struct{ z *struct{ Next *T11 } }
    		tpz   *struct{ z *struct{ Next *T11 } }
    		tppz  **struct{ z *struct{ Next *T11 } }
    		tpppz ***struct{ z *struct{ Next *T11 } }
    		ty    struct {
    			y ***struct{ z *struct{ Next *T11 } }
    		}
    	)
    	tn.Next = &T11{}
    	tz.z = &tn
    	tpz = &tz
    	tppz = &tpz
    	tpppz = &tppz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  10. src/syscall/ztypes_netbsd_arm.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
    - 6.1K bytes
    - Viewed (0)
Back to top