Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for abortCh (0.09 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

      restrictions that already apply to CustomResourceDefinition.
      If rule evaluation uses more compute than the limit, the API server aborts the evaluation and the
      admission check that was being performed is aborted; the `failurePolicy` for the ValidatingAdmissionPolicy
      determines the outcome. ([#115747](https://github.com/kubernetes/kubernetes/pull/115747), [@cici37](https://github.com/cici37))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          IntegerAttr::get(rewriter->getIntegerType(64), 0));
      return unpacked_indices;
    }
    
    // Returns size of dimension at the specified index, if ranked tensor.
    // Otherwise, returns -1.
    //
    // Aborts if the type is ranked but doesn't have the dimension.
    int64_t GetDimSize(Type ty, int64_t index) {
      RankedTensorType ranked_ty = mlir::dyn_cast<RankedTensorType>(ty);
      if (!ranked_ty) return -1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top