Home | History | Annotate | Download | only in logging

Lines Matching full:currenttime

221     def computeRollover(self, currentTime):
225 result = currentTime + self.interval
236 t = time.gmtime(currentTime)
238 t = time.localtime(currentTime)
245 result = currentTime + r
329 currentTime = int(time.time())
330 dstNow = time.localtime(currentTime)[-1]
357 newRolloverAt = self.computeRollover(currentTime)
358 while newRolloverAt <= currentTime: