Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stash (0.17 sec)

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

      if (object->empty() && !object_empty_ok) {
        TF_SetStatus(status, TF_INVALID_ARGUMENT,
                     "GCS path doesn't contain an object name.");
      }
    }
    
    /// Appends a trailing slash if the name doesn't already have one.
    static void MaybeAppendSlash(std::string* name) {
      if (name->empty())
        *name = "/";
      else if (name->back() != '/')
        name->push_back('/');
    }
    
    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