Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Nabors (0.3 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

        // LRU iterator for the key and block.
        std::shared_ptr<Block> block = Lookup(key);
        if (!block) {
          std::cerr << "No block for key " << key.first << "@" << key.second;
          abort();
        }
        MaybeFetch(key, block, status);
        if (TF_GetCode(status) != TF_OK) return -1;
        UpdateLRU(key, block, status);
        if (TF_GetCode(status) != TF_OK) return -1;
    C++
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Thu Jul 16 01:39:09 GMT 2020
    - 11.1K bytes
    - Viewed (0)
Back to top