Changeset: f8b3ab514564
Author:psandoz
Date: 2013-10-01 12:19 +0200
URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/f8b3ab514564
8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to
document if all the (subclass) instances are required to return SIZED
sp
Taken feedback on board. New webrev :
http://cr.openjdk.java.net/~coffeys/webrev.8024952.2/webrev/
I've managed to get confirmation from original submitter that this works
ok for them.
regards,
Sean.
On 20/09/2013 11:29, Seán Coffey wrote:
Dmitry,
You're right. I was cautious in moving the
On 01/10/2013 13:37, Daniel Fuchs wrote:
Hi Seán,
This looks simpler and better :-)
However I wonder, do you still need to catch NPE
in CustomSocketImplFactory.main ?
Daniel,
Since I'm only creating a dummy socketImpl to test the
classcastexception, no real networking stack is in place her
Changeset: bf52ea6bd9eb
Author:aefimov
Date: 2013-10-01 17:15 +0400
URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/bf52ea6bd9eb
8024707: TransformerException : item() return null with node list of length != 1
Reviewed-by: joehw, lancea
+ test/javax/xml/jaxp/parsers/8024707/TestFun
On 10/1/13 3:09 PM, Seán Coffey wrote:
Since I'm only creating a dummy socketImpl to test the
classcastexception, no real networking stack is in place here. I'm
catching the NPE that would be thrown from the native
Java_java_net_TwoStacksPlainSocketImpl_socketAccept function since the
underlying
On 10/1/13 1:53 PM, Seán Coffey wrote:
Taken feedback on board. New webrev :
http://cr.openjdk.java.net/~coffeys/webrev.8024952.2/webrev/
I've managed to get confirmation from original submitter that this works
ok for them.
regards,
Sean.
Hi Seán,
This looks simpler and better :-)
However I
Changeset: 84a2b2ee6fc6
Author:aefimov
Date: 2013-10-01 17:14 +0400
URL: http://hg.openjdk.java.net/jdk8/tl/jaxp/rev/84a2b2ee6fc6
8024707: TransformerException : item() return null with node list of length != 1
Reviewed-by: joehw, lancea
! src/com/sun/org/apache/xml/internal/dtm/re
On 01/10/2013 14:51, Daniel Fuchs wrote:
On 10/1/13 3:09 PM, Seán Coffey wrote:
Since I'm only creating a dummy socketImpl to test the
classcastexception, no real networking stack is in place here. I'm
catching the NPE that would be thrown from the native
Java_java_net_TwoStacksPlainSocketImpl_
On 10/1/13 4:50 PM, Seán Coffey wrote:
On 01/10/2013 14:51, Daniel Fuchs wrote:
On 10/1/13 3:09 PM, Seán Coffey wrote:
Since I'm only creating a dummy socketImpl to test the
classcastexception, no real networking stack is in place here. I'm
catching the NPE that would be thrown from the native
The changes look fine to me.
-Chris.
On 10/01/2013 12:53 PM, Seán Coffey wrote:
Taken feedback on board. New webrev :
http://cr.openjdk.java.net/~coffeys/webrev.8024952.2/webrev/
I've managed to get confirmation from original submitter that this works
ok for them.
regards,
Sean.
On 20/09/201
Changeset: 8cfb2bddd95e
Author:mduigou
Date: 2013-09-30 15:50 -0700
URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/8cfb2bddd95e
7057785: Add note about optional support of recursive methods for
self-referential Collection/Map
Reviewed-by: scolebourne, darcy, mduigou
Contributed-by
Changeset: c32ab940a183
Author:mduigou
Date: 2013-10-01 10:37 -0700
URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/c32ab940a183
8025686: Update jdk repo netbeans projects to support NetBeans 7.4 for Java 8
support
Reviewed-by: lancea, chegar
! make/netbeans/common/java-data-nativ
Sean,
The fix looks good for me but the code might be better readable if you
inverse the condition.
if (!(s instanceof PlainSocketImpl)) {
impl.accept(s)
return;
}
... rest of the code
-Dmitry
On 2013-10-01 18:54, Daniel Fuchs wrote:
> On 10/1/13 4:50 PM, Seán Coffey wrote:
>>
>> On 0
Hello net-dev members,
Please review this proposed fix at your convenience.
Summary
When looking up a host and an EAGAIN error is encountered, throw an instance of
the new HostLookupException subclass of UnknownHostException.
Issue
https://bugs.openjdk.java.net/browse/JDK-8010371
Webrev
http:/
On 01/10/2013 11:31, Brian Burkhalter wrote:
Hello net-dev members,
Please review this proposed fix at your convenience.
Summary
When looking up a host and an EAGAIN error is encountered, throw an instance of
the new HostLookupException subclass of UnknownHostException.
Issue
https://bugs.ope
On Oct 1, 2013, at 11:50 AM, Alan Bateman wrote:
> On 01/10/2013 11:31, Brian Burkhalter wrote:
>> Hello net-dev members,
>>
>> Please review this proposed fix at your convenience.
>>
>> Summary
>> When looking up a host and an EAGAIN error is encountered, throw an instance
>> of the new HostL
On Oct 1, 2013, at 11:59 AM, Brian Burkhalter wrote:
> It seems a bit unclear to me and to depend on which system one is on. There
> is also the possibility apparently of it returning EAI_AGAIN. It might be
> best to test both the return value and if that is EAI_SYSTEM to test errno.
I updated
Alan,
getaddrinfo is actually a shell around couple of different calls, so
for getaddrinfo EAGAIN usually means that it can't rich nameserver, not
the interrupted syscall.
EAI_SYSTEM means that one of underlaying calls (e.g. gethostbyname)
returns an error.
Under Windows, getaddrinfo never retu
On 01/10/13 19:59, Brian Burkhalter wrote:
On Oct 1, 2013, at 11:50 AM, Alan Bateman wrote:
On 01/10/2013 11:31, Brian Burkhalter wrote:
Hello net-dev members,
Please review this proposed fix at your convenience.
Summary
When looking up a host and an EAGAIN error is encountered, throw an ins
On Oct 1, 2013, at 1:25 PM, Michael McMahon wrote:
>> The approach I initially was going to take was to retry once after a short
>> wait and then fail with the proposed exception if the retry failed.
>
> I'm not sure about the short wait. I know the submitter claims that it worked
> after 50ms
Changeset: 84e7f6685319
Author:ksrini
Date: 2013-10-01 15:40 -0700
URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/84e7f6685319
8025342: NLS: unsupported translation format in jar/pack/DriverResource.java
Reviewed-by: naoto, mfang
! src/share/classes/com/sun/java/util/jar/pack/Driv
Changeset: d90928a89af5
Author:drchase
Date: 2013-09-27 13:32 -0400
URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/d90928a89af5
8022701: Accessibility checking: InvocationTargetException is thrown instead of
IllegalAccessError
Summary: Inserted code to convert specific exceptions,
Changeset: 187a759c08ba
Author:alanb
Date: 2013-10-02 04:21 +0100
URL: http://hg.openjdk.java.net/jdk8/tl/rev/187a759c08ba
8006843: org.w3c.dom.events.UIEvent.getView is specified to return type that is
not in the Java SE specification
Reviewed-by: mduigou, tbell
! common/makefile
Changeset: 3fca37c636be
Author:xuelei
Date: 2013-10-01 20:25 -0700
URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/3fca37c636be
8025123: SNI support in Kerberos cipher suites
Reviewed-by: weijun, xuelei
Contributed-by: Artem Smotrakov
! src/share/classes/sun/security/ssl/ClientHan
On 01/10/2013 12:46, Brian Burkhalter wrote:
:
I updated the webrev
http://cr.openjdk.java.net/~bpb/8010371/
with changes in the test of the return value of getaddrinfo for Unix Inet 4 and
6 and Windows Inet 6. The usual testing is in progress.
Brian
This looks better, although I think I wou
25 matches
Mail list logo