mirror of
https://github.com/moby/moby.git
synced 2026-08-08 09:01:44 +00:00
notable changes: - Free unused volumes in more cases - Convert BasicKeyRequest to KeyRequest to use cloudflare/cfssl 1.x.x - reduce direct imports of logrus diffs: - github.com/cloudflare/cfssl v1.6.4; full diff: https://github.com/cloudflare/cfssl/compare/5d63dbd981b5...v1.6.4 - github.com/moby/swarmkit/v2; full diff: https://github.com/moby/swarmkit/compare/bc71908479e5...60421a63a7f148ba1ec7d35c55e4cf9ac03d6b78 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
17 lines
579 B
Go
17 lines
579 B
Go
// Code generated by "stringer -type=CertValidationLevel -output=generated_certvalidationlevel_string.go"; DO NOT EDIT.
|
|
|
|
package x509
|
|
|
|
import "strconv"
|
|
|
|
const _CertValidationLevel_name = "UnknownValidationLevelDVOVEV"
|
|
|
|
var _CertValidationLevel_index = [...]uint8{0, 22, 24, 26, 28}
|
|
|
|
func (i CertValidationLevel) String() string {
|
|
if i < 0 || i >= CertValidationLevel(len(_CertValidationLevel_index)-1) {
|
|
return "CertValidationLevel(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _CertValidationLevel_name[_CertValidationLevel_index[i]:_CertValidationLevel_index[i+1]]
|
|
}
|