Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FlushCaches (0.28 sec)

  1. src/main/java/org/codelibs/core/misc/DisposableUtil.java

                    disposable.dispose();
                } catch (final Throwable t) {
                    t.printStackTrace(); // must not use Logger.
                }
            }
            disposables.clear();
            Introspector.flushCaches();
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.h

      Status CopyFile(const std::string& src, const std::string& target,
                      TransactionToken* token) override;
      std::string TranslateName(const std::string& name) const override;
      void FlushCaches(TransactionToken* token) override;
      Status SetOption(const std::string& name,
                       const std::vector<string>& values) override;
      Status SetOption(const std::string& name,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      std::string ret(p);
      // Since `p` is allocated by plugin, free it using plugin's method.
      plugin_memory_free_(p);
      return ret;
    }
    
    void ModularFileSystem::FlushCaches(TransactionToken* token) {
      if (ops_->flush_caches != nullptr) ops_->flush_caches(filesystem_.get());
    }
    
    Status ModularFileSystem::SetOption(const std::string& name,
    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)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      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);
      gcs_file->file_block_cache->Flush();
    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)
  5. RELEASE.md

    *   Google Cloud Storage (GCS):
        *   Add client-side throttle.
        *   Add a `FlushCaches()` method to the FileSystem interface, with an
            implementation for GcsFileSystem.
    *   Other:
        *   Add `tf.contrib.distributions.Kumaraswamy`.
        *   `RetryingFileSystem::FlushCaches()` calls the base FileSystem's
            `FlushCaches()`.
        *   Add `auto_correlation` to distributions.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top