Tv

Results 377 comments of Tv

A quick workaround for those like me stumbling here while troubleshooting: ``` CARGO_PROFILE_RELEASE_LTO=false cargo fuzz build foo ``` (For me, the symptom was `rustc` pegged at 100% CPU essentially never...

For extra fun, the snapshots you get from rocksdb_transaction_get_snapshot are fundamentally different than the ones from rocksdb_transactiondb_create_snapshot. As far as I can tell, former must not outlive transaction and wants...

Because this took all too much reading: General-purpose code will still be stuck needing to return `Cow`, as RocksDB doesn't really guarantee the pinning. - https://github.com/facebook/rocksdb/blob/632746bb5b8d9d817b0075b295e1a085e1e543a4/include/rocksdb/iterator_base.h#L77-L82 - https://github.com/facebook/rocksdb/blob/632746bb5b8d9d817b0075b295e1a085e1e543a4/include/rocksdb/iterator.h#L58-L70 - https://github.com/facebook/rocksdb/blob/632746bb5b8d9d817b0075b295e1a085e1e543a4/include/rocksdb/iterator.h#L37-L44...

librocksdb-sys Cargo.toml says 0.17.2 but that hasn't been released to crates.io.

~~And now Cargo.toml says 0.23.0 and crates.io agrees -- this can be closed.~~ I was confused. [`rocksdb`](https://crates.io/crates/rocksdb) is at v0.23.0 but [`librocksdb-sys`](https://crates.io/crates/librocksdb-sys/versions) is still at 0.17.1. Releasing librocksdb-sys 0.17.2 would...

FUSE-T is a C library implementing the same C API as `libfuse`, right? I don't see how that'd work here.

Oh, I see that fuser has support for the C libfuse library as an optional feature. I didn't realize that before. (Maintaining that moral-equivalent of ifdef hell can't be fun.)

Related, ``` const stream = await this.env.AI.run("@cf/mistralai/mistral-small-3.1-24b-instruct", { prompt: text, stream: true, }, ); ``` is making the return type be `ReadableStream`, when at runtime it's a `ReadableStream`.

The examples are also not as helpful as they could be, because - they only show single actions, which misses out the concept that `secondary-action` seems to be a container...

Yeah, this behavior was utterly unexpected: ```diff - pub use datafusion; - pub use unindent; + pub use {datafusion, unindent}; ```