Results 133 comments of Marshall Pierce

Re-doing `saml2aws configure` got it working -- not clear why that was necessary :man_shrugging:

I'll take a look at it this weekend. I've already played a little bit with rust and wasm, so I can hopefully make at least some progress on it.

+1 on all of that, with a bit more about the Rust example CLI: it produces _almost_ the same output as `outputPercentileDistribution`. When I wrote that I had just spent...

@karlmdavis ah, you are correct -- I had thought that the web tool could plot interval logs or at least an individual serialized histogram, but it looks like it only...

A serialized histogram sans base64 is a reasonable standalone thing, e.g. to ship over the wire to some diagnostic tool. I would guess that the base64 flavor is primarily (only?)...

I took a pretty different implementation approach in the [Rust implementation](https://github.com/HdrHistogram/HdrHistogram_rust/blob/master/src/serialization/interval_log/mod.rs#L588) in part because I couldn't figure out a good way to explain to a prospective user exactly what this...

~Histogram serialization does not involve base64; it just produces bytes. See `EncodableHistogram#encodeIntoCompressedByteBuffer`'s implementations in the Java implementation. It may be base64'd later for transport in plain-text environments like a text...

That's the v2 compressed cookie and the length. 0x1f is 31, which is the length of the buffer.

I did some work on ring's runtime detection with cpuinfo, so we could lift from that: https://github.com/briansmith/ring/pull/392/files#diff-43684ec91e5967978239dce34e7beeb7 That ended up not being used in ring (decided to not bother with...

The workarounds above didn't work for me on gradle 5.4.1, so this is what is working for me: ``` plugins { id("me.champeau.gradle.jmh") version "0.4.8" id("com.github.johnrengelman.shadow") version "5.0.0" } ... //...