Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for uri (0.12 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// that are supported).
    
    /// This structure incorporates the operations defined in Section 2 and the
    /// metadata defined in section 3, allowing plugins to define different ops
    /// for different URI schemes.
    ///
    /// Every URI scheme is of the form "fs" for URIs of form "fs:///path/to/file".
    /// For local filesystems (i.e., when the URI is "/path/to/file"), the scheme
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      TF_FileStatistics stat;
      Stat(filesystem, path, &stat, status);
      return stat.length;
    }
    
    static char* TranslateName(const TF_Filesystem* filesystem, const char* uri) {
      return strdup(uri);
    }
    
    static void FlushCaches(const TF_Filesystem* filesystem) {
      auto gcs_file = static_cast<GCSFile*>(filesystem->plugin_filesystem);
      absl::ReaderMutexLock l(&gcs_file->block_cache_lock);
    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)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

    // charset, maximum length, etc. Punting it for later.
    static Status ValidateScheme(const char* scheme) {
      if (scheme == nullptr)
        return errors::InvalidArgument(
            "Attempted to register filesystem with `nullptr` URI scheme");
      return OkStatus();
    }
    
    // Checks if the plugin and core ABI numbers match.
    //
    // If the numbers don't match, plugin cannot be loaded.
    static Status CheckABI(int pluginABI, int coreABI, StringPiece where) {
    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)
  4. README.md

    [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/tensorflow/tensorflow/badge)](https://securityscorecards.dev/viewer/?uri=github.com/tensorflow/tensorflow)
    [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/tensorflow.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:tensorflow)
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu Oct 05 15:00:10 GMT 2023
    - 11.9K bytes
    - Viewed (0)
Back to top