Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(491)

Side by Side Diff: common/proto/milo/annotations.pb.go

Issue 2191693003: Milo: Add LogDog annotation stream support. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Rebarse Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « common/proto/milo/annotations.proto ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Code generated by protoc-gen-go. 1 // Code generated by protoc-gen-go.
2 // source: github.com/luci/luci-go/common/proto/milo/annotations.proto 2 // source: github.com/luci/luci-go/common/proto/milo/annotations.proto
3 // DO NOT EDIT! 3 // DO NOT EDIT!
4 4
5 /* 5 /*
6 Package milo is a generated protocol buffer package. 6 Package milo is a generated protocol buffer package.
7 7
8 It is generated from these files: 8 It is generated from these files:
9 github.com/luci/luci-go/common/proto/milo/annotations.proto 9 github.com/luci/luci-go/common/proto/milo/annotations.proto
10 10
(...skipping 26 matching lines...) Expand all
37 // Status is the expressed root step of this step or substep. 37 // Status is the expressed root step of this step or substep.
38 type Status int32 38 type Status int32
39 39
40 const ( 40 const (
41 // The step is still running. 41 // The step is still running.
42 Status_RUNNING Status = 0 42 Status_RUNNING Status = 0
43 // The step has finished successfully. 43 // The step has finished successfully.
44 Status_SUCCESS Status = 1 44 Status_SUCCESS Status = 1
45 // The step has finished unsuccessfully. 45 // The step has finished unsuccessfully.
46 Status_FAILURE Status = 2 46 Status_FAILURE Status = 2
47 // The step has been scheduled, but not yet started.
48 Status_PENDING Status = 3
47 ) 49 )
48 50
49 var Status_name = map[int32]string{ 51 var Status_name = map[int32]string{
50 0: "RUNNING", 52 0: "RUNNING",
51 1: "SUCCESS", 53 1: "SUCCESS",
52 2: "FAILURE", 54 2: "FAILURE",
55 3: "PENDING",
53 } 56 }
54 var Status_value = map[string]int32{ 57 var Status_value = map[string]int32{
55 "RUNNING": 0, 58 "RUNNING": 0,
56 "SUCCESS": 1, 59 "SUCCESS": 1,
57 "FAILURE": 2, 60 "FAILURE": 2,
61 "PENDING": 3,
58 } 62 }
59 63
60 func (x Status) String() string { 64 func (x Status) String() string {
61 return proto.EnumName(Status_name, int32(x)) 65 return proto.EnumName(Status_name, int32(x))
62 } 66 }
63 func (Status) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0 } } 67 func (Status) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0 } }
64 68
65 // Type is the type of failure. 69 // Type is the type of failure.
66 type FailureDetails_Type int32 70 type FailureDetails_Type int32
67 71
68 const ( 72 const (
69 // The failure is a general failure. 73 // The failure is a general failure.
70 FailureDetails_GENERAL FailureDetails_Type = 0 74 FailureDetails_GENERAL FailureDetails_Type = 0
71 // An unhandled exception occured during execution. 75 // An unhandled exception occured during execution.
72 FailureDetails_EXCEPTION FailureDetails_Type = 1 76 FailureDetails_EXCEPTION FailureDetails_Type = 1
73 // The failure is related to a failed infrastructure component, not an e rror 77 // The failure is related to a failed infrastructure component, not an e rror
74 // with the Step itself. 78 // with the Step itself.
75 FailureDetails_INFRA FailureDetails_Type = 2 79 FailureDetails_INFRA FailureDetails_Type = 2
76 // The failure is due to a failed Dungeon Master dependency. This should be 80 // The failure is due to a failed Dungeon Master dependency. This should be
77 // used if a Step's external depdendency fails and the Step cannot recov er 81 // used if a Step's external depdendency fails and the Step cannot recov er
78 // or proceed without it. 82 // or proceed without it.
79 FailureDetails_DM_DEPENDENCY_FAILED FailureDetails_Type = 3 83 FailureDetails_DM_DEPENDENCY_FAILED FailureDetails_Type = 3
84 // The step was cancelled.
85 FailureDetails_CANCELLED FailureDetails_Type = 4
80 ) 86 )
81 87
82 var FailureDetails_Type_name = map[int32]string{ 88 var FailureDetails_Type_name = map[int32]string{
83 0: "GENERAL", 89 0: "GENERAL",
84 1: "EXCEPTION", 90 1: "EXCEPTION",
85 2: "INFRA", 91 2: "INFRA",
86 3: "DM_DEPENDENCY_FAILED", 92 3: "DM_DEPENDENCY_FAILED",
93 4: "CANCELLED",
87 } 94 }
88 var FailureDetails_Type_value = map[string]int32{ 95 var FailureDetails_Type_value = map[string]int32{
89 "GENERAL": 0, 96 "GENERAL": 0,
90 "EXCEPTION": 1, 97 "EXCEPTION": 1,
91 "INFRA": 2, 98 "INFRA": 2,
92 "DM_DEPENDENCY_FAILED": 3, 99 "DM_DEPENDENCY_FAILED": 3,
100 "CANCELLED": 4,
93 } 101 }
94 102
95 func (x FailureDetails_Type) String() string { 103 func (x FailureDetails_Type) String() string {
96 return proto.EnumName(FailureDetails_Type_name, int32(x)) 104 return proto.EnumName(FailureDetails_Type_name, int32(x))
97 } 105 }
98 func (FailureDetails_Type) EnumDescriptor() ([]byte, []int) { return fileDescrip tor0, []int{0, 0} } 106 func (FailureDetails_Type) EnumDescriptor() ([]byte, []int) { return fileDescrip tor0, []int{0, 0} }
99 107
100 // FailureType provides more details on the nature of the Status. 108 // FailureType provides more details on the nature of the Status.
101 type FailureDetails struct { 109 type FailureDetails struct {
102 Type FailureDetails_Type `protobuf:"varint,1,opt,name=type,enum=milo.Fai lureDetails_Type" json:"type,omitempty"` 110 Type FailureDetails_Type `protobuf:"varint,1,opt,name=type,enum=milo.Fai lureDetails_Type" json:"type,omitempty"`
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 proto.RegisterType((*DMLink)(nil), "milo.DMLink") 672 proto.RegisterType((*DMLink)(nil), "milo.DMLink")
665 proto.RegisterEnum("milo.Status", Status_name, Status_value) 673 proto.RegisterEnum("milo.Status", Status_name, Status_value)
666 proto.RegisterEnum("milo.FailureDetails_Type", FailureDetails_Type_name, FailureDetails_Type_value) 674 proto.RegisterEnum("milo.FailureDetails_Type", FailureDetails_Type_name, FailureDetails_Type_value)
667 } 675 }
668 676
669 func init() { 677 func init() {
670 proto.RegisterFile("github.com/luci/luci-go/common/proto/milo/annotation s.proto", fileDescriptor0) 678 proto.RegisterFile("github.com/luci/luci-go/common/proto/milo/annotation s.proto", fileDescriptor0)
671 } 679 }
672 680
673 var fileDescriptor0 = []byte{ 681 var fileDescriptor0 = []byte{
674 // 954 bytes of a gzipped FileDescriptorProto 682 // 969 bytes of a gzipped FileDescriptorProto
675 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x55, 0x6f, 0x6f, 0xe3, 0xc4, 683 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x55, 0x6d, 0x6f, 0x1b, 0x45,
676 0x13, 0xbe, 0x24, 0x4e, 0xdc, 0x4c, 0x92, 0xfe, 0xf2, 0x5b, 0xc2, 0x61, 0x22, 0x44, 0x4b, 0x84, 684 0x10, 0xae, 0xed, 0xb3, 0x1d, 0x8f, 0xed, 0x60, 0x16, 0x53, 0x0e, 0x0b, 0x91, 0x60, 0x21, 0x51,
677 0xc4, 0x09, 0x38, 0x07, 0x95, 0x93, 0x80, 0x3b, 0x38, 0xa9, 0x97, 0xb8, 0x25, 0x52, 0x2e, 0x57, 685 0x01, 0x3d, 0xa3, 0x50, 0x09, 0x68, 0x4b, 0x25, 0xd7, 0xbe, 0x14, 0x4b, 0xae, 0x1b, 0xad, 0x13,
678 0x6d, 0x5a, 0x09, 0x5e, 0x45, 0x4e, 0xbc, 0x49, 0xcd, 0xf9, 0x1f, 0xf6, 0xba, 0x34, 0x1f, 0x87, 686 0x04, 0x9f, 0xac, 0xb3, 0x6f, 0xed, 0x1c, 0xbd, 0x37, 0xee, 0xf6, 0x42, 0xfc, 0x73, 0xf8, 0x11,
679 0x0f, 0xc1, 0xb7, 0xe1, 0xa3, 0xf0, 0x82, 0xd9, 0x3f, 0x4e, 0x5c, 0x68, 0x8f, 0x37, 0xd6, 0xce, 687 0xfc, 0x2a, 0xfe, 0x02, 0x1f, 0x98, 0x7d, 0x39, 0xfb, 0x02, 0x49, 0xfa, 0xe5, 0xb4, 0x33, 0xf3,
680 0xcc, 0x33, 0xbb, 0x33, 0xcf, 0x3e, 0x9e, 0x85, 0x17, 0x1b, 0x9f, 0x5f, 0xe7, 0x4b, 0x7b, 0x15, 688 0xcc, 0xee, 0xcc, 0xb3, 0xcf, 0xcd, 0xc2, 0xb3, 0x8d, 0xc7, 0x2f, 0xb3, 0xa5, 0xb5, 0x8a, 0x82,
681 0x87, 0xc3, 0x20, 0x5f, 0xf9, 0xf2, 0xf3, 0x74, 0x13, 0x0f, 0xd1, 0x11, 0xc6, 0xd1, 0x30, 0x49, 689 0x81, 0x9f, 0xad, 0x3c, 0xf9, 0x79, 0xbc, 0x89, 0x06, 0xe8, 0x08, 0xa2, 0x70, 0x10, 0x27, 0x11,
682 0x63, 0x1e, 0x0f, 0x43, 0x3f, 0x88, 0x87, 0x6e, 0x14, 0xc5, 0xdc, 0xe5, 0x7e, 0x1c, 0x65, 0xb6, 690 0x8f, 0x06, 0x81, 0xe7, 0x47, 0x03, 0x27, 0x0c, 0x23, 0xee, 0x70, 0x2f, 0x0a, 0x53, 0x4b, 0xba,
683 0x74, 0x13, 0x43, 0xf8, 0xfb, 0x47, 0x9b, 0x38, 0xde, 0x04, 0x4c, 0x41, 0x97, 0xf9, 0x7a, 0xc8, 691 0x89, 0x21, 0xfc, 0xbd, 0xa3, 0x4d, 0x14, 0x6d, 0x7c, 0xa6, 0xa0, 0xcb, 0x6c, 0x3d, 0xe0, 0x5e,
684 0xfd, 0x90, 0x65, 0xdc, 0x0d, 0x13, 0x05, 0x1b, 0xfc, 0x59, 0x81, 0xc3, 0x33, 0xd7, 0x0f, 0xf2, 692 0xc0, 0x52, 0xee, 0x04, 0xb1, 0x82, 0xf5, 0xff, 0x2e, 0xc1, 0xe1, 0xa9, 0xe3, 0xf9, 0x59, 0xc2,
685 0x94, 0x8d, 0x19, 0xc7, 0x45, 0x46, 0x9e, 0x82, 0xc1, 0xb7, 0x09, 0xb3, 0x2a, 0xc7, 0x95, 0x27, 693 0xc6, 0x8c, 0xe3, 0x22, 0x25, 0x8f, 0xc1, 0xe0, 0xdb, 0x98, 0x99, 0xa5, 0xe3, 0xd2, 0xa3, 0xc3,
686 0x87, 0x27, 0x1f, 0xda, 0x62, 0x23, 0xfb, 0x2e, 0xc6, 0xbe, 0x44, 0x00, 0x95, 0x30, 0x42, 0x10, 694 0x93, 0x8f, 0x2d, 0xb1, 0x91, 0x75, 0x13, 0x63, 0x9d, 0x23, 0x80, 0x4a, 0x18, 0x21, 0x08, 0x67,
687 0xce, 0x6e, 0xb9, 0x55, 0x45, 0x78, 0x93, 0xca, 0x35, 0x79, 0x09, 0xbd, 0x35, 0xe2, 0x98, 0xb7, 695 0xd7, 0xdc, 0x2c, 0x23, 0xbc, 0x41, 0xe5, 0x9a, 0xbc, 0x80, 0xee, 0x1a, 0x71, 0xcc, 0x5d, 0xb8,
688 0xf0, 0xc2, 0x85, 0xc7, 0x12, 0x16, 0x79, 0x2c, 0x5a, 0x6d, 0xad, 0xda, 0x71, 0xed, 0x49, 0xeb, 696 0xc1, 0xc2, 0x65, 0x31, 0x0b, 0x5d, 0x16, 0xae, 0xb6, 0x66, 0xe5, 0xb8, 0xf2, 0xa8, 0x79, 0xd2,
689 0xa4, 0xad, 0xb6, 0x1c, 0xbf, 0x9e, 0xfa, 0xd1, 0x5b, 0x4a, 0x14, 0x72, 0x1c, 0x8e, 0x77, 0xb8, 697 0x52, 0x5b, 0x8e, 0x5f, 0x4f, 0xbd, 0xf0, 0x2d, 0x25, 0x0a, 0x39, 0x0e, 0xc6, 0x3b, 0x5c, 0xff,
690 0xc1, 0x39, 0x18, 0xe2, 0x04, 0xd2, 0x02, 0xf3, 0xdc, 0x99, 0x39, 0xf4, 0x74, 0xda, 0x7d, 0x44, 698 0x67, 0x30, 0xc4, 0x09, 0xa4, 0x09, 0xf5, 0x57, 0xf6, 0xcc, 0xa6, 0xc3, 0x69, 0xe7, 0x01, 0x69,
691 0x3a, 0xd0, 0x74, 0x7e, 0x1a, 0x39, 0x17, 0x97, 0x93, 0x37, 0xb3, 0x6e, 0x85, 0x34, 0xa1, 0x3e, 699 0x43, 0xc3, 0xfe, 0x65, 0x64, 0x9f, 0x9d, 0x4f, 0xde, 0xcc, 0x3a, 0x25, 0xd2, 0x80, 0xea, 0x64,
692 0x99, 0x9d, 0xd1, 0xd3, 0x6e, 0x95, 0x58, 0xd0, 0x1b, 0xbf, 0x5e, 0x8c, 0x9d, 0x0b, 0x67, 0x36, 700 0x76, 0x4a, 0x87, 0x9d, 0x32, 0x31, 0xa1, 0x3b, 0x7e, 0xbd, 0x18, 0xdb, 0x67, 0xf6, 0x6c, 0x6c,
693 0x76, 0x66, 0xa3, 0x9f, 0x17, 0x67, 0xa7, 0x93, 0xa9, 0x33, 0xee, 0xd6, 0x06, 0xbf, 0x1f, 0x80, 701 0xcf, 0x46, 0xbf, 0x2e, 0x4e, 0x87, 0x93, 0xa9, 0x3d, 0xee, 0x54, 0x44, 0xce, 0x68, 0x38, 0x1b,
694 0x31, 0xe7, 0x2c, 0x11, 0x55, 0x46, 0x6e, 0xa8, 0x9a, 0xc2, 0x2a, 0xc5, 0x9a, 0x7c, 0x09, 0xa6, 702 0xd9, 0x53, 0x61, 0x1a, 0xfd, 0x3f, 0x0f, 0xc0, 0x98, 0x73, 0x16, 0x8b, 0xa2, 0x43, 0x27, 0x50,
695 0x60, 0xd2, 0x8d, 0x3c, 0x59, 0x7c, 0xeb, 0x84, 0xa8, 0xc2, 0x44, 0x82, 0x3d, 0x52, 0x11, 0x5a, 703 0x3d, 0x62, 0xd1, 0x62, 0x4d, 0xbe, 0x86, 0xba, 0x20, 0xd6, 0x09, 0x5d, 0xd9, 0x4b, 0xf3, 0x84,
696 0x40, 0xc8, 0xa7, 0xd0, 0x40, 0xe2, 0x78, 0x9e, 0x61, 0x17, 0x82, 0x98, 0x76, 0x01, 0x16, 0x3e, 704 0xa8, 0x3a, 0x45, 0x82, 0x35, 0x52, 0x11, 0x9a, 0x43, 0xc8, 0xe7, 0x50, 0x43, 0x1e, 0x79, 0x96,
697 0xaa, 0x63, 0xe4, 0x07, 0xf8, 0xdf, 0x5a, 0x51, 0x85, 0x7d, 0x4b, 0xae, 0x2c, 0x43, 0xee, 0xdd, 705 0x62, 0x53, 0x82, 0xa7, 0x56, 0x0e, 0x16, 0x3e, 0xaa, 0x63, 0xe4, 0x47, 0x78, 0x6f, 0xad, 0x98,
698 0xbb, 0x8f, 0x47, 0x7a, 0xb8, 0xbe, 0xcb, 0x3d, 0x96, 0x94, 0xe5, 0xcb, 0x0c, 0x0b, 0xb0, 0xea, 706 0x43, 0x1a, 0x24, 0x75, 0xa6, 0x21, 0xf7, 0xee, 0xde, 0x46, 0x2b, 0x3d, 0x5c, 0xdf, 0xbc, 0x0a,
699 0x92, 0xab, 0x72, 0x49, 0x73, 0x15, 0xa1, 0x05, 0x84, 0x7c, 0x03, 0x9d, 0x8c, 0x7b, 0x71, 0xce, 707 0x2c, 0x29, 0xcd, 0x96, 0x29, 0x16, 0x60, 0x56, 0x25, 0x75, 0xc5, 0x92, 0xe6, 0x2a, 0x42, 0x73,
700 0x17, 0x19, 0x4f, 0x99, 0x1b, 0x5a, 0x8d, 0x72, 0x1b, 0xd3, 0x78, 0xe3, 0xc5, 0x9b, 0xb9, 0x8c, 708 0x08, 0xf9, 0x0e, 0xda, 0x29, 0x77, 0xa3, 0x8c, 0x2f, 0x52, 0x9e, 0x30, 0x27, 0x30, 0x6b, 0xc5,
701 0xd0, 0xb6, 0x02, 0x2a, 0x4b, 0x27, 0xb2, 0x34, 0x2d, 0x12, 0xcd, 0x77, 0x26, 0x22, 0x50, 0x27, 709 0x36, 0xa6, 0xd1, 0xc6, 0x8d, 0x36, 0x73, 0x19, 0xa1, 0x2d, 0x05, 0x54, 0x96, 0x4e, 0x64, 0x49,
702 0x3e, 0xc3, 0xfa, 0xb8, 0x9b, 0x72, 0xe6, 0x59, 0x07, 0x32, 0xa5, 0x6f, 0x2b, 0x85, 0xd9, 0x85, 710 0x92, 0x27, 0xd6, 0xef, 0x4d, 0x44, 0xa0, 0x4e, 0x7c, 0x82, 0xf5, 0x71, 0x27, 0xe1, 0xcc, 0x35,
703 0xc2, 0xec, 0xcb, 0x42, 0x61, 0xb4, 0x80, 0x92, 0xaf, 0xa0, 0x2e, 0x6e, 0xd6, 0xb3, 0x9a, 0xff, 711 0x0f, 0x64, 0x4a, 0xcf, 0x52, 0x82, 0xb3, 0x72, 0xc1, 0x59, 0xe7, 0xb9, 0xe0, 0x68, 0x0e, 0x25,
704 0x99, 0xa3, 0x80, 0x3b, 0x51, 0xf5, 0x90, 0x84, 0x42, 0x54, 0x43, 0x38, 0xc0, 0x84, 0x4d, 0xca, 712 0xdf, 0x40, 0x55, 0x5c, 0xb4, 0x6b, 0x36, 0xde, 0x99, 0xa3, 0x80, 0x3b, 0x8d, 0x75, 0x91, 0x84,
705 0xb2, 0xcc, 0x7a, 0x5f, 0x6e, 0xf4, 0x5e, 0x89, 0x9c, 0x0b, 0x1d, 0xa2, 0x3b, 0x10, 0xf9, 0x18, 713 0x5c, 0x63, 0x03, 0x38, 0xc0, 0x84, 0x4d, 0xc2, 0xd2, 0xd4, 0xfc, 0x50, 0x6e, 0xf4, 0x41, 0x81,
706 0x8c, 0x00, 0x15, 0x66, 0x3d, 0x96, 0x60, 0xd0, 0xcd, 0x09, 0xcd, 0x49, 0x3f, 0xf9, 0x02, 0x5a, 714 0x9c, 0x33, 0x1d, 0xa2, 0x3b, 0x10, 0xf9, 0x14, 0x0c, 0x1f, 0x05, 0x67, 0x3e, 0x94, 0x60, 0xd0,
707 0x31, 0xbf, 0x66, 0xe9, 0x42, 0x58, 0x99, 0xf5, 0x81, 0x24, 0xbc, 0x0c, 0x03, 0x19, 0x16, 0xcb, 715 0xcd, 0x09, 0x09, 0x4a, 0x3f, 0xf9, 0x0a, 0x9a, 0x11, 0xbf, 0x64, 0xc9, 0x42, 0x58, 0xa9, 0xf9,
708 0x4c, 0x9f, 0x9e, 0xb0, 0x94, 0x6f, 0x2d, 0x4b, 0x22, 0xff, 0x71, 0xba, 0x0c, 0xd1, 0x1d, 0xa8, 716 0x91, 0x24, 0xbc, 0x08, 0x03, 0x19, 0x16, 0xcb, 0x54, 0x9f, 0x1e, 0xb3, 0x84, 0x6f, 0x4d, 0x53,
709 0xff, 0x47, 0x05, 0x4c, 0x2d, 0x22, 0xf2, 0x09, 0xb4, 0xb5, 0x8c, 0xc4, 0x59, 0x42, 0x85, 0xa2, 717 0x22, 0xff, 0x73, 0xba, 0x0c, 0xd1, 0x1d, 0xa8, 0xf7, 0x57, 0x09, 0xea, 0x5a, 0x44, 0xe4, 0x33,
710 0xad, 0x96, 0xf6, 0xe1, 0x01, 0x8c, 0x74, 0xa1, 0xb6, 0xfa, 0xcd, 0xd3, 0x7f, 0x91, 0x58, 0x92, 718 0x68, 0x69, 0x19, 0x89, 0xb3, 0x84, 0x0a, 0x45, 0x5b, 0x4d, 0xed, 0xc3, 0x03, 0x18, 0xe9, 0x40,
711 0xef, 0xc0, 0x64, 0xd1, 0x8d, 0x9f, 0xc6, 0x91, 0xfe, 0x6f, 0x8e, 0xfe, 0x2d, 0x4f, 0xdb, 0x51, 719 0x65, 0xf5, 0x87, 0xab, 0x7f, 0x2a, 0xb1, 0x24, 0x3f, 0x40, 0x9d, 0x85, 0x57, 0x5e, 0x12, 0x85,
712 0x08, 0x27, 0xe2, 0xe9, 0x96, 0x16, 0xf8, 0xfe, 0x73, 0x68, 0x97, 0x03, 0x62, 0xf3, 0xb7, 0x6c, 720 0xfa, 0x37, 0x3a, 0xfa, 0xbf, 0x3c, 0x2d, 0x5b, 0x21, 0xec, 0x90, 0x27, 0x5b, 0x9a, 0xe3, 0x7b,
713 0xab, 0xc5, 0x2f, 0x96, 0xa4, 0x07, 0xf5, 0x1b, 0x37, 0xc8, 0x99, 0x3e, 0x50, 0x19, 0xcf, 0xab, 721 0x4f, 0xa1, 0x55, 0x0c, 0x88, 0xcd, 0xdf, 0xb2, 0xad, 0x16, 0xbf, 0x58, 0x92, 0x2e, 0x54, 0xaf,
714 0xdf, 0x56, 0xfa, 0x5b, 0x30, 0xb5, 0xd0, 0xc8, 0x31, 0x18, 0x52, 0x8a, 0x95, 0x32, 0x81, 0xe2, 722 0x1c, 0x3f, 0x63, 0xfa, 0x40, 0x65, 0x3c, 0x2d, 0x7f, 0x5f, 0xea, 0x6d, 0xa1, 0xae, 0x85, 0x46,
715 0xf8, 0x1f, 0x1f, 0x51, 0x19, 0x21, 0xa7, 0xf0, 0xff, 0xfd, 0xe8, 0x29, 0xc4, 0x54, 0x7d, 0x48, 723 0x8e, 0xc1, 0x90, 0x52, 0x2c, 0x15, 0x09, 0x14, 0xc7, 0xff, 0xf4, 0x80, 0xca, 0x08, 0x19, 0xc2,
716 0x4c, 0x98, 0xd6, 0xdd, 0xc3, 0x95, 0xef, 0x55, 0x73, 0x27, 0xf9, 0xfe, 0x4b, 0x38, 0x28, 0xae, 724 0xfb, 0xfb, 0x49, 0x94, 0x8b, 0xa9, 0x7c, 0x97, 0x98, 0x30, 0xad, 0xb3, 0x87, 0x2b, 0xdf, 0xcb,
717 0x51, 0x14, 0xc8, 0x11, 0x18, 0xc8, 0xc3, 0xeb, 0x54, 0x19, 0xe4, 0x23, 0x68, 0x22, 0x69, 0x49, 725 0xc6, 0x4e, 0xf2, 0xbd, 0x17, 0x70, 0x90, 0x5f, 0xa3, 0x28, 0x90, 0x23, 0xd0, 0x97, 0x87, 0x57,
718 0xc0, 0x84, 0x02, 0xab, 0x32, 0xb2, 0x77, 0xf4, 0x9f, 0xc9, 0x7c, 0x49, 0xff, 0xbd, 0x3f, 0xfc, 726 0xa9, 0x32, 0xc8, 0x27, 0xd0, 0x40, 0xd2, 0x62, 0x9f, 0x09, 0x05, 0x96, 0x65, 0x64, 0xef, 0xe8,
719 0xbd, 0x4d, 0x0f, 0xfe, 0xaa, 0x80, 0x21, 0xee, 0x58, 0x84, 0x03, 0x77, 0xc9, 0x02, 0x9d, 0xa3, 727 0x3d, 0x91, 0xf9, 0x92, 0xfe, 0x5b, 0x7f, 0xf8, 0x5b, 0x9b, 0xee, 0xff, 0x53, 0x02, 0x43, 0xdc,
720 0x0c, 0x72, 0x04, 0x2d, 0x37, 0xf0, 0xdd, 0x6c, 0xa1, 0x62, 0x2a, 0x15, 0xa4, 0x6b, 0x2a, 0x01, 728 0xb1, 0x08, 0xfb, 0xce, 0x92, 0xf9, 0x3a, 0x47, 0x19, 0xe4, 0x08, 0x9a, 0x8e, 0xef, 0x39, 0xe9,
721 0x04, 0x6a, 0x79, 0x1a, 0xc8, 0xa9, 0xd0, 0xc4, 0x0e, 0x85, 0x81, 0x77, 0xd7, 0x09, 0x64, 0xe3, 729 0x42, 0xc5, 0x54, 0x2a, 0x48, 0xd7, 0x54, 0x02, 0x08, 0x54, 0xb2, 0xc4, 0x97, 0x53, 0xa1, 0x81,
722 0x05, 0x27, 0xc6, 0x3b, 0x38, 0x69, 0x07, 0x25, 0x9b, 0x7c, 0x0f, 0x87, 0x7e, 0x16, 0x07, 0x2e, 730 0x1d, 0x0a, 0x03, 0xef, 0xae, 0xed, 0xcb, 0xc6, 0x73, 0x4e, 0x8c, 0x7b, 0x38, 0x69, 0xf9, 0x05,
723 0x67, 0x8b, 0x78, 0xf9, 0x0b, 0x5b, 0x71, 0x9c, 0x04, 0x25, 0xb1, 0x4f, 0x54, 0xec, 0x8d, 0x0c, 731 0x9b, 0x3c, 0x87, 0x43, 0x2f, 0x8d, 0x7c, 0x87, 0xb3, 0x45, 0xb4, 0xfc, 0x8d, 0xad, 0x38, 0x4e,
724 0x61, 0x72, 0xc7, 0x2f, 0x3b, 0xc8, 0x67, 0x60, 0xe2, 0xc8, 0x95, 0xb2, 0x57, 0xc3, 0xe0, 0xce, 732 0x82, 0x82, 0xd8, 0x27, 0x2a, 0xf6, 0x46, 0x86, 0x30, 0xb9, 0xed, 0x15, 0x1d, 0xe4, 0x0b, 0xa8,
725 0xb0, 0x45, 0x7c, 0xc3, 0x0b, 0xc5, 0xea, 0x95, 0xa9, 0xb9, 0x18, 0x50, 0x68, 0x97, 0xeb, 0x21, 733 0xe3, 0x04, 0x96, 0xb2, 0x57, 0xc3, 0xe0, 0xc6, 0xec, 0x45, 0x7c, 0xcd, 0x0d, 0xc4, 0xea, 0x65,
726 0x8f, 0x71, 0xce, 0xb1, 0xf4, 0x86, 0xa5, 0x9a, 0x06, 0x6d, 0x09, 0x7f, 0x92, 0xb2, 0xb5, 0x7f, 734 0x5d, 0x73, 0xd1, 0xa7, 0xd0, 0x2a, 0xd6, 0x43, 0x1e, 0xe2, 0x9c, 0x63, 0xc9, 0x15, 0x4b, 0x34,
727 0xab, 0x29, 0xd0, 0xd6, 0x8e, 0xe8, 0xda, 0x9e, 0xe8, 0xc1, 0x0b, 0xe8, 0xdc, 0xa9, 0xf3, 0xc1, 735 0x0d, 0xda, 0x12, 0xfe, 0x38, 0x61, 0x6b, 0xef, 0x5a, 0x53, 0xa0, 0xad, 0x1d, 0xd1, 0x95, 0x3d,
728 0x4d, 0x31, 0xf9, 0xda, 0xcd, 0xae, 0x8b, 0xc7, 0x43, 0xac, 0x07, 0x11, 0x34, 0x54, 0xb5, 0x0f, 736 0xd1, 0xfd, 0x67, 0xd0, 0xbe, 0x51, 0xe7, 0x9d, 0x9b, 0x62, 0xf2, 0xa5, 0x93, 0x5e, 0xe6, 0x6f,
729 0x66, 0xe1, 0x45, 0xfd, 0x9a, 0xe3, 0xc0, 0x28, 0xee, 0x51, 0x1a, 0xf8, 0x0a, 0x98, 0x2e, 0xe7, 737 0x89, 0x58, 0xf7, 0x43, 0xa8, 0xa9, 0x6a, 0xef, 0xcc, 0xc2, 0x8b, 0xfa, 0x3d, 0xc3, 0x81, 0x91,
730 0x2c, 0x4c, 0xb8, 0xac, 0xa5, 0x46, 0x0b, 0x53, 0xa8, 0x86, 0xdd, 0xb2, 0x55, 0x2e, 0x54, 0x27, 738 0xdf, 0xa3, 0x34, 0xf0, 0x51, 0xa8, 0x3b, 0x9c, 0xb3, 0x20, 0xe6, 0xb2, 0x96, 0x0a, 0xcd, 0x4d,
731 0x6f, 0xa2, 0x46, 0xf7, 0x8e, 0xcf, 0x87, 0xd0, 0x50, 0x43, 0x5c, 0x3c, 0x37, 0xf4, 0x6a, 0x36, 739 0xa1, 0x1a, 0x76, 0xcd, 0x56, 0x99, 0x50, 0x9d, 0xbc, 0x89, 0x0a, 0xdd, 0x3b, 0xbe, 0x7c, 0x0e,
732 0x9b, 0xcc, 0xce, 0xf1, 0xb9, 0x41, 0x63, 0x7e, 0x35, 0x1a, 0x39, 0xf3, 0x39, 0x3e, 0x36, 0x68, 740 0x35, 0x35, 0xc4, 0xc5, 0xeb, 0x43, 0x2f, 0x66, 0xb3, 0xc9, 0xec, 0x15, 0xbe, 0x3e, 0x68, 0xcc,
733 0x88, 0x37, 0xe5, 0x8a, 0x3a, 0xdd, 0xea, 0xb2, 0x21, 0xe7, 0xd6, 0xd7, 0x7f, 0x07, 0x00, 0x00, 741 0x2f, 0x46, 0x23, 0x7b, 0x3e, 0xc7, 0xb7, 0x07, 0x0d, 0xf1, 0xc4, 0x5c, 0x50, 0x1b, 0x5f, 0x1f,
734 0xff, 0xff, 0x4d, 0xe2, 0x51, 0xf3, 0xa0, 0x07, 0x00, 0x00, 742 0x34, 0xc4, 0xc3, 0x23, 0x60, 0x95, 0x65, 0x4d, 0x0e, 0xb1, 0x6f, 0xff, 0x0d, 0x00, 0x00, 0xff,
743 0xff, 0x98, 0x64, 0x1b, 0x97, 0xbc, 0x07, 0x00, 0x00,
735 } 744 }
OLDNEW
« no previous file with comments | « common/proto/milo/annotations.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698