Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ParseGCSPath (0.19 sec)

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

                  TF_Status* status) {
      std::string bucket_src, object_src;
      ParseGCSPath(src, false, &bucket_src, &object_src, status);
      if (TF_GetCode(status) != TF_OK) return;
    
      std::string bucket_dst, object_dst;
      ParseGCSPath(dst, false, &bucket_dst, &object_dst, status);
      if (TF_GetCode(status) != TF_OK) return;
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      }
    }
    
    TEST_F(GCSFilesystemTest, ParseGCSPath) {
      std::string bucket, object;
      ParseGCSPath("gs://bucket/path/to/object", false, &bucket, &object, status_);
      ASSERT_TF_OK(status_);
      ASSERT_EQ(bucket, "bucket");
      ASSERT_EQ(object, "path/to/object");
    
      ParseGCSPath("gs://bucket/", true, &bucket, &object, status_);
      ASSERT_TF_OK(status_);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 12:04:23 GMT 2020
    - 24.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.h

    #include "tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h"
    #include "tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h"
    #include "tensorflow/c/tf_status.h"
    
    void ParseGCSPath(const std::string& fname, bool object_empty_ok,
                      std::string* bucket, std::string* object, TF_Status* status);
    
    namespace tf_random_access_file {
    void Cleanup(TF_RandomAccessFile* file);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:37:41 GMT 2020
    - 5.2K bytes
    - Viewed (0)
Back to top