Sherlock Holo
Sherlock Holo
the asynchronous drop may be very important, a lot of people want this
when set target to bpfel-unknown-none, cargo build will failed > ``` > error[E0432]: unresolved import `ad` > --> /home/sherlock/.cargo/registry/src/github.com-1ecc6299db9ec823/cty-0.2.2/src/lib.rs:13:9 > | > 13 | pub use ad::*; > | ^^...
I use `libc` in unit test and doc example, but not use in codes. When I let `libc` under `[dependencies]`, udeps doesn't realize it is unnecessary. Could you make udeps...
I want to handle the file lock in fuse not kernel, so I implement `setlk` and `getlk` method, but I don't see any log about them, even I write a...
I read the [doc](https://docs.rs/fuse/0.3.1/fuse/trait.Filesystem.html) but it doesn't mention how to handle interrupted when `setlk` is waiting. If user try to setlk, but he waits for a long time, so he...
## Environment * **IntelliJ Rust plugin version:** 0.4.174.4719-221-nightly * **Rust toolchain version:** rustc 1.64.0-nightly (ddcbba036 2022-06-29) * **IDE name and version:** Clion 2022.1.3 * **Operating system:** Archlinux ## Problem description...
## Environment * **IntelliJ Rust plugin version:** 0.4.176.4779-222-nightly * **Rust toolchain version:** rustc 1.64.0-nightly (3924dac7b 2022-07-29) * **IDE name and version:** CLion 2022.2 * **Operating system:** Archlinux ## Problem description...
```go func (ctxExt *actorContextExtras) killReceiveTimeoutTimer() { if ctxExt.receiveTimeoutTimer == nil { return } ctxExt.receiveTimeoutTimer.Stop() ctxExt.receiveTimeoutTimer = nil } ``` but if a timer stop, we should dry its chan `C`,...
**Is your feature request related to a problem? Please describe.** I am trying to use trust_dns_proto to write a dns server, instead of using `DnsRequest`, I am using the `Message`...
I am learning using trust-dns-server and try to write my test server I try the codes ```rust use std::future::Future; use std::net::Ipv4Addr; use std::pin::Pin; use trust_dns_server::authority::MessageResponseBuilder; use trust_dns_server::proto::op::Header; use trust_dns_server::proto::rr::{RData, Record};...