What happend to: '(Review ID: 9055455) - RFE: Intristics for asin, acos'

2015-07-13 Thread Janda Martin
Hi all, I would like to know what happened to '(Review ID: 9055455) - RFE: Intristics for asin, acos'. I made report on http://bugreport.java.com/. Is it under evaluation or bugreport.java.com is only black hole as somebody complained? Thank you for info Martin

Re: Reg: NoClassDefFoundError: sun/management/ExtendedPlatformComponent

2014-11-24 Thread Janda Martin
Reg: NoClassDefFoundError: sun/management/ExtendedPlatformComponent On 24/11/14 10:19, Janda Martin wrote: > Hi, > >I found regression in latest Java 8u40 b15 linux x64. There is missing > internal class in JDK. Submitted as bug with Review ID: 9048260. Hi Martin, This should now have b

Reg: NoClassDefFoundError: sun/management/ExtendedPlatformComponent

2014-11-24 Thread Janda Martin
Hi, I found regression in latest Java 8u40 b15 linux x64. There is missing internal class in JDK. Submitted as bug with Review ID: 9048260. Martin StackTrace: java.lang.NoClassDefFoundError: sun/management/ExtendedPlatformComponent at java.lang.management.ManagementFactory.getPlatfo

Re: RFR [8022584] Memory leak in some NetworkInterface methods

2013-08-08 Thread Janda Martin
Hello, are you planning backport to 7u40? I suppose that final version will have minimal impact to code with low probability of introducing regression. This leak is critical for my application because it is periodically scanning network interfaces and should run 24/7. Thank you Martin

Java 8: new method proposal FileSystems::newFileSystem(Path path, Map env, ClassLoader loader)

2013-07-15 Thread Janda Martin
FileSystems static methods are inconsistent. I would expect that "newFileSystem" methods will be same for URI and Path. newFileSystem for Path is missing "env" parameter. So I can't create ZIP file system from Path (with "create=true"). This was needed as workaround for Bug ID 7156873 (already

JEP 103: Parallel Array Sorting - proposal, reaction to Mr. Harned post

2011-10-04 Thread Janda Martin
I hope that this is correct mailing list to comment JEP 103. Proposal: provide static methods for creating sort tasks. This allows developers to have full control over ForkJoinPool. There can be problem with one shared defaultFJPool() in multi-module applications (like Netbeans platform) when

Re: Byte.parseByte throws NumberFormatException for value "95", radix: 16

2011-07-12 Thread Janda Martin
Thank you very much for fast reply. I use (byte)Integer.parseInt Martin - Original Message - From: "David Holmes" To: "Janda Martin" Cc: "core-libs-dev" Sent: Tuesday, July 12, 2011 2:19:25 PM GMT +01:00 Amsterdam / Berlin / Bern / Rome /

Byte.parseByte throws NumberFormatException for value "95", radix: 16

2011-07-12 Thread Janda Martin
I have question about parsing hex string. Java 6u25 When I call Byte.parseByte("95", 16) I get. java.lang.NumberFormatException: Value out of range. Value:"95" Radix:16 at java.lang.Byte.parseByte(Byte.java:153) 95 hex is 149 dec, Integer value '149' can be cast to valid byte value -107

Re: Re: System.identityHashCode performance

2009-09-22 Thread Janda Martin
#x27;m not "JDK" guru so I'm not able to make a patch. I just found that there is used RegisterNatives in Object.hashCode, but not in System.identityHashCode. Thank you. - Original Message - From: "Christian Thalinger" To: "Tom Hawtin" Cc: "Janda

System.identityHashCode performance

2009-09-22 Thread Janda Martin
I would like to ask about any plans of speed improvements to "System.identityHashCode" or "IdentityHashMap" I use EclipseLink and it uses IdentityHashMap for storing entities and their clones. In my case System.identityHashCode consumes 54% of time during insert data to database. There are lot