Documentation ¶
Index ¶
- Constants
- func EnsureAbsolutePath(path string, absoluteBase string) string
- func IsSliceInt64Eq(a, b []int64) bool
- func Max(a, b int) int
- func Min(a, b int) int
- func RemoveAll(path string) error
- func SanitizeMessage(message, unsanitizedURL string) string
- func SanitizeURLCredentials(unsanitizedURL string, usePlaceholder bool) string
- func URLSanitizedError(err error, unsanitizedURL string) error
- type Int64Slice
- type OptionalBool
Constants ¶
const ( // OptionalBoolNone a "null" boolean value OptionalBoolNone = iota // OptionalBoolTrue a "true" boolean value OptionalBoolTrue // OptionalBoolFalse a "false" boolean value OptionalBoolFalse )
Variables ¶
This section is empty.
Functions ¶
func EnsureAbsolutePath ¶ added in v1.3.0
EnsureAbsolutePath ensure that a path is absolute, making it relative to absoluteBase if necessary
func IsSliceInt64Eq ¶ added in v1.3.0
IsSliceInt64Eq returns if the two slice has the same elements but different sequences.
func SanitizeMessage ¶ added in v1.3.1
SanitizeMessage sanitizes a message which may contains a sensitive URL
func SanitizeURLCredentials ¶ added in v1.3.1
SanitizeURLCredentials sanitizes a url, either removing user credentials or replacing them with a placeholder.
func URLSanitizedError ¶ added in v1.3.1
URLSanitizedError returns the sanitized version an error whose message may contain a sensitive URL
Types ¶
type Int64Slice ¶ added in v1.3.0
type Int64Slice []int64
Int64Slice attaches the methods of Interface to []int64, sorting in increasing order.
func (Int64Slice) Len ¶ added in v1.3.0
func (p Int64Slice) Len() int
func (Int64Slice) Less ¶ added in v1.3.0
func (p Int64Slice) Less(i, j int) bool
func (Int64Slice) Swap ¶ added in v1.3.0
func (p Int64Slice) Swap(i, j int)
type OptionalBool ¶
type OptionalBool byte
OptionalBool a boolean that can be "null"
func OptionalBoolOf ¶
func OptionalBoolOf(b bool) OptionalBool
OptionalBoolOf get the corresponding OptionalBool of a bool
func (OptionalBool) IsFalse ¶ added in v1.3.0
func (o OptionalBool) IsFalse() bool
IsFalse return true if equal to OptionalBoolFalse
func (OptionalBool) IsNone ¶ added in v1.3.0
func (o OptionalBool) IsNone() bool
IsNone return true if equal to OptionalBoolNone
func (OptionalBool) IsTrue ¶ added in v1.3.0
func (o OptionalBool) IsTrue() bool
IsTrue return true if equal to OptionalBoolTrue