Xuanwo

Results 1647 comments of Xuanwo

Hello everyone, I have started my work at https://github.com/sxyazi/yazi/pull/1152. Current progress: opendal has been integrated into yazi. I'm working out the layout of yazi to make it works correctly. ![image](https://github.com/sxyazi/yazi/assets/5351546/b307e338-7a97-4458-a488-80300405c19a)

We have a discussion at https://github.com/datafusion-contrib/datafusion-orc/issues/120

Hello @MarinPostma and @Horusiath, I'm still interested in this task. Any updates? Can I start working on it?

> let's wait for [nix-rust/nix#2347](https://github.com/nix-rust/nix/pull/2347) released! New libc has been released: https://github.com/nix-rust/nix/pull/2398

backon doesn't call `now()` and `fastrand` already uses `instant` in `wasm32`. Can you provide more detailed repro for this issue?

Please feel free to reopen it if you can backon doesn't work on wasm.

> Ok, I could narrow it down to the use of tokio::time::sleep. It can be replaced with gloo_timers in wasm32 as far as I can see. I could submit a...

Seems an interesting case. Let me take a look if it possible.

I think we can maintain an `Arc` in builder and backoff for updating them with the `Retry-After` returned in responses: ```rust #[cfg(test)] mod tests { use super::*; use crate::{BackoffBuilder, BlockingRetryable};...

Yes, we have not presented a direct method for that. Might you have a requirement for this? We can use [with_max_times](https://docs.rs/backon/0.4.0/backon/struct.ConstantBuilder.html#method.with_max_times) to workaround it: ```rust let builder = ConstantBuilder::default().with_max_times(usize::MAX); ```