forked from TrueCloudLab/rclone
vendor: resync with dep ensure
This commit is contained in:
parent
6f2a6dfbc5
commit
6390bb2b09
15 changed files with 899 additions and 37 deletions
4
vendor/github.com/spf13/pflag/flag.go
generated
vendored
4
vendor/github.com/spf13/pflag/flag.go
generated
vendored
|
@ -556,6 +556,10 @@ func UnquoteUsage(flag *Flag) (name string, usage string) {
|
|||
name = "int"
|
||||
case "uint64":
|
||||
name = "uint"
|
||||
case "stringSlice":
|
||||
name = "strings"
|
||||
case "intSlice":
|
||||
name = "ints"
|
||||
}
|
||||
|
||||
return
|
||||
|
|
4
vendor/github.com/spf13/pflag/flag_test.go
generated
vendored
4
vendor/github.com/spf13/pflag/flag_test.go
generated
vendored
|
@ -978,12 +978,12 @@ const defaultOutput = ` --A for bootstrapping, allo
|
|||
--IP ip IP address with no default
|
||||
--IPMask ipMask Netmask address with no default
|
||||
--IPNet ipNet IP network with no default
|
||||
--Ints intSlice int slice with zero default
|
||||
--Ints ints int slice with zero default
|
||||
--N int a non-zero int (default 27)
|
||||
--ND1 string[="bar"] a string with NoOptDefVal (default "foo")
|
||||
--ND2 num[=4321] a num with NoOptDefVal (default 1234)
|
||||
--StringArray stringArray string array with zero default
|
||||
--StringSlice stringSlice string slice with zero default
|
||||
--StringSlice strings string slice with zero default
|
||||
--Z int an int that defaults to zero
|
||||
--custom custom custom Value implementation
|
||||
--customP custom a VarP with default (default 10)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue