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

Side by Side Diff: scheduler/appengine/engine/internal/tq_tasks.pb.go

Issue 2981143002: Add 'dsset' structure. (Closed)
Patch Set: rebase 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 | « scheduler/appengine/engine/internal/tq_tasks.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. DO NOT EDIT. 1 // Code generated by protoc-gen-go. DO NOT EDIT.
2 // source: github.com/luci/luci-go/scheduler/appengine/engine/internal/tq_tasks. proto 2 // source: github.com/luci/luci-go/scheduler/appengine/engine/internal/tq_tasks. proto
3 3
4 /* 4 /*
5 Package internal is a generated protocol buffer package. 5 Package internal 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/scheduler/appengine/engine/internal/tq_tasks.pro to 8 github.com/luci/luci-go/scheduler/appengine/engine/internal/tq_tasks.pro to
9 9
10 It has these top-level messages: 10 It has these top-level messages:
11 TickLaterTask 11 TickLaterTask
12 » StartInvocationTask 12 » TriggerInvocationTask
13 » TriageTriggersTask
14 » LaunchInvocationsBatchTask
15 » LaunchInvocationTask
13 */ 16 */
14 package internal 17 package internal
15 18
16 import proto "github.com/golang/protobuf/proto" 19 import proto "github.com/golang/protobuf/proto"
17 import fmt "fmt" 20 import fmt "fmt"
18 import math "math" 21 import math "math"
19 22
20 // Reference imports to suppress errors if they are not otherwise used. 23 // Reference imports to suppress errors if they are not otherwise used.
21 var _ = proto.Marshal 24 var _ = proto.Marshal
22 var _ = fmt.Errorf 25 var _ = fmt.Errorf
(...skipping 22 matching lines...) Expand all
45 return "" 48 return ""
46 } 49 }
47 50
48 func (m *TickLaterTask) GetTickNonce() int64 { 51 func (m *TickLaterTask) GetTickNonce() int64 {
49 if m != nil { 52 if m != nil {
50 return m.TickNonce 53 return m.TickNonce
51 } 54 }
52 return 0 55 return 0
53 } 56 }
54 57
55 type StartInvocationTask struct { 58 type TriggerInvocationTask struct {
56 » JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId" json:"job_id ,omitempty"` 59 » JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId" json:"jo b_id,omitempty"`
60 » TriggerId int64 `protobuf:"varint,2,opt,name=trigger_id,json=triggerId" json:"trigger_id,omitempty"`
57 } 61 }
58 62
59 func (m *StartInvocationTask) Reset() { *m = StartInvocationT ask{} } 63 func (m *TriggerInvocationTask) Reset() { *m = TriggerInvocat ionTask{} }
60 func (m *StartInvocationTask) String() string { return proto.CompactT extString(m) } 64 func (m *TriggerInvocationTask) String() string { return proto.Compac tTextString(m) }
61 func (*StartInvocationTask) ProtoMessage() {} 65 func (*TriggerInvocationTask) ProtoMessage() {}
62 func (*StartInvocationTask) Descriptor() ([]byte, []int) { return fileDescriptor 0, []int{1} } 66 func (*TriggerInvocationTask) Descriptor() ([]byte, []int) { return fileDescript or0, []int{1} }
63 67
64 func (m *StartInvocationTask) GetJobId() string { 68 func (m *TriggerInvocationTask) GetJobId() string {
65 if m != nil { 69 if m != nil {
66 return m.JobId 70 return m.JobId
67 } 71 }
68 return "" 72 return ""
69 } 73 }
70 74
71 func init() { 75 func (m *TriggerInvocationTask) GetTriggerId() int64 {
72 » proto.RegisterType((*TickLaterTask)(nil), "internal.tq_tasks.TickLaterTa sk") 76 » if m != nil {
73 » proto.RegisterType((*StartInvocationTask)(nil), "internal.tq_tasks.Start InvocationTask") 77 » » return m.TriggerId
78 » }
79 » return 0
80 }
81
82 type TriageTriggersTask struct {
83 » JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId" json:"job_id ,omitempty"`
84 }
85
86 func (m *TriageTriggersTask) Reset() { *m = TriageTriggersTas k{} }
87 func (m *TriageTriggersTask) String() string { return proto.CompactTe xtString(m) }
88 func (*TriageTriggersTask) ProtoMessage() {}
89 func (*TriageTriggersTask) Descriptor() ([]byte, []int) { return fileDescriptor0 , []int{2} }
90
91 func (m *TriageTriggersTask) GetJobId() string {
92 » if m != nil {
93 » » return m.JobId
94 » }
95 » return ""
96 }
97
98 type LaunchInvocationsBatchTask struct {
99 » JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId" json:"job_i d,omitempty"`
100 » InvId []int64 `protobuf:"varint,2,rep,packed,name=inv_id,json=invId" jso n:"inv_id,omitempty"`
101 }
102
103 func (m *LaunchInvocationsBatchTask) Reset() { *m = LaunchInv ocationsBatchTask{} }
104 func (m *LaunchInvocationsBatchTask) String() string { return proto.C ompactTextString(m) }
105 func (*LaunchInvocationsBatchTask) ProtoMessage() {}
106 func (*LaunchInvocationsBatchTask) Descriptor() ([]byte, []int) { return fileDes criptor0, []int{3} }
107
108 func (m *LaunchInvocationsBatchTask) GetJobId() string {
109 » if m != nil {
110 » » return m.JobId
111 » }
112 » return ""
113 }
114
115 func (m *LaunchInvocationsBatchTask) GetInvId() []int64 {
116 » if m != nil {
117 » » return m.InvId
118 » }
119 » return nil
120 }
121
122 type LaunchInvocationTask struct {
123 » JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId" json:"job_id ,omitempty"`
124 » InvId int64 `protobuf:"varint,2,opt,name=inv_id,json=invId" json:"inv_i d,omitempty"`
125 }
126
127 func (m *LaunchInvocationTask) Reset() { *m = LaunchInvocatio nTask{} }
128 func (m *LaunchInvocationTask) String() string { return proto.Compact TextString(m) }
129 func (*LaunchInvocationTask) ProtoMessage() {}
130 func (*LaunchInvocationTask) Descriptor() ([]byte, []int) { return fileDescripto r0, []int{4} }
131
132 func (m *LaunchInvocationTask) GetJobId() string {
133 » if m != nil {
134 » » return m.JobId
135 » }
136 » return ""
137 }
138
139 func (m *LaunchInvocationTask) GetInvId() int64 {
140 » if m != nil {
141 » » return m.InvId
142 » }
143 » return 0
74 } 144 }
75 145
76 func init() { 146 func init() {
147 proto.RegisterType((*TickLaterTask)(nil), "internal.tq_tasks.TickLaterTa sk")
148 proto.RegisterType((*TriggerInvocationTask)(nil), "internal.tq_tasks.Tri ggerInvocationTask")
149 proto.RegisterType((*TriageTriggersTask)(nil), "internal.tq_tasks.Triage TriggersTask")
150 proto.RegisterType((*LaunchInvocationsBatchTask)(nil), "internal.tq_task s.LaunchInvocationsBatchTask")
151 proto.RegisterType((*LaunchInvocationTask)(nil), "internal.tq_tasks.Laun chInvocationTask")
152 }
153
154 func init() {
77 proto.RegisterFile("github.com/luci/luci-go/scheduler/appengine/engine/i nternal/tq_tasks.proto", fileDescriptor0) 155 proto.RegisterFile("github.com/luci/luci-go/scheduler/appengine/engine/i nternal/tq_tasks.proto", fileDescriptor0)
78 } 156 }
79 157
80 var fileDescriptor0 = []byte{ 158 var fileDescriptor0 = []byte{
81 » // 189 bytes of a gzipped FileDescriptorProto 159 » // 255 bytes of a gzipped FileDescriptorProto
82 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x8e, 0x31, 0x6b, 0x84, 0x40, 160 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0xd0, 0x41, 0x4b, 0xc3, 0x30,
83 » 0x10, 0x85, 0x31, 0x21, 0x82, 0x0b, 0x29, 0x62, 0x08, 0xd8, 0x04, 0xc4, 0xca, 0x22, 0x71, 0x8b, 161 » 0x14, 0x07, 0x70, 0xea, 0x58, 0x61, 0x0f, 0x3c, 0x58, 0x2c, 0x0c, 0x41, 0x18, 0x3d, 0x15, 0xc4,
84 » 0xfc, 0x86, 0x14, 0x86, 0x90, 0xc2, 0xd8, 0xcb, 0xee, 0xba, 0xe8, 0xb8, 0xde, 0x8c, 0xb7, 0x3b, 162 » 0xe6, 0xe0, 0x37, 0x10, 0x3d, 0x74, 0x4c, 0x0f, 0xa5, 0xf7, 0x92, 0x26, 0x21, 0x7d, 0x6b, 0x7d,
85 » 0xde, 0xef, 0x3f, 0x94, 0xb3, 0xbd, 0xe6, 0x3d, 0xf8, 0x3e, 0x78, 0x3c, 0xf1, 0x33, 0x00, 0x8f, 163 » 0xa9, 0x49, 0xda, 0xcf, 0x2f, 0xdd, 0x5a, 0x05, 0x0f, 0xd3, 0x4b, 0x02, 0xef, 0x1f, 0x7e, 0xff,
86 » 0xab, 0xae, 0x0c, 0x9d, 0xe4, 0xbc, 0x1a, 0xd8, 0xe3, 0x73, 0x20, 0x19, 0xcc, 0x68, 0xfb, 0x75, 164 » 0xf0, 0x60, 0xaf, 0xd1, 0x37, 0x43, 0x9d, 0x09, 0xf3, 0xc1, 0xba, 0x41, 0xe0, 0xe9, 0x78, 0xd4,
87 » 0xb6, 0x5e, 0xaa, 0x65, 0xb1, 0x38, 0x00, 0x5a, 0x79, 0x2b, 0x40, 0xb6, 0x1e, 0xd5, 0x2c, 0xf9, 165 » 0x86, 0x39, 0xd1, 0x28, 0x39, 0x74, 0xca, 0x32, 0xde, 0xf7, 0x8a, 0x34, 0x92, 0x62, 0xf3, 0x85,
88 » 0xdc, 0xb1, 0x0a, 0x2e, 0x54, 0x8b, 0x27, 0xa6, 0xf4, 0xe5, 0x10, 0xd5, 0x21, 0x8a, 0x6f, 0xf1, 166 » 0xe4, 0x95, 0x25, 0xde, 0x31, 0xff, 0x59, 0x79, 0xee, 0x5a, 0x97, 0xf5, 0xd6, 0x78, 0x13, 0xdd,
89 » 0xdc, 0x82, 0x71, 0xbf, 0x8a, 0xad, 0x6f, 0x55, 0x70, 0xe9, 0x9b, 0x88, 0x27, 0xd2, 0x1d, 0xf4, 167 » 0x2c, 0x41, 0xb6, 0x04, 0xc9, 0x2b, 0x5c, 0x97, 0x28, 0xda, 0x03, 0xf7, 0xca, 0x96, 0xdc, 0xb5,
90 » 0x59, 0x94, 0x47, 0x65, 0xd2, 0x3c, 0x4d, 0xa4, 0xeb, 0x3e, 0x7d, 0x17, 0x82, 0xc1, 0xb8, 0x0e, 168 » 0x51, 0x0c, 0xe1, 0xd1, 0xd4, 0x15, 0xca, 0x6d, 0xb0, 0x0b, 0xd2, 0x4d, 0xb1, 0x3e, 0x9a, 0x3a,
91 » 0x09, 0x8d, 0xcd, 0x1e, 0xf2, 0xa8, 0x7c, 0x6c, 0x92, 0x8d, 0xfc, 0x6d, 0xa0, 0xf8, 0x10, 0xaf, 169 » 0x97, 0xd1, 0x3d, 0x80, 0x47, 0xd1, 0x56, 0x64, 0x48, 0xa8, 0xed, 0xd5, 0x2e, 0x48, 0x57, 0xc5,
92 » 0xff, 0xac, 0x3c, 0xd7, 0x78, 0x21, 0xa3, 0x18, 0x08, 0xef, 0x8c, 0xe9, 0x78, 0xbf, 0xf3, 0x75, 170 » 0x66, 0x9a, 0xbc, 0x4f, 0x83, 0xe4, 0x0d, 0xe2, 0xd2, 0xa2, 0xd6, 0xca, 0xe6, 0x34, 0x1a, 0xc1,
93 » 0x0d, 0x00, 0x00, 0xff, 0xff, 0x0a, 0xae, 0x77, 0x6f, 0xdc, 0x00, 0x00, 0x00, 171 » 0x3d, 0x1a, 0xfa, 0x8b, 0x3b, 0xbf, 0x9f, 0xa2, 0x85, 0x9b, 0x05, 0x99, 0x3c, 0x40, 0x54, 0x5a,
172 » 0xe4, 0x5a, 0xcd, 0xa8, 0xbb, 0x60, 0x25, 0x7b, 0xb8, 0x3b, 0xf0, 0x81, 0x44, 0xf3, 0x53, 0xed,
173 » 0x9e, 0xb9, 0x17, 0xcd, 0xa5, 0x0f, 0xc4, 0x10, 0x22, 0x8d, 0xe7, 0xf2, 0x55, 0xba, 0x2a, 0xd6,
174 » 0x48, 0x63, 0x2e, 0x93, 0x17, 0xb8, 0xfd, 0x6d, 0xfd, 0x57, 0x09, 0xbe, 0x95, 0x3a, 0x3c, 0xad,
175 » 0xfb, 0xe9, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x60, 0x97, 0xe5, 0xdb, 0xbc, 0x01, 0x00, 0x00,
94 } 176 }
OLDNEW
« no previous file with comments | « scheduler/appengine/engine/internal/tq_tasks.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698