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

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

Issue 2994593004: [annotee] add SOURCE_MANIFEST annotation. (Closed)
Patch Set: rename to deployment_manifests Created 3 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') | logdog/client/annotee/annotation/annotation.go » ('j') | 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. DO NOT EDIT. 1 // Code generated by protoc-gen-go. DO NOT EDIT.
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 3
4 /* 4 /*
5 Package milo is a generated protocol buffer package. 5 Package milo is a generated protocol buffer package.
6 6
7 It is generated from these files: 7 It is generated from these files:
8 github.com/luci/luci-go/common/proto/milo/annotations.proto 8 github.com/luci/luci-go/common/proto/milo/annotations.proto
9 9
10 It has these top-level messages: 10 It has these top-level messages:
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 // The primary link for this Component. This is the link that interactio n 175 // The primary link for this Component. This is the link that interactio n
176 // with the Component will use. 176 // with the Component will use.
177 Link *Link `protobuf:"bytes,22,opt,name=link" json:"link,omitempty"` 177 Link *Link `protobuf:"bytes,22,opt,name=link" json:"link,omitempty"`
178 // Additional links related to the Component. These will be rendered alo ngside 178 // Additional links related to the Component. These will be rendered alo ngside
179 // the component. 179 // the component.
180 OtherLinks []*Link `protobuf:"bytes,23,rep,name=other_links,jso n=otherLinks" json:"other_links,omitempty"` 180 OtherLinks []*Link `protobuf:"bytes,23,rep,name=other_links,jso n=otherLinks" json:"other_links,omitempty"`
181 Property []*Step_Property `protobuf:"bytes,24,rep,name=property" json: "property,omitempty"` 181 Property []*Step_Property `protobuf:"bytes,24,rep,name=property" json: "property,omitempty"`
182 // Maps the name of the Manifest, e.g. UNPATCHED, INFRA, etc. to the 182 // Maps the name of the Manifest, e.g. UNPATCHED, INFRA, etc. to the
183 // ManifestLink. This name will be used in the milo console definition t o 183 // ManifestLink. This name will be used in the milo console definition t o
184 // indicate which manifest data to sort the console view by. 184 // indicate which manifest data to sort the console view by.
185 » SourceManifests map[string]*Step_ManifestLink `protobuf:"bytes,25,rep,na me=source_manifests,json=sourceManifests" json:"source_manifests,omitempty" prot obuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` 185 » DeploymentManifests map[string]*Step_ManifestLink `protobuf:"bytes,25,re p,name=deployment_manifests,json=deploymentManifests" json:"deployment_manifests ,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=v alue"`
186 } 186 }
187 187
188 func (m *Step) Reset() { *m = Step{} } 188 func (m *Step) Reset() { *m = Step{} }
189 func (m *Step) String() string { return proto.CompactTextString(m) } 189 func (m *Step) String() string { return proto.CompactTextString(m) }
190 func (*Step) ProtoMessage() {} 190 func (*Step) ProtoMessage() {}
191 func (*Step) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } 191 func (*Step) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
192 192
193 func (m *Step) GetName() string { 193 func (m *Step) GetName() string {
194 if m != nil { 194 if m != nil {
195 return m.Name 195 return m.Name
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 return nil 281 return nil
282 } 282 }
283 283
284 func (m *Step) GetProperty() []*Step_Property { 284 func (m *Step) GetProperty() []*Step_Property {
285 if m != nil { 285 if m != nil {
286 return m.Property 286 return m.Property
287 } 287 }
288 return nil 288 return nil
289 } 289 }
290 290
291 func (m *Step) GetSourceManifests() map[string]*Step_ManifestLink { 291 func (m *Step) GetDeploymentManifests() map[string]*Step_ManifestLink {
292 if m != nil { 292 if m != nil {
293 » » return m.SourceManifests 293 » » return m.DeploymentManifests
294 } 294 }
295 return nil 295 return nil
296 } 296 }
297 297
298 // Command contains information about a command-line invocation. 298 // Command contains information about a command-line invocation.
299 type Step_Command struct { 299 type Step_Command struct {
300 // The command-line invocation, expressed as an argument vector. 300 // The command-line invocation, expressed as an argument vector.
301 CommandLine []string `protobuf:"bytes,1,rep,name=command_line,json=comma ndLine" json:"command_line,omitempty"` 301 CommandLine []string `protobuf:"bytes,1,rep,name=command_line,json=comma ndLine" json:"command_line,omitempty"`
302 // The current working directory. 302 // The current working directory.
303 Cwd string `protobuf:"bytes,2,opt,name=cwd" json:"cwd,omitempty"` 303 Cwd string `protobuf:"bytes,2,opt,name=cwd" json:"cwd,omitempty"`
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 } 515 }
516 return "" 516 return ""
517 } 517 }
518 518
519 // Links to a recipe_engine.Manifest proto. 519 // Links to a recipe_engine.Manifest proto.
520 type Step_ManifestLink struct { 520 type Step_ManifestLink struct {
521 // The fully qualified (logdog://) url of the Manifest proto. It's expec ted 521 // The fully qualified (logdog://) url of the Manifest proto. It's expec ted
522 // that this is a binary logdog stream consisting of exactly one Manifes t 522 // that this is a binary logdog stream consisting of exactly one Manifes t
523 // proto. 523 // proto.
524 Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"` 524 Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
525 » // The hash of the Manifest. Milo will use this as an optimization; 525 » // The hash of the Manifest's raw binary form (i.e. the bytes at the end of
526 » // Manifests will be interned once into Milo's datastore. Future hashes 526 » // `url`, without any interpretation or decoding). Milo will use this as an
527 » // which match will not be loaded from the url, but will be assumed to b e 527 » // optimization; Manifests will be interned once into Milo's datastore.
528 » // identical. If the sha256 doesn't match the data at the URL, Milo may 528 » // Future hashes which match will not be loaded from the url, but will b e
529 » // render this build with the wrong manifest. 529 » // assumed to be identical. If the sha256 doesn't match the data at the URL,
530 » Sha256 string `protobuf:"bytes,2,opt,name=sha256" json:"sha256,omitempty "` 530 » // Milo may render this build with the wrong manifest.
531 » //
532 » // This is the raw sha256, so it should be exactly 32 bytes.
533 » Sha256 []byte `protobuf:"bytes,2,opt,name=sha256,proto3" json:"sha256,om itempty"`
531 } 534 }
532 535
533 func (m *Step_ManifestLink) Reset() { *m = Step_ManifestLink{ } } 536 func (m *Step_ManifestLink) Reset() { *m = Step_ManifestLink{ } }
534 func (m *Step_ManifestLink) String() string { return proto.CompactTex tString(m) } 537 func (m *Step_ManifestLink) String() string { return proto.CompactTex tString(m) }
535 func (*Step_ManifestLink) ProtoMessage() {} 538 func (*Step_ManifestLink) ProtoMessage() {}
536 func (*Step_ManifestLink) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 4} } 539 func (*Step_ManifestLink) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 4} }
537 540
538 func (m *Step_ManifestLink) GetUrl() string { 541 func (m *Step_ManifestLink) GetUrl() string {
539 if m != nil { 542 if m != nil {
540 return m.Url 543 return m.Url
541 } 544 }
542 return "" 545 return ""
543 } 546 }
544 547
545 func (m *Step_ManifestLink) GetSha256() string { 548 func (m *Step_ManifestLink) GetSha256() []byte {
546 if m != nil { 549 if m != nil {
547 return m.Sha256 550 return m.Sha256
548 } 551 }
549 » return "" 552 » return nil
550 } 553 }
551 554
552 // A Link is an optional label followed by a typed link to an external 555 // A Link is an optional label followed by a typed link to an external
553 // resource. 556 // resource.
554 type Link struct { 557 type Link struct {
555 // An optional display label for the link. 558 // An optional display label for the link.
556 Label string `protobuf:"bytes,1,opt,name=label" json:"label,omitempty"` 559 Label string `protobuf:"bytes,1,opt,name=label" json:"label,omitempty"`
557 // If present, this link is an alias for another link with this name, an d 560 // If present, this link is an alias for another link with this name, an d
558 // should be rendered in relation to that link. 561 // should be rendered in relation to that link.
559 AliasLabel string `protobuf:"bytes,2,opt,name=alias_label,json=aliasLabe l" json:"alias_label,omitempty"` 562 AliasLabel string `protobuf:"bytes,2,opt,name=alias_label,json=aliasLabe l" json:"alias_label,omitempty"`
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 proto.RegisterType((*DMLink)(nil), "milo.DMLink") 878 proto.RegisterType((*DMLink)(nil), "milo.DMLink")
876 proto.RegisterEnum("milo.Status", Status_name, Status_value) 879 proto.RegisterEnum("milo.Status", Status_name, Status_value)
877 proto.RegisterEnum("milo.FailureDetails_Type", FailureDetails_Type_name, FailureDetails_Type_value) 880 proto.RegisterEnum("milo.FailureDetails_Type", FailureDetails_Type_name, FailureDetails_Type_value)
878 } 881 }
879 882
880 func init() { 883 func init() {
881 proto.RegisterFile("github.com/luci/luci-go/common/proto/milo/annotation s.proto", fileDescriptor0) 884 proto.RegisterFile("github.com/luci/luci-go/common/proto/milo/annotation s.proto", fileDescriptor0)
882 } 885 }
883 886
884 var fileDescriptor0 = []byte{ 887 var fileDescriptor0 = []byte{
885 // 1062 bytes of a gzipped FileDescriptorProto 888 // 1068 bytes of a gzipped FileDescriptorProto
886 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0xdf, 0x6f, 0xe3, 0x44, 889 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0xdb, 0x6e, 0xdb, 0x46,
887 0x10, 0xce, 0x0f, 0x27, 0x6e, 0x26, 0x69, 0xcf, 0x2c, 0xe1, 0xce, 0x17, 0x21, 0x5a, 0x22, 0x24, 890 0x13, 0xd6, 0x81, 0x12, 0xa3, 0x91, 0xec, 0x5f, 0xff, 0x46, 0x4d, 0x18, 0xa1, 0x68, 0x5c, 0xb5,
888 0x2a, 0xb8, 0x26, 0xa8, 0x1c, 0x70, 0xbf, 0x38, 0xa9, 0x97, 0xb8, 0xd7, 0xa0, 0x34, 0x57, 0x6d, 891 0x40, 0x8d, 0x36, 0x96, 0x0a, 0x37, 0x6d, 0x73, 0x6a, 0x00, 0x47, 0xa2, 0x63, 0x01, 0xb2, 0x62,
889 0x5a, 0xe9, 0x10, 0x0f, 0xd1, 0xc6, 0xde, 0xa4, 0xa6, 0xb6, 0xd7, 0x78, 0xd7, 0xa5, 0x79, 0xe7, 892 0xac, 0xec, 0x22, 0xbd, 0x22, 0x56, 0xe2, 0x4a, 0x66, 0x4d, 0x72, 0x59, 0xee, 0xd2, 0xb5, 0xde,
890 0x5f, 0xe2, 0x7f, 0xe3, 0x81, 0x07, 0xb4, 0xbb, 0x76, 0xea, 0x42, 0x7a, 0xbc, 0x58, 0x3b, 0x33, 893 0xa3, 0xaf, 0xd2, 0x77, 0xeb, 0x45, 0x2f, 0x8a, 0x3d, 0x50, 0xa6, 0x1b, 0x3b, 0xbd, 0x21, 0x76,
891 0xdf, 0xec, 0xce, 0xcc, 0xf7, 0xad, 0x17, 0x5e, 0x2e, 0x7d, 0x71, 0x99, 0xce, 0x7b, 0x2e, 0x0b, 894 0x66, 0xbe, 0xd9, 0x9d, 0xf9, 0xe6, 0x5b, 0x2e, 0xbc, 0x5c, 0x05, 0xe2, 0x3c, 0x9b, 0xf7, 0x17,
892 0xfb, 0x41, 0xea, 0xfa, 0xea, 0x73, 0xb0, 0x64, 0x7d, 0x97, 0x85, 0x21, 0x8b, 0xfa, 0x71, 0xc2, 895 0x2c, 0x1a, 0x84, 0xd9, 0x22, 0x50, 0x9f, 0xbd, 0x15, 0x1b, 0x2c, 0x58, 0x14, 0xb1, 0x78, 0x90,
893 0x04, 0xeb, 0x87, 0x7e, 0xc0, 0xfa, 0x24, 0x8a, 0x98, 0x20, 0xc2, 0x67, 0x11, 0xef, 0x29, 0x37, 896 0xa4, 0x4c, 0xb0, 0x41, 0x14, 0x84, 0x6c, 0x40, 0xe2, 0x98, 0x09, 0x22, 0x02, 0x16, 0xf3, 0xbe,
894 0x32, 0xa4, 0xbf, 0xb3, 0xbb, 0x64, 0x6c, 0x19, 0x50, 0x0d, 0x9d, 0xa7, 0x8b, 0xbe, 0xf0, 0x43, 897 0x72, 0x23, 0x4b, 0xfa, 0xbb, 0x8f, 0x57, 0x8c, 0xad, 0x42, 0xaa, 0xa1, 0xf3, 0x6c, 0x39, 0x10,
895 0xca, 0x05, 0x09, 0x63, 0x0d, 0xeb, 0xfe, 0x55, 0x86, 0x9d, 0x63, 0xe2, 0x07, 0x69, 0x42, 0x87, 898 0x41, 0x44, 0xb9, 0x20, 0x51, 0xa2, 0x61, 0xbd, 0xbf, 0xca, 0xb0, 0x7d, 0x48, 0x82, 0x30, 0x4b,
896 0x54, 0x10, 0x3f, 0xe0, 0xe8, 0x00, 0x0c, 0xb1, 0x8a, 0xa9, 0x5d, 0xde, 0x2b, 0xef, 0xef, 0x1c, 899 0xe9, 0x88, 0x0a, 0x12, 0x84, 0x1c, 0xed, 0x81, 0x25, 0xd6, 0x09, 0x75, 0xca, 0x3b, 0xe5, 0xdd,
897 0x3e, 0xee, 0xc9, 0x8d, 0x7a, 0x77, 0x31, 0xbd, 0xf3, 0x55, 0x4c, 0xb1, 0x82, 0x21, 0x04, 0x86, 900 0xed, 0xfd, 0x47, 0x7d, 0xb9, 0x51, 0xff, 0x26, 0xa6, 0x7f, 0xba, 0x4e, 0x28, 0x56, 0x30, 0x84,
898 0xa0, 0x37, 0xc2, 0xae, 0xec, 0x95, 0xf7, 0x1b, 0x58, 0xad, 0xd1, 0x6b, 0x68, 0x2f, 0x88, 0x1f, 901 0xc0, 0x12, 0xf4, 0x4a, 0x38, 0x95, 0x9d, 0xf2, 0x6e, 0x03, 0xab, 0x35, 0x7a, 0x0d, 0x9d, 0x25,
899 0x50, 0x6f, 0xe6, 0x85, 0x33, 0x8f, 0xc6, 0x34, 0xf2, 0x68, 0xe4, 0xae, 0xec, 0xea, 0x5e, 0x75, 902 0x09, 0x42, 0xea, 0x7b, 0x7e, 0xe4, 0xf9, 0x34, 0xa1, 0xb1, 0x4f, 0xe3, 0xc5, 0xda, 0xa9, 0xee,
900 0xbf, 0x79, 0xd8, 0xd2, 0x5b, 0x0e, 0x4f, 0xc7, 0x7e, 0x74, 0x85, 0x91, 0x46, 0x0e, 0xc3, 0xe1, 903 0x54, 0x77, 0x9b, 0xfb, 0x2d, 0xbd, 0xe5, 0xe8, 0x78, 0x12, 0xc4, 0x17, 0x18, 0x69, 0xe4, 0x28,
901 0x1a, 0xd7, 0x75, 0xc1, 0x90, 0x27, 0xa0, 0x26, 0x98, 0x6f, 0x9d, 0x89, 0x83, 0x8f, 0xc6, 0x56, 904 0x1a, 0x6d, 0x70, 0xbd, 0x05, 0x58, 0xf2, 0x04, 0xd4, 0x04, 0xfb, 0xad, 0x3b, 0x75, 0xf1, 0xc1,
902 0x09, 0x6d, 0x43, 0xc3, 0x79, 0x3f, 0x70, 0xce, 0xce, 0x47, 0xef, 0x26, 0x56, 0x19, 0x35, 0xa0, 905 0xa4, 0x5d, 0x42, 0x5b, 0xd0, 0x70, 0xdf, 0x0f, 0xdd, 0x93, 0xd3, 0xf1, 0xbb, 0x69, 0xbb, 0x8c,
903 0x36, 0x9a, 0x1c, 0xe3, 0x23, 0xab, 0x82, 0x6c, 0x68, 0x0f, 0x4f, 0x67, 0x43, 0xe7, 0xcc, 0x99, 906 0x1a, 0x50, 0x1b, 0x4f, 0x0f, 0xf1, 0x41, 0xbb, 0x82, 0x1c, 0xe8, 0x8c, 0x8e, 0xbd, 0x91, 0x7b,
904 0x0c, 0x9d, 0xc9, 0xe0, 0xe7, 0xd9, 0xf1, 0xd1, 0x68, 0xec, 0x0c, 0xad, 0xaa, 0xcc, 0x19, 0x1c, 907 0xe2, 0x4e, 0x47, 0xee, 0x74, 0xf8, 0x8b, 0x77, 0x78, 0x30, 0x9e, 0xb8, 0xa3, 0x76, 0x55, 0xe6,
905 0x4d, 0x06, 0xce, 0x58, 0x9a, 0x86, 0xdc, 0xcf, 0x79, 0x7f, 0x36, 0xc2, 0xce, 0xd0, 0xaa, 0x75, 908 0x0c, 0x0f, 0xa6, 0x43, 0x77, 0x22, 0x4d, 0x4b, 0xee, 0xe7, 0xbe, 0x3f, 0x19, 0x63, 0x77, 0xd4,
906 0xff, 0x00, 0x30, 0xa6, 0x82, 0xc6, 0xb2, 0x83, 0x88, 0x84, 0xba, 0xe1, 0x06, 0x56, 0x6b, 0xf4, 909 0xae, 0xf5, 0xfe, 0x00, 0xb0, 0x66, 0x82, 0x26, 0xb2, 0x83, 0x98, 0x44, 0xba, 0xe1, 0x06, 0x56,
907 0x04, 0x4c, 0x39, 0x65, 0x12, 0x79, 0xaa, 0xb1, 0xe6, 0x21, 0xd2, 0x45, 0xcb, 0x84, 0xde, 0x40, 910 0x6b, 0xf4, 0x04, 0x6c, 0xc9, 0x32, 0x89, 0x7d, 0xd5, 0x58, 0x73, 0x1f, 0xe9, 0xa2, 0x65, 0x42,
908 0x47, 0x70, 0x0e, 0x41, 0x5f, 0x40, 0x9d, 0x0b, 0x22, 0x52, 0x6e, 0x57, 0xd5, 0xd0, 0x5a, 0x39, 911 0x7f, 0xa8, 0x23, 0x38, 0x87, 0xa0, 0x2f, 0xa1, 0xce, 0x05, 0x11, 0x19, 0x77, 0xaa, 0x8a, 0xb4,
909 0x58, 0xfa, 0x70, 0x16, 0x43, 0x3f, 0xc2, 0x83, 0x85, 0x1e, 0xe3, 0xcc, 0xd3, 0x73, 0xb4, 0x0d, 912 0x56, 0x0e, 0x96, 0x3e, 0x6c, 0x62, 0xe8, 0x27, 0xf8, 0xdf, 0x52, 0xd3, 0xe8, 0xf9, 0x9a, 0x47,
910 0xb5, 0x77, 0x7b, 0xd3, 0x8c, 0xf1, 0xce, 0xe2, 0x2e, 0x2f, 0x4f, 0xc0, 0xe4, 0xe9, 0x9c, 0x0b, 913 0xc7, 0x52, 0x7b, 0x77, 0x6e, 0xe3, 0x18, 0x6f, 0x2f, 0x6f, 0xce, 0xe5, 0x09, 0xd8, 0x3c, 0x9b,
911 0x1a, 0xdb, 0x35, 0x35, 0xc7, 0x62, 0x49, 0x53, 0x1d, 0xc1, 0x39, 0x04, 0xfd, 0x00, 0xdb, 0x5c, 914 0x73, 0x41, 0x13, 0xa7, 0xa6, 0x78, 0x2c, 0x96, 0x34, 0xd3, 0x11, 0x9c, 0x43, 0xd0, 0x8f, 0xb0,
912 0x78, 0x2c, 0x15, 0x33, 0x2e, 0x12, 0x4a, 0x42, 0xbb, 0x5e, 0x6c, 0x63, 0xcc, 0x96, 0x1e, 0x5b, 915 0xc5, 0x85, 0xcf, 0x32, 0xe1, 0x71, 0x91, 0x52, 0x12, 0x39, 0xf5, 0x62, 0x1b, 0x13, 0xb6, 0xf2,
913 0x4e, 0x55, 0x04, 0xb7, 0x34, 0x50, 0x5b, 0x59, 0x22, 0x4d, 0x92, 0x3c, 0xd1, 0xfc, 0x60, 0x22, 916 0xd9, 0x6a, 0xa6, 0x22, 0xb8, 0xa5, 0x81, 0xda, 0x32, 0x89, 0x34, 0x4d, 0xf3, 0x44, 0xfb, 0xa3,
914 0x4d, 0x92, 0x2c, 0xf1, 0x29, 0x98, 0x5c, 0x90, 0x44, 0x50, 0xcf, 0xde, 0x52, 0x29, 0x9d, 0x9e, 917 0x89, 0x34, 0x4d, 0x4d, 0xe2, 0x53, 0xb0, 0xb9, 0x20, 0xa9, 0xa0, 0xbe, 0x73, 0x4f, 0xa5, 0x74,
915 0x56, 0x5f, 0x2f, 0x57, 0x5f, 0xef, 0x3c, 0x57, 0x1f, 0xce, 0xa1, 0xe8, 0x1b, 0xa8, 0x49, 0xd6, 918 0xfb, 0x5a, 0x7d, 0xfd, 0x5c, 0x7d, 0xfd, 0xd3, 0x5c, 0x7d, 0x38, 0x87, 0xa2, 0x6f, 0xa1, 0x26,
916 0x3d, 0xbb, 0xf1, 0xbf, 0x39, 0x1a, 0xb8, 0x16, 0x5c, 0x7b, 0xaf, 0xba, 0x16, 0x5c, 0x1f, 0xb6, 919 0xa7, 0xee, 0x3b, 0x8d, 0xff, 0xcc, 0xd1, 0xc0, 0x8d, 0xe0, 0x3a, 0x3b, 0xd5, 0x8d, 0xe0, 0x06,
917 0xe2, 0x84, 0x2d, 0x13, 0xca, 0xb9, 0xfd, 0x89, 0xda, 0xe8, 0xe3, 0xc2, 0x70, 0xce, 0xb2, 0x10, 920 0x70, 0x2f, 0x49, 0xd9, 0x2a, 0xa5, 0x9c, 0x3b, 0x9f, 0xa8, 0x8d, 0xee, 0x17, 0xc8, 0x39, 0x31,
918 0x5e, 0x83, 0xd0, 0x67, 0x60, 0x04, 0x7e, 0x74, 0x65, 0x3f, 0x54, 0x60, 0xc8, 0x9a, 0x93, 0x7a, 921 0x21, 0xbc, 0x01, 0xa1, 0xcf, 0xc0, 0x0a, 0x83, 0xf8, 0xc2, 0x79, 0xa0, 0xc0, 0x60, 0x9a, 0x93,
919 0x54, 0x7e, 0xf4, 0x35, 0x34, 0x99, 0xb8, 0xa4, 0xc9, 0x4c, 0x5a, 0xdc, 0x7e, 0xa4, 0x06, 0x5e, 922 0x7a, 0x54, 0x7e, 0xf4, 0x0d, 0x34, 0x99, 0x38, 0xa7, 0xa9, 0x27, 0x2d, 0xee, 0x3c, 0x54, 0x84,
920 0x84, 0x81, 0x0a, 0xcb, 0x25, 0xcf, 0x4e, 0x8f, 0x69, 0x22, 0x56, 0xb6, 0xad, 0x90, 0xff, 0x3a, 923 0x17, 0x61, 0xa0, 0xc2, 0x72, 0xc9, 0xcd, 0xe9, 0x09, 0x4d, 0xc5, 0xda, 0x71, 0x14, 0xf2, 0x5f,
921 0x5d, 0x85, 0xf0, 0x1a, 0x84, 0x7e, 0x02, 0x8b, 0xb3, 0x34, 0x71, 0xe9, 0x2c, 0x24, 0x91, 0xbf, 924 0xa7, 0xab, 0x10, 0xde, 0x80, 0xd0, 0xcf, 0xd0, 0xf1, 0x69, 0x12, 0xb2, 0x75, 0x44, 0x63, 0xe1,
922 0xa0, 0x5c, 0x70, 0xfb, 0xb1, 0x4a, 0xdc, 0x2d, 0x72, 0xaa, 0x20, 0xa7, 0x39, 0xc2, 0x89, 0x44, 925 0x45, 0x24, 0x0e, 0x96, 0x94, 0x0b, 0xee, 0x3c, 0x52, 0xc9, 0x5f, 0x14, 0x92, 0x47, 0x1b, 0xd8,
923 0xb2, 0xc2, 0x0f, 0xf8, 0x5d, 0x6f, 0xe7, 0xcf, 0x32, 0x98, 0x99, 0x20, 0xd1, 0xe7, 0xd0, 0xca, 926 0x71, 0x8e, 0x72, 0x63, 0x91, 0xae, 0xf1, 0x7d, 0xff, 0xc3, 0x48, 0xf7, 0xcf, 0x32, 0xd8, 0x46,
924 0x24, 0x29, 0xeb, 0x96, 0x8a, 0x96, 0x23, 0x6a, 0x66, 0xbe, 0xb1, 0x1f, 0x51, 0x64, 0x41, 0xd5, 927 0x9c, 0xe8, 0x73, 0x68, 0x19, 0x79, 0xca, 0x1e, 0xa4, 0xba, 0x25, 0x5d, 0x4d, 0xe3, 0x9b, 0x04,
925 0xfd, 0xdd, 0xcb, 0x6e, 0xab, 0x5c, 0xa2, 0xe7, 0x60, 0xd2, 0xe8, 0xda, 0x4f, 0x58, 0x94, 0xdd, 928 0x31, 0x45, 0x6d, 0xa8, 0x2e, 0x7e, 0xf7, 0xcd, 0xcd, 0x95, 0x4b, 0xf4, 0x1c, 0x6c, 0x1a, 0x5f,
926 0xcf, 0xdd, 0xff, 0x4a, 0xbd, 0xe7, 0x68, 0x84, 0xae, 0x21, 0xc7, 0x77, 0x5e, 0x40, 0xab, 0x18, 929 0x06, 0x29, 0x8b, 0xcd, 0x5d, 0x7d, 0xfc, 0xa1, 0xec, 0xfb, 0xae, 0x46, 0xe8, 0x3a, 0x72, 0x7c,
927 0x90, 0x9b, 0x5f, 0xd1, 0x55, 0x76, 0x91, 0xe4, 0x12, 0xb5, 0xa1, 0x76, 0x4d, 0x82, 0x94, 0x66, 930 0xf7, 0x05, 0xb4, 0x8a, 0x01, 0xb9, 0xf9, 0x05, 0x5d, 0x9b, 0x4b, 0x25, 0x97, 0xa8, 0x03, 0xb5,
928 0x07, 0x6a, 0xe3, 0x45, 0xe5, 0x59, 0xb9, 0xb3, 0x02, 0x33, 0x13, 0x2d, 0xda, 0x03, 0x43, 0xc9, 931 0x4b, 0x12, 0x66, 0xd4, 0x1c, 0xa8, 0x8d, 0x17, 0x95, 0x67, 0xe5, 0xee, 0x1a, 0x6c, 0x23, 0x60,
929 0xba, 0x5c, 0x24, 0x43, 0x1e, 0x7f, 0x52, 0xc2, 0x2a, 0x82, 0x8e, 0xe0, 0xa3, 0xdb, 0x5f, 0x5c, 932 0xb4, 0x03, 0x96, 0x92, 0x78, 0xb9, 0x38, 0x18, 0x79, 0xfc, 0x51, 0x09, 0xab, 0x08, 0x3a, 0x80,
930 0x2e, 0xcc, 0xca, 0x7d, 0xc2, 0x3c, 0x29, 0x61, 0xeb, 0x16, 0xae, 0x7d, 0x6f, 0x1a, 0xeb, 0xeb, 933 0xff, 0x5f, 0xff, 0xee, 0x72, 0x91, 0x56, 0xee, 0x12, 0xe9, 0x51, 0x09, 0xb7, 0xaf, 0xe1, 0xda,
931 0xd3, 0x79, 0x0d, 0x5b, 0xb9, 0x24, 0x64, 0x81, 0x82, 0x09, 0x12, 0xa8, 0xc3, 0x6b, 0x58, 0x1b, 934 0xf7, 0xa6, 0xb1, 0xb9, 0x4a, 0xdd, 0xd7, 0x70, 0x2f, 0x97, 0x87, 0x2c, 0x50, 0x30, 0x41, 0x42,
932 0xe8, 0x53, 0x68, 0xb8, 0x2c, 0x8c, 0x03, 0x2a, 0xd5, 0x5c, 0x51, 0x91, 0x5b, 0x47, 0xe7, 0xa9, 935 0x75, 0x78, 0x0d, 0x6b, 0x03, 0x7d, 0x0a, 0x8d, 0x05, 0x8b, 0x92, 0x90, 0x4a, 0x65, 0x57, 0x54,
933 0xca, 0xd7, 0x54, 0x6e, 0xfa, 0x79, 0x6c, 0x6c, 0xba, 0xf3, 0x0c, 0x5a, 0x39, 0x6b, 0x52, 0x36, 936 0xe4, 0xda, 0xd1, 0x7d, 0xaa, 0xf2, 0xf5, 0x58, 0x6f, 0xfb, 0x91, 0xdc, 0xda, 0x74, 0xf7, 0x19,
934 0x72, 0x58, 0x69, 0x12, 0xe4, 0xc3, 0x4a, 0x93, 0x00, 0x3d, 0x84, 0x3a, 0xbf, 0x24, 0x87, 0xdf, 937 0xb4, 0xf2, 0xa9, 0x49, 0x09, 0x49, 0xb2, 0xb2, 0x34, 0xcc, 0xc9, 0xca, 0xd2, 0x10, 0x3d, 0x80,
935 0x7d, 0x9f, 0x25, 0x66, 0x56, 0xe7, 0x17, 0x68, 0x6f, 0xd2, 0xc2, 0x86, 0x71, 0x1f, 0x14, 0x4f, 938 0x3a, 0x3f, 0x27, 0xfb, 0xdf, 0xff, 0xa0, 0x12, 0x5b, 0xd8, 0x58, 0x5d, 0x0f, 0x9c, 0xbb, 0x34,
936 0x6e, 0x1e, 0x3e, 0x2a, 0x30, 0x59, 0x3c, 0xbb, 0xc0, 0x43, 0xf7, 0xef, 0x32, 0x18, 0xaa, 0x9e, 939 0x71, 0x0b, 0xe5, 0x7b, 0xc5, 0xd3, 0x9b, 0xfb, 0x0f, 0x0b, 0xd3, 0x2c, 0x9e, 0x5f, 0x98, 0x45,
937 0x36, 0xd4, 0x02, 0x32, 0xa7, 0x79, 0x45, 0xda, 0x40, 0xbb, 0xd0, 0x24, 0x81, 0x4f, 0xf8, 0x4c, 940 0xef, 0xef, 0x32, 0x58, 0xaa, 0xa6, 0x0e, 0xd4, 0x42, 0x32, 0xa7, 0x79, 0x55, 0xda, 0x40, 0x8f,
938 0xc7, 0x74, 0x61, 0xa0, 0x5c, 0x63, 0x05, 0x40, 0xba, 0x0d, 0xf9, 0xe3, 0x6b, 0x9c, 0x94, 0x74, 941 0xa1, 0x49, 0xc2, 0x80, 0x70, 0x4f, 0xc7, 0x74, 0x57, 0xa0, 0x5c, 0x13, 0x05, 0x40, 0xba, 0x15,
939 0x23, 0xcf, 0x61, 0x3b, 0x50, 0x7c, 0xe4, 0x54, 0x19, 0x1f, 0xa0, 0xaa, 0x15, 0x14, 0x6c, 0xf4, 942 0xf9, 0x23, 0x6c, 0x1c, 0x95, 0x74, 0x33, 0xcf, 0x61, 0x2b, 0x54, 0x33, 0xc9, 0xc7, 0x65, 0x7d,
940 0x0a, 0x76, 0x7c, 0xce, 0x02, 0x22, 0xe8, 0x8c, 0xcd, 0x7f, 0xa5, 0xae, 0xb0, 0x6b, 0xc5, 0xfb, 943 0x64, 0x5c, 0xad, 0xb0, 0x60, 0xa3, 0x57, 0xb0, 0x1d, 0x70, 0x16, 0x12, 0x41, 0x3d, 0x36, 0xff,
941 0x3c, 0xd2, 0xb1, 0x77, 0x2a, 0x74, 0x52, 0xc2, 0xdb, 0x7e, 0xd1, 0x81, 0xbe, 0x04, 0xd3, 0x0b, 944 0x95, 0x2e, 0x84, 0x53, 0x2b, 0xde, 0xef, 0xb1, 0x8e, 0xbd, 0x53, 0xa1, 0xa3, 0x12, 0xde, 0x0a,
942 0xd5, 0x9d, 0xcd, 0xfe, 0x77, 0x77, 0xde, 0x9a, 0x93, 0x12, 0xae, 0x7b, 0xa1, 0x5c, 0xbd, 0x31, 945 0x8a, 0x0e, 0xf4, 0x15, 0xd8, 0x7e, 0xa4, 0xee, 0xb0, 0xf9, 0xff, 0xdd, 0x78, 0x7b, 0x8e, 0x4a,
943 0xb3, 0x41, 0x75, 0x31, 0xb4, 0x8a, 0xf5, 0x28, 0x0e, 0x68, 0x72, 0x4d, 0x93, 0x6c, 0x0c, 0x99, 946 0xb8, 0xee, 0x47, 0x72, 0xf5, 0xc6, 0x36, 0x44, 0xf5, 0x30, 0xb4, 0x8a, 0xf5, 0xa8, 0x39, 0xd0,
944 0x25, 0xfd, 0x71, 0x42, 0x17, 0xfe, 0x4d, 0xce, 0x8d, 0xb6, 0xd6, 0xfc, 0x57, 0x6f, 0xf9, 0xef, 947 0xf4, 0x92, 0xa6, 0x86, 0x06, 0x63, 0x49, 0x7f, 0x92, 0xd2, 0x65, 0x70, 0x65, 0x28, 0x30, 0xd6,
945 0xbe, 0x84, 0xed, 0x3b, 0x75, 0xde, 0xbb, 0x29, 0x02, 0xe3, 0x92, 0xf0, 0xcb, 0xfc, 0xed, 0x94, 948 0x46, 0x03, 0xd5, 0x6b, 0x0d, 0xf4, 0x5e, 0xc2, 0xd6, 0x8d, 0x3a, 0xef, 0xdc, 0x14, 0x81, 0x75,
946 0xeb, 0x6e, 0x04, 0x75, 0x5d, 0xed, 0xbd, 0x59, 0x6d, 0xa8, 0xfd, 0x96, 0x52, 0x9e, 0x3f, 0xb9, 949 0x4e, 0xf8, 0x79, 0xfe, 0x96, 0xca, 0x75, 0x2f, 0x86, 0xba, 0xae, 0xf6, 0xce, 0xac, 0x0e, 0xd4,
947 0xda, 0x40, 0x36, 0x98, 0x44, 0x08, 0x1a, 0xc6, 0x42, 0xd5, 0x52, 0xc5, 0xb9, 0x29, 0xc5, 0x4c, 950 0x7e, 0xcb, 0x28, 0xcf, 0x9f, 0x60, 0x6d, 0x20, 0x07, 0x6c, 0x22, 0x04, 0x8d, 0x12, 0xa1, 0x6a,
948 0x6f, 0xa8, 0x9b, 0xca, 0xcb, 0xa0, 0x98, 0xa8, 0xe2, 0x5b, 0xc7, 0x57, 0xaf, 0xa0, 0xae, 0xdf, 951 0xa9, 0xe2, 0xdc, 0x94, 0x82, 0xa6, 0x57, 0x74, 0x91, 0xc9, 0x0b, 0xa1, 0x26, 0x51, 0xc5, 0xd7,
949 0x29, 0xf9, 0x3a, 0xe2, 0x8b, 0xc9, 0x64, 0x34, 0x79, 0x6b, 0x95, 0xa4, 0x31, 0xbd, 0x18, 0x0c, 952 0x8e, 0xaf, 0x5f, 0x41, 0x5d, 0xbf, 0x5b, 0xf2, 0xb5, 0xc4, 0x67, 0xd3, 0xe9, 0x78, 0xfa, 0xb6,
950 0x9c, 0xe9, 0xd4, 0x2a, 0x4b, 0x43, 0x3e, 0xa9, 0x17, 0xd8, 0xb1, 0x2a, 0xd2, 0x90, 0x0f, 0xad, 953 0x5d, 0x92, 0xc6, 0xec, 0x6c, 0x38, 0x74, 0x67, 0xb3, 0x76, 0x59, 0x1a, 0xf2, 0x89, 0x3d, 0xc3,
951 0x84, 0x55, 0xe7, 0x75, 0xf5, 0x9f, 0xfe, 0xf6, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd5, 0xd8, 954 0x6e, 0xbb, 0x22, 0x0d, 0xf9, 0xf0, 0x4a, 0x58, 0x75, 0x5e, 0x57, 0xff, 0xed, 0xef, 0xfe, 0x09,
952 0x99, 0x95, 0xac, 0x08, 0x00, 0x00, 955 0x00, 0x00, 0xff, 0xff, 0x7f, 0x6c, 0x7f, 0xd3, 0xbc, 0x08, 0x00, 0x00,
953 } 956 }
OLDNEW
« no previous file with comments | « common/proto/milo/annotations.proto ('k') | logdog/client/annotee/annotation/annotation.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698