RE: Out of memory

2009-10-07 Thread Redmond, Nicole
y, October 06, 2009 8:36 PM To: Ant Users List Subject: Re: Out of memory > -Xms128m -Xmx768m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC > > -Xms should be set to 1/64 of your memory size, -Xmx should be set > to 1/4 as a max How did you

Re: AW: AW: AW: Out of memory

2009-10-07 Thread Steve Loughran
Knuplesch, Juergen wrote: Hello, I got now the Java profiler on. Maybe I will find out, whats going on. But now javadoc ran outofmemory, probably because of my change from 32Bit to 64Bit java. Use -XX:+UseCompressedOops -best feature of Java 6u15. --

Re: Out of memory

2009-10-06 Thread David Leangen
-Xms128m -Xmx768m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC -Xms should be set to 1/64 of your memory size, -Xmx should be set to 1/4 as a max How did you arrive at these "rules"? - To unsubscribe, e-mail: user-un

AW: AW: AW: Out of memory

2009-10-06 Thread Knuplesch, Juergen
-Ursprüngliche Nachricht- Von: Steve Loughran [mailto:ste...@apache.org] Gesendet: Dienstag, 6. Oktober 2009 14:21 An: Ant Users List Betreff: Re: AW: AW: Out of memory Knuplesch, Juergen wrote: > Hello Steve, > > I had my problems with junitreport before > >

Re: AW: AW: Out of memory

2009-10-06 Thread Steve Loughran
Knuplesch, Juergen wrote: Hello Steve, I had my problems with junitreport before This time the PermGenSpace error happens with saxon. For this XSLT I had to use saxon. In my build I use Saxon and for junitreport the standard VM xsl processor, How do I tell junitreport to use Saxon or Xalan

Re: Out of memory

2009-10-06 Thread Stefan Bodewig
On 2009-10-06, Knuplesch, Juergen wrote: > It happened this time (I earlier had to increase the memory) in the > non standard pack200 Task: > D:\DopeBuildBase\Build\DopeBuildServer\dopebuildwar.xml:356: > java.lang.OutOfMemoryError > This task made also a few problems, when I used it first. I

AW: AW: Out of memory

2009-10-06 Thread Knuplesch, Juergen
of memory Knuplesch, Juergen wrote: > Hello, > > Thanks for your answer! > Good to know, that there are known problems. > > I already fork the junit tests. I even have parted the tests into three > parts, because of earlier challenges. > Memory eater is also junitrep

RE: Out of memory

2009-10-06 Thread Redmond, Nicole
] Sent: Tuesday, October 06, 2009 7:10 AM To: Ant Users List Subject: AW: Out of memory Hello, I have two memory problems: 1.In the XSLT task I get: java.lang.OutOfMemoryError: PermGen space I increased MaxPermSize In a few hours I will know if this helped, but it is not a real solution. 2.The

AW: Out of memory

2009-10-06 Thread Knuplesch, Juergen
: Out of memory On 2009-10-06, Knuplesch, Juergen wrote: > Hello, > Thanks for your answer! > Good to know, that there are known problems. Unfortunately they may not be. > I already fork the junit tests. Then the change I pointed at won't affect you since the classloader lea

Re: AW: Out of memory

2009-10-06 Thread Steve Loughran
Knuplesch, Juergen wrote: Hello, Thanks for your answer! Good to know, that there are known problems. I already fork the junit tests. I even have parted the tests into three parts, because of earlier challenges. Memory eater is also junitreport (especially for 2200 tests) etc., all the XSLT st

Re: Out of memory

2009-10-06 Thread Stefan Bodewig
On 2009-10-06, Knuplesch, Juergen wrote: > Hello, > Thanks for your answer! > Good to know, that there are known problems. Unfortunately they may not be. > I already fork the junit tests. Then the change I pointed at won't affect you since the classloader leak only applies to non-forked tests

AW: Out of memory

2009-10-06 Thread Knuplesch, Juergen
of the trunk... Juergen -- Jürgen Knuplesch -Ursprüngliche Nachricht- Von: Stefan Bodewig [mailto:bode...@apache.org] Gesendet: Dienstag, 6. Oktober 2009 09:33 An: user@ant.apache.org Betreff: Re: Out of memory On 2009-10-06, Knuplesch, Juergen wrote: > My build runs now w

Re: Out of memory

