RE: Very bad performance when I redirect the output of a command

2003-08-25 Thread Zsolt Koppany
Dominique, that was, with 1.6 I don't have the problem any more. Thank you! Zsolt On Mon, 2003-08-25 at 17:00, Dominique Devienne wrote: > Zsolt, could you try with Ant CVS HEAD? > > Conor indicated that he removed there a 5 or 6ms pause in between each 128 > bytes read in StreamPumper, which

Jmeter Ant Task

2003-08-25 Thread Archana Bharathidasan
Hi, I am writing an Ant task to automate running JMeter test files as per the instructions given at http://www.programmerplanet.org/ant-jmeter/ This is the build.xml file that I have written (essentially the same as the one in the website): and also included the ant-jmeter.jar file in

Re: help

2003-08-25 Thread Rutger Hofman
It seems a separate destDir attribute is required, which would imply a task for each of the roots of the classpath. Another silly question: do you Rutger Lopez, William wrote: ...no one has nibbled on my plea for help...let me try explaining my problem another way (less wordy :-)...I changed my

Re: How can I count the number of matching patters in a file?

2003-08-25 Thread Matt Benson
What about this? Implement your own extension of java.io.FilterReader that counts the characters available from the Reader passed to its constructor, and buffers the decimal-formatted String representing the character count to be returned from its read() method. Then use a filterchain something l

How can I count the number of matching patters in a file?

2003-08-25 Thread Zsolt Koppany
Hi, how can I count the occurrences of a regular expression in a file with an ant task? Zsolt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: distributed build target

2003-08-25 Thread Alexey N. Solofnenko
I have been looking at distributed builds for a while and I still do not see how they can be useful, but maybe I am looking at a wrong angle. For me a distributed build is usually slower, because you have to replace your local hard drive with a network drive in order to make it work. Maybe a su

Re: distributed build target

2003-08-25 Thread Alexey N. Solofnenko
I have been looking at distributed builds for a while and I still do not see how they can be useful, but maybe I am looking at a wrong angle. For me a distributed build is usually slower, because you have to replace your local hard drive with a network drive in order to make it work. Maybe a su

distributed build target

2003-08-25 Thread NF
hi, recently I had to some very big xslt compilations. in order to speed them up I've made a distributed build via telnet. now I'm looking to write this in more cluster-of-workstations way. has anyone been dealing with distributed compilations, so that we can exchange ideas or source on that? --

Re: xargs task?

2003-08-25 Thread Mike Castle
In article <[EMAIL PROTECTED]>, Jason Varsoke <[EMAIL PROTECTED]> wrote: >Specifically I'd like to pass a filename that contains a list >of \n seperated files to be deleted. Same as: >$ cat files.txt | xargs rm task from ant-contrib. Something like: Then, in your dele