Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 439 for stringVar (0.14 sec)

  1. istioctl/pkg/kubeinject/kubeinject.go

    			return nil
    		},
    	}
    
    	injectCmd.PersistentFlags().StringVar(&meshConfigFile, "meshConfigFile", "",
    		"Mesh configuration filename. Takes precedence over --meshConfigMapName if set")
    	injectCmd.PersistentFlags().StringVar(&injectConfigFile, "injectConfigFile", "",
    		"Injection configuration filename. Cannot be used with --injectConfigMapName")
    	injectCmd.PersistentFlags().StringVar(&valuesFile, "valuesFile", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    		ValidArgsFunction: completion.ValidPodsNameArgs(ctx),
    	}
    
    	common.attach(cmd)
    	cmd.PersistentFlags().StringVar(&address, "address", "", "Filter workloads by address field")
    	cmd.PersistentFlags().StringVar(&workloadsNamespace, "workload-namespace", "",
    		"Filter workloads by namespace field")
    	cmd.PersistentFlags().StringVar(&workloadNode, "workload-node", "",
    		"Filter workloads by node")
    
    	return cmd
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-diff.go

    			"    Service:*:istiod - compare Services called \"istiod\" in all namespaces")
    	cmd.PersistentFlags().StringVar(&diffArgs.ignoreResources, "ignore", "",
    		"Ignore all listed items during comparison, using the same list format as selectResources.")
    	cmd.PersistentFlags().StringVar(&diffArgs.renameResources, "rename", "",
    		"Rename resources before comparison.\n"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/flag/example_test.go

    var gopherType string
    
    func init() {
    	const (
    		defaultGopher = "pocket"
    		usage         = "the variety of gopher"
    	)
    	flag.StringVar(&gopherType, "gopher_type", defaultGopher, usage)
    	flag.StringVar(&gopherType, "g", defaultGopher, usage+" (shorthand)")
    }
    
    // Example 3: A user-defined flag type, a slice of durations.
    type interval []time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/flag.go

    // and 'go mod' subcommands.
    func AddModCommonFlags(flags *flag.FlagSet) {
    	flags.BoolVar(&cfg.ModCacheRW, "modcacherw", false, "")
    	flags.StringVar(&cfg.ModFile, "modfile", "", "")
    	flags.StringVar(&fsys.OverlayFile, "overlay", "", "")
    }
    
    func ChdirFlag(s string) error {
    	// main handles -C by removing it from the command line.
    	// If we see one during flag parsing, that's an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    		"The maximum size in megabytes of the audit log file before it gets rotated.")
    	fs.StringVar(&o.Format, "audit-log-format", o.Format,
    		"Format of saved audits. \"legacy\" indicates 1-line text format for each event."+
    			" \"json\" indicates structured json format. Known formats are "+
    			strings.Join(pluginlog.AllowedFormats, ",")+".")
    	fs.StringVar(&o.GroupVersionString, "audit-log-version", o.GroupVersionString,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  7. src/runtime/internal/wasitest/host_test.go

    // license that can be found in the LICENSE file.
    
    package wasi_test
    
    import "flag"
    
    var target string
    
    func init() {
    	// The dist test runner passes -target when running this as a host test.
    	flag.StringVar(&target, "target", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:40 UTC 2023
    - 346 bytes
    - Viewed (0)
  8. pkg/kubeapiserver/options/authorization.go

    		strings.Join(authzmodes.AuthorizationModeChoices, ",")+".")
    
    	fs.StringVar(&o.PolicyFile, authorizationPolicyFileFlag, o.PolicyFile, ""+
    		"File with authorization policy in json line by line format, used with --authorization-mode=ABAC, on the secure port.")
    
    	fs.StringVar(&o.WebhookConfigFile, authorizationWebhookConfigFileFlag, o.WebhookConfigFile, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/options/certs.go

    */
    
    package options
    
    import "github.com/spf13/pflag"
    
    // AddCertificateDirFlag adds the --certs-dir flag to the given flagset
    func AddCertificateDirFlag(fs *pflag.FlagSet, certsDir *string) {
    	fs.StringVar(certsDir, CertificatesDir, *certsDir, "The path where to save the certificates")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 12 09:44:35 UTC 2021
    - 856 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	fs.StringVar(&s.StorageConfig.Transport.KeyFile, "etcd-keyfile", s.StorageConfig.Transport.KeyFile,
    		"SSL key file used to secure etcd communication.")
    
    	fs.StringVar(&s.StorageConfig.Transport.CertFile, "etcd-certfile", s.StorageConfig.Transport.CertFile,
    		"SSL certification file used to secure etcd communication.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top