hg: jdk7/tl/langtools: 6931126: jtreg tests not Windows friendly

2010-03-03 Thread jonathan . gibbons
Changeset: 117c95448ab9 Author:jjg Date: 2010-03-03 19:34 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/117c95448ab9 6931126: jtreg tests not Windows friendly Reviewed-by: darcy ! test/tools/javac/ThrowsIntersection_1.java ! test/tools/javac/ThrowsIntersection_2.java

hg: jdk7/tl/jdk: 3 new changesets

2010-03-03 Thread weijun . wang
Changeset: 61c298558549 Author:weijun Date: 2010-03-04 10:37 +0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/61c298558549 6844909: support allow_weak_crypto in krb5.conf Reviewed-by: valeriep ! src/share/classes/sun/security/krb5/internal/crypto/EType.java + test/sun/security

RE: Need reviewer for forward port of 6815768 (File.getXXXSpace) and 6815768 (String.hashCode)

2010-03-03 Thread Jason Mehrens
String.hash should only have two known states, zero and the actual computed hash code. http://bugs.sun.com/view_bug.do?bug_id=6611830 Jason > Date: Sun, 28 Feb 2010 17:09:15 +0100 > From: ulf.zi...@gmx.de > To: alan.bate...@sun.com > Subject: Re: Need reviewer for forward port of 6815

Bugs in java.util.ArrayList, java.util.Hashtable and java.io.ByteArrayOutputStream

2010-03-03 Thread Kevin L. Stern
Greetings, I've noticed bugs in java.util.ArrayList, java.util.Hashtable and java.io.ByteArrayOutputStream which arise when the capacities of the data structures reach a particular threshold. More below. When the capacity of an ArrayList reaches (2/3)*Integer.MAX_VALUE its size reaches its capac

hg: jdk7/tl/langtools: 6931927: position issues with synthesized anonymous class

2010-03-03 Thread jonathan . gibbons
Changeset: 7f5db2e8b423 Author:jjg Date: 2010-03-03 17:22 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/7f5db2e8b423 6931927: position issues with synthesized anonymous class Reviewed-by: darcy ! src/share/classes/com/sun/tools/javac/parser/JavacParser.java + test/too

hg: jdk7/tl/langtools: 6449781: TypeElement.getQualifiedName for anonymous classes returns null instead of an empty name

2010-03-03 Thread joe . darcy
Changeset: fc7132746501 Author:darcy Date: 2010-03-03 16:05 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/langtools/rev/fc7132746501 6449781: TypeElement.getQualifiedName for anonymous classes returns null instead of an empty name Reviewed-by: jjg ! src/share/classes/com/sun/tools

Re: review request for 6798511/6860431: Include functionality of Surrogate in Character

2010-03-03 Thread Ulf Zibis
Am 03.03.2010 17:06, schrieb Martin Buchholz: Sherman, would you like to file bugs for Ulf's improvements? Thanks. I admire your perfectionism. Really? :-) (On modern hardware, these optimizations are less valuable than they used to be; ordinary integer arithmetic is almost free)

hg: jdk7/tl/jdk: 6931763: sanity checks broken with latest cygwin, newer egrep -i option problems

2010-03-03 Thread kelly . ohair
Changeset: 507159d8d143 Author:ohair Date: 2010-03-03 11:29 -0800 URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/507159d8d143 6931763: sanity checks broken with latest cygwin, newer egrep -i option problems Reviewed-by: jjg ! make/common/shared/Sanity.gmk

Re: review request for 6798511/6860431: Include functionality of Surrogate in Character

2010-03-03 Thread Xueming Shen
#6931812 Martin Buchholz wrote: Sherman, would you like to file bugs for Ulf's improvements? On Wed, Mar 3, 2010 at 02:44, Ulf Zibis wrote: Am 03.03.2010 09:00, schrieb Martin Buchholz: Keep in mind that supplementary characters are extremely rare. Yes, but many API's i

hg: jdk7/tl/jdk: 6931216: TEST_BUG: test/java/nio/file/WatchService/LotsOfEvents.java failed with NPE

2010-03-03 Thread alan . bateman
Changeset: cddb43b12d28 Author:alanb Date: 2010-03-03 16:09 + URL: http://hg.openjdk.java.net/jdk7/tl/jdk/rev/cddb43b12d28 6931216: TEST_BUG: test/java/nio/file/WatchService/LotsOfEvents.java failed with NPE Reviewed-by: chegar ! test/java/nio/file/WatchService/LotsOfEvents.ja

Re: review request for 6798511/6860431: Include functionality of Surrogate in Character

2010-03-03 Thread Martin Buchholz
Sherman, would you like to file bugs for Ulf's improvements? On Wed, Mar 3, 2010 at 02:44, Ulf Zibis wrote: > Am 03.03.2010 09:00, schrieb Martin Buchholz: >> Keep in mind that supplementary characters are extremely rare. >> > > Yes, but many API's in the JDK are used rarely. > Why should they w

Re: review request for 6798511/6860431: Include functionality of Surrogate in Character

2010-03-03 Thread Ulf Zibis
Am 03.03.2010 09:00, schrieb Martin Buchholz: On Tue, Mar 2, 2010 at 15:34, Ulf Zibis wrote: Am 26.08.2009 20:02, schrieb Xueming Shen: For example, the isBMP(int), it might be convenient, but it can be easily archived by the one line code (int)(char)codePoint == codePoint; or more

Re: review request for 6798511/6860431: Include functionality of Surrogate in Character

2010-03-03 Thread Martin Buchholz
On Tue, Mar 2, 2010 at 15:34, Ulf Zibis wrote: > Am 26.08.2009 20:02, schrieb Xueming Shen: >> >> For example, the isBMP(int), it might be convenient, but it can be easily >> archived by the one line code >> >> (int)(char)codePoint == codePoint; >> >> or more readable form >> >>   codePoint < Char