Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for elemEnds (0.18 sec)

  1. doc/go_spec.html

    </pre>
    
    <p>
    The length of an array literal is the length specified in the literal type.
    If fewer elements than the length are provided in the literal, the missing
    elements are set to the zero value for the array element type.
    It is an error to provide elements with index values outside the index range
    of the array. The notation <code>...</code> specifies an array length equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // A slice_size of -1 means "all elements from start_index to the end".
        // In order to support these semantics, we need to know both the start index
        // and the shape of the input dimension.
        if (slice_size < 0 && (!is_constant_start || input_size < 0)) return false;
      }
      return true;
    }
    
    // TF slice size can be -1, which represents all elements from start_index to
    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. pkg/apis/core/types.go

    	// at some point during pod execution (e.g. due to a pod label update), the
    	// system will try to eventually evict the pod from its node.
    	// When there are multiple elements, the lists of nodes corresponding to each
    	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
    	// +optional
    	// RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.batch.v1.PodFailurePolicyRule"
                    }
                  ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (NodeAffinity) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// at some point during pod execution (e.g. due to a pod label update), the
    	// system will try to eventually evict the pod from its node.
    	// When there are multiple elements, the lists of nodes corresponding to each
    	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // for each node that meets all of the scheduling requirements (resource
      // request, requiredDuringScheduling affinity expressions, etc.),
      // compute a sum by iterating through the elements of this field and adding
      // "weight" to the sum if the node matches the corresponding matchExpressions; the
      // node(s) with the highest sum are the most preferred.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    // 1. is not abs path
    // 2. does not contain any '..' elements
    // 3. does not start with '..'
    func ValidateLocalNonReservedPath(targetPath string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, validateLocalDescendingPath(targetPath, fldPath)...)
    	// Don't report this error if the check for .. elements already caught it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. ChangeLog.md

    #### Performance Improvements
    
    - [`KT-65560`](https://youtrack.jetbrains.com/issue/KT-65560) K2: Anaysis API: ContextCollector triggers redundant resolution in the case of file elements
    - [`KT-64987`](https://youtrack.jetbrains.com/issue/KT-64987) Analysis API: 50GB memory allocation on creating empty kotlinx.collections.immutable.persistentMapOf
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %strides = "tf.Const"() { value = dense<[1, 1]> : tensor<2xi64> } : () -> tensor<2xi64>
      // When begin/end are dynamic, the number of output elements must be equal to
      // the number of input elements sliced.
      // CHECK: tf.StridedSlice
      %0 = "tf.StridedSlice"(%input, %begin, %end, %strides) : (tensor<4x8xf32>, tensor<2xi64>, tensor<2xi64>, tensor<2xi64>) -> tensor<6x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top