Lines Matching +full:runs +full:- +full:on
4 # Copyright (c) 2009-2010 Evert Pot
20 return getfreespace(path)-threshold
28 print "Threshold exceeded with:", -bytes, "bytes"
39 dir2.sort(lambda x,y: int(x["atime"]-y["atime"]))
50 if left < -bytes :
51 left = -bytes
59 left = int(left - file["size"])
76 …description="Cache directory manager. Deletes cache entries based on accesstime and free space thr…
81 '-s',
87 '-r','--runs',
88 help="How many times to check before exiting. -1 is infinite, which is the default",
90 dest="runs",
91 default=-1
94 '-n','--interval',
101 '-l','--threshold',
108 '-m', '--min-erase',
127 runs = options.runs;
128 while runs!=0 :
136 if runs>0:
137 runs = runs - 1