Documentation ¶ Index ¶ type Box type BoxOpts type LogEntry type RunResult func Run(opts BoxOpts) (*RunResult, error) type Stats Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Box ¶ type Box struct { // contains filtered or unexported fields } type BoxOpts ¶ type BoxOpts struct { *client.Client container.Config Timeout int } type LogEntry ¶ type LogEntry struct { Stream string `json:"stream"` Log string `json:"log"` } type RunResult ¶ type RunResult struct { IsTimedOut bool CPU uint64 // cpu time nanoseconds MEM uint64 // bytes Time int64 // milliseconds Logs []LogEntry Warnings []error } func Run ¶ func Run(opts BoxOpts) (*RunResult, error) type Stats ¶ type Stats struct { // contains filtered or unexported fields } Source Files ¶ View all Source files box.gocheck.go Click to show internal directories. Click to hide internal directories.