shniubobo

Results 14 comments of shniubobo

请问能不能详细描述一下问题,或者上一张截图之类的,不然不好确定原因

The crash cannot be reliably reproduced. After creating this issue, all builds on my machine succeeded, both in the docker container and on the host. I cannot figure out how...

因为这些变更已经发布了却没有体现在文档里,所以想问一下其中新增的功能可以视作是公共 API 吗?最终是否都会保证进入 v1.0.0?

补充一个用例:通过AList+RoundSync可以把各大网盘/NAS/对象存储挂载成SAF的provider,假设支持备份到SAF,就能直接备份到这些地方了

[go-vss](https://github.com/mxk/go-vss) could be useful. It was created for kopia (https://github.com/kopia/kopia/pull/3543), and using this package could be much easier than copying code from restic.

This has also happened to me when I am trying to use the unstable `bindeps` feature in my `Cargo.toml`. ```toml wasm-bindgen-cli ={ version = "0.2.100", artifact = ["bin:wasm-bindgen"] } ```...

This may be related to #363. I have observed the same bug with `@tanstack/[email protected]`. Wrapping `useVirtualizer` within `computed` to work around this.

Using this patch as a workaround: ```diff --- a/src/index.js +++ b/src/index.js @@ -781,7 +781,7 @@ export default function rust(options = {}) { resolveFileUrl(info) { if (state.fileIds.has(info.referenceId)) { - return `new...

Have you read [this guide](https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-extern.html) and [this rust book chapter](https://doc.rust-lang.org/book/ch20-01-unsafe-rust.html)? You can find examples there on how to use `unsafe`. > Even when wrapped in an unsafe loop, the code...