Tv

Results 377 comments of Tv

NaCl itself seems to support (some forms of?) `mmap`, but Go does not expose that functionality.

Worth clarifying: > If any write operation happens, that write operation will This is only true for _growing the database_. A typical write would still proceed. Only special unlucky writes...

Sounds like Virtualbox "shared folders" don't support mmap.

I think I'm hitting this with ```rust #[cfg_attr(test, faux::methods)] impl S { pub async fn foo(&self, message: &M) -> Result where M: Message + Serialize + Sync, { // ......

Interesting side discovery: faux forces all function `impl` traits to also implement `Debug`. There's a `{:?}` somewhere inside `faux::when!`. Trying to please faux with `impl` leads to some furious build...

Ah yes, adding an `S::new` that's inside `#[faux::methods]` and using that gets rid of that error, just leaving the recursive opaque type one.

DefaultSchemaPool seems to no longer exist. I guess it's called SchemaRegistry now? It also seems to force global state on you, which is just weird and wrong...

For what it's worth: https://github.com/bfontaine/gosh https://github.com/abates/gosh

I'm just a newbie but it seems to me https://github.com/serde-rs/serde/issues/912#issuecomment-803097289 will use the default enum even when the input is clearly tagged for another branch of the enum, and just...

This is particularly hideous if you want to access a `+server.js` helper. With SSR, you have two choices: - use Svelte's internal `fetch`: triggers this bug - use global `fetch`:...