Shevek
Shevek
This is addressed by the extra edgeId parameter https://github.com/shevek/graphviz4j/blob/master/graphviz-builder/src/main/java/org/anarres/graphviz/builder/GraphVizGraph.java#L194 which allows for multigraphs. Pass a distinct edgeId value for each separate edge you want. The design philosophy of the library...
The immediately preceding call to emitUntil() should ensure that an add() won't crash. It only returns when there's at least one space in the queue. Also, the testing has been...
I would love to have DHT support.
It is not clear from this ticket what controls you want. ttorrent is very memory efficient for high concurrency and throughput, but if your device is THAT small, why are...
I'm going to guess, since LZO is essentially a prefix/length encoding, that there's a byte in your incoming compressed bytestream which specifies a length longer than the remaining data. i.e....
*snerk* nicely played. I'll get there.
I think this is affecting me too - I either get this issue, or I get an issue where it won't ignore whitespace within an XmlElementWrapper element.
I'm not entirely out of my depth here, but I'm heading that way, hence the very concrete example. My objective is just to deserialize that file, so any workaround which...
The larger case was: ``` ``` And Jackson was reporting 'name' as a missing property on `outer`, rather than instantiating it on 'inner'. Cutting that example down got me here,...
If it were possible to override `XmlFactory._initializeXmlReader` then I could: ``` return _xmlInputFactory.createFilteredReader(r, new StreamFilter() { @Override public boolean accept(XMLStreamReader r) { return !r.isWhiteSpace(); } }); ``` but I can't...