Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Concatenates (0.32 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: [[CONSTANT2:%.*]] = mhlo.constant dense<16> : tensor<1xi64>
      // CHECK: [[CONCATENATE:%.*]] = "mhlo.concatenate"([[CONSTANT1]], [[FROM_ELEMENTS]], [[CONSTANT2]]) <{dimension = 0 : i64}> : (tensor<1xi64>, tensor<1xi64>, tensor<1xi64>) -> tensor<3xi64>
      // CHECK: [[DYNAMIC_GATHER:%.*]] = "mhlo.dynamic_gather"([[INPUT]], [[WHILE_OUT]]#2, [[CONCATENATE]])
      // CHECK-SAME:   dimension_numbers =
      // CHECK-SAME:     offset_dims = [1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // will also be deleted. The name of the ResourceClaim will be <pod
      // name>-<resource name>, where <resource name> is the
      // PodResourceClaim.Name. Pod validation will reject the pod if the
      // concatenated name is not valid for a ResourceClaim (e.g. too long).
      //
      // An existing ResourceClaim with that name that is not owned by the
      // pod will not be used for the pod to avoid using an unrelated
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           return %[[VAL_3]] : tensor<6x3xf32>
    // CHECK:         }
    func.func @concat_v2(%arg0: tensor<3x3xf32>, %arg1: tensor<3x3xf32>) -> tensor<6x3xf32> {
      %2 = "mhlo.concatenate"(%arg0, %arg1) <{dimension = 0 : i64}> : (tensor<3x3xf32>, tensor<3x3xf32>) -> tensor<6x3xf32>
      func.return %2 : tensor<6x3xf32>
    }
    
    // CHECK-LABEL:   func @concat_v2_1d_axis(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.13.md

    * add more logging for azure disk diagnostics ([#70012](https://github.com/kubernetes/kubernetes/pull/70012), [@andyzhangx](https://github.com/andyzhangx))
    * Fluentd: concatenate long logs ([#68012](https://github.com/kubernetes/kubernetes/pull/68012), [@desaintmartin](https://github.com/desaintmartin))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// pod.  The name of the PVC will be `<pod name>-<volume name>` where
    	// `<volume name>` is the name from the `PodSpec.Volumes` array
    	// entry. Pod validation will reject the pod if the concatenated name
    	// is not valid for a PVC (for example, too long).
    	//
    	// An existing PVC with that name that is not owned by the pod
    	// will *not* be used for the pod to avoid using an unrelated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		if c.Name == containerName {
    			hasContainer = true
    			return false
    		}
    		return true
    	})
    	return hasContainer
    }
    
    const (
    	// a sysctl segment regex, concatenated with dots to form a sysctl name
    	SysctlSegmentFmt string = "[a-z0-9]([-_a-z0-9]*[a-z0-9])?"
    
    	// a sysctl name regex with slash allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // pod.  The name of the PVC will be `<pod name>-<volume name>` where
      // `<volume name>` is the name from the `PodSpec.Volumes` array
      // entry. Pod validation will reject the pod if the concatenated name
      // is not valid for a PVC (for example, too long).
      //
      // An existing PVC with that name that is not owned by the pod
      // will *not* be used for the pod to avoid using an unrelated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. doc/go_spec.html

    r  = float64(x*y) + z
    r  = z; r += float64(x*y)
    t  = float64(x*y); r = t + z
    </pre>
    
    <h4 id="String_concatenation">String concatenation</h4>
    
    <p>
    Strings can be concatenated using the <code>+</code> operator
    or the <code>+=</code> assignment operator:
    </p>
    
    <pre>
    s := "hi" + string(c)
    s += " and good bye"
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// pod.  The name of the PVC will be `<pod name>-<volume name>` where
    	// `<volume name>` is the name from the `PodSpec.Volumes` array
    	// entry. Pod validation will reject the pod if the concatenated name
    	// is not valid for a PVC (for example, too long).
    	//
    	// An existing PVC with that name that is not owned by the pod
    	// will *not* be used for the pod to avoid using an unrelated
    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