[g...@vmgump]: Project test-ant (in module ant) failed

2010-05-22 Thread Gump Integration Build
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project test-ant has an issue affecting its community integration. This issue

DO NOT REPLY [Bug 49326] OutOfMemoryError: Map failed

2010-05-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49326 --- Comment #1 from J.M. (Martijn) Kruithof j...@apache.org 2010-05-22 15:50:15 EDT --- Seems we are now hitting a bug in sun's version of the jre. http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6417205

DO NOT REPLY [Bug 49326] OutOfMemoryError: Map failed

2010-05-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49326 --- Comment #3 from J.M. (Martijn) Kruithof j...@apache.org 2010-05-22 16:02:19 EDT --- Well when reading the bug reports, it seems this would not be enough. Currently I wrote down this: with MAX_IO_CHUNCK_SIZE = 10MiB

DO NOT REPLY [Bug 49326] OutOfMemoryError: Map failed

2010-05-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49326 --- Comment #4 from Peter Reilly peterrei...@apache.org 2010-05-22 16:12:56 EDT --- {{{shudder}}} I do not think that we need to do the gc stuff. The code worked (using BUF_SIZE) in ant 1.8 - except for gcj. which had a problem with the

DO NOT REPLY [Bug 49326] OutOfMemoryError: Map failed

2010-05-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49326 --- Comment #5 from J.M. (Martijn) Kruithof j...@apache.org 2010-05-22 16:38:16 EDT --- Not entirely, we are asking the standard java libraries to copy at most count characters from one channel to the other. The amount of memory mapped

DO NOT REPLY [Bug 49326] OutOfMemoryError: Map failed

2010-05-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49326 --- Comment #6 from Bruce Atherton br...@callenish.com 2010-05-22 17:28:44 EDT --- (In reply to comment #3) Currently I wrote down this: with MAX_IO_CHUNCK_SIZE = 10MiB long count = srcChannel.size();

DO NOT REPLY [Bug 49326] OutOfMemoryError: Map failed

2010-05-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49326 --- Comment #7 from Bruce Atherton br...@callenish.com 2010-05-22 17:31:31 EDT --- Sorry, I should have had the long declared outside the try. But you get the idea. -- Configure bugmail:

svn commit: r947339 - in /ant/core/trunk: WHATSNEW src/main/org/apache/tools/ant/util/ResourceUtils.java

2010-05-22 Thread jkf
Author: jkf Date: Sat May 22 22:00:52 2010 New Revision: 947339 URL: http://svn.apache.org/viewvc?rev=947339view=rev Log: pr 49326. Sun JVM tries to mmap the entire file during a copy. For large files this is not feasible. We now explicitly request to copy at most 16 MiB per request. Modified:

DO NOT REPLY [Bug 49326] OutOfMemoryError: Map failed

2010-05-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49326 J.M. (Martijn) Kruithof j...@apache.org changed: What|Removed |Added Status|NEW |RESOLVED

svn commit: r947340 - /ant/core/trunk/src/main/org/apache/tools/ant/util/ResourceUtils.java

2010-05-22 Thread jkf
Author: jkf Date: Sat May 22 22:05:31 2010 New Revision: 947340 URL: http://svn.apache.org/viewvc?rev=947340view=rev Log: fix spelling error in var name Modified: ant/core/trunk/src/main/org/apache/tools/ant/util/ResourceUtils.java Modified: