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

Side by Side Diff: appengine/cmd/milo/logdog/stream.pb.go

Issue 2191693003: Milo: Add LogDog annotation stream support. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Fix successful build state, derive more Swarming parameters from milo proto common code. 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
OLDNEW
(Empty)
1 // Code generated by protoc-gen-go.
2 // source: github.com/luci/luci-go/appengine/cmd/milo/logdog/stream.proto
3 // DO NOT EDIT!
4
5 /*
6 Package logdog is a generated protocol buffer package.
7
8 It is generated from these files:
9 github.com/luci/luci-go/appengine/cmd/milo/logdog/stream.proto
10
11 It has these top-level messages:
12 Item
13 */
14 package logdog
15
16 import proto "github.com/golang/protobuf/proto"
17 import fmt "fmt"
18 import math "math"
19 import milo "github.com/luci/luci-go/common/proto/milo"
20
21 // Reference imports to suppress errors if they are not otherwise used.
22 var _ = proto.Marshal
23 var _ = fmt.Errorf
24 var _ = math.Inf
25
26 // This is a compile-time assertion to ensure that this generated file
27 // is compatible with the proto package it is being compiled against.
28 // A compilation error at this line likely means your copy of the
29 // proto package needs to be updated.
30 const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
31
32 // *
33 // Item is a full annotation protobuf state item.
34 type Item struct {
35 // * Step is the root annotation step.
36 Step *milo.Step `protobuf:"bytes,1,opt,name=step" json:"step,omitempty"`
37 // * Finished is true if this is the last annotation protobuf in the str eam.
38 Finished bool `protobuf:"varint,2,opt,name=finished" json:"finished,omit empty"`
39 }
40
41 func (m *Item) Reset() { *m = Item{} }
42 func (m *Item) String() string { return proto.CompactTextString(m) }
43 func (*Item) ProtoMessage() {}
44 func (*Item) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
45
46 func (m *Item) GetStep() *milo.Step {
47 if m != nil {
48 return m.Step
49 }
50 return nil
51 }
52
53 func init() {
54 proto.RegisterType((*Item)(nil), "logdog.Item")
55 }
56
57 func init() {
58 proto.RegisterFile("github.com/luci/luci-go/appengine/cmd/milo/logdog/st ream.proto", fileDescriptor0)
59 }
60
61 var fileDescriptor0 = []byte{
62 // 171 bytes of a gzipped FileDescriptorProto
63 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x8c, 0x31, 0xcb, 0xc2, 0x30,
64 0x10, 0x86, 0xe9, 0x47, 0x29, 0x25, 0xdf, 0xd6, 0xa9, 0x74, 0x10, 0x71, 0x72, 0x31, 0x07, 0x3a,
65 0x0a, 0x0e, 0x6e, 0xae, 0xf5, 0x17, 0xa4, 0x6d, 0x4c, 0x0f, 0x9a, 0xbb, 0xd0, 0x5c, 0xff, 0xbf,
66 0x35, 0x05, 0x37, 0x97, 0x17, 0xde, 0x87, 0x87, 0x47, 0xdd, 0x1c, 0xca, 0xb8, 0x74, 0xba, 0x67,
67 0x0f, 0xd3, 0xd2, 0x63, 0x9a, 0x93, 0x63, 0x30, 0x21, 0x58, 0x72, 0x48, 0x16, 0x7a, 0x3f, 0x80,
68 0xc7, 0x89, 0x61, 0x62, 0x37, 0xb0, 0x83, 0x28, 0xb3, 0x35, 0x5e, 0x87, 0x99, 0x85, 0xab, 0x62,
69 0x83, 0xcd, 0xf5, 0x57, 0x67, 0x05, 0x9e, 0x09, 0x92, 0xbd, 0x65, 0x0c, 0x11, 0x8b, 0x11, 0x64,
70 0x8a, 0x5b, 0xe4, 0x70, 0x57, 0xf9, 0x43, 0xac, 0xaf, 0x76, 0x2a, 0x8f, 0x62, 0x43, 0x9d, 0xed,
71 0xb3, 0xe3, 0xff, 0x59, 0xe9, 0x8f, 0xae, 0x9f, 0x2b, 0x69, 0x13, 0xaf, 0x1a, 0x55, 0xbe, 0x90,
72 0x30, 0x8e, 0x76, 0xa8, 0xff, 0x56, 0xa7, 0x6c, 0xbf, 0xbf, 0x2b, 0x52, 0xea, 0xf2, 0x0e, 0x00,
73 0x00, 0xff, 0xff, 0xdc, 0x93, 0xc2, 0x0e, 0xd1, 0x00, 0x00, 0x00,
74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698