ZhennanWu

Results 6 comments of ZhennanWu

@Bandito11 I've opened issue #334 and you can try it there. They should really remove the "Test Pending" status on [Cordova platform support page](https://cordova.apache.org/docs/en/latest/guide/support/index.html). Because it seems broken to me.

Hit the same problem here! I only hit this problem after upgrading gcc-12 to gcc-13. 1. `gcc-12.3.1_p20230825` building `net-fs/cifs-utils-7.0`: Success 2. `gcc-13.2.1_p20240113-r1` building `net-fs/cifs-utils-7.0` (an `--empty-tree` build): Fail with the...

This may be off-topic but I would still want point out a possible extension for the alignment of the unsized types. Currently custom DST has this problem of having to...

I agree with the poster that `async-std` is missing this capability. `tokio` has a synchronous `JoinHandle::abort` and `smol` has the equivalent synchronous cancel-on-drop. `async-std` currently has absolutely no way of...

I would like to give an update. In recent RA versions (rust-analyzer version: 0.3.1975-standalone (71a816a90 2024-05-26)), this error still exist, *but* in my case https://github.com/rust-lang/rust-analyzer/issues/14933, the error can go away...

Additional comment here. This builder pattern is actually in use in very popular Rust libraries. For example, in the `rayon` library: https://github.com/rayon-rs/rayon/blob/3e3962cb8f7b50773bcc360b48a7a674a53a2c77/rayon-core/src/lib.rs#L443-L460 The default builder use a `ThreadPoolBuilder`. When the...