[chore]: Bump github.com/KimMachineGun/automemlimit from 0.4.0 to 0.5.0 (#2560)

This commit is contained in:
dependabot[bot] 2024-01-22 09:35:23 +00:00 committed by GitHub
commit a858831387
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 513 additions and 108 deletions

10
vendor/github.com/pbnjay/memory/stub.go generated vendored Normal file
View file

@ -0,0 +1,10 @@
// +build !linux,!darwin,!windows,!freebsd,!dragonfly,!netbsd,!openbsd
package memory
func sysTotalMemory() uint64 {
return 0
}
func sysFreeMemory() uint64 {
return 0
}