2009-10-06 Thread Stefan Bodewig
On 2009-10-06, Knuplesch, Juergen wrote: > My build runs now with -Xmx1500m and still out of memory. > It seems that the memory of big tasks I use is not garbage collected > after I used them. (e.g. XSLT with saxon on the classpath, junit with > 2200 tests...) Ant 1.7.1 has a few

Out of memory

2009-10-06 Thread Knuplesch, Juergen
Hello, My build runs now with -Xmx1500m and still out of memory. It seems that the memory of big tasks I use is not garbage collected after I used them. (e.g. XSLT with saxon on the classpath, junit with 2200 tests...) The machine I use has not much more memory, so starting with -Xmx2000m

Re: xslt out of memory

2008-03-25 Thread Steve Loughran
Z W wrote: Martin I'm not sure what XQuery does and have no time to look into it to learn to use it. Remi I don't think I have recursion problem. Folks, How to I increase the heap size in the Windows Ant bat file ? I cant seem to find it. How does one also include the stack size in Windows Ant ?

Re: xslt out of memory

2008-03-21 Thread Z W
M, <[EMAIL PROTECTED]> wrote: > Verify that you don't have infinite recursion in your stylesheet It's > the most frequent cause of that... > > > -Message d'origine- > De : Z W [mailto:[EMAIL PROTECTED] > Envoyé : jeudi 20 mars 2008 17:13 > À

RE: xslt out of memory

2008-03-21 Thread remi.clavier
Verify that you don't have infinite recursion in your stylesheet It's the most frequent cause of that... -Message d'origine- De : Z W [mailto:[EMAIL PROTECTED] Envoyé : jeudi 20 mars 2008 17:13 À : Ant Users List Objet : xslt out of memory Hi Is there a workaroun

Re: xslt out of memory

2008-03-20 Thread Martin Gainty
and if you request just the requested node with xquery e.g. doc("NameofXML.xml")/NodeName?Martin- Original Message - From: "Z W" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Thursday, March 20, 2008 6:19 PM Subject: Re: xslt out of memory > C

Re: xslt out of memory

2008-03-20 Thread Z W
ch 20, 2008 1:28 PM > To: Ant Users List > Subject: Re: xslt out of memory > > > Hi supareno > Thanks for responding. > 2K is the size. I suspect it's to do with some math calculation that > tripped > it. > > On Thu, Mar 20, 2008 at 1:15 PM, supareno <[EMAIL PROTE

RE: xslt out of memory

