mirror of https://github.com/shirou/gopsutil
feat/fix_ci_skipped_test
dependabot/go_modules/github.com/tklauser/go-sysconf-0.3.15
dependabot/github_actions/golangci/golangci-lint-action-6.5.2
master
dependabot/go_modules/golang.org/x/sys-0.31.0
feat/add_nil_check_on_process_freebsd
dependabot/github_actions/actions/labeler-5.0.0
feature/fix_type_alias_warning
feature/add_linux_netlink
issue734
v2
v1
v2.16.10
v2.1
v2.0.0
1.0.0
0.9.9
v4.25.2
v4.25.1
v4.24.9
v4.24.8
v4.24.7
v4.24.6
v4.24.5
v4.24.12
v4.24.11
v4.24.10
v4.24.0-beta
v4.24.0-alpha.1
v3.24.5
v3.24.4
v3.24.3
v3.24.2
v3.24.1
v3.23.9
v3.23.8
v3.23.7
v3.23.6
v3.23.5
v3.23.4
v3.23.3
v3.23.2
v3.23.12
v3.23.11
v3.23.10
v3.23.1
v3.22.9
v3.22.8
v3.22.7
v3.22.6
v3.22.5
v3.22.4
v3.22.3
v3.22.2
v3.22.12
v3.22.10
v3.22.1
v3.21.9
v3.21.8
v3.21.7
v3.21.6
v3.21.5
v3.21.4
v3.21.3
v3.21.2
v3.21.12
v3.21.11
v3.21.10
v3.21.1
v3.20.12
v3.20.11
v3.20.10
v2.21.11
v2.20.9
v2.20.8
v2.20.7
v2.20.6
v2.20.5
v2.20.4
v2.20.3
v2.20.2
v2.20.1
v2.19.9
v2.19.8
v2.19.7
v2.19.6
v2.19.12
v2.19.11
v2.19.10
v2.19.05
v2.19.04
v2.19.03
v2.19.02
v2.19.01
v2.18.12
v2.18.11
v2.18.10
v2.18.07
v2.18.06
v2.18.05
v2.18.04
v2.18.03
v2.18.02
v2.18.01
v2.17.12
v2.17.11
v2.17.10
v2.17.09
v2.17.08
v2.17.07
v2.17.06
v2.17.05
v2.17.04
v2.17.03
v2.17.02
v2.17.01
v2.16.12
v2.16.11
push
${ noResults }
2 Commits (d26900de91acbdf5f188f7273c8a429459842a75)
Author | SHA1 | Message | Date |
---|---|---|---|
|
98c779765f | [host] go-fmt and propagate context on Windows in Info() | 6 years ago |
|
174b31f146 |
Fix for #665
Remains backward compatible. When encountering non-fatal errors SensorsTemperatures() returns the temperatures for all the sensor we could read successfully. In that case the custom error contains a list of all the non-fatal errors encountered. Example usage: _, err := SensorsTemperatures() if err != nil { warns, ok := err.(*Warnings) if ok { fmt.Printf("%v\n", err) for i, w := range warns.List { fmt.Printf("Warning %v: %v\n", i+1, w) } } else { t.Errorf("%v", err) } } |
6 years ago |