Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,312 for Tstruct (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Binding) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/issues_test.go

    	// The src strings (without prefix) are constructed such that the number of semicolons
    	// plus one corresponds to the number of fields expected in the respective struct.
    	for _, src := range []string{
    		`struct { x Missing }`,
    		`struct { Missing }`,
    		`struct { *Missing }`,
    		`struct { unsafe.Pointer }`,
    		`struct { P }`,
    		`struct { *I }`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/decls0.go

    	W U
    
    	P1 *S2
    	P2 P1
    
    	S0 struct {
    	}
    	S1 struct {
    		a, b, c int
    		u, v, a /* ERROR "redeclared" */ float32
    	}
    	S2 struct {
    		S0 // embedded field
    		S0 /* ERROR "redeclared" */ int
    	}
    	S3 struct {
    		x S2
    	}
    	S4/* ERROR "invalid recursive type" */ struct {
    		S4
    	}
    	S5 /* ERROR "invalid recursive type" */ struct {
    		S6
    	}
    	S6 struct {
    		field S7
    	}
    	S7 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    struct GatherOptionsBuilder;
    struct GatherOptionsT;
    
    struct TransposeOptions;
    struct TransposeOptionsBuilder;
    struct TransposeOptionsT;
    
    struct ExpOptions;
    struct ExpOptionsBuilder;
    struct ExpOptionsT;
    
    struct CosOptions;
    struct CosOptionsBuilder;
    struct CosOptionsT;
    
    struct ReducerOptions;
    struct ReducerOptionsBuilder;
    struct ReducerOptionsT;
    
    struct SqueezeOptions;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue67547.go

    	_ = A(p /* ERRORx `cannot convert string \(in P\) to type (A|int)` */)
    }
    
    func _[P struct{ x int }]() {
    	var x struct{ x int }
    	type A = P
    	var _ A = x // assignment must be valid
    }
    
    func _[P struct{ x int }]() {
    	type A = P
    	var x A
    	var _ struct{ x int } = x // assignment must be valid
    }
    
    func _[P []int | struct{}]() {
    	type A = []int
    	var a A
    	var p P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. api/go1.23.txt

    pkg net, type DNSError struct, UnwrapErr error #63116
    pkg net, type Dialer struct, KeepAliveConfig KeepAliveConfig #62254
    pkg net, type KeepAliveConfig struct #62254
    pkg net, type KeepAliveConfig struct, Count int #62254
    pkg net, type KeepAliveConfig struct, Enable bool #62254
    pkg net, type KeepAliveConfig struct, Idle time.Duration #62254
    pkg net, type KeepAliveConfig struct, Interval time.Duration #62254
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/go/types/issues_test.go

    	// The src strings (without prefix) are constructed such that the number of semicolons
    	// plus one corresponds to the number of fields expected in the respective struct.
    	for _, src := range []string{
    		`struct { x Missing }`,
    		`struct { Missing }`,
    		`struct { *Missing }`,
    		`struct { unsafe.Pointer }`,
    		`struct { P }`,
    		`struct { *I }`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/encoding/json/encode_test.go

    		{Name(""), struct{ M Marshaler }{(*nilJSONMarshaler)(nil)}, `{"M":"0zenil0"}`},
    		{Name(""), struct{ M any }{(*nilJSONMarshaler)(nil)}, `{"M":null}`},
    		{Name(""), struct{ M encoding.TextMarshaler }{}, `{"M":null}`},
    		{Name(""), struct{ M encoding.TextMarshaler }{(*nilTextMarshaler)(nil)}, `{"M":"0zenil0"}`},
    		{Name(""), struct{ M any }{(*nilTextMarshaler)(nil)}, `{"M":null}`},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	SizeofNdMsg        = 0xc
    )
    
    type NlMsghdr struct {
    	Len   uint32
    	Type  uint16
    	Flags uint16
    	Seq   uint32
    	Pid   uint32
    }
    
    type NlMsgerr struct {
    	Error int32
    	Msg   NlMsghdr
    }
    
    type RtGenmsg struct {
    	Family uint8
    }
    
    type NlAttr struct {
    	Len  uint16
    	Type uint16
    }
    
    type RtAttr struct {
    	Len  uint16
    	Type uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSIDriver) APILifecycleIntroduced() (major, minor int) {
    	return 1, 18
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top