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

Side by Side Diff: milo/api/proto/buildbot.pb.go

Issue 2366763002: Milo: Grpc endpoint for multiple builds on a builder (Closed)
Patch Set: Review comments, add smoke test Created 4 years, 2 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 | « milo/api/proto/buildbot.proto ('k') | milo/api/proto/buildbotserver_dec.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. 1 // Code generated by protoc-gen-go.
2 // source: github.com/luci/luci-go/milo/api/proto/buildbot.proto 2 // source: github.com/luci/luci-go/milo/api/proto/buildbot.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/milo/api/proto/buildbot.proto 9 github.com/luci/luci-go/milo/api/proto/buildbot.proto
10 10
11 It has these top-level messages: 11 It has these top-level messages:
12 MasterRequest 12 MasterRequest
13 CompressedMasterJSON 13 CompressedMasterJSON
14 BuildbotBuildRequest 14 BuildbotBuildRequest
15 BuildbotBuildJSON 15 BuildbotBuildJSON
16 BuildbotBuildsRequest
17 BuildbotBuildsJSON
16 */ 18 */
17 package milo 19 package milo
18 20
19 import prpc "github.com/luci/luci-go/grpc/prpc" 21 import prpc "github.com/luci/luci-go/grpc/prpc"
20 22
21 import proto "github.com/golang/protobuf/proto" 23 import proto "github.com/golang/protobuf/proto"
22 import fmt "fmt" 24 import fmt "fmt"
23 import math "math" 25 import math "math"
24 import google_protobuf "github.com/luci/luci-go/common/proto/google" 26 import google_protobuf "github.com/luci/luci-go/common/proto/google"
25 27
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 type BuildbotBuildJSON struct { 89 type BuildbotBuildJSON struct {
88 // Json data of the build. 90 // Json data of the build.
89 Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempt y"` 91 Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempt y"`
90 } 92 }
91 93
92 func (m *BuildbotBuildJSON) Reset() { *m = BuildbotBuildJSON{ } } 94 func (m *BuildbotBuildJSON) Reset() { *m = BuildbotBuildJSON{ } }
93 func (m *BuildbotBuildJSON) String() string { return proto.CompactTex tString(m) } 95 func (m *BuildbotBuildJSON) String() string { return proto.CompactTex tString(m) }
94 func (*BuildbotBuildJSON) ProtoMessage() {} 96 func (*BuildbotBuildJSON) ProtoMessage() {}
95 func (*BuildbotBuildJSON) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } 97 func (*BuildbotBuildJSON) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
96 98
99 // The request for multiple build on a builder.
100 type BuildbotBuildsRequest struct {
101 Master string `protobuf:"bytes,1,opt,name=master" json:"master,omitempt y"`
102 Builder string `protobuf:"bytes,2,opt,name=builder" json:"builder,omitem pty"`
103 // Limit to the number of builds to return (default: 20).
104 Limit int32 `protobuf:"varint,3,opt,name=limit" json:"limit,omitempty"`
105 // Include ongoing builds (default: false).
106 IncludeCurrent bool `protobuf:"varint,4,opt,name=include_current,json=in cludeCurrent" json:"include_current,omitempty"`
107 }
108
109 func (m *BuildbotBuildsRequest) Reset() { *m = BuildbotBuilds Request{} }
110 func (m *BuildbotBuildsRequest) String() string { return proto.Compac tTextString(m) }
111 func (*BuildbotBuildsRequest) ProtoMessage() {}
112 func (*BuildbotBuildsRequest) Descriptor() ([]byte, []int) { return fileDescript or0, []int{4} }
113
114 // The response message for multiple builds in a builder.
115 type BuildbotBuildsJSON struct {
116 Builds []*BuildbotBuildJSON `protobuf:"bytes,1,rep,name=builds" json:"bu ilds,omitempty"`
117 }
118
119 func (m *BuildbotBuildsJSON) Reset() { *m = BuildbotBuildsJSO N{} }
120 func (m *BuildbotBuildsJSON) String() string { return proto.CompactTe xtString(m) }
121 func (*BuildbotBuildsJSON) ProtoMessage() {}
122 func (*BuildbotBuildsJSON) Descriptor() ([]byte, []int) { return fileDescriptor0 , []int{5} }
123
124 func (m *BuildbotBuildsJSON) GetBuilds() []*BuildbotBuildJSON {
125 if m != nil {
126 return m.Builds
127 }
128 return nil
129 }
130
97 func init() { 131 func init() {
98 proto.RegisterType((*MasterRequest)(nil), "milo.MasterRequest") 132 proto.RegisterType((*MasterRequest)(nil), "milo.MasterRequest")
99 proto.RegisterType((*CompressedMasterJSON)(nil), "milo.CompressedMasterJ SON") 133 proto.RegisterType((*CompressedMasterJSON)(nil), "milo.CompressedMasterJ SON")
100 proto.RegisterType((*BuildbotBuildRequest)(nil), "milo.BuildbotBuildRequ est") 134 proto.RegisterType((*BuildbotBuildRequest)(nil), "milo.BuildbotBuildRequ est")
101 proto.RegisterType((*BuildbotBuildJSON)(nil), "milo.BuildbotBuildJSON") 135 proto.RegisterType((*BuildbotBuildJSON)(nil), "milo.BuildbotBuildJSON")
136 proto.RegisterType((*BuildbotBuildsRequest)(nil), "milo.BuildbotBuildsRe quest")
137 proto.RegisterType((*BuildbotBuildsJSON)(nil), "milo.BuildbotBuildsJSON" )
102 } 138 }
103 139
104 // Reference imports to suppress errors if they are not otherwise used. 140 // Reference imports to suppress errors if they are not otherwise used.
105 var _ context.Context 141 var _ context.Context
106 var _ grpc.ClientConn 142 var _ grpc.ClientConn
107 143
108 // This is a compile-time assertion to ensure that this generated file 144 // This is a compile-time assertion to ensure that this generated file
109 // is compatible with the grpc package it is being compiled against. 145 // is compatible with the grpc package it is being compiled against.
110 const _ = grpc.SupportPackageIsVersion3 146 const _ = grpc.SupportPackageIsVersion3
111 147
112 // Client API for Buildbot service 148 // Client API for Buildbot service
113 149
114 type BuildbotClient interface { 150 type BuildbotClient interface {
115 GetCompressedMasterJSON(ctx context.Context, in *MasterRequest, opts ... grpc.CallOption) (*CompressedMasterJSON, error) 151 GetCompressedMasterJSON(ctx context.Context, in *MasterRequest, opts ... grpc.CallOption) (*CompressedMasterJSON, error)
116 GetBuildbotBuildJSON(ctx context.Context, in *BuildbotBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) 152 GetBuildbotBuildJSON(ctx context.Context, in *BuildbotBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error)
153 GetBuildbotBuildsJSON(ctx context.Context, in *BuildbotBuildsRequest, op ts ...grpc.CallOption) (*BuildbotBuildsJSON, error)
117 } 154 }
118 type buildbotPRPCClient struct { 155 type buildbotPRPCClient struct {
119 client *prpc.Client 156 client *prpc.Client
120 } 157 }
121 158
122 func NewBuildbotPRPCClient(client *prpc.Client) BuildbotClient { 159 func NewBuildbotPRPCClient(client *prpc.Client) BuildbotClient {
123 return &buildbotPRPCClient{client} 160 return &buildbotPRPCClient{client}
124 } 161 }
125 162
126 func (c *buildbotPRPCClient) GetCompressedMasterJSON(ctx context.Context, in *Ma sterRequest, opts ...grpc.CallOption) (*CompressedMasterJSON, error) { 163 func (c *buildbotPRPCClient) GetCompressedMasterJSON(ctx context.Context, in *Ma sterRequest, opts ...grpc.CallOption) (*CompressedMasterJSON, error) {
127 out := new(CompressedMasterJSON) 164 out := new(CompressedMasterJSON)
128 err := c.client.Call(ctx, "milo.Buildbot", "GetCompressedMasterJSON", in , out, opts...) 165 err := c.client.Call(ctx, "milo.Buildbot", "GetCompressedMasterJSON", in , out, opts...)
129 if err != nil { 166 if err != nil {
130 return nil, err 167 return nil, err
131 } 168 }
132 return out, nil 169 return out, nil
133 } 170 }
134 171
135 func (c *buildbotPRPCClient) GetBuildbotBuildJSON(ctx context.Context, in *Build botBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) { 172 func (c *buildbotPRPCClient) GetBuildbotBuildJSON(ctx context.Context, in *Build botBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) {
136 out := new(BuildbotBuildJSON) 173 out := new(BuildbotBuildJSON)
137 err := c.client.Call(ctx, "milo.Buildbot", "GetBuildbotBuildJSON", in, o ut, opts...) 174 err := c.client.Call(ctx, "milo.Buildbot", "GetBuildbotBuildJSON", in, o ut, opts...)
138 if err != nil { 175 if err != nil {
139 return nil, err 176 return nil, err
140 } 177 }
141 return out, nil 178 return out, nil
142 } 179 }
143 180
181 func (c *buildbotPRPCClient) GetBuildbotBuildsJSON(ctx context.Context, in *Buil dbotBuildsRequest, opts ...grpc.CallOption) (*BuildbotBuildsJSON, error) {
182 out := new(BuildbotBuildsJSON)
183 err := c.client.Call(ctx, "milo.Buildbot", "GetBuildbotBuildsJSON", in, out, opts...)
184 if err != nil {
185 return nil, err
186 }
187 return out, nil
188 }
189
144 type buildbotClient struct { 190 type buildbotClient struct {
145 cc *grpc.ClientConn 191 cc *grpc.ClientConn
146 } 192 }
147 193
148 func NewBuildbotClient(cc *grpc.ClientConn) BuildbotClient { 194 func NewBuildbotClient(cc *grpc.ClientConn) BuildbotClient {
149 return &buildbotClient{cc} 195 return &buildbotClient{cc}
150 } 196 }
151 197
152 func (c *buildbotClient) GetCompressedMasterJSON(ctx context.Context, in *Master Request, opts ...grpc.CallOption) (*CompressedMasterJSON, error) { 198 func (c *buildbotClient) GetCompressedMasterJSON(ctx context.Context, in *Master Request, opts ...grpc.CallOption) (*CompressedMasterJSON, error) {
153 out := new(CompressedMasterJSON) 199 out := new(CompressedMasterJSON)
154 err := grpc.Invoke(ctx, "/milo.Buildbot/GetCompressedMasterJSON", in, ou t, c.cc, opts...) 200 err := grpc.Invoke(ctx, "/milo.Buildbot/GetCompressedMasterJSON", in, ou t, c.cc, opts...)
155 if err != nil { 201 if err != nil {
156 return nil, err 202 return nil, err
157 } 203 }
158 return out, nil 204 return out, nil
159 } 205 }
160 206
161 func (c *buildbotClient) GetBuildbotBuildJSON(ctx context.Context, in *BuildbotB uildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) { 207 func (c *buildbotClient) GetBuildbotBuildJSON(ctx context.Context, in *BuildbotB uildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) {
162 out := new(BuildbotBuildJSON) 208 out := new(BuildbotBuildJSON)
163 err := grpc.Invoke(ctx, "/milo.Buildbot/GetBuildbotBuildJSON", in, out, c.cc, opts...) 209 err := grpc.Invoke(ctx, "/milo.Buildbot/GetBuildbotBuildJSON", in, out, c.cc, opts...)
164 if err != nil { 210 if err != nil {
165 return nil, err 211 return nil, err
166 } 212 }
167 return out, nil 213 return out, nil
168 } 214 }
169 215
216 func (c *buildbotClient) GetBuildbotBuildsJSON(ctx context.Context, in *Buildbot BuildsRequest, opts ...grpc.CallOption) (*BuildbotBuildsJSON, error) {
217 out := new(BuildbotBuildsJSON)
218 err := grpc.Invoke(ctx, "/milo.Buildbot/GetBuildbotBuildsJSON", in, out, c.cc, opts...)
219 if err != nil {
220 return nil, err
221 }
222 return out, nil
223 }
224
170 // Server API for Buildbot service 225 // Server API for Buildbot service
171 226
172 type BuildbotServer interface { 227 type BuildbotServer interface {
173 GetCompressedMasterJSON(context.Context, *MasterRequest) (*CompressedMas terJSON, error) 228 GetCompressedMasterJSON(context.Context, *MasterRequest) (*CompressedMas terJSON, error)
174 GetBuildbotBuildJSON(context.Context, *BuildbotBuildRequest) (*BuildbotB uildJSON, error) 229 GetBuildbotBuildJSON(context.Context, *BuildbotBuildRequest) (*BuildbotB uildJSON, error)
230 GetBuildbotBuildsJSON(context.Context, *BuildbotBuildsRequest) (*Buildbo tBuildsJSON, error)
175 } 231 }
176 232
177 func RegisterBuildbotServer(s prpc.Registrar, srv BuildbotServer) { 233 func RegisterBuildbotServer(s prpc.Registrar, srv BuildbotServer) {
178 s.RegisterService(&_Buildbot_serviceDesc, srv) 234 s.RegisterService(&_Buildbot_serviceDesc, srv)
179 } 235 }
180 236
181 func _Buildbot_GetCompressedMasterJSON_Handler(srv interface{}, ctx context.Cont ext, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (inte rface{}, error) { 237 func _Buildbot_GetCompressedMasterJSON_Handler(srv interface{}, ctx context.Cont ext, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (inte rface{}, error) {
182 in := new(MasterRequest) 238 in := new(MasterRequest)
183 if err := dec(in); err != nil { 239 if err := dec(in); err != nil {
184 return nil, err 240 return nil, err
(...skipping 22 matching lines...) Expand all
207 info := &grpc.UnaryServerInfo{ 263 info := &grpc.UnaryServerInfo{
208 Server: srv, 264 Server: srv,
209 FullMethod: "/milo.Buildbot/GetBuildbotBuildJSON", 265 FullMethod: "/milo.Buildbot/GetBuildbotBuildJSON",
210 } 266 }
211 handler := func(ctx context.Context, req interface{}) (interface{}, erro r) { 267 handler := func(ctx context.Context, req interface{}) (interface{}, erro r) {
212 return srv.(BuildbotServer).GetBuildbotBuildJSON(ctx, req.(*Buil dbotBuildRequest)) 268 return srv.(BuildbotServer).GetBuildbotBuildJSON(ctx, req.(*Buil dbotBuildRequest))
213 } 269 }
214 return interceptor(ctx, in, info, handler) 270 return interceptor(ctx, in, info, handler)
215 } 271 }
216 272
273 func _Buildbot_GetBuildbotBuildsJSON_Handler(srv interface{}, ctx context.Contex t, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interf ace{}, error) {
274 in := new(BuildbotBuildsRequest)
275 if err := dec(in); err != nil {
276 return nil, err
277 }
278 if interceptor == nil {
279 return srv.(BuildbotServer).GetBuildbotBuildsJSON(ctx, in)
280 }
281 info := &grpc.UnaryServerInfo{
282 Server: srv,
283 FullMethod: "/milo.Buildbot/GetBuildbotBuildsJSON",
284 }
285 handler := func(ctx context.Context, req interface{}) (interface{}, erro r) {
286 return srv.(BuildbotServer).GetBuildbotBuildsJSON(ctx, req.(*Bui ldbotBuildsRequest))
287 }
288 return interceptor(ctx, in, info, handler)
289 }
290
217 var _Buildbot_serviceDesc = grpc.ServiceDesc{ 291 var _Buildbot_serviceDesc = grpc.ServiceDesc{
218 ServiceName: "milo.Buildbot", 292 ServiceName: "milo.Buildbot",
219 HandlerType: (*BuildbotServer)(nil), 293 HandlerType: (*BuildbotServer)(nil),
220 Methods: []grpc.MethodDesc{ 294 Methods: []grpc.MethodDesc{
221 { 295 {
222 MethodName: "GetCompressedMasterJSON", 296 MethodName: "GetCompressedMasterJSON",
223 Handler: _Buildbot_GetCompressedMasterJSON_Handler, 297 Handler: _Buildbot_GetCompressedMasterJSON_Handler,
224 }, 298 },
225 { 299 {
226 MethodName: "GetBuildbotBuildJSON", 300 MethodName: "GetBuildbotBuildJSON",
227 Handler: _Buildbot_GetBuildbotBuildJSON_Handler, 301 Handler: _Buildbot_GetBuildbotBuildJSON_Handler,
228 }, 302 },
303 {
304 MethodName: "GetBuildbotBuildsJSON",
305 Handler: _Buildbot_GetBuildbotBuildsJSON_Handler,
306 },
229 }, 307 },
230 Streams: []grpc.StreamDesc{}, 308 Streams: []grpc.StreamDesc{},
231 Metadata: fileDescriptor0, 309 Metadata: fileDescriptor0,
232 } 310 }
233 311
234 func init() { 312 func init() {
235 proto.RegisterFile("github.com/luci/luci-go/milo/api/proto/buildbot.prot o", fileDescriptor0) 313 proto.RegisterFile("github.com/luci/luci-go/milo/api/proto/buildbot.prot o", fileDescriptor0)
236 } 314 }
237 315
238 var fileDescriptor0 = []byte{ 316 var fileDescriptor0 = []byte{
239 » // 324 bytes of a gzipped FileDescriptorProto 317 » // 414 bytes of a gzipped FileDescriptorProto
240 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x6c, 0x51, 0xb1, 0x4e, 0xc3, 0x30, 318 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x92, 0x4d, 0x8f, 0xd3, 0x30,
241 » 0x10, 0x25, 0x6d, 0x55, 0xd2, 0x03, 0x06, 0x4c, 0x45, 0xa3, 0x30, 0x80, 0xc2, 0x00, 0x0b, 0x8e, 319 » 0x10, 0x86, 0xc9, 0xb6, 0x5b, 0xb2, 0xc3, 0x97, 0x30, 0x59, 0x36, 0x4a, 0x0f, 0xa0, 0x70, 0x28,
242 » 0x54, 0x04, 0x1f, 0x00, 0x03, 0x12, 0xa2, 0x45, 0x0a, 0xec, 0xc8, 0x69, 0xdc, 0x60, 0x29, 0x8e, 320 » 0x17, 0x12, 0xa9, 0x08, 0x7e, 0x00, 0x15, 0x42, 0x42, 0xb4, 0x20, 0xc3, 0xbd, 0xca, 0x87, 0x1b,
243 » 0x43, 0x63, 0xaf, 0xfc, 0x0e, 0xbf, 0x49, 0x72, 0x8e, 0x8b, 0x2a, 0xb2, 0x24, 0xf7, 0xfc, 0xde, 321 » 0x2c, 0xc5, 0x71, 0x48, 0xec, 0x2b, 0x67, 0xfe, 0x32, 0x37, 0xdc, 0x71, 0x5c, 0x11, 0x1a, 0x2e,
244 » 0xf9, 0xde, 0x3d, 0xc3, 0x5d, 0x2e, 0xf4, 0xa7, 0x49, 0xe9, 0x4a, 0xc9, 0xb8, 0x30, 0x2b, 0x81, 322 » 0x7b, 0x49, 0x3c, 0x33, 0xaf, 0x5f, 0x3f, 0x33, 0x36, 0xbc, 0xa9, 0xb8, 0xfa, 0xae, 0xf3, 0xa4,
245 » 0x9f, 0x9b, 0x5c, 0xc5, 0x52, 0x14, 0x2a, 0x66, 0x95, 0x88, 0xab, 0x8d, 0xd2, 0x2a, 0x4e, 0x8d, 323 » 0x90, 0x22, 0xad, 0x75, 0xc1, 0xf1, 0xf3, 0xaa, 0x92, 0xa9, 0xe0, 0xb5, 0x4c, 0xb3, 0x96, 0xa7,
246 » 0x28, 0xb2, 0x54, 0x69, 0x8a, 0x90, 0x8c, 0x5a, 0x3a, 0x3c, 0xcf, 0x95, 0xca, 0x0b, 0x6e, 0x25, 324 » 0x6d, 0x27, 0x95, 0x4c, 0x73, 0xcd, 0xeb, 0x32, 0x97, 0x2a, 0xc1, 0x90, 0xcc, 0x8f, 0xe5, 0xe8,
247 » 0xa9, 0x59, 0xc7, 0x5a, 0x48, 0x5e, 0x6b, 0x26, 0x2b, 0x2b, 0x8b, 0x2e, 0xe1, 0x68, 0xc1, 0x6a, 325 » 0x59, 0x25, 0x65, 0x55, 0x33, 0x2b, 0xc9, 0xf5, 0x21, 0x55, 0x5c, 0xb0, 0x5e, 0x65, 0xa2, 0xb5,
248 » 0xcd, 0x37, 0x09, 0xff, 0x32, 0x0d, 0x43, 0x08, 0x8c, 0x4a, 0x26, 0x79, 0xe0, 0x5d, 0x78, 0xd7, 326 » 0xb2, 0xf8, 0x05, 0x3c, 0xd8, 0x66, 0xbd, 0x62, 0x1d, 0x65, 0x3f, 0xb4, 0xa9, 0x10, 0x02, 0xf3,
249 » 0x93, 0x04, 0xeb, 0xe8, 0x1b, 0xa6, 0x8f, 0x4a, 0x56, 0x1b, 0x5e, 0xd7, 0x3c, 0xb3, 0xf2, 0xe7, 327 » 0x26, 0x13, 0x2c, 0xf4, 0x9e, 0x7b, 0x2f, 0xaf, 0x28, 0xae, 0xe3, 0x9f, 0x10, 0x6c, 0xa4, 0x68,
250 » 0xb7, 0xd7, 0x25, 0x09, 0xc1, 0x17, 0x65, 0x03, 0x4a, 0x56, 0xa0, 0xde, 0x4f, 0xb6, 0x98, 0xdc, 328 » 0x3b, 0xd6, 0xf7, 0xac, 0xb4, 0xf2, 0x8f, 0x5f, 0x3f, 0xef, 0x48, 0x04, 0x3e, 0x6f, 0x4c, 0xd0,
251 » 0x83, 0x2f, 0x55, 0x26, 0xd6, 0x82, 0x67, 0xc1, 0xa0, 0xe1, 0x0e, 0xe6, 0x21, 0xb5, 0x66, 0xa8, 329 » 0x64, 0x35, 0xea, 0x7d, 0x7a, 0x8a, 0xc9, 0x5b, 0xf0, 0x85, 0x2c, 0xf9, 0x81, 0xb3, 0x32, 0xbc,
252 » 0x33, 0x43, 0xdf, 0x9d, 0x99, 0x64, 0xab, 0x6d, 0xe7, 0x67, 0x4c, 0xb3, 0x60, 0xd8, 0xf4, 0x1c, 330 » 0x30, 0xb5, 0x7b, 0xeb, 0x28, 0xb1, 0x30, 0x89, 0x83, 0x49, 0xbe, 0x39, 0x18, 0x7a, 0xd2, 0x1e,
253 » 0x26, 0x58, 0x47, 0x1c, 0xa6, 0x0f, 0xdd, 0x76, 0xf8, 0x77, 0x5e, 0x4f, 0x61, 0x2c, 0xd1, 0x4d, 331 » 0xcf, 0x2f, 0x33, 0x95, 0x85, 0x33, 0xb3, 0xe7, 0x3e, 0xc5, 0x75, 0xcc, 0x20, 0x78, 0x37, 0x74,
254 » 0xe7, 0xb6, 0x43, 0x24, 0x80, 0x7d, 0x4c, 0xa3, 0x21, 0x06, 0x48, 0x38, 0x48, 0xce, 0x60, 0x82, 332 » 0x87, 0x7f, 0xc7, 0xfa, 0x14, 0x16, 0x02, 0x69, 0x06, 0xda, 0x21, 0x22, 0x21, 0xdc, 0xc5, 0x69,
255 » 0xe5, 0x47, 0x69, 0x24, 0x8e, 0x18, 0x26, 0x3e, 0x1e, 0x2c, 0x8d, 0x8c, 0xae, 0xe0, 0x78, 0x67, 333 » 0x98, 0xc2, 0x05, 0x16, 0x5c, 0x48, 0x96, 0x70, 0x85, 0xcb, 0x7d, 0xa3, 0x05, 0x1e, 0x31, 0xa3,
256 » 0x0c, 0xee, 0xe8, 0xfc, 0x78, 0x7f, 0x7e, 0xe6, 0x3f, 0x1e, 0xf8, 0x4e, 0x49, 0x5e, 0x60, 0xf6, 334 » 0x3e, 0x26, 0x76, 0x5a, 0xc4, 0x2b, 0x78, 0x3c, 0x3a, 0x06, 0x7b, 0x74, 0x3c, 0xde, 0x5f, 0x3c,
257 » 0xc4, 0x75, 0x6f, 0x3e, 0x27, 0xb4, 0x7d, 0x04, 0xba, 0x13, 0x70, 0x18, 0xda, 0xc3, 0xbe, 0x86, 335 » 0xbf, 0x3c, 0xb8, 0x1e, 0x29, 0xfb, 0xdb, 0x13, 0x05, 0x70, 0x59, 0x73, 0xc1, 0x15, 0xd2, 0x5c,
258 » 0x68, 0x8f, 0x2c, 0x60, 0xda, 0xdc, 0xf6, 0xdf, 0x46, 0xd7, 0xd5, 0x17, 0x43, 0x38, 0xeb, 0xe1, 336 » 0x52, 0x1b, 0x90, 0x15, 0x3c, 0xe2, 0x4d, 0x51, 0xeb, 0x92, 0xed, 0x0b, 0xdd, 0x75, 0xac, 0x51,
259 » 0xec, 0x75, 0xe9, 0x18, 0xb3, 0xbe, 0xfd, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x9f, 0x70, 0x41, 0x6c, 337 » 0xe1, 0x1c, 0x07, 0xfc, 0x70, 0x48, 0x6f, 0x6c, 0x36, 0x7e, 0x0f, 0x64, 0x4c, 0x82, 0xd0, 0x29,
260 » 0x45, 0x02, 0x00, 0x00, 338 » 0x2c, 0xd0, 0xbf, 0x37, 0x18, 0x33, 0x33, 0xfa, 0x9b, 0xe4, 0xf8, 0x1a, 0x92, 0xb3, 0xee, 0xe8,
339 » 0x20, 0x5b, 0xff, 0xf6, 0xc0, 0x77, 0x55, 0xf2, 0x09, 0x6e, 0x3e, 0x30, 0x35, 0x79, 0xe3, 0x4f,
340 » 0xac, 0xd1, 0xe8, 0xc9, 0x44, 0x91, 0x4d, 0x4e, 0x6d, 0x88, 0xef, 0x90, 0x2d, 0x04, 0xc6, 0xed,
341 » 0x7c, 0xb0, 0xd1, 0x04, 0x93, 0x73, 0xfc, 0x1f, 0xaf, 0xb1, 0xfb, 0x02, 0xd7, 0xff, 0xda, 0xd9,
342 » 0x9e, 0x97, 0x13, 0x7b, 0xdc, 0xbd, 0x44, 0xe1, 0x54, 0xd1, 0x3a, 0xe6, 0x0b, 0x7c, 0x8f, 0xaf,
343 » 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x82, 0x54, 0x26, 0xe6, 0x69, 0x03, 0x00, 0x00,
261 } 344 }
OLDNEW
« no previous file with comments | « milo/api/proto/buildbot.proto ('k') | milo/api/proto/buildbotserver_dec.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698