diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-07-07 15:41:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 15:41:05 -0400 |
commit | 7613f31c6b2101d1e3affa74effc6efc5d3752ea (patch) | |
tree | 11d40a7372829d1bc89a43d7abda03c4530b8478 /vendor/github.com/klauspost | |
parent | 9543e068e960e65dba62b7f60dd6144a1724d718 (diff) | |
download | gitea-7613f31c6b2101d1e3affa74effc6efc5d3752ea.tar.gz gitea-7613f31c6b2101d1e3affa74effc6efc5d3752ea.zip |
Update vendor 20210707 (#16366)
* update gitea.com/go-chi/binding
* update github.com/blevesearch/bleve/v2
* update github.com/caddyserver/certmagic
* update github.com/go-git/go-git/v5
* update github.com/lafriks/xormstore
* update github.com/yuin/goldmark
* Revert "update gitea.com/go-chi/binding"
This reverts commit dea2f292b116114f9316fab95c5fd124174da404.
Diffstat (limited to 'vendor/github.com/klauspost')
-rw-r--r-- | vendor/github.com/klauspost/cpuid/v2/cpuid.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vendor/github.com/klauspost/cpuid/v2/cpuid.go b/vendor/github.com/klauspost/cpuid/v2/cpuid.go index b49537545f..cc6a770ea9 100644 --- a/vendor/github.com/klauspost/cpuid/v2/cpuid.go +++ b/vendor/github.com/klauspost/cpuid/v2/cpuid.go @@ -384,7 +384,6 @@ func (c *CPUInfo) frequencies() { eax, ebx, ecx, _ := cpuid(0x15) if eax != 0 && ebx != 0 && ecx != 0 { c.Hz = (int64(ecx) * int64(ebx)) / int64(eax) - fmt.Println("frequencies(): ", ecx, ebx, eax, "->", c.Hz) } } if mfi >= 0x16 { |