lambdaupb

Results 14 issues of lambdaupb

http://jrds.fr/ has been down for a few days. Maybe consider adding some screenshots to the repo README. Here is a link for an archived copy: https://web.archive.org/web/20190211013511/http://jrds.fr/

### NERFeatureFactory has a lexicon Map containing ~500k entries. The values (wordClass) seem to be integer numbers in String form. Switching to Integer would help a bit with loss of...

For larger inserts it is important to avoid network roundtrips per row inserted. This can either be done generating new sql strings per row count or using the JDBC PreparedStatement.addBatch()...

enhancement
P3
DB client

The parsed html is clearly weird and broken, but my assumption is that the output, after re-serializing it, should be valid. * There are unicode characters in tag names, which...

I'd like to use a progress indicator showing time and thoughput, current total bytes. Currently the counter box always shows the total: ```rust // counter box if self.show_counter { let...

**Is your feature request related to a problem? Please describe.** Accidentally clicking on GC root or Retained Size will start a Heap-Global computation possibly taking hours on large heaps. **Describe...

Related to #344 and #344 ```java public Response filenameHeader(String filename) { if (filename != null && !filename.isEmpty()) { header(HttpConstants.Header.CONTENT_DISPOSITION, "attachment; filename=\"" + filename + "\""); } else { header(HttpConstants.Header.CONTENT_DISPOSITION, "attachment;...

The `ErrorHandler` interface is only designed for Exception and its subclasses, but the hierarchy is rooted at Throwable. Especially some 500 errors are of type Error. I had an instance...

xorshift1024.rs: line 99 ``` impl for Xorshift1024 { fn reseed(&mut self, seed: &'a [u64]) { if seed.len() < 16 { panic!("Xorshift1024 seed needs at least 16 u64s for seeding."); }...

https://github.com/eclipse/milo/blob/cd0f3d97f78de3823541229032642f8af9f00040/opc-ua-stack/stack-server/src/main/java/org/eclipse/milo/opcua/stack/server/transport/uasc/UascServerAsymmetricHandler.java#L382-L385 Matches the first EndpointDescription with requested Security and Path, but ignores the hostname in the URL. This leads milo to choose a different endpoint than requested and then presenting...