Lines Matching refs:run
64 timethis - run a chunk of code several times
66 timethese - run several chunks of code several times
70 timeit - run a chunk of code and see how long it goes
113 Arguments: COUNT is the number of times to run the loop, and CODE is
114 the code to run. CODE may be either a code reference or a string to
115 be eval'd; either way it will be run in the caller's package.
122 code reference; either way the CODE will run in the caller's package.
128 CPU seconds> to run. A zero signifies the default of 3 seconds. For
129 example to run at least for 10 seconds:
133 or to run two pieces of code tests for at least 3 seconds:
248 probably want to run a lot more iterations.
252 Arguments: TIME is the minimum length of time to run CODE for, and CODE is
253 the code to run. CODE may be either a code reference or a string to
254 be eval'd; either way it will be run in the caller's package.
256 TIME is I<not> negative. countit() will run the loop many times to
258 time run for will usually be greater than TIME due to system clock
400 April 04-07th, 1997: by Jarkko Hietaniemi, added the run-for-some-time