Lines Matching full:timestamp
409 def cached_results(self, rrname, rrtype, timestamp=None):
413 on the cache that were valid at the provided timestamp or later.
414 Answers received before this timestamp whose TTL isn't long enough to
415 make them valid at the timestamp aren't returned. On the other hand,
416 answers received *after* the provided timestamp will always be
417 considered, even if they weren't known at the provided timestamp point.
418 A timestamp
424 this method the returned timestamp.
428 @param timestamp: The request timestamp. See description.
432 if timestamp is None:
433 timestamp = 0
440 if data_ts >= timestamp:
455 @return: The timestamp where this request is sent. See cached_results().