Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 142 (0.05 sec)

  1. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %140 = "tf.Identity"(%132) {_class = ["loc:@WhitespaceTokenize/WhitespaceTokenizeWithOffsets"], device = ""} : (tensor<?xi64>) -> tensor<?xi64>
      %141 = "tf.Shape"(%140) {device = ""} : (tensor<?xi64>) -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        //      1D tf.Pack of a batch dimension (can be static or dynamic)
        //      and other dimensions (can only be static), for example:
        //      "tf.Pack"(%142, %cst_301, %cst_301, %cst_300) {axis = 0 : i64, ...}
        std::vector<int64_t> input_shape;
        DenseIntElementsAttr input_shape_attr;
        if (matchPattern(op.getInputSizes(), m_Constant(&input_shape_attr)) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"osImage":                 "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
    	"containerRuntimeVersion": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).",
    	"kubeletVersion":          "Kubelet Version reported by the node.",
    	"kubeProxyVersion":        "Deprecated: KubeProxy Version reported by the node.",
    	"operatingSystem":         "The Operating System reported by the node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
      optional string osImage = 5;
    
      // ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).
      optional string containerRuntimeVersion = 6;
    
      // Kubelet Version reported by the node.
      optional string kubeletVersion = 7;
    
      // Deprecated: KubeProxy Version reported by the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <pre>
    var a [10]int
    s1 := a[3:7]   // underlying array of s1 is array a; &amp;s1[2] == &amp;a[5]
    s2 := s1[1:4]  // underlying array of s2 is underlying array of s1 which is array a; &amp;s2[1] == &amp;a[5]
    s2[1] = 42     // s2[1] == s1[2] == a[5] == 42; they all refer to the same underlying array element
    
    var s []int
    s3 := s[:0]    // s3 == nil
    </pre>
    
    
    <h4>Full slice expressions</h4>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. staging/src/k8s.io/api/core/v1/types.go

    	OSImage string `json:"osImage" protobuf:"bytes,5,opt,name=osImage"`
    	// ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).
    	ContainerRuntimeVersion string `json:"containerRuntimeVersion" protobuf:"bytes,6,opt,name=containerRuntimeVersion"`
    	// Kubelet Version reported by the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top