Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for stringTab (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

      // def-before-use), create a new cluster with that operation and move on.
      llvm::StringMap<SmallVector<Cluster>> all_clusters;
      // Map from operation to the cluster that contains the operation.
      llvm::DenseMap<Operation*, Cluster*> op_to_cluster_map;
    
      llvm::StringMap<Cluster> nearest_clusters;
      for (Operation& op : llvm::make_early_inc_range(block)) {
        if (is_ignored_op(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/op_or_arg_name_mapper.h

    #define TENSORFLOW_COMPILER_MLIR_OP_OR_ARG_NAME_MAPPER_H_
    
    #include <string>
    
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/PointerUnion.h"
    #include "llvm/ADT/StringMap.h"
    #include "llvm/ADT/StringRef.h"
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    
    namespace tensorflow {
    
    // PointerUnion for operation and value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/phases/kubelet/flags.go

    	flagOpts := kubeletFlagsOpts{
    		nodeRegOpts:              nodeReg,
    		pauseImage:               images.GetPauseImage(cfg),
    		registerTaintsUsingFlags: registerTaintsUsingFlags,
    	}
    	stringMap := buildKubeletArgs(flagOpts)
    	argList := kubeadmutil.ArgumentsToCommand(stringMap, nodeReg.KubeletExtraArgs)
    	envFileContent := fmt.Sprintf("%s=%q\n", constants.KubeletEnvFileVariableName, strings.Join(argList, " "))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. docs/debugging/xattr/main.go

    	data := make([]byte, 8)
    	binary.LittleEndian.PutUint64(data, value)
    	return xattr.LSet(path, name, data)
    }
    
    func main() {
    	flag.StringVar(&path, "path", "", "path name where the attribute shall be applied")
    	flag.StringVar(&name, "name", "", "attribute name or it can be a wildcard if '.' is specified")
    	flag.Uint64Var(&value, "value", 0, "attribute value expects the value to be uint64")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/diff.go

    	options.AddConfigFlag(cmd.Flags(), &flags.cfgPath)
    	cmd.Flags().StringVar(&flags.apiServerManifestPath, "api-server-manifest", defaultAPIServerManifestPath, "path to API server manifest")
    	cmd.Flags().StringVar(&flags.controllerManagerManifestPath, "controller-manager-manifest", defaultControllerManagerManifestPath, "path to controller manifest")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top