Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewFlagSet (0.19 sec)

  1. istioctl/pkg/multicluster/remote_secret_test.go

    	ctx := cli.NewFakeContext(nil)
    	o := RemoteSecretOptions{}
    	flags := pflag.NewFlagSet("test", pflag.ContinueOnError)
    	o.addFlags(flags)
    	g.Expect(flags.Parse([]string{
    		"--name",
    		"valid-name",
    	})).Should(Succeed())
    	g.Expect(o.prepare(ctx)).Should(Succeed())
    
    	o = RemoteSecretOptions{}
    	flags = pflag.NewFlagSet("test", pflag.ContinueOnError)
    	o.addFlags(flags)
    	g.Expect(flags.Parse([]string{
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 20.6K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg flag, func Int64Var(*int64, string, int64, string)
    pkg flag, func IntVar(*int, string, int, string)
    pkg flag, func Lookup(string) *Flag
    pkg flag, func NArg() int
    pkg flag, func NFlag() int
    pkg flag, func NewFlagSet(string, ErrorHandling) *FlagSet
    pkg flag, func Parse()
    pkg flag, func Parsed() bool
    pkg flag, func PrintDefaults()
    pkg flag, func Set(string, string) error
    pkg flag, func String(string, string, string) *string
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top