Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kissling (0.2 sec)

  1. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

    }
    
    static void RenameFile(const TF_Filesystem* filesystem, const char* src,
                           const char* dst, TF_Status* status) {
      // If target is a directory return TF_FAILED_PRECONDITION.
      // Target might be missing, so don't error in that case.
      struct stat st;
      if (stat(dst, &st) != 0) {
        if (errno != ENOENT) {
          TF_SetStatusFromIOError(status, errno, dst);
          return;
        }
      } else if (S_ISDIR(st.st_mode)) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

        VLOG(0) << "Plugin API (" << plugin_API << ") for " << where
                << " operations doesn't match expected core API (" << core_API
                << "). Plugin will be loaded but functionality might be missing.";
      }
    }
    
    // Checks if the plugin and core API numbers match, for all operations.
    //
    // Uses the simpler `CheckAPIHelper(int, int, StringPiece)`.
    static void ValidateAPI(const TF_FilesystemPluginOps* ops) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 07 22:08:43 GMT 2023
    - 12.8K bytes
    - Viewed (0)
Back to top