Message5262

Author nriley
Recipients ita, nriley, pjenvey
Date 2009-10-24.16:02:02
SpamBayes Score 3.4795725e-05
Marked as misclassified No
Message-id <1256400122.78.0.483138097847.issue1389@psf.upfronthosting.co.za>
In-reply-to
Content
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();
        }

    }
}
History
Date User Action Args
2009-10-24 16:02:02nrileysetmessageid: <1256400122.78.0.483138097847.issue1389@psf.upfronthosting.co.za>
2009-10-24 16:02:02nrileysetrecipients: + nriley, pjenvey, ita
2009-10-24 16:02:02nrileylinkissue1389 messages
2009-10-24 16:02:02nrileycreate