-
Hi,
I saw that in the last few weeks there were many commits and changes.
Can you please publish what are changes and what is the road map for next version?
Thanks,
Guy.
2009-09-09 05:08:53 UTC in Trove for Java
-
"creates a thread using the default empty run method" is shown on inner
classes that extends Thread.
Copy of case ID: 2816897 that automaticly closed.
Example:
package test;
public class InnerThread {
private class MyThread extends Thread{
public MyThread(String a) {
super("aa" + a);
}
@Override
public void run() {
System.out.println("WWW");
}
}.
2009-09-01 09:30:17 UTC in FindBugs
-
Since JDK1.5 EOL is planned to October 30th, 2009.
I bet many people will be forced to move developing with JDK6.
While on the other hand JDK1.5 will probably won't disappear.
Are there any plans to support JDK6 to JDK1.5 translation?.
2009-07-28 14:30:33 UTC in Retroweaver
-
Since JDK1.5 EOL is planned to October 30th, 2009.
I bet many people will be forced to move developing with JDK6.
While on the other hand JDK1.5 will probably won't disappear.
Are there any plans to support JDK6 to JDK1.5 translation?.
2009-07-28 14:18:42 UTC in Retrotranslator
-
"creates a thread using the default empty run method" is shown on inner classes that extends Thread.
2009-07-05 14:30:27 UTC in FindBugs
-
Hi,
I'm getting the following error:
Exception in thread "Thread-1" java.lang.ArrayIndexOutOfBoundsException: -7142
at gnu.trove.TIntHashSet.rehash(TIntHashSet.java:176)
at gnu.trove.THash.postInsertHook(THash.java:370)
at gnu.trove.TIntHashSet.add(TIntHashSet.java:154)
Any idea?
Thanks,
Guy.
2009-03-22 07:37:20 UTC in Trove for Java
-
Hi,
Are there any benchmark results?
Did you test the implementations on big machines (>64 cores)?
Did you compare the results to java.util.concurrent?
Thanks,
Guy.
2009-02-18 14:06:30 UTC in Concurrent Building Block
-
Currently running FindBugs fully on a big project takes a long time.
Using all the core available on the machine can really help reducing the time.
2008-12-31 09:11:11 UTC in FindBugs
-
Support a package similar to java.util.concurrent.
2008-12-29 11:52:57 UTC in Trove for Java
-
Currently when ever get() "0 if no such mapping exists".
Away to configure it can really help since 0 might be a valid value in the Map.
2008-11-13 00:30:24 UTC in Trove for Java