Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 203 for stringTab (0.19 sec)

  1. pkg/controlplane/apiserver/options/options.go

    	fs.StringVar(&s.ProxyClientKeyFile, "proxy-client-key-file", s.ProxyClientKeyFile, ""+
    		"Private key for the client certificate used to prove the identity of the aggregator or kube-apiserver "+
    		"when it must call out during a request. This includes proxying requests to a user "+
    		"api-server and calling out to webhook admission plugins.")
    
    	fs.StringVar(&s.PeerCAFile, "peer-ca-file", s.PeerCAFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/env/var.go

    	Deprecated bool
    
    	// The type of the variable's value
    	Type VarType
    
    	// The underlying Go type of the variable
    	GoType string
    }
    
    // StringVar represents a single string environment variable.
    type StringVar struct {
    	Var
    }
    
    // BoolVar represents a single boolean environment variable.
    type BoolVar struct {
    	Var
    }
    
    // IntVar represents a single integer environment variable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

    // values, result values, result devices and the operations to be included in
    // the function body.
    std::optional<llvm::StringMap<FunctionMetadata>> GetFunctionMetadatas(
        func::FuncOp func_op) {
      llvm::StringMap<FunctionMetadata> metadatas;
      WalkResult result = func_op.getBody().walk([&](Operation *op) {
        std::string op_host = GetHost(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

            if (started) {
                started = false
                container.stop()
                monitor.interrupt()
            }
        }
    
        GradleInContainer withEnv(Map<String, ?> stringMap) {
            Map<String, String> env = [:]
            stringMap.each { k, v -> env[k] = v?.toString() }
            container.withEnv(env)
            this
        }
    
        ExecutionResult succeeds(String... tasks) {
            executer.withTasks(tasks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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. 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)
Back to top