[MM-27328] Upgrade minio-go to v7 (#15177)
* Upgrade minio-go to v7 * Update to v7.0.3 Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
5566395032
Коммит
c89c56ab2e
6
vendor/github.com/klauspost/cpuid/README.md
сгенерированный
поставляемый
6
vendor/github.com/klauspost/cpuid/README.md
сгенерированный
поставляемый
@@ -2,7 +2,7 @@
|
||||
Package cpuid provides information about the CPU running the current program.
|
||||
|
||||
CPU features are detected on startup, and kept for fast access through the life of the application.
|
||||
Currently x86 / x64 (AMD64) is supported, and no external C (cgo) code is used, which should make the library very easy to use.
|
||||
Currently x86 / x64 (AMD64/i386) and ARM (ARM64) is supported, and no external C (cgo) code is used, which should make the library very easy to use.
|
||||
|
||||
You can access the CPU information by accessing the shared CPU variable of the cpuid library.
|
||||
|
||||
@@ -86,6 +86,10 @@ Package home: https://github.com/klauspost/cpuid
|
||||
|
||||
## ARM CPU features
|
||||
|
||||
# ARM FEATURE DETECTION DISABLED!
|
||||
|
||||
See [#52](https://github.com/klauspost/cpuid/issues/52).
|
||||
|
||||
Currently only `arm64` platforms are implemented.
|
||||
|
||||
* **FP** Single-precision and double-precision floating point
|
||||
|
||||
4
vendor/github.com/klauspost/cpuid/detect_arm64.go
сгенерированный
поставляемый
4
vendor/github.com/klauspost/cpuid/detect_arm64.go
сгенерированный
поставляемый
@@ -16,6 +16,10 @@ func initCPU() {
|
||||
}
|
||||
|
||||
func addInfo(c *CPUInfo) {
|
||||
// ARM64 disabled for now.
|
||||
if true {
|
||||
return
|
||||
}
|
||||
// midr := getMidr()
|
||||
|
||||
// MIDR_EL1 - Main ID Register
|
||||
|
||||
2
vendor/github.com/klauspost/cpuid/detect_intel.go
сгенерированный
поставляемый
2
vendor/github.com/klauspost/cpuid/detect_intel.go
сгенерированный
поставляемый
@@ -1,6 +1,6 @@
|
||||
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file.
|
||||
|
||||
//+build 386,!gccgo amd64,!gccgo,!noasm,!appengine
|
||||
//+build 386,!gccgo,!noasm amd64,!gccgo,!noasm,!appengine
|
||||
|
||||
package cpuid
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user