Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type InternalWarning ¶ added in v0.16.1
type InternalWarning struct {
}
func (InternalWarning) Error ¶ added in v0.16.1
func (w InternalWarning) Error() string
type OutputAnalysis ¶
type OutputAnalysis interface {
// ContainsRemoteLockFailure returns true if the output indicates that remote locking failed.
ContainsRemoteLockFailure() bool
// GetRemoteLockedSince returns the time duration since the remote lock was created.
// If no remote lock is held or the time cannot be determined, the second parameter is false.
GetRemoteLockedSince() (time.Duration, bool)
// GetRemoteLockedBy returns who locked the remote lock, if available.
GetRemoteLockedBy() (string, bool)
}
OutputAnalysis of the profile run
Click to show internal directories.
Click to hide internal directories.