Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MaybeAppendSlash (0.18 sec)

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

          GetChildrenBounded(gcs_file, src, UINT64_MAX, true, true, status);
      if (TF_GetCode(status) != TF_OK) return;
    
      std::string src_dir = src;
      std::string dst_dir = dst;
      MaybeAppendSlash(&src_dir);
      MaybeAppendSlash(&dst_dir);
      for (const std::string& children : childrens) {
        RenameObject(filesystem, src_dir + children, dst_dir + children, status);
        if (TF_GetCode(status) != TF_OK) return;
      }
    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