Gregory Petrosyan

Results 84 comments of Gregory Petrosyan

Can we avoid the redraw completely for cases where we don't want focused and de-focused series to be styled differently, and only want to update the legend and the overlay...

I want to take on libafl_bolts/rands.rs. I've already submitted a couple of improvement PRs there, and would like to finish the job.

I think something like you've linked should be decent place to start: - all top-level state should move to something like `var globalEnv Env` - top-level `Check` will become `globalEnv.Check(...)`....

There is a chance that 4391f11 will mostly obviate the need to specify settings explicitly.

Did you consider using [HdrHistogram](https://docs.rs/hdrhistogram/)? Looks like it should improve both the accuracy and performance, and take care of the coordinated omission code as well.

If you just want to access `runtime.fastrand64`, it is possible even without `unsafe` and with relatively low overhead. I've used this trick in [my take](https://github.com/flyingmutant/rand) on `rand`: ```go import "hash/maphash"...

Hi, thanks a lot for reporting! `overrun` panic is an internal way to signal not enough data, it should not lead to a test failure and the only way you...

When I designed `Make`, I mostly though about it as a helper to avoid writing trivial `Custom` generators for POD types. Possible extension I considered (but did not implement) was...

I am open to interface-based extensibility here because it does not change or complicate the meaning of `Make` ("just give me a random thing"), while making it work for more...

Make should work for recursive types, if it does not — can you open a separate issue with a reproducer for that? As for time.Time, that would require durations (trivial)...