Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for OPT (0.03 sec)

  1. tensorflow/compiler/mlir/runlit.cfg.py

    ]
    tool_names = [
        'dtensor-opt',
        'flatbuffer_to_string',
        'flatbuffer_translate',
        'hlo_to_kernel',
        'json_to_flatbuffer',
        'kernel-gen-opt',
        'mlir-hlo-opt',
        'mlir-opt',
        'mlir-tflite-runner',
        'mlir-translate',
        'odml-to-stablehlo-opt',
        'odml_to_stablehlo',
        'odml-converter',
        'stable-quant-opt',
        'tac-opt-all-backends',
        'tac-translate',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/events/v1/types.go

    	metav1.ObjectMeta `json:"metadata" protobuf:"bytes,1,opt,name=metadata"`
    
    	// eventTime is the time when this Event was first observed. It is required.
    	EventTime metav1.MicroTime `json:"eventTime" protobuf:"bytes,2,opt,name=eventTime"`
    
    	// series is data about the Event series this event represents or nil if it's a singleton Event.
    	// +optional
    	Series *EventSeries `json:"series,omitempty" protobuf:"bytes,3,opt,name=series"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1/types.go

    	UID types.UID `json:"uid" protobuf:"bytes,1,opt,name=uid"`
    	// Kind is the fully-qualified type of object being submitted (for example, v1.Pod or autoscaling.v1.Scale)
    	Kind metav1.GroupVersionKind `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    	// Resource is the fully-qualified resource being requested (for example, v1.pods)
    	Resource metav1.GroupVersionResource `json:"resource" protobuf:"bytes,3,opt,name=resource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/coordination/v1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// spec contains the specification of the Lease.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
    	// +optional
    	Spec LeaseSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    }
    
    // LeaseSpec is a specification of a Lease.
    type LeaseSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/scheduling/v1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// value represents the integer value of this priority class. This is the actual priority that pods
    	// receive when they have the name of this class in their pod spec.
    	Value int32 `json:"value" protobuf:"bytes,2,opt,name=value"`
    
    	// globalDefault specifies whether this PriorityClass should be considered as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/Dockerfile

    COPY productpage.py /opt/microservices/
    COPY tests/unit/* /opt/microservices/
    COPY templates /opt/microservices/templates
    COPY static /opt/microservices/static
    COPY requirements.txt /opt/microservices/
    
    ARG flood_factor
    ENV FLOOD_FACTOR ${flood_factor:-0}
    
    EXPOSE 9080
    WORKDIR /opt/microservices
    RUN python -m unittest discover
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// QuantityValue is a quantity.
    	QuantityValue *resource.Quantity `json:"quantity,omitempty" protobuf:"bytes,6,opt,name=quantity"`
    	// BoolValue is a true/false value.
    	BoolValue *bool `json:"bool,omitempty" protobuf:"bytes,2,opt,name=bool"`
    	// IntValue is a 64-bit integer.
    	IntValue *int64 `json:"int,omitempty" protobuf:"varint,7,opt,name=int"`
    	// IntSliceValue is an array of 64-bit integers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

    };
    
    // Rewrites the given op to `OpT` op after adding the given operand at the end.
    template <typename OpT>
    OpT AddOperandAndRewriteAs(Operation* op, Value operand, NamedAttrList attr,
                               OpBuilder* builder) {
      builder->setInsertionPoint(op);
      auto operands = llvm::to_vector<4>(op->getOperands());
      operands.push_back(operand);
      auto new_op = builder->create<OpT>(op->getLoc(), op->getResultTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pkg/kube/apimirror/probe.go

    	// Path to access on the HTTP server.
    	// +optional
    	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
    	// Name or number of the port to access on the container.
    	// Number must be in the range 1 to 65535.
    	// Name must be an IANA_SVC_NAME.
    	Port IntOrString `json:"port" protobuf:"bytes,2,opt,name=port"`
    	// Host name to connect to, defaults to the pod IP. You probably want to set
    	// "Host" in httpHeaders instead.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

    namespace {
    
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    opt<std::string> input_path(llvm::cl::Positional,
                                llvm::cl::desc("<input path>"), llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> output_filename("o", llvm::cl::desc("<output path>"),
                                     llvm::cl::Optional, llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    opt<std::string> input_arg_shapes_str(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top