HomeSort by: relevance | last modified time | path
    Searched refs:Expiration (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CachePruning.h 34 /// The expiration for a file. When a file hasn't been accessed for Expiration
36 /// expiration-based pruning.
37 std::chrono::seconds Expiration = std::chrono::hours(7 * 24); // 1w
66 /// which means a pruning interval of 30 seconds, expiration time of 24 hours
  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 119 * - The pruning expiration time indicates to the garbage collector how old
145 /// Cache policy: expiration (in seconds) for an entry.
147 void setCacheEntryExpiration(unsigned Expiration) {
148 if (Expiration)
149 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
CachePruning.cpp 94 Policy.Expiration = *DurationOrErr;
160 if (Policy.Expiration == seconds(0) &&
233 if (Policy.Expiration != seconds(0) && FileAge > Policy.Expiration) {

Completed in 43 milliseconds