Commit Graph

2428 Commits (4870f6f119fadb622039e083a9e2280f1da415b5)
 

Author SHA1 Message Date
Matthieu MOREL 0f342652ad
enable nakedret linter
Matthieu MOREL 803be09d63
enable megacheck linter
Makazeu 521fafd945
Fix a typo in comment
Matthieu MOREL 2252055b93
enable codecoverage
Matthieu MOREL 5c5245372d
enable predeclared linter
Matthieu MOREL f8c685e717
enable caching in workflows
Matthieu MOREL 851bffc0f1
enable gosec linter
Matthieu MOREL 5801744ecc
enable asciicheck linter
Matthieu MOREL 227e7b8b8c
enable nolintlint linter
Matthieu MOREL 4671e649aa
enable revive linter
Matthieu MOREL 982ee3bc2b
enable misspell linter
Matthieu MOREL e232c1083c
enable gofumpt linter
Matthieu MOREL 08a73c90a6
Delete run-commit.yml
Matthieu MOREL 6bad729ebd
enable gofmt linter
mmorel-35 1e6b445a8a gofumpt
Matthieu MOREL 5eac39f418
Update run-commit.yml
Matthieu MOREL 3664dbb362
Update run-commit.yml
mmorel-35 eb5f6203d8 gofmt
Matthieu MOREL 04c870cb3d
Update run-commit.yml
Matthieu MOREL fbdbfec158
Update run-commit.yml
Matthieu MOREL a2420eab64
Create run-commit.yml
Matthieu MOREL 5c7609f116
enable durationcheck linter
Matthieu MOREL c8fd8c7b1f
enable unparam linter
shirou b1186a68ed
Merge pull request #1191 from shirou/feature/update_mac_cgo
[disk][host][mac] fix deprecated code in macOS Monterey
shirou 69ea4bfdae
Merge pull request #1194 from mmorel-35/master
Enable errorlint and gci linters
shirou 530dc58cba
Merge pull request #1202 from 851235550/fix-read-lines-offset-n
Fix bug for func named ReadLinesOffsetN
YangKeao 1b5757b7d1 fix unstable boot time because of float conversion
Signed-off-by: YangKeao <yangkeao@chunibyo.icu>
wyl 5a288fb852 Fix bug for func named ReadLinesOffsetN
shirou c6bccaff3b
Merge pull request #1192 from shirou/feature/m1_not_return_when_cpu_freq
[cpu][mac] change not return error even if cpu.frequency errors
Matthieu MOREL 8f64de95fa
enable gci linter
Matthieu MOREL b673968d5d
enable errorlint linter
shirou bde422a2ff [cpu][mac] doesn't return error when cpu.frequency
shirou 4c3edcfe56 [mac] fix deprecated code in macOS Monterey
shirou 1ec4629e46
Merge pull request #1174 from shirou/feature/delete_v2
delete v2 directory, move v3 to top  #1078
shirou d2e27c1712 fix dependabot v2 deletion.
shirou 0969c9436b delete v2 directory, move v3 to top #1078
shirou 3b417071a5
Merge pull request #1176 from PierreF/cgo-conflict-names-v3
Prefix C function by gopsutil_v3_
shirou aa3378b5ff
Merge pull request #1185 from tbarker25/process-states
Add additional process states
shirou 5707c55332
Merge pull request #1186 from tklauser/remove-cgo-file
v3/process: remove unused .cgo file
Tobias Klauser 0cc39fe6ca
v3/process: remove unused .cgo file
The process_darwin_amd64.go.cgo file was probably added by mistake. The
go tool does not recognize the .cgo extension, so it's already excluded
from the build. The real type and const definitions are in
process_darwin_amd64.go already.
Tom Barker c6c910cce1 Add additional process states.
shirou de385f50a8
Merge pull request #1182 from kestrelcjx/kestrel/process
fix(process): fix the bug that the program is hung when getting the f…
kestrelcjx a0b6077502 chore(process): change the return value
kestrelcjx 3b61bb2833 chore(process): add ctx.Done() to break select
shirou a00b8eac52
Merge pull request #1181 from mikemorris/patch-1
deps: switch to recommended fork of StackExchange/wmi
shirou 0fdf65fa3e Change to use yusufpapurcu/wmi from StackExchange/wmi.
shirou 6e1e70b706
Merge pull request #1180 from tklauser/mem-darwin-sysctluint64
mem: use unix.SysctlUint64 for hw.memsize on darwin
kestrelcjx db054ec106 fix(process): fix the bug that the program is hung when getting the file name
Mike Morris 6ff1f56e09
deps: switch to recommended fork of StackExchange/wmi
Tobias Klauser d935ecccea mem: use unix.SysctlUint64 for hw.memsize on darwin
Use unix.SysctlUint64 which directly returns an uint64 rather than
converting it from a string.