Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ios (0.14 sec)

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

      std::remove(name_.c_str());
    }
    
    const std::string TempFile::getName() const { return name_; }
    
    bool TempFile::truncate() {
      std::fstream::close();
      std::fstream::open(name_, std::ios::binary | std::ios::out);
      return std::fstream::is_open();
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jun 26 14:56:58 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

               TempFile(temp_file_name, std::ios::binary | std::ios::trunc), false,
               static_cast<int64_t>(metadata->size())});
        } else if (TF_GetCode(status) == TF_NOT_FOUND) {
          file->plugin_file = new tf_writable_file::GCSFile(
              {std::move(bucket), std::move(object), &gcs_file->gcs_client,
               TempFile(temp_file_name, std::ios::binary | std::ios::trunc), true,
               0});
        } else {
    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)
Back to top