Lines Matching defs:check

74 type check struct {  struct
75 pipelineRef
77 id int
78 resourceConfigScopeID int
79 metadata CheckMetadata
80 manuallyTriggered bool
82 status CheckStatus
83 schema string
84 plan atc.Plan
85 checkError error
87 createTime time.Time
88 startTime time.Time
89 endTime time.Time
91 spanContext SpanContext
107 func (c *check) ID() int { return c.id }
108 func (c *check) ResourceConfigScopeID() int { return c.resourceConfigScopeID }
109 func (c *check) Status() CheckStatus { return c.status }
110 func (c *check) Schema() string { return c.schema }
111 func (c *check) Plan() atc.Plan { return c.plan }
112 func (c *check) CreateTime() time.Time { return c.createTime }
113 func (c *check) StartTime() time.Time { return c.startTime }
114 func (c *check) EndTime() time.Time { return c.endTime }
115 func (c *check) CheckError() error { return c.checkError }
116 func (c *check) ManuallyTriggered() bool { return c.manuallyTriggered }
118 func (c *check) TeamID() int {
122 func (c *check) TeamName() string {
126 func (c *check) ResourceConfigID() int {
130 func (c *check) BaseResourceTypeID() int {
134 func (c *check) Reload() (bool, error) {
150 func (c *check) Start() error {
193 func (c *check) Finish() error {
197 func (c *check) FinishWithError(err error) error {
201 func (c *check) finish(status CheckStatus, checkError error) error {
260 func (c *check) AcquireTrackingLock(logger lager.Logger) (lock.Lock, bool, error) {
267 func (c *check) AllCheckables() ([]Checkable, error) {
330 func (c *check) SaveVersions(spanContext SpanContext, versions []atc.Version) error {
334 func (c *check) SpanContext() propagators.Supplier {
338 func scanCheck(c *check, row scannable) error {