Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for folder2 (0.23 sec)

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

              absl::StrCat("The specified bucket gs://", bucket, " was not found.")
                  .c_str());
        return result;
      }
    
      bool is_folder = FolderExists(gcs_file, path, status);
      if (TF_GetCode(status) != TF_OK) return false;
      if (is_folder) return true;
    
      bool is_object = ObjectExists(gcs_file, path, bucket, object, status);
      if (TF_GetCode(status) != TF_OK) return false;
      if (is_object) {
    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/modular_filesystem_registration.cc

    //
    // This has three benefits:
    //   * allows having newer plugins than the current core TensorFlow: the
    //     additional entries in the plugin's table are just discarded;
    //   * allows having older plugins than the current core TensorFlow (though
    //     we are still warning users): the entries that core TensorFlow expects
    //     but plugins didn't provide will be set to `nullptr` values and core
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 07 22:08:43 GMT 2023
    - 12.8K bytes
    - Viewed (0)
Back to top