Results 226 comments of Simonas Kazlauskas

> What's your reason for not adding this (or a symlink to it) to $PATH? I use the rustc I have installed on my system rarely enough to justify the...

I have used tracing + a event/span ingest as well as manually instrumented prometheus metrics in the past. Having event/spans can produce very awesome and useful results. It becomes possible...

re disabling CRC (change in [table/block_based/reader_common.cc](https://github.com/near/rocksdb/compare/e656fa3d196c5b4c8a77255db1e6cd36a7ded348...ee29fa3e1c3e62983ad4fddb6e13a01a853799bf#diff-a8b3ed004b67c4eb01faafebed7e523c55d273640798026ea7a96c05ad6f9ce8)): ```diff Status VerifyBlockChecksum(ChecksumType type, const char* data, size_t block_size, const std::string& file_name, uint64_t offset) { + return Status::OK(); PERF_TIMER_GUARD(block_checksum_time); ``` Did I miss any...

> Yanking and republishing as 4.2.0 is possibly the best way forward? As per cargo's use of semver for MAJOR versions `>= 1` both MINOR and PATCH version bumps are...

https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-unification has some nice documentation and guidelines. A particularly nice option for yup-oauth2 may be selecting one feature over another by default if both are specified.

I would like to avoid having to set up an environment variable. Primarily because it needs to be done every time a development environment is set-up (which can be as...

System wide installation location doesn't necessarily have to be directly under `/usr/lib`, so checking for files there is probably not at all sufficient. The libraries may appear under `/usr/local/lib` for...

Got it. I think the PR is an improvement either way. As far as `cuda` support is concerned, after I filed this issue I had a person reach out to...

> Add a parameter (and update the code section as necessary) > Remove a parameter (and update the code section as necessary) This sort of transformation may be made easier...

Another transformation that I think could be interesting and which I'm not sure is covered by the issue text here is import-ifying and local-ifying items such as globals and functions....