type github.com/prometheus/procfs.Procs
10 uses
github.com/prometheus/procfs (current package)
proc.go#L37: type Procs []Proc
proc.go#L39: func (p Procs) Len() int { return len(p) }
proc.go#L40: func (p Procs) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
proc.go#L41: func (p Procs) Less(i, j int) bool { return p[i].PID < p[j].PID }
proc.go#L62: func AllProcs() (Procs, error) {
proc.go#L65: return Procs{}, err
proc.go#L99: func (fs FS) AllProcs() (Procs, error) {
proc.go#L102: return Procs{}, err
proc.go#L108: return Procs{}, fmt.Errorf("could not read %s: %s", d.Name(), err)
proc.go#L111: p := Procs{}
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |