[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>
Этот коммит содержится в:
Claudio Costa
2020-08-12 19:53:47 +02:00
коммит произвёл GitHub
родитель 5566395032
Коммит c89c56ab2e
166 изменённых файлов: 5005 добавлений и 3002 удалений

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 сгенерированный поставляемый
Просмотреть файл

@@ -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 сгенерированный поставляемый
Просмотреть файл

@@ -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