Bumping k8s dependencies to 1.13
This commit is contained in:
383
vendor/github.com/gogo/protobuf/test/required/requiredexample.pb.go
generated
vendored
383
vendor/github.com/gogo/protobuf/test/required/requiredexample.pb.go
generated
vendored
@@ -1,18 +1,6 @@
|
||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||
// source: requiredexample.proto
|
||||
|
||||
/*
|
||||
Package required is a generated protocol buffer package.
|
||||
|
||||
It is generated from these files:
|
||||
requiredexample.proto
|
||||
|
||||
It has these top-level messages:
|
||||
RequiredExample
|
||||
NidOptNative
|
||||
NinOptNative
|
||||
NestedNinOptNative
|
||||
*/
|
||||
package required
|
||||
|
||||
import proto "github.com/gogo/protobuf/proto"
|
||||
@@ -20,7 +8,8 @@ import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "github.com/gogo/protobuf/gogoproto"
|
||||
|
||||
import binary "encoding/binary"
|
||||
import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto"
|
||||
import encoding_binary "encoding/binary"
|
||||
|
||||
import io "io"
|
||||
|
||||
@@ -36,16 +25,46 @@ var _ = math.Inf
|
||||
const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
type RequiredExample struct {
|
||||
TheRequiredString *string `protobuf:"bytes,1,req,name=theRequiredString" json:"theRequiredString,omitempty"`
|
||||
TheOptionalString *string `protobuf:"bytes,2,opt,name=theOptionalString" json:"theOptionalString,omitempty"`
|
||||
TheRepeatedStrings []string `protobuf:"bytes,3,rep,name=theRepeatedStrings" json:"theRepeatedStrings,omitempty"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
TheRequiredString *string `protobuf:"bytes,1,req,name=theRequiredString" json:"theRequiredString,omitempty"`
|
||||
TheOptionalString *string `protobuf:"bytes,2,opt,name=theOptionalString" json:"theOptionalString,omitempty"`
|
||||
TheRepeatedStrings []string `protobuf:"bytes,3,rep,name=theRepeatedStrings" json:"theRepeatedStrings,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *RequiredExample) Reset() { *m = RequiredExample{} }
|
||||
func (m *RequiredExample) String() string { return proto.CompactTextString(m) }
|
||||
func (*RequiredExample) ProtoMessage() {}
|
||||
func (*RequiredExample) Descriptor() ([]byte, []int) { return fileDescriptorRequiredexample, []int{0} }
|
||||
func (m *RequiredExample) Reset() { *m = RequiredExample{} }
|
||||
func (m *RequiredExample) String() string { return proto.CompactTextString(m) }
|
||||
func (*RequiredExample) ProtoMessage() {}
|
||||
func (*RequiredExample) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_requiredexample_2673f47f43fdf851, []int{0}
|
||||
}
|
||||
func (m *RequiredExample) XXX_Unmarshal(b []byte) error {
|
||||
return m.Unmarshal(b)
|
||||
}
|
||||
func (m *RequiredExample) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
if deterministic {
|
||||
return xxx_messageInfo_RequiredExample.Marshal(b, m, deterministic)
|
||||
} else {
|
||||
b = b[:cap(b)]
|
||||
n, err := m.MarshalTo(b)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return b[:n], nil
|
||||
}
|
||||
}
|
||||
func (dst *RequiredExample) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_RequiredExample.Merge(dst, src)
|
||||
}
|
||||
func (m *RequiredExample) XXX_Size() int {
|
||||
return m.Size()
|
||||
}
|
||||
func (m *RequiredExample) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_RequiredExample.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_RequiredExample proto.InternalMessageInfo
|
||||
|
||||
func (m *RequiredExample) GetTheRequiredString() string {
|
||||
if m != nil && m.TheRequiredString != nil {
|
||||
@@ -69,28 +88,58 @@ func (m *RequiredExample) GetTheRepeatedStrings() []string {
|
||||
}
|
||||
|
||||
type NidOptNative struct {
|
||||
Field1 float64 `protobuf:"fixed64,1,req,name=Field1" json:"Field1"`
|
||||
Field2 float32 `protobuf:"fixed32,2,req,name=Field2" json:"Field2"`
|
||||
Field3 int32 `protobuf:"varint,3,req,name=Field3" json:"Field3"`
|
||||
Field4 int64 `protobuf:"varint,4,req,name=Field4" json:"Field4"`
|
||||
Field5 uint32 `protobuf:"varint,5,req,name=Field5" json:"Field5"`
|
||||
Field6 uint64 `protobuf:"varint,6,req,name=Field6" json:"Field6"`
|
||||
Field7 int32 `protobuf:"zigzag32,7,req,name=Field7" json:"Field7"`
|
||||
Field8 int64 `protobuf:"zigzag64,8,req,name=Field8" json:"Field8"`
|
||||
Field9 uint32 `protobuf:"fixed32,9,req,name=Field9" json:"Field9"`
|
||||
Field10 int32 `protobuf:"fixed32,10,req,name=Field10" json:"Field10"`
|
||||
Field11 uint64 `protobuf:"fixed64,11,req,name=Field11" json:"Field11"`
|
||||
Field12 int64 `protobuf:"fixed64,12,req,name=Field12" json:"Field12"`
|
||||
Field13 bool `protobuf:"varint,13,req,name=Field13" json:"Field13"`
|
||||
Field14 string `protobuf:"bytes,14,req,name=Field14" json:"Field14"`
|
||||
Field15 []byte `protobuf:"bytes,15,req,name=Field15" json:"Field15"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
Field1 float64 `protobuf:"fixed64,1,req,name=Field1" json:"Field1"`
|
||||
Field2 float32 `protobuf:"fixed32,2,req,name=Field2" json:"Field2"`
|
||||
Field3 int32 `protobuf:"varint,3,req,name=Field3" json:"Field3"`
|
||||
Field4 int64 `protobuf:"varint,4,req,name=Field4" json:"Field4"`
|
||||
Field5 uint32 `protobuf:"varint,5,req,name=Field5" json:"Field5"`
|
||||
Field6 uint64 `protobuf:"varint,6,req,name=Field6" json:"Field6"`
|
||||
Field7 int32 `protobuf:"zigzag32,7,req,name=Field7" json:"Field7"`
|
||||
Field8 int64 `protobuf:"zigzag64,8,req,name=Field8" json:"Field8"`
|
||||
Field9 uint32 `protobuf:"fixed32,9,req,name=Field9" json:"Field9"`
|
||||
Field10 int32 `protobuf:"fixed32,10,req,name=Field10" json:"Field10"`
|
||||
Field11 uint64 `protobuf:"fixed64,11,req,name=Field11" json:"Field11"`
|
||||
Field12 int64 `protobuf:"fixed64,12,req,name=Field12" json:"Field12"`
|
||||
Field13 bool `protobuf:"varint,13,req,name=Field13" json:"Field13"`
|
||||
Field14 string `protobuf:"bytes,14,req,name=Field14" json:"Field14"`
|
||||
Field15 []byte `protobuf:"bytes,15,req,name=Field15" json:"Field15"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *NidOptNative) Reset() { *m = NidOptNative{} }
|
||||
func (m *NidOptNative) String() string { return proto.CompactTextString(m) }
|
||||
func (*NidOptNative) ProtoMessage() {}
|
||||
func (*NidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorRequiredexample, []int{1} }
|
||||
func (m *NidOptNative) Reset() { *m = NidOptNative{} }
|
||||
func (m *NidOptNative) String() string { return proto.CompactTextString(m) }
|
||||
func (*NidOptNative) ProtoMessage() {}
|
||||
func (*NidOptNative) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_requiredexample_2673f47f43fdf851, []int{1}
|
||||
}
|
||||
func (m *NidOptNative) XXX_Unmarshal(b []byte) error {
|
||||
return m.Unmarshal(b)
|
||||
}
|
||||
func (m *NidOptNative) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
if deterministic {
|
||||
return xxx_messageInfo_NidOptNative.Marshal(b, m, deterministic)
|
||||
} else {
|
||||
b = b[:cap(b)]
|
||||
n, err := m.MarshalTo(b)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return b[:n], nil
|
||||
}
|
||||
}
|
||||
func (dst *NidOptNative) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_NidOptNative.Merge(dst, src)
|
||||
}
|
||||
func (m *NidOptNative) XXX_Size() int {
|
||||
return m.Size()
|
||||
}
|
||||
func (m *NidOptNative) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_NidOptNative.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_NidOptNative proto.InternalMessageInfo
|
||||
|
||||
func (m *NidOptNative) GetField1() float64 {
|
||||
if m != nil {
|
||||
@@ -198,28 +247,58 @@ func (m *NidOptNative) GetField15() []byte {
|
||||
}
|
||||
|
||||
type NinOptNative struct {
|
||||
Field1 *float64 `protobuf:"fixed64,1,req,name=Field1" json:"Field1,omitempty"`
|
||||
Field2 *float32 `protobuf:"fixed32,2,req,name=Field2" json:"Field2,omitempty"`
|
||||
Field3 *int32 `protobuf:"varint,3,req,name=Field3" json:"Field3,omitempty"`
|
||||
Field4 *int64 `protobuf:"varint,4,req,name=Field4" json:"Field4,omitempty"`
|
||||
Field5 *uint32 `protobuf:"varint,5,req,name=Field5" json:"Field5,omitempty"`
|
||||
Field6 *uint64 `protobuf:"varint,6,req,name=Field6" json:"Field6,omitempty"`
|
||||
Field7 *int32 `protobuf:"zigzag32,7,req,name=Field7" json:"Field7,omitempty"`
|
||||
Field8 *int64 `protobuf:"zigzag64,8,req,name=Field8" json:"Field8,omitempty"`
|
||||
Field9 *uint32 `protobuf:"fixed32,9,req,name=Field9" json:"Field9,omitempty"`
|
||||
Field10 *int32 `protobuf:"fixed32,10,req,name=Field10" json:"Field10,omitempty"`
|
||||
Field11 *uint64 `protobuf:"fixed64,11,req,name=Field11" json:"Field11,omitempty"`
|
||||
Field12 *int64 `protobuf:"fixed64,12,req,name=Field12" json:"Field12,omitempty"`
|
||||
Field13 *bool `protobuf:"varint,13,req,name=Field13" json:"Field13,omitempty"`
|
||||
Field14 *string `protobuf:"bytes,14,req,name=Field14" json:"Field14,omitempty"`
|
||||
Field15 []byte `protobuf:"bytes,15,req,name=Field15" json:"Field15,omitempty"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
Field1 *float64 `protobuf:"fixed64,1,req,name=Field1" json:"Field1,omitempty"`
|
||||
Field2 *float32 `protobuf:"fixed32,2,req,name=Field2" json:"Field2,omitempty"`
|
||||
Field3 *int32 `protobuf:"varint,3,req,name=Field3" json:"Field3,omitempty"`
|
||||
Field4 *int64 `protobuf:"varint,4,req,name=Field4" json:"Field4,omitempty"`
|
||||
Field5 *uint32 `protobuf:"varint,5,req,name=Field5" json:"Field5,omitempty"`
|
||||
Field6 *uint64 `protobuf:"varint,6,req,name=Field6" json:"Field6,omitempty"`
|
||||
Field7 *int32 `protobuf:"zigzag32,7,req,name=Field7" json:"Field7,omitempty"`
|
||||
Field8 *int64 `protobuf:"zigzag64,8,req,name=Field8" json:"Field8,omitempty"`
|
||||
Field9 *uint32 `protobuf:"fixed32,9,req,name=Field9" json:"Field9,omitempty"`
|
||||
Field10 *int32 `protobuf:"fixed32,10,req,name=Field10" json:"Field10,omitempty"`
|
||||
Field11 *uint64 `protobuf:"fixed64,11,req,name=Field11" json:"Field11,omitempty"`
|
||||
Field12 *int64 `protobuf:"fixed64,12,req,name=Field12" json:"Field12,omitempty"`
|
||||
Field13 *bool `protobuf:"varint,13,req,name=Field13" json:"Field13,omitempty"`
|
||||
Field14 *string `protobuf:"bytes,14,req,name=Field14" json:"Field14,omitempty"`
|
||||
Field15 []byte `protobuf:"bytes,15,req,name=Field15" json:"Field15,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *NinOptNative) Reset() { *m = NinOptNative{} }
|
||||
func (m *NinOptNative) String() string { return proto.CompactTextString(m) }
|
||||
func (*NinOptNative) ProtoMessage() {}
|
||||
func (*NinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorRequiredexample, []int{2} }
|
||||
func (m *NinOptNative) Reset() { *m = NinOptNative{} }
|
||||
func (m *NinOptNative) String() string { return proto.CompactTextString(m) }
|
||||
func (*NinOptNative) ProtoMessage() {}
|
||||
func (*NinOptNative) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_requiredexample_2673f47f43fdf851, []int{2}
|
||||
}
|
||||
func (m *NinOptNative) XXX_Unmarshal(b []byte) error {
|
||||
return m.Unmarshal(b)
|
||||
}
|
||||
func (m *NinOptNative) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
if deterministic {
|
||||
return xxx_messageInfo_NinOptNative.Marshal(b, m, deterministic)
|
||||
} else {
|
||||
b = b[:cap(b)]
|
||||
n, err := m.MarshalTo(b)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return b[:n], nil
|
||||
}
|
||||
}
|
||||
func (dst *NinOptNative) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_NinOptNative.Merge(dst, src)
|
||||
}
|
||||
func (m *NinOptNative) XXX_Size() int {
|
||||
return m.Size()
|
||||
}
|
||||
func (m *NinOptNative) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_NinOptNative.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_NinOptNative proto.InternalMessageInfo
|
||||
|
||||
func (m *NinOptNative) GetField1() float64 {
|
||||
if m != nil && m.Field1 != nil {
|
||||
@@ -327,16 +406,44 @@ func (m *NinOptNative) GetField15() []byte {
|
||||
}
|
||||
|
||||
type NestedNinOptNative struct {
|
||||
NestedNinOpts []*NinOptNative `protobuf:"bytes,1,rep,name=NestedNinOpts" json:"NestedNinOpts,omitempty"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
NestedNinOpts []*NinOptNative `protobuf:"bytes,1,rep,name=NestedNinOpts" json:"NestedNinOpts,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *NestedNinOptNative) Reset() { *m = NestedNinOptNative{} }
|
||||
func (m *NestedNinOptNative) String() string { return proto.CompactTextString(m) }
|
||||
func (*NestedNinOptNative) ProtoMessage() {}
|
||||
func (*NestedNinOptNative) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptorRequiredexample, []int{3}
|
||||
return fileDescriptor_requiredexample_2673f47f43fdf851, []int{3}
|
||||
}
|
||||
func (m *NestedNinOptNative) XXX_Unmarshal(b []byte) error {
|
||||
return m.Unmarshal(b)
|
||||
}
|
||||
func (m *NestedNinOptNative) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
if deterministic {
|
||||
return xxx_messageInfo_NestedNinOptNative.Marshal(b, m, deterministic)
|
||||
} else {
|
||||
b = b[:cap(b)]
|
||||
n, err := m.MarshalTo(b)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return b[:n], nil
|
||||
}
|
||||
}
|
||||
func (dst *NestedNinOptNative) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_NestedNinOptNative.Merge(dst, src)
|
||||
}
|
||||
func (m *NestedNinOptNative) XXX_Size() int {
|
||||
return m.Size()
|
||||
}
|
||||
func (m *NestedNinOptNative) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_NestedNinOptNative.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_NestedNinOptNative proto.InternalMessageInfo
|
||||
|
||||
func (m *NestedNinOptNative) GetNestedNinOpts() []*NinOptNative {
|
||||
if m != nil {
|
||||
@@ -367,7 +474,7 @@ func (m *RequiredExample) MarshalTo(dAtA []byte) (int, error) {
|
||||
var l int
|
||||
_ = l
|
||||
if m.TheRequiredString == nil {
|
||||
return 0, proto.NewRequiredNotSetError("theRequiredString")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("theRequiredString")
|
||||
} else {
|
||||
dAtA[i] = 0xa
|
||||
i++
|
||||
@@ -418,11 +525,11 @@ func (m *NidOptNative) MarshalTo(dAtA []byte) (int, error) {
|
||||
_ = l
|
||||
dAtA[i] = 0x9
|
||||
i++
|
||||
binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1))))
|
||||
encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1))))
|
||||
i += 8
|
||||
dAtA[i] = 0x15
|
||||
i++
|
||||
binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2))))
|
||||
encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2))))
|
||||
i += 4
|
||||
dAtA[i] = 0x18
|
||||
i++
|
||||
@@ -444,19 +551,19 @@ func (m *NidOptNative) MarshalTo(dAtA []byte) (int, error) {
|
||||
i = encodeVarintRequiredexample(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63))))
|
||||
dAtA[i] = 0x4d
|
||||
i++
|
||||
binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9))
|
||||
encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9))
|
||||
i += 4
|
||||
dAtA[i] = 0x55
|
||||
i++
|
||||
binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10))
|
||||
encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10))
|
||||
i += 4
|
||||
dAtA[i] = 0x59
|
||||
i++
|
||||
binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11))
|
||||
encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11))
|
||||
i += 8
|
||||
dAtA[i] = 0x61
|
||||
i++
|
||||
binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12))
|
||||
encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12))
|
||||
i += 8
|
||||
dAtA[i] = 0x68
|
||||
i++
|
||||
@@ -498,97 +605,97 @@ func (m *NinOptNative) MarshalTo(dAtA []byte) (int, error) {
|
||||
var l int
|
||||
_ = l
|
||||
if m.Field1 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field1")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field1")
|
||||
} else {
|
||||
dAtA[i] = 0x9
|
||||
i++
|
||||
binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1))))
|
||||
encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1))))
|
||||
i += 8
|
||||
}
|
||||
if m.Field2 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field2")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field2")
|
||||
} else {
|
||||
dAtA[i] = 0x15
|
||||
i++
|
||||
binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2))))
|
||||
encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2))))
|
||||
i += 4
|
||||
}
|
||||
if m.Field3 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field3")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field3")
|
||||
} else {
|
||||
dAtA[i] = 0x18
|
||||
i++
|
||||
i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field3))
|
||||
}
|
||||
if m.Field4 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field4")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field4")
|
||||
} else {
|
||||
dAtA[i] = 0x20
|
||||
i++
|
||||
i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field4))
|
||||
}
|
||||
if m.Field5 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field5")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field5")
|
||||
} else {
|
||||
dAtA[i] = 0x28
|
||||
i++
|
||||
i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field5))
|
||||
}
|
||||
if m.Field6 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field6")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field6")
|
||||
} else {
|
||||
dAtA[i] = 0x30
|
||||
i++
|
||||
i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field6))
|
||||
}
|
||||
if m.Field7 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field7")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field7")
|
||||
} else {
|
||||
dAtA[i] = 0x38
|
||||
i++
|
||||
i = encodeVarintRequiredexample(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31))))
|
||||
}
|
||||
if m.Field8 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field8")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field8")
|
||||
} else {
|
||||
dAtA[i] = 0x40
|
||||
i++
|
||||
i = encodeVarintRequiredexample(dAtA, i, uint64((uint64(*m.Field8)<<1)^uint64((*m.Field8>>63))))
|
||||
}
|
||||
if m.Field9 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field9")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field9")
|
||||
} else {
|
||||
dAtA[i] = 0x4d
|
||||
i++
|
||||
binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9))
|
||||
encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9))
|
||||
i += 4
|
||||
}
|
||||
if m.Field10 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field10")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field10")
|
||||
} else {
|
||||
dAtA[i] = 0x55
|
||||
i++
|
||||
binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10))
|
||||
encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10))
|
||||
i += 4
|
||||
}
|
||||
if m.Field11 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field11")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field11")
|
||||
} else {
|
||||
dAtA[i] = 0x59
|
||||
i++
|
||||
binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11))
|
||||
encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11))
|
||||
i += 8
|
||||
}
|
||||
if m.Field12 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field12")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field12")
|
||||
} else {
|
||||
dAtA[i] = 0x61
|
||||
i++
|
||||
binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12))
|
||||
encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12))
|
||||
i += 8
|
||||
}
|
||||
if m.Field13 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field13")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field13")
|
||||
} else {
|
||||
dAtA[i] = 0x68
|
||||
i++
|
||||
@@ -600,7 +707,7 @@ func (m *NinOptNative) MarshalTo(dAtA []byte) (int, error) {
|
||||
i++
|
||||
}
|
||||
if m.Field14 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field14")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field14")
|
||||
} else {
|
||||
dAtA[i] = 0x72
|
||||
i++
|
||||
@@ -608,7 +715,7 @@ func (m *NinOptNative) MarshalTo(dAtA []byte) (int, error) {
|
||||
i += copy(dAtA[i:], *m.Field14)
|
||||
}
|
||||
if m.Field15 == nil {
|
||||
return 0, proto.NewRequiredNotSetError("Field15")
|
||||
return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field15")
|
||||
} else {
|
||||
dAtA[i] = 0x7a
|
||||
i++
|
||||
@@ -1159,7 +1266,7 @@ func (m *RequiredExample) Unmarshal(dAtA []byte) error {
|
||||
}
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000001) == 0 {
|
||||
return proto.NewRequiredNotSetError("theRequiredString")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("theRequiredString")
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
@@ -1205,7 +1312,7 @@ func (m *NidOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
m.Field1 = float64(math.Float64frombits(v))
|
||||
hasFields[0] |= uint64(0x00000001)
|
||||
@@ -1217,7 +1324,7 @@ func (m *NidOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 4) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
iNdEx += 4
|
||||
m.Field2 = float32(math.Float32frombits(v))
|
||||
hasFields[0] |= uint64(0x00000002)
|
||||
@@ -1353,7 +1460,7 @@ func (m *NidOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 4) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Field9 = uint32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
m.Field9 = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
iNdEx += 4
|
||||
hasFields[0] |= uint64(0x00000100)
|
||||
case 10:
|
||||
@@ -1364,7 +1471,7 @@ func (m *NidOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 4) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Field10 = int32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
m.Field10 = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
iNdEx += 4
|
||||
hasFields[0] |= uint64(0x00000200)
|
||||
case 11:
|
||||
@@ -1375,7 +1482,7 @@ func (m *NidOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Field11 = uint64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
m.Field11 = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
hasFields[0] |= uint64(0x00000400)
|
||||
case 12:
|
||||
@@ -1386,7 +1493,7 @@ func (m *NidOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Field12 = int64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
m.Field12 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
hasFields[0] |= uint64(0x00000800)
|
||||
case 13:
|
||||
@@ -1489,49 +1596,49 @@ func (m *NidOptNative) Unmarshal(dAtA []byte) error {
|
||||
}
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000001) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field1")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field1")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000002) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field2")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field2")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000004) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field3")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field3")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000008) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field4")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field4")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000010) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field5")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field5")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000020) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field6")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field6")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000040) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field7")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field7")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000080) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field8")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field8")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000100) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field9")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field9")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000200) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field10")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field10")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000400) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field11")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field11")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000800) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field12")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field12")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00001000) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field13")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field13")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00002000) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field14")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field14")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00004000) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field15")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field15")
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
@@ -1577,7 +1684,7 @@ func (m *NinOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
v2 := float64(math.Float64frombits(v))
|
||||
m.Field1 = &v2
|
||||
@@ -1590,7 +1697,7 @@ func (m *NinOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 4) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
iNdEx += 4
|
||||
v2 := float32(math.Float32frombits(v))
|
||||
m.Field2 = &v2
|
||||
@@ -1732,7 +1839,7 @@ func (m *NinOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 4) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
iNdEx += 4
|
||||
m.Field9 = &v
|
||||
hasFields[0] |= uint64(0x00000100)
|
||||
@@ -1744,7 +1851,7 @@ func (m *NinOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 4) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = int32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:]))
|
||||
iNdEx += 4
|
||||
m.Field10 = &v
|
||||
hasFields[0] |= uint64(0x00000200)
|
||||
@@ -1756,7 +1863,7 @@ func (m *NinOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
m.Field11 = &v
|
||||
hasFields[0] |= uint64(0x00000400)
|
||||
@@ -1768,7 +1875,7 @@ func (m *NinOptNative) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = int64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
m.Field12 = &v
|
||||
hasFields[0] |= uint64(0x00000800)
|
||||
@@ -1874,49 +1981,49 @@ func (m *NinOptNative) Unmarshal(dAtA []byte) error {
|
||||
}
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000001) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field1")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field1")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000002) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field2")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field2")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000004) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field3")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field3")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000008) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field4")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field4")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000010) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field5")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field5")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000020) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field6")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field6")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000040) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field7")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field7")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000080) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field8")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field8")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000100) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field9")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field9")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000200) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field10")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field10")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000400) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field11")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field11")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00000800) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field12")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field12")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00001000) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field13")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field13")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00002000) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field14")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field14")
|
||||
}
|
||||
if hasFields[0]&uint64(0x00004000) == 0 {
|
||||
return proto.NewRequiredNotSetError("Field15")
|
||||
return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field15")
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
@@ -2111,9 +2218,11 @@ var (
|
||||
ErrIntOverflowRequiredexample = fmt.Errorf("proto: integer overflow")
|
||||
)
|
||||
|
||||
func init() { proto.RegisterFile("requiredexample.proto", fileDescriptorRequiredexample) }
|
||||
func init() {
|
||||
proto.RegisterFile("requiredexample.proto", fileDescriptor_requiredexample_2673f47f43fdf851)
|
||||
}
|
||||
|
||||
var fileDescriptorRequiredexample = []byte{
|
||||
var fileDescriptor_requiredexample_2673f47f43fdf851 = []byte{
|
||||
// 469 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0xd4, 0xdd, 0x8e, 0xd2, 0x40,
|
||||
0x14, 0xc0, 0x71, 0x3b, 0x65, 0xf9, 0x98, 0x05, 0xd9, 0x6d, 0xe2, 0xe4, 0xc4, 0x98, 0x7a, 0xc2,
|
||||
|
||||
Reference in New Issue
Block a user