Message5262
What I used to test with Java:
class sample {
public static void main(String[] args) {
try {
long start = System.currentTimeMillis();
for (int i = 0 ; i < 1000 ; i++) {
new ProcessBuilder("true").start().waitFor();
}
System.out.println(System.currentTimeMillis() - start);
} catch (Exception e) {
e.printStackTrace();
}
}
} |
|
Date |
User |
Action |
Args |
2009-10-24 16:02:02 | nriley | set | messageid: <1256400122.78.0.483138097847.issue1389@psf.upfronthosting.co.za> |
2009-10-24 16:02:02 | nriley | set | recipients:
+ nriley, pjenvey, ita |
2009-10-24 16:02:02 | nriley | link | issue1389 messages |
2009-10-24 16:02:02 | nriley | create | |
|