Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for Tstruct (0.35 sec)

  1. 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)
  2. src/go/types/api_test.go

    		// collisions
    		{"type ( E1 struct{ f int }; E2 struct{ f int }; x struct{ E1; *E2 })", false, []int{1, 0}, false},
    		{"type ( E1 struct{ f int }; E2 struct{}; x struct{ E1; *E2 }); func (E2) f() {}", false, []int{1, 0}, false},
    
    		// collisions on a generic type
    		{"type ( E1[P any] struct{ f P }; E2[P any] struct{ f P }; x struct{ E1[int]; *E2[int] })", false, []int{1, 0}, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    // The loop over power-of-two values is meant to
    // ensure that the operations apply to the full word size.
    // The struct fields x.before and x.after check that the
    // operations do not extend past the full word size.
    
    const (
    	magic32 = 0xdedbeef
    	magic64 = 0xdeddeadbeefbeef
    )
    
    func TestSwapInt32(t *testing.T) {
    	var x struct {
    		before int32
    		i      int32
    		after  int32
    	}
    	x.before = magic32
    	x.after = magic32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    func TestAccessLogJSONFormatters(t *testing.T) {
    	cases := []struct {
    		name     string
    		json     *structpb.Struct
    		expected []*core.TypedExtensionConfig
    	}{
    		{
    			name:     "default",
    			json:     EnvoyJSONLogFormatIstio,
    			expected: []*core.TypedExtensionConfig{},
    		},
    		{
    			name: "with-req-without-query",
    			json: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    // DeploymentList is a list of Deployments.
    type DeploymentList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard list metadata.
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Items is the list of Deployments.
    	Items []Deployment `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    type uint128 = Uint128
    
    var (
    	mustPrefix = MustParsePrefix
    	mustIP     = MustParseAddr
    	mustIPPort = MustParseAddrPort
    )
    
    func TestParseAddr(t *testing.T) {
    	var validIPs = []struct {
    		in      string
    		ip      Addr   // output of ParseAddr()
    		str     string // output of String(). If "", use in.
    		wantErr string
    	}{
    		// Basic zero IPv4 address.
    		{
    			in: "0.0.0.0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	SecurityDelegation     = 3
    )
    
    type LUID struct {
    	LowPart  uint32
    	HighPart int32
    }
    
    type LUIDAndAttributes struct {
    	Luid       LUID
    	Attributes uint32
    }
    
    type SIDAndAttributes struct {
    	Sid        *SID
    	Attributes uint32
    }
    
    type Tokenuser struct {
    	User SIDAndAttributes
    }
    
    type Tokenprimarygroup struct {
    	PrimaryGroup *SID
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string externalTrafficPolicy = 34;
    
      repeated k8s.io.api.core.v1.Toleration tolerations = 35 [deprecated = true];
    
      repeated google.protobuf.Struct ingressPorts = 36;
    
      repeated google.protobuf.Struct additionalContainers = 37;
    
      repeated google.protobuf.Struct configVolumes = 38;
    
      google.protobuf.BoolValue runAsRoot = 45;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. src/time/time_test.go

    		t.Error("Likely problem: the time zone files have not been installed.")
    	}
    }
    
    // parsedTime is the struct representing a parsed time value.
    type parsedTime struct {
    	Year                 int
    	Month                Month
    	Day                  int
    	Hour, Minute, Second int // 15:04:05 is 15, 4, 5.
    	Nanosecond           int // Fractional second.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    		runtime: runtime,
    	}
    	nested.workerChannelFn = func(uid types.UID, in chan struct{}) <-chan struct{} {
    		ch := make(chan struct{})
    		go func() {
    			defer close(ch)
    			// TODO: this is an eager loop, we might want to lazily read from in only once
    			// ch is empty
    			for range in {
    				w.waitForPod(uid)
    				w.tick()
    				ch <- struct{}{}
    			}
    		}()
    		return ch
    	}
    	return w, processed
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top