2008-03-20 Thread Chun Ji
. -c -Original Message- From: Z W [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 1:28 PM To: Ant Users List Subject: Re: xslt out of memory Hi supareno Thanks for responding. 2K is the size. I suspect it's to do with some math calculation that tripped it. On Thu, Mar 20, 20

Re: xslt out of memory

2008-03-20 Thread supareno
l file ?? i know that huge file causes out of memory exception !! check out htis: http://www.velocityreviews.com/forums/t170526-huge-xml-files-xslt-memory-problems-java-amp-sax.html it could be related to your problems regards supareno Hi Is there a workaround to this issue ? Thanks

Re: xslt out of memory

2008-03-20 Thread Z W
Hi supareno Thanks for responding. 2K is the size. I suspect it's to do with some math calculation that tripped it. On Thu, Mar 20, 2008 at 1:15 PM, supareno <[EMAIL PROTECTED]> wrote: > what is the size of the xsl file ?? > i know that huge file causes out of memory excepti

Re: xslt out of memory

2008-03-20 Thread supareno
what is the size of the xsl file ?? i know that huge file causes out of memory exception !! check out htis: http://www.velocityreviews.com/forums/t170526-huge-xml-files-xslt-memory-problems-java-amp-sax.html it could be related to your problems regards supareno Hi Is there a workaround to

xslt out of memory

2008-03-20 Thread Z W
Hi Is there a workaround to this issue ? Thanks [xslt] Loading stylesheet \\filer\zw_detail.xsl BUILD FAILED C:\Documents and Settings\report_main.xml:15: The following error occurred while executing this line: C:\Documents and Settings\report_main.xml:133: java.lang.OutOfMemoryError: Jav

Re: Junit report giving out of memory error

2008-02-12 Thread Steve Loughran
Mevitha wrote: Hi, I am using WSAD 5.1 to run an ant script to run junit test cases. Everything is fine except when the junit report starts, I am getting the below error. unitTestReport: [mkdir] Created dir: D:\TempTesting\TestReports [junitreport] Using Xalan version: XSLT4J Java 2.6.5 Thi

AW: Junit report giving out of memory error

2008-02-11 Thread Knuplesch, Juergen
811944121 -Ursprüngliche Nachricht- Von: Mevitha [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 12. Februar 2008 04:51 An: user@ant.apache.org Betreff: Junit report giving out of memory error Hi, I am using WSAD 5.1 to run an ant script to run junit test cases. Everything is fine except

Re: Junit report giving out of memory error

2008-02-11 Thread Ramu Sethu
I faced the same problem some time back. I found i had an infinite loop in my xslt template. I don't think it is out of memory error. Have look at your xslt On Feb 12, 2008 9:21 AM, Mevitha <[EMAIL PROTECTED]> wrote: > > Hi, > > I am using WSAD 5.1 to run an ant script

Junit report giving out of memory error

2008-02-11 Thread Mevitha
-giving-out-of-memory-error-tp15425981p15425981.html Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Out of memory JUNIT-report

2007-11-14 Thread Steve Loughran
Knuplesch wrote: In my Ant file the junitreport Task runs out of memory! Where is the best place to increase the memory? 1. set ANT_OPTS environment variable to something like -Xmx512M 2. drop a copy of xalan (from xml.apache.org) into ANT_HOME/lib. This XSL engine consumes less memory

Out of memory JUNIT-report

2007-11-14 Thread Knuplesch , Jürgen
In my Ant file the junitreport Task runs out of memory! Where is the best place to increase the memory? Is it possible to fork junitreport? -- Jürgen Knupleschwww.icongmbh.de icon Systemhaus GmbHTel. +49 711 806098-275 Sophienstraße 40

How to detect when Tomcat has run out of memory

2006-08-29 Thread DHARNA, AJAY [AG/1000]
Does anyone know how I can use ant to detect when Tomcat is out of Memory? Thank you Ajay - This e-mail message may contain privileged and/or confidential information, and is intended to

AW: out of memory error

2006-02-06 Thread Jan.Materne
p;r1=269868&r2=269869&diff_format=h >-Ursprüngliche Nachricht- >Von: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 7. Februar 2006 05:27 >An: user@ant.apache.org >Betreff: out of memory error > > > >Hi, > >My problem is I am get

out of memory error

2006-02-06 Thread prashant . chaudhary
Hi, My problem is I am getting out of memory error when I try to compile java files( around 1200 ) to create a jar. I have some questions... * First time , when I tried to compile the java sources using ant, I got following error. [javac] Compiling 1162 source files to /sapphire/users

Re: Out of memory running Proguard

2005-10-15 Thread Jeffrey E Care
ProGuard ant task. This is an obfuscator that analyzes the classes of a > jar and assembles a new jar which is a subset of the jar. > > Because ProGuard must consider several large jars, I'm running out of > memory. Is there a way for me to alter my ant script to boots the

Out of memory running Proguard

2005-10-15 Thread Mark McKay
I'm getting OutOfMemoryErrors while running a task that uses the ProGuard ant task. This is an obfuscator that analyzes the classes of a jar and assembles a new jar which is a subset of the jar. Because ProGuard must consider several large jars, I'm running out of memory. Is there

AW: Out of Memory Error

2005-04-21 Thread Huditsch Roman
Hi, no, actually I just left out the " in my set expression ;) wbr, Roman > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 21. April 2005 16:37 > An: user@ant.apache.org > Betreff: RE: Out of Memory

RE: Out of Memory Error

2005-04-21 Thread Srikrishna_Parthasarathy
What was the working solution ? Did you set min and max heap the same ? -Original Message- From: Huditsch Roman [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 6:19 AM To: Ant Users List Subject: AW: Out of Memory Error Hi, I think I found a working solution with Ivan's

AW: Out of Memory Error

2005-04-21 Thread Huditsch Roman
Hi, I think I found a working solution with Ivan's help. Thanks a lot. wbr, Roman > -Ursprüngliche Nachricht- > Von: Huditsch Roman [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 21. April 2005 12:06 > An: Ant Users List > Betreff: AW: Out of Memory Error > &

AW: Out of Memory Error

2005-04-21 Thread Huditsch Roman
achricht- > Von: Ivan Ivanov [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 21. April 2005 11:53 > An: Ant Users List > Betreff: Re: Out of Memory Error > > Good Morning Roman > --- Huditsch Roman <[EMAIL PROTECTED]> > wrote: > > Good morning list, > >

Re: Out of Memory Error

2005-04-21 Thread Ivan Ivanov
Good Morning Roman --- Huditsch Roman <[EMAIL PROTECTED]> wrote: > Good morning list, > > I encountered a slight problem, when doing my xslt > transformations by an > ant build file. > It seems that I am running out of memory. > Do can I give ant a bigger share of

Out of Memory Error

2005-04-21 Thread Huditsch Roman
Good morning list, I encountered a slight problem, when doing my xslt transformations by an ant build file. It seems that I am running out of memory. Do can I give ant a bigger share of my memory? Do I have to alter ant.bat? Or is it possible that there is an other problem with my xslt tasks? I

RE: Out of memory with javac

2004-05-25 Thread Mani G. Iyer
Darin: Can you isolate a particular java program that causes this out of memory exception? Are there a lot of files to troubleshoot? Mani -Original Message- From: Darin Swanson [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 25, 2004 4:09 PM To: Ant Users List Subject: RE: Out of memory

RE: Out of memory with javac

2004-05-25 Thread Darin Swanson
25/2004 12:37 PM Please respond to "Ant Users List" To: "Ant Users List" <[EMAIL PROTECTED]> cc: Subject:RE: Out of memory with javac Hi Darin. I don't have your answer however I'm curious if your problem works fine on 1

RE: Out of memory with javac

2004-05-25 Thread Peter Bulford
: Ant Users List Subject: RE: Out of memory with javac Thanks NetaB...but I don't think you helped me at all :-) I have fork set to be true so memorymaximumsize and memoryinitialsize should not be ignored. The main thrust of my question is why the difference running on the two implementat

RE: Out of memory with javac

2004-05-25 Thread Darin Swanson
s deprecated when you use your default javac. netaB -Original Message- From: Darin Swanson [mailto:[EMAIL PROTECTED] Sent: Tuesday: May 25: 2004 3:43 AM To: Ant Users List Subject: Out of memory with javac Ant 1.6.1 Running the same buildfile I am seeing different results for using javac dep

RE: forked javac task runs out of memory

2004-01-22 Thread Anderson, Kajsa
day, January 22, 2004 2:22 PM To: [EMAIL PROTECTED] Subject: forked javac task runs out of memory I am running a javac task against a 1.2.2 compiler, but it is running out of memory. The javac task documentation says that there is a attribute for setting the Max memory size (memoryMaximumSize),

forked javac task runs out of memory

2004-01-22 Thread Eric Wood
I am running a javac task against a 1.2.2 compiler, but it is running out of memory. The javac task documentation says that there is a attribute for setting the Max memory size (memoryMaximumSize), but it says that it is ignored if you are running javac externally. How do I set increase the

RE: javac out of memory error

2003-02-27 Thread Dominique Devienne
ave Barkan [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 10:44 AM To: [EMAIL PROTECTED] Subject: javac out of memory error Hi, I'm running ant 1.5 on Linux. I'm compiling a large number of java source files (1200 or so at once) with the task. I get this error: [j

RE: javac out of memory error

2003-02-27 Thread Urbano, Daniel
c out of memory error Hi, I'm running ant 1.5 on Linux. I'm compiling a large number of java source files (1200 or so at once) with the task. I get this error: [javac] Compiling 1290 source files to [javac] The system is out of resources. [javac] Consult the following

Re: javac out of memory error

2003-02-27 Thread Jesse Stockall
On Thursday, February 27, 2003, at 11:43 AM, Dave Barkan wrote: Hi, I'm running ant 1.5 on Linux. I'm compiling a large number of java source files (1200 or so at once) with the task. I get this error: export ANT_OPTS=-Xmx256 Jesse Stockall - [EMAIL PROTECTED] CRYPTOCard Corp. --

javac out of memory error

2003-02-27 Thread Dave Barkan
Hi, I'm running ant 1.5 on Linux. I'm compiling a large number of java source files (1200 or so at once) with the task. I get this error: [javac] Compiling 1290 source files to [javac] The system is out of resources. [javac] Consult the following stack trace for details. [javac] j