Raphaël Marinier

Results 9 issues of Raphaël Marinier

Parts of the codebase don't not have a license, for instance: - https://github.com/rust-lang/rustc-perf/blob/master/database - https://github.com/rust-lang/rustc-perf/tree/master/intern are not covered by any explicit license. This makes re-using this project harder, as the...

`compresslevel` is defined there in starlette's GZipMiddleware: https://github.com/encode/starlette/blob/4e453ce91940cc7c995e6c728e3fdf341c039056/starlette/middleware/gzip.py#L30 compresslevel=5 is typically a better CPU / compression level tradeoff than 9, e.g. see: https://tukaani.org/lzma/benchmarks.html

docs

Also, reserve exactly the size needed, which is surprisingly needed to get the full speedup of ~5% on a good fraction of the queries. The memset (accounting for 4% of...

### Bug description Audacity can refuse saving a project claiming "Insufficient Disk Space", while there is ample disk space on the target filesystem. ### Steps to reproduce 1. Have a...

bug

I reliably encounter the crash below while running tokio console. To reproduce: - Have tasks ordered in descending order. - Select the last task with 'G' - Wait for the...

S-bug

**Describe the bug** Range queries on an str fast field that is dynamically created based on indexed documents (dynamic schema) seem to be silently ignored. See also #5090 where such...

bug

**Describe the bug** Range queries on fast str fields are not supported. However, the documentation seems to imply so: https://quickwit.io/docs/reference/query-language#range-fieldlow_bound-to-high_bound > Order > For text fields, the ranges are defined...

bug

Before this commit, running: ./checktestdata would crash with: terminate called after throwing an instance of 'std::length_error' what(): basic_string::_M_create Aborted (core dumped) is not expected by checktestdata, and it should be...

### Description of the problem With the following events for a given team on a given problem: 1. submission 1 gets TLE 2. submission 2 gets TLE 3. submission 3...