Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IntVal (0.21 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	Type   int64                   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
    	IntVal *wrapperspb.Int32Value  `protobuf:"bytes,2,opt,name=intVal,proto3" json:"intVal,omitempty"`
    	StrVal *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=strVal,proto3" json:"strVal,omitempty"`
    }
    
    func (x *IntOrString) Reset() {
    	*x = IntOrString{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		case t.IsInterface():
    			return s.constInterface(t)
    		default:
    			return s.constNil(t)
    		}
    	case ir.OLITERAL:
    		switch u := n.Val(); u.Kind() {
    		case constant.Int:
    			i := ir.IntVal(n.Type(), u)
    			switch n.Type().Size() {
    			case 1:
    				return s.constInt8(n.Type(), int8(i))
    			case 2:
    				return s.constInt16(n.Type(), int16(i))
    			case 4:
    				return s.constInt32(n.Type(), int32(i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top