Home | History | Annotate | Download | only in base

Lines Matching full:expired

64   // Advance to t=10; entry1 is now expired.
70 // Update entry1, so it is no longer expired.
80 // Advance to t=20; both entries are now expired.
148 // Advance to t=10; entry1 is now expired.
154 // Update entry1, so it is no longer expired.
164 // Advance to t=20; both entries are now expired.
187 // Add 3 expired entries at t=0.
189 std::string hostname = base::StringPrintf("expired%d", i);
214 // and "expired" entries to have been dropped.
246 cache.Set(Key("expired"), OK, AddressList(), now - kSuccessEntryTTL);
250 // Should all be retrievable except "expired".
253 EXPECT_TRUE(NULL == cache.Lookup(Key("expired"), now));
255 // Adding the fourth entry will cause "expired" to be evicted.
258 EXPECT_TRUE(cache.Lookup(Key("expired"), now) == NULL);