Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 203 for stringTab (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

        llvm::StringMap<PartitionedCallStackOpsInfo>*);
    
    // Handles stack usage by a tf.While. It will convert the body and conditional
    // function signatures, and performs stack ops decomposition on them.
    LogicalResult HandleWhileOp(
        TF::WhileOp while_op, ModuleOp module,
        const llvm::SmallDenseMap<Value, Value>& data_var_to_size_var,
        llvm::StringMap<PartitionedCallStackOpsInfo>*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

    LogicalResult DecomposeTensorArrayOps(
        Block*, ModuleOp, llvm::SmallDenseMap<Value, TensorArrayStats>*,
        llvm::StringMap<PartitionedCallTensorArrayOpsInfo>*);
    
    LogicalResult HandleWhileOp(TF::WhileOp while_op, ModuleOp module,
                                llvm::SmallDenseMap<Value, TensorArrayStats>* stats,
                                llvm::StringMap<PartitionedCallTensorArrayOpsInfo>*
                                    decomposed_partitioned_call_callees) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top