kdgregory

7,366
Reputation
500 views

Registered User

Name kdgregory
Member for 12 months
Seen 28 mins ago
Website
Location
Age
16h
revised SVN partial branch
added 98 characters in body
16h
answered SVN partial branch
18h
comment SVN partial branch
Why the requirement that directories 10 and 30 not be in the development branch? Is it to prevent them from being updated in the branch? Or do you believe (incorrectly) that you'd be wasting space with the copy?
Nov
24
accepted How to get current Transfer Rate in Commons HttpClient 3.x
Nov
22
awarded  Good Answer
Nov
21
revised detect UTF-16 file content
added 664 characters in body; added 8 characters in body
Nov
21
answered detect UTF-16 file content
Nov
21
comment Paying great programmers more than average programmers
@duffymo - you're sounding like Joe with this answer ... I came here to escape that :-)
Nov
21
comment Paying great programmers more than average programmers
Different fields have different hiring practices. You can't be an actor or ballplayer without an entire team to support you. You can be a solo programmer.
Nov
20
revised Java HotSpot error
added 346 characters in body
Nov
20
accepted JNA/ByteBuffer not getting freed and causing C heap to run out of memory
Nov
20
revised Error at json: “missing ] after element list” or just “undefined”
deleted 596 characters in body
Nov
20
comment Error at json: “missing ] after element list” or just “undefined”
Not in the second posting.
Nov
20
revised Error at json: “missing ] after element list” or just “undefined”
added 177 characters in body; added 34 characters in body
Nov
20
comment Error at json: “missing ] after element list” or just “undefined”
Thanks, didn't notice that. But I did just notice the real problem.
Nov
20
revised Error at json: “missing ] after element list” or just “undefined”
deleted 103 characters in body
Nov
20
answered Java HotSpot error
Nov
20
comment Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread?
Oh, and when you write something, simply use System.err.println() -- note that it's System.err, not System.out; the latter is buffered, the former isn't.
Nov
20
comment Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread?
I'm willing to trust ConcurrentHashMap more than I'm willing to trust, say, "log()"; or how you've created your threads. So I'm guessing that there's some interaction that you're not accounting for. Please post an entire SCSCE; you can use Object rather than Foo and you'll get the same results.
Nov
20
answered Error at json: “missing ] after element list” or just “undefined”
Nov
19
comment How to check if String value is Boolean type in java?
@moxn - Based on the comment for a response, it appears that the OP wants to deal with strings that might need to be trimmed. However, it's certainly bizarre to complain that "false" is always parsed as false.
Nov
19
answered VTD XML inner XPath Expressions
Nov
19
comment Java HashMap performance optimization / alternative
@Oscar - Reading your answer it seems that you are assuming that equals() will return true if the hashcodes are the same. This is not part of the equals/hashcode contract. If I've misunderstood, ignore this comment.
Nov
19
comment Java HashMap performance optimization / alternative
@Oscar - see my response to you with MAK's answer. HashMap maintains a linked list of entries at each hash bucket, and walks that list calling equals() on every element. The object's class has nothing to do with it (other than a short-circuit on equals()).
Nov
19
comment Java HashMap performance optimization / alternative
@Oscar - I'm not sure I follow you: how does class matter? A HashMap works by picking a bucket chain by dividing the hashcode value by the number of buckets in the map (the "table" variable in Sun's implementation). Each bucket holds a linked list of entries, and the map walks that list calling equals() on every node.
Nov
18
comment Java HashMap performance optimization / alternative
@Oscar - more collisions equals more work to do, because now you have to do a linear search of the hash chain. If you have 26,000,000 distinct values per equals(), and 26,000 distinct values per hashCode(), then the bucket chains will have 1,000 objects each.
Nov
18
comment How to use implementation loaded with different Java classloader?
+1 - the OP is attempting to ignore the contract implied by the use of interfaces. If the plugins are the only ones that care about implementation classes, then s/he will have to provide compile-time access to the implementation class, use a cast, and handle the possible ClassCastException.
Nov
18
comment Java HashMap performance optimization / alternative
In that case, you have 52C2 + 52C3 hashcodes (23426 according to my calculator), and a hashmap is very much the wrong tool for the job.
Nov
18
comment Java HashMap performance optimization / alternative
@Nash0 - I commented on MAK's answer, but will repeat here: you apparently have the requirement that any permutation of array values will give the same hashcode (eg, {1,2} is the same as {2,1}). This dramatically reduces the space of your hashcodes, and as a result a hashed structure is not appropriate for your needs.
Nov
18
revised Java HashMap performance optimization / alternative
added 429 characters in body
Nov
18
answered Java HashMap performance optimization / alternative
Nov
18
comment Is it possible to resolve css as a classpath resource using Flying Saucer (XHTML-Renderer)?
You'll have a better chance of getting an answer if you show a small example of how you're loading the file, and the file itself. Assuming that FS uses a URLConnection to load stylesheets, the answers in your referenced question should do the trick (although they don't actually show the code to add a URL scheme resolver).
Nov
17
accepted How do I easily change a XML document’s doctype in Java?
Nov
17
revised Lightweight Java database with Maven plugin for starting/stopping?
added 313 characters in body
Nov
17
comment will serialized object contains metadata?
Unless you can describe "metadata" in terms of specific Java language features, the answer is "maybe"
Nov
17
answered will serialized object contains metadata?
Nov
17
answered How do I easily change a XML document’s doctype in Java?
Nov
17
answered Is a Download class a bad candidate for immutability?
Nov
16
comment JNA/ByteBuffer not getting freed and causing C heap to run out of memory
That's what I assumed as well, then I took a closer look at the JNA docs (jna.dev.java.net/#mapping), and it appears that you can use a regular Java array provided that you don't hold onto that array outside the native function call. However, this may introduce a copying overhead.
Nov
16
answered JNA/ByteBuffer not getting freed and causing C heap to run out of memory
Nov
16
comment Dynamically adding CSS cuts down page weight?
Depending on how large your stylesheets are, this might make sense. After all, it does take time to parse the CSS. And as Joel Coehoorn notes, if you have separate CSS files you're making lots of requests to the server, which are also expensive. The only real way to know is to measure it ... and maybe measure a CSS minifier along the way.
Nov
16
answered How to get current Transfer Rate in Commons HttpClient 3.x
Nov
13
accepted XPath: Is there a way to set a default namespace for queries?
Nov
13
comment XPath: Is there a way to set a default namespace for queries?
Per the XPath 1.0 spec (w3.org/TR/1999/…), a node test can use a "QName", which is defined by the Namespace spec (w3.org/TR/REC-xml-names/#NT-QName). The prefix of a QName is an NCName, which must start with a letter or underscore (w3.org/TR/REC-xml-names/#NT-NCName). All of which is to say that the JDK evaluator is broken -- although as a practical matter, unlikely to get fixed.
Nov
13
answered XPath: Is there a way to set a default namespace for queries?
Nov
13
comment Java interface: method signature declared as throws Exception; implemented as throws a subclass of Exception [CLOSED]
There's occasionally a reason to do this: it says that the method can throw an implementation-specific checked exception. For example consider a persistence mechanism that could either write to a database or a file. One throws SQLException, the other throws IOException. In either case, the application needs to catch the exception when a write fails, and take some action (ranging from simply wrapping in a RuntimeException/subclass to generating a customized error page/dialog).
Nov
13
answered JavaCC Problem - Generated code doesn’t find all parse errors
Nov
12
revised How can I uniquely identify a desktop application making a request to my API?
added 861 characters in body
Nov
12
answered something funny with embedded hsql
Nov
12
answered How can I uniquely identify a desktop application making a request to my API?