Re: TImestamping in ANT

2007-08-04 Thread Dale Anson
The Antelope downloads are here: http://antelope.tigris.org/servlets/ProjectDocumentList However dkhanna01 wrote: HI, I tried with net.sf.antcontrib.perf.AntPerformanceListener but every time I create a build it failed saying java.lang.OutOfMemoryError: Java heap space Java heap space T

Re: TImestamping in ANT

2007-08-01 Thread dkhanna01
taken by the process, I mean is there any way to >>>>>>> calculate difference between "End time" and "Start time" >>>>>>> Thanks >>>>>> If you can use third

Re: TImestamping in ANT

2007-07-26 Thread Dale Anson
Another option for this is to use either the stopwatch task or the performance listener from either antcontrib (antcontribe.sourceforge.net) or antelope (antelope.tigris.org). The performance listener is actually quite nice in that it gathers the statistics as the build runs, then outputs the

Re: TImestamping in ANT

2007-07-26 Thread Wascally Wabbit
Sorry, Incomplete original example methinks. If you change - to + it should work. --- [ A WORKING EXAMPLE TO DEMONSTRATE (TESTED ;-))] Here's a working sample (assuming AntX is installed in a directory at ./antx relative to test script):

Re: TImestamping in ANT

2007-07-26 Thread dkhanna01
uration"/> >>> >>> >>> >>> >>> Then use it like so: >>> >>> >>> ...[all your compiling work here in private target] >>> >>>

Re: TImestamping in ANT

2007-07-19 Thread Wascally Wabbit
Hi, The assign task is already defined for you as part of the AntXtras antlib. The easiest thing to do is to load the entire antlib and experiment. *See the Quick Start and User Guide for additional information*. Example (assuming at least Ant 1.6.5, and AntXtras bin download to some local direc

Re: TImestamping in ANT

2007-07-19 Thread dkhanna01
://antxtras.sf.net/ > > Hope that helps. > > -The Wabbit > > --------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in conte

Re: TImestamping in ANT

2007-07-19 Thread Wascally Wabbit
dkhanna01 wrote: I need to find out the time taken by each of the process/target in our build.xml file. Now for doing this I have use ANT tstamp task to calculate the start time and end time of the process. Now my question is how do I find out the total time taken by the process, I mean is there

RE: TImestamping in ANT

2007-07-17 Thread James Oltmans
: TImestamping in ANT I need to find out the time taken by each of the process/target in our build.xml file. Now for doing this I have use ANT tstamp task to calculate the start time and end time of the process. Now my question is how do I find out the total time taken by the process, I mean is there any

AW: TImestamping in ANT

2007-07-10 Thread Jan.Materne
http://ant.apache.org/manual/listeners.html#TimestampedLogger Jan >-Ursprüngliche Nachricht- >Von: Alexey Solofnenko [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 9. Juli 2007 19:41 >An: Ant Users List >Betreff: Re: TImestamping in ANT > >I parse the build output

Re: TImestamping in ANT

2007-07-09 Thread Alexey Solofnenko
I parse the build output in real time and note when ":" lines are printed to calculate time spend by each target and groups of targets (targets with the same prefix). You can print some special prefix following with the current timestamp (preferably System.currentTimeMillis() - easier to parse)

RE: TImestamping in ANT

2007-07-09 Thread Burgess, Benjamin
calculate difference between "End time" and "Start time" Thanks -- View this message in context: http://www.nabble.com/TImestamping-in-ANT-tf4050746.html#a11506172 Sent from the Ant - Users mailing list a

TImestamping in ANT

2007-07-09 Thread dkhanna01
calculate difference between "End time" and "Start time" Thanks -- View this message in context: http://www.nabble.com/TImestamping-in-ANT-tf4050746.html#a11506172 Sent from the Ant - Users mailing list archive at Nabble.com.