Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for Tstruct (0.26 sec)

  1. 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)
  2. api/go1.16.txt

    pkg go/build/constraint, type OrExpr struct
    pkg go/build/constraint, type OrExpr struct, X Expr
    pkg go/build/constraint, type OrExpr struct, Y Expr
    pkg go/build/constraint, type SyntaxError struct
    pkg go/build/constraint, type SyntaxError struct, Err string
    pkg go/build/constraint, type SyntaxError struct, Offset int
    pkg go/build/constraint, type TagExpr struct
    pkg go/build/constraint, type TagExpr struct, Tag string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Jf uint8
    pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Jt uint8
    pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, K uint32
    pkg syscall (netbsd-arm64-cgo), type BpfProgram struct
    pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Insns *BpfInsn
    pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Len uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    type PodDNSConfigOption struct {
    	// Required.
    	Name string
    	// +optional
    	Value *string
    }
    
    // PodIP represents a single IP address allocated to the pod.
    type PodIP struct {
    	// IP is the IP address assigned to the pod
    	IP string
    }
    
    // HostIP represents a single IP address allocated to the host.
    type HostIP struct {
    	// IP is the IP address assigned to the host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // SleepAction describes a "sleep" action.
    type SleepAction struct {
    	// Seconds is the number of seconds to sleep.
    	Seconds int64 `json:"seconds" protobuf:"bytes,1,opt,name=seconds"`
    }
    
    // Probe describes a health check to be performed against a container to determine whether it is
    // alive or ready to receive traffic.
    type Probe struct {
    	// The action taken to determine the health of a container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	IngressPorts         []*structpb.Struct    `protobuf:"bytes,36,rep,name=ingressPorts,proto3" json:"ingressPorts,omitempty"`
    	AdditionalContainers []*structpb.Struct    `protobuf:"bytes,37,rep,name=additionalContainers,proto3" json:"additionalContainers,omitempty"`
    	ConfigVolumes        []*structpb.Struct    `protobuf:"bytes,38,rep,name=configVolumes,proto3" json:"configVolumes,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	isHead        bool
    
    	abortOnce sync.Once
    	abort     chan struct{} // closed to signal stream should end immediately
    	abortErr  error         // set if abort is closed
    
    	peerClosed chan struct{} // closed when the peer sends an END_STREAM flag
    	donec      chan struct{} // closed after the stream is in the closed state
    	on100      chan struct{} // buffered; written to if a 100 is received
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    	T2 struct{ f [10]T2 }      // T2 contains T2 as component of an array
    	T3 struct{ T4 }            // T3 contains T3 as component of an array in struct T4
    	T4 struct{ f [10]T3 }      // T4 contains T4 as component of struct T3 in an array
    )
    
    // valid struct types
    type (
    	T5 struct{ f *T5 }         // T5 contains T5 as component of a pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	if !ok {
    		s.Fatalf("unhandled binary op %v %s", op, etype)
    	}
    	return x
    }
    
    type opAndTwoTypes struct {
    	op     ir.Op
    	etype1 types.Kind
    	etype2 types.Kind
    }
    
    type twoTypes struct {
    	etype1 types.Kind
    	etype2 types.Kind
    }
    
    type twoOpsAndType struct {
    	op1              ssa.Op
    	op2              ssa.Op
    	intermediateType types.Kind
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    // written in terms of this.
    //
    
    type cudTestCase struct {
    	name         string
    	line         string // if not empty, will be logged with errors, use line() to set
    	create       svcTestCase
    	beforeUpdate func(t *testing.T, storage *wrapperRESTForTests)
    	update       svcTestCase
    }
    
    type svcTestCase struct {
    	svc         *api.Service
    	expectError bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top