Steven Scott
Steven Scott
According to the JDK javadocs, the default view name is `basic`. Sending in `base` results in `java.lang.UnsupportedOperationException: View 'base' not available` Also renamed a typo'd test class
I've found that `Compression.gzip` is significantly beat in speed and/or compression factor by `GZIPOutputStream`. Roughly, gzip(1) is somewhat faster than GZOS but 50% larger, gzip(9) [default] takes twice as long...
Marking this as a draft because i just remembered that the scala 2.10 build is broken (perhaps ScalaPB dropped support? I didn't look into it since I wasn't interested in...
haven't done enough research on this yet to know exactly why/when it happens or how to fix it. But I saw an instance where i rebooted my router and a...
I've run into an issue where our upsert implementation loops forever, because `db.get` always returns a 404, and `db.put` always returns a 409. After debugging, I've determined that the metadata...
### Describe the bug There's an off-by-one when you incrementally stage the last hunk of a file. maybe only if it's the last file in the list? anyway it happens...