MCPcopy Create free account
hub / github.com/efficientgo/e2e / NewFailedRunnable

Function NewFailedRunnable

env_docker.go:205–210  ·  view source on GitHub ↗

NewFailedRunnable returns runnable that failed in construction.

(name string, err error)

Source from the content-addressed store, hash-verified

203
204// NewFailedRunnable returns runnable that failed in construction.
205func NewFailedRunnable(name string, err error) Runnable {
206 return errorer{
207 name: name,
208 err: err,
209 }
210}
211
212func (e errorer) BuildErr() error { return e.err }
213func (e errorer) Name() string { return e.name }

Callers 4

NewParcaFunction · 0.92
AsProfiledFunction · 0.92
AsInstrumentedFunction · 0.92
NewPrometheusFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…