Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Hosken (0.17 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem.cc

    }
    
    bool ModularFileSystem::FilesExist(const std::vector<std::string>& files,
                                       TransactionToken* token,
                                       std::vector<Status>* status) {
      if (ops_->paths_exist == nullptr)
        return FileSystem::FilesExist(files, token, status);
    
      std::vector<char*> translated_names;
      translated_names.reserve(files.size());
      for (int i = 0; i < files.size(); i++)
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 23.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.cc

      };
      return tensorflow::unwrap(cancellation_manager)
          ->RegisterCallbackWithErrorLogging(token, callback, callback_name);
    }
    
    bool TFE_CancellationManagerDeregisterCallback(
        TFE_CancellationManager* cancellation_manager,
        TFE_CancellationToken token) {
      return tensorflow::unwrap(cancellation_manager)->DeregisterCallback(token);
    }
    
    bool TFE_CancellationManagerTryDeregisterCallback(
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
Back to top