Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,036 for OPT (0.05 sec)

  1. src/cmd/compile/internal/ssa/opt.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // machine-independent optimization.
    func opt(f *Func) {
    	applyRewrite(f, rewriteBlockgeneric, rewriteValuegeneric, removeDeadValues)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 309 bytes
    - Viewed (0)
  2. src/internal/testenv/opt.go

    Cuong Manh Le <******@****.***> 1660650717 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 04:02:17 UTC 2022
    - 303 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.h

    // Import options.
    extern llvm::cl::opt<std::string> input_arrays;
    extern llvm::cl::opt<std::string> input_dtypes;
    extern llvm::cl::opt<std::string> input_shapes;
    extern llvm::cl::opt<std::string> output_arrays;
    extern llvm::cl::opt<std::string> control_output_arrays;
    extern llvm::cl::opt<std::string> inference_type;
    extern llvm::cl::opt<std::string> min_values;
    extern llvm::cl::opt<std::string> max_values;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

    // which expects command-line options of such style.
    
    using llvm::cl::opt;
    
    // Import options.
    // NOLINTNEXTLINE
    opt<std::string> input_arrays(
        "tf-input-arrays", llvm::cl::desc("Input tensor names, separated by ','"),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> input_dtypes(
        "tf-input-data-types",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. istioctl/pkg/multicluster/remote_secret.go

    		if opt.ServiceAccountName == "" {
    			opt.ServiceAccountName = constants.DefaultServiceAccountName
    		}
    	case SecretTypeConfig:
    		secretName = configSecretName
    		if opt.ServiceAccountName == "" {
    			opt.ServiceAccountName = constants.DefaultConfigServiceAccountName
    		}
    	default:
    		return nil, nil, fmt.Errorf("unsupported type: %v", opt.Type)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// Last time we probed the condition.
    	// +optional
    	LastProbeTime metav1.Time `json:"lastProbeTime,omitempty" protobuf:"bytes,3,opt,name=lastProbeTime"`
    	// Last time the condition transitioned from one status to another.
    	// +optional
    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	// Status of the condition, one of True, False, Unknown.
    	// +required
    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status"`
    	// If set, this represents the .metadata.generation that the condition was set based upon.
    	// +optional
    	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,3,opt,name=observedGeneration"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    extern llvm::cl::opt<std::string> select_user_tf_ops;
    extern llvm::cl::opt<bool> allow_all_select_tf_ops;
    extern llvm::cl::opt<bool> unfold_batchmatmul;
    extern llvm::cl::opt<bool> unfold_large_splat_constant;
    extern llvm::cl::opt<bool> guarantee_all_funcs_one_use;
    extern llvm::cl::opt<bool> enable_dynamic_update_slice;
    extern llvm::cl::opt<bool> preserve_assert_op;
    extern llvm::cl::opt<bool> legalize_custom_tensor_list_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// azureFile represents an Azure File Service mount on the host and bind mount to the pod.
    	// +optional
    	AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,18,opt,name=azureFile"`
    	// configMap represents a configMap that should populate this volume
    	// +optional
    	ConfigMap *ConfigMapVolumeSource `json:"configMap,omitempty" protobuf:"bytes,19,opt,name=configMap"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec holds information about the request being evaluated
    	Spec SubjectAccessReviewSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is filled in by the server and indicates whether the request is allowed or not
    	// +optional
    	Status SubjectAccessReviewStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // +genclient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top