Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for truncate (0.16 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        if (!delete_status.ok()) {
          TF_SetStatusFromGCSStatus(delete_status, status);
          return;
        }
        // We truncate the data that are already uploaded.
        if (!outfile->truncate()) {
          TF_SetStatus(status, TF_INTERNAL,
                       "Could not truncate internal temporary file.");
          return;
        }
        *offset = static_cast<int64_t>(metadata->size());
        TF_SetStatus(status, TF_OK, "");
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
  2. RELEASE.md

            Existing usage with single inputs should still work as before.
    *   `tf.linalg`
        *   Add `tf.linalg.banded_triangular_solve`.
    *   `tf.random`:
        *   Add `tf.random.stateless_parameterized_truncated_normal`.
    *   `tf.ragged`:
        *   Add `tf.ragged.cross` and `tf.ragged.cross_hashed` operations.
    *   `tf.RaggedTensor`:
        *   `RaggedTensor.to_tensor()` now preserves static shape.
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  3. ci/official/utilities/extract_resultstore_links.py

              f'{url}\n\n')
          failure_msg += (
              f'Here\'s a fragment of the log containing the failure:\n\n'
              f'[ ... TRUNCATED ... ]\n\n'
              f'{invocation_results["log_fragment"]}\n'
              f'\n[ ... TRUNCATED ... ]\n'
          )
          failure = ElemTree.SubElement(
              testcase, elem_name,
              message=f'Bazel invocation {invocation_id} failed.')
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Viewed (0)
Back to top