Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 304 for Tstruct (0.3 sec)

  1. 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)
  2. 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)
  3. src/cmd/cgo/out.go

    typedef unsigned char byte;
    typedef intptr_t intgo;
    
    struct __go_string {
    	const unsigned char *__data;
    	intgo __length;
    };
    
    typedef struct __go_open_array {
    	void* __values;
    	intgo __count;
    	intgo __capacity;
    } Slice;
    
    struct __go_string __go_byte_array_to_string(const void* p, intgo len);
    struct __go_open_array __go_string_to_byte_array (struct __go_string str);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    )
    
    // describes the attributes of a scale subresource
    type ScaleSpec struct {
    	// desired number of instances for the scaled object.
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    }
    
    // represents the current status of a scale subresource.
    type ScaleStatus struct {
    	// actual number of observed instances of the scaled object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K 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. staging/src/k8s.io/api/apps/v1beta2/types.go

    )
    
    // ScaleSpec describes the attributes of a scale subresource
    type ScaleSpec struct {
    	// desired number of instances for the scaled object.
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    }
    
    // ScaleStatus represents the current status of a scale subresource.
    type ScaleStatus struct {
    	// actual number of observed instances of the scaled object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top