Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 239 for stringVar (0.16 sec)

  1. docs/sts/assume-role.go

    	bucketToList string
    
    	// Session policy file (FIXME: add support in minio-go)
    	sessionPolicyFile string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&minioUsername, "u", "", "MinIO Username")
    	flag.StringVar(&minioPassword, "p", "", "MinIO Password")
    	flag.BoolVar(&displayCreds, "d", false, "Only show generated credentials")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 16:09:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/options/options.go

    		"Timeout for kubelet operations.")
    
    	fs.StringVar(&s.KubeletConfig.TLSClientConfig.CertFile, "kubelet-client-certificate", s.KubeletConfig.TLSClientConfig.CertFile,
    		"Path to a client cert file for TLS.")
    
    	fs.StringVar(&s.KubeletConfig.TLSClientConfig.KeyFile, "kubelet-client-key", s.KubeletConfig.TLSClientConfig.KeyFile,
    		"Path to a client key file for TLS.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.DurationVar(&o.PVClaimBinderSyncPeriod.Duration, "pvclaimbinder-sync-period", o.PVClaimBinderSyncPeriod.Duration, "The period for syncing persistent volumes and persistent volume claims")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/serviceaccountcontroller.go

    }
    
    // AddFlags adds flags related to ServiceAccountController for controller manager to the specified FlagSet
    func (o *SAControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ServiceAccountKeyFile, "service-account-private-key-file", o.ServiceAccountKeyFile, "Filename containing a PEM-encoded private RSA or ECDSA key used to sign service account tokens.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. docs/sts/web-identity.go

    }
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&configEndpoint, "config-ep",
    		"http://localhost:8080/auth/realms/minio/.well-known/openid-configuration",
    		"OpenID discovery document endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    	flag.StringVar(&clientSec, "csec", "", "Client Secret")
    	flag.StringVar(&clientScopes, "cscopes", "openid", "Client Scopes")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. docs/iam/access-manager-plugin.go

    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"strings"
    )
    
    var (
    	keyFile  string
    	certFile string
    )
    
    func init() {
    	flag.StringVar(&keyFile, "key-file", "", "Path to TLS cert key file")
    	flag.StringVar(&certFile, "cert-file", "", "Path to TLS cert file")
    }
    
    func writeErrorResponse(w http.ResponseWriter, err error) {
    	w.WriteHeader(http.StatusBadRequest)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 08 17:15:20 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/cloudprovider.go

    func (s *CloudProviderOptions) AddFlags(fs *pflag.FlagSet) {
    	fs.StringVar(&s.CloudProvider, "cloud-provider", s.CloudProvider,
    		"The provider for cloud services. Empty string for no provider.")
    	fs.MarkDeprecated("cloud-provider", "will be removed in a future version") // nolint: errcheck
    	fs.StringVar(&s.CloudConfigFile, "cloud-config", s.CloudConfigFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 15:50:25 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top