Home | History | Annotate | Download | only in server

Lines Matching full:timestamp

119         for timestamp, msg in job._read_warnings():
121 'WARN', None, None, msg, {}, timestamp=timestamp)
860 Returns a list of (timestamp, message) tuples, where timestamp is an
861 integer epoch timestamp."""
875 timestamp, msgtype, msg = line.split('\t', 2)
876 timestamp = int(timestamp)
878 if self.warning_manager.is_valid(timestamp, msgtype):
879 warnings.append((timestamp, msg.strip()))
888 # sort into timestamp order
1277 def is_valid(self, timestamp, warning_type):
1283 if timestamp >= start and (end is None or timestamp < end):