HomeSort by relevance Sort by last modified time
    Searched refs:backupCount (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py 89 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0):
94 values of maxBytes and backupCount to allow the file to rollover at
98 length. If backupCount is >= 1, the system will successively create
100 ".1", ".2" etc. appended to it. For example, with a backupCount of 5
119 self.backupCount = backupCount
128 if self.backupCount > 0:
129 for i in range(self.backupCount - 1, 0, -1):
165 If backupCount is > 0, when rollover is done, no more than backupCount
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py 89 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0):
94 values of maxBytes and backupCount to allow the file to rollover at
98 length. If backupCount is >= 1, the system will successively create
100 ".1", ".2" etc. appended to it. For example, with a backupCount of 5
119 self.backupCount = backupCount
128 if self.backupCount > 0:
129 for i in range(self.backupCount - 1, 0, -1):
165 If backupCount is > 0, when rollover is done, no more than backupCount
    [all...]

Completed in 31 milliseconds