Documentation
¶
Overview ¶
SPDX-License-Identifier: BSD-3-Clause
SPDX-License-Identifier: BSD-3-Clause
SPDX-License-Identifier: BSD-3-Clause
SPDX-License-Identifier: BSD-3-Clause
Index ¶
- Variables
- func BootTimeWithContext(ctx context.Context, enableCache bool) (uint64, error)
- func ByteToString(orig []byte) string
- func CallLsofWithContext(ctx context.Context, invoke Invoker, pid int32, args ...string) ([]string, error)
- func GetEnv(key, dfault string, combineWith ...string) string
- func GetEnvWithContext(ctx context.Context, key, dfault string, combineWith ...string) string
- func GetOSRelease() (platform, version string, err error)
- func GetOSReleaseWithContext(ctx context.Context) (platform, version string, err error)
- func HexToUint32(hex string) uint32
- func HostDev(combineWith ...string) string
- func HostDevWithContext(ctx context.Context, combineWith ...string) string
- func HostEtc(combineWith ...string) string
- func HostEtcWithContext(ctx context.Context, combineWith ...string) string
- func HostProc(combineWith ...string) string
- func HostProcMountInfoWithContext(ctx context.Context, combineWith ...string) string
- func HostProcWithContext(ctx context.Context, combineWith ...string) string
- func HostRoot(combineWith ...string) string
- func HostRootWithContext(ctx context.Context, combineWith ...string) string
- func HostRun(combineWith ...string) string
- func HostRunWithContext(ctx context.Context, combineWith ...string) string
- func HostSys(combineWith ...string) string
- func HostSysWithContext(ctx context.Context, combineWith ...string) string
- func HostVar(combineWith ...string) string
- func HostVarWithContext(ctx context.Context, combineWith ...string) string
- func IntContains(target []int, src int) bool
- func IntToString(orig []int8) string
- func IsLittleEndian() bool
- func NumProcs() (uint64, error)
- func NumProcsWithContext(ctx context.Context) (uint64, error)
- func PathExists(filename string) bool
- func PathExistsWithContents(filename string) bool
- func ReadFile(filename string) (string, error)
- func ReadInts(filename string) ([]int64, error)
- func ReadLine(filename, prefix string) (string, error)
- func ReadLines(filename string) ([]string, error)
- func ReadLinesOffsetN(filename string, offset uint, n int) ([]string, error)
- func Readlink(name string) (string, error)
- func Round(val float64, n int) float64
- func Sleep(ctx context.Context, interval time.Duration) error
- func StringsContains(target []string, src string) bool
- func StringsHas(target []string, src string) bool
- func UintToString(orig []uint8) string
- func Virtualization() (string, string, error)
- func VirtualizationWithContext(ctx context.Context) (string, string, error)
- type FakeInvoke
- type Invoke
- type Invoker
- type Warnings
Constants ¶
This section is empty.
Variables ¶
Functions ¶
func BootTimeWithContext ¶
func ByteToString ¶
func CallLsofWithContext ¶
func GetEnv ¶
GetEnv retrieves the environment variable key. If it does not exist it returns the default.
func GetEnvWithContext ¶
GetEnvWithContext retrieves the environment variable key. If it does not exist it returns the default. The context may optionally contain a map superseding os.EnvKey.
func GetOSRelease ¶
func GetOSReleaseWithContext ¶
func HostDevWithContext ¶
func HostEtcWithContext ¶
func HostProcWithContext ¶
func HostRootWithContext ¶
func HostRunWithContext ¶
func HostSysWithContext ¶
func HostVarWithContext ¶
func IntContains ¶
IntContains checks the src in any int of the target int slice.
func IntToString ¶
func IsLittleEndian ¶
func IsLittleEndian() bool
IsLittleEndian checks if the current platform uses little-endian. copied from https://github.com/ntrrg/ntgo/blob/v0.8.0/runtime/infrastructure.go#L16 (MIT License)
func PathExists ¶
func PathExistsWithContents ¶
PathExistsWithContents returns the filename exists and it is not empty
func ReadLine ¶
ReadLine reads a file and returns the first occurrence of a line that is prefixed with prefix.
func ReadLines ¶
ReadLines reads contents from a file and splits them by new lines. A convenience wrapper to ReadLinesOffsetN(filename, 0, -1).
func ReadLinesOffsetN ¶
ReadLinesOffsetN reads contents from file and splits them by new line. The offset tells at which line number to start. The count determines the number of lines to read (starting from offset): n >= 0: at most n lines n < 0: whole file
func Readlink ¶ added in v4.25.6
Readlink behaves like os.Readlink but caches the buffer passed to syscall.Readlink.
func StringsContains ¶
StringsContains checks the src in any string of the target string slice
func StringsHas ¶
StringsHas checks the target string slice contains src or not
func UintToString ¶
func Virtualization ¶
Types ¶
type FakeInvoke ¶
type FakeInvoke struct {
Suffix string // Suffix species expected file name suffix such as "fail"
Error error // If Error specified, return the error.
}
func (FakeInvoke) Command ¶
func (i FakeInvoke) Command(name string, arg ...string) ([]byte, error)
Command in FakeInvoke returns from expected file if exists.