Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LookupLocked (0.19 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

      /// max_age_ seconds in the past.
      bool Lookup(const std::string& key, T* value) {
        if (max_age_ == 0) {
          return false;
        }
        absl::MutexLock lock(&mu_);
        return LookupLocked(key, value);
      }
    
      typedef std::function<void(const std::string&, T*, TF_Status*)> ComputeFunc;
    
      /// Look up the entry with key `key` and copy it to `value` if found. If not
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 09 19:31:22 GMT 2020
    - 6.3K bytes
    - Viewed (0)
Back to top