Documentation
¶
Index ¶
Constants ¶
View Source
const ( // StatusCompleted indicates that the analysis run completed successfully. StatusCompleted = Status("completed") // StatusErrorTimeout indicates that the analysis was aborted due to a // timeout. StatusErrorTimeout = Status("error_timeout") // StatusErrorAnalysis indicates that the package being analyzed failed // while running the specified command. // // The Stdout and Stderr in the Result should be consulted to understand // further why it failed. StatusErrorAnalysis = Status("error_analysis") // StatusErrorOther indicates an error during some part of the analysis // excluding errors covered by other statuses. StatusErrorOther = Status("error_other") )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Mode ¶
type Mode string
Mode (analysis mode) is used to distinguish between whether static or dynamic analysis is being performed.
func ModeFromString ¶
Click to show internal directories.
Click to hide internal directories.