Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 7,334 for struct (0.22 sec)

  1. src/cmd/compile/internal/syntax/testdata/smoketest.go

    package p
    
    // type parameter lists
    type B[P any] struct{}
    type _[P interface{}] struct{}
    type _[P B] struct{}
    type _[P B[P]] struct{}
    
    type _[A, B, C any] struct{}
    type _[A, B, C B] struct{}
    type _[A, B, C B[A, B, C]] struct{}
    type _[A1, A2 B1, A3 B2, A4, A5, A6 B3] struct{}
    
    type _[A interface{}] struct{}
    type _[A, B interface{ m() }] struct{}
    
    type _[A, B, C any] struct{}
    
    // in functions
    func _[P any]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:31 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/runtime/defs_linux_loong64.go

    	si_addr uint64
    }
    
    type siginfo struct {
    	siginfoFields
    	// Pad struct to the max size in the kernel.
    	_ [_si_max_size - unsafe.Sizeof(siginfoFields{})]byte
    }
    
    type usigset struct {
    	val [16]uint64
    }
    
    type stackt struct {
    	ss_sp     *byte
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    	ss_size   uintptr
    }
    
    type sigcontext struct {
    	sc_pc         uint64
    	sc_regs       [32]uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/decls4.go

    type eY = struct{eX} // field/method set of eY includes xf, xm
    
    type eZ = *struct{eX} // field/method set of eZ includes xf, xm
    
    type eA struct {
    	eX // eX contributes xf, xm to eA
    }
    
    type eA2 struct {
    	*eX // *eX contributes xf, xm to eA
    }
    
    type eB struct {
    	eY // eY contributes xf, xm to eB
    }
    
    type eB2 struct {
    	*eY // *eY contributes xf, xm to eB
    }
    
    type eC struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/defs1_solaris_amd64.go

    	_PORT_ALERT_UPDATE = 0x2
    )
    
    type semt struct {
    	sem_count uint32
    	sem_type  uint16
    	sem_magic uint16
    	sem_pad1  [3]uint64
    	sem_pad2  [2]uint64
    }
    
    type sigset struct {
    	__sigbits [4]uint32
    }
    
    type stackt struct {
    	ss_sp     *byte
    	ss_size   uintptr
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    }
    
    type siginfo struct {
    	si_signo int32
    	si_code  int32
    	si_errno int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/go/printer/testdata/comments.x

    package main
    
    // The SZ struct; it is empty.
    type SZ struct{}
    
    // The S0 struct; no field is exported.
    type S0 struct {
    	// contains filtered or unexported fields
    }
    
    // The S1 struct; some fields are not exported.
    type S1 struct {
    	S0
    	A, B, C	float	// 3 exported fields
    	D	int	// 2 unexported fields
    	// contains filtered or unexported fields
    }
    
    // The S2 struct; all fields are exported.
    type S2 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. test/fixedbugs/bug417.go

    package p
    
    type S1 struct {
    	p *[1]S3
    	s [][1]S3
    	m map[int][1]S3
    	c chan [1]S3
    	i interface { f([1]S3) [1]S3 }
    	f func([1]S3) [1]S3
    }
    
    type S2 struct {
    	p *struct { F S3 }
    	s []struct { F S3 }
    	m map[int]struct { F S3 }
    	c chan struct { F S3 }
    	i interface { f(struct { F S3 }) struct { F S3 } }
    	f func(struct { F S3 } ) struct { F S3 }
    }
    
    type S3 struct {
    	I int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 674 bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	} LsarSidType;
    
    	typedef struct {
    		LsarSidType sid_type;
    		uint32_t rid;
    		uint32_t sid_index;
    	} LsarTranslatedSid;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTranslatedSid *sids;
    	} LsarTransSidArray;
    
    	typedef struct {
    		unicode_string name;
    		sid_t *sid;
    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	} LsarSidType;
    
    	typedef struct {
    		LsarSidType sid_type;
    		uint32_t rid;
    		uint32_t sid_index;
    	} LsarTranslatedSid;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTranslatedSid *sids;
    	} LsarTransSidArray;
    
    	typedef struct {
    		unicode_string name;
    		sid_t *sid;
    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue23837.go

    package main
    
    //go:noinline
    func f(p, q *struct{}) bool {
    	return *p == *q
    }
    
    type T struct {
    	x struct{}
    	y int
    }
    
    //go:noinline
    func g(p, q *T) bool {
    	return p.x == q.x
    }
    
    //go:noinline
    func h(p, q func() struct{}) bool {
    	return p() == q()
    }
    
    func fi(p, q *struct{}) bool {
    	return *p == *q
    }
    
    func gi(p, q *T) bool {
    	return p.x == q.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 17:45:19 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  10. src/go/doc/testdata/c.1.golden

    TYPES
    	// A (should see this) 
    	type A struct{}
    
    	// B (should see this) 
    	type B struct{}
    
    	// C (should see this) 
    	type C struct{}
    
    	// D (should see this) 
    	type D struct{}
    
    	// E1 (should see this) 
    	type E1 struct{}
    
    	// E (should see this for E2 and E3) 
    	type E2 struct{}
    
    	// E (should see this for E2 and E3) 
    	type E3 struct{}
    
    	// E4 (should see this) 
    	type E4 struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 620 bytes
    - Viewed (0)
Back to top