Clouds

Results 61 comments of Clouds

We might also like to change defs here https://github.com/axios/axios/blob/2f87be1e03f36f02564b220fa09cdec72a252a36/index.d.ts#L503-L505

Is it possible to have strum generate a function `try_from_str` without implement `TryFrom`? Since I'd like to handle some corner case myself.

I think a problem might be ambiguous when parsing, ```rust #[strum(serialize = "B: ({a}, {b})")] B { a: String, b: i32, }, ``` how would `B` accept string like `B...

FYI, https://github.com/rust-lang/cc-rs/issues/1005

I did some investigation, the break change is introduced by https://github.com/rust-lang/cc-rs/pull/709. After the PR, the could detect `cc` in PATH is actually `clang` in macOS, and then add some default...

> @clouds56 Can you have a try of [rust-lang/cc-rs#1000](https://github.com/rust-lang/cc-rs/pull/1000) , to see if it fixed the issue please? I've tried current main branch (at commit `f36d6a7ed06033c38021ef65e2b7f1da38932024`) It failed at a...

same here on macOS, with `https_proxy`

The same error here. I'm using the Docker image here https://hub.docker.com/_/orientdb/ with tag latest (3.0.11). If creating container with non-root user (pass `-u 1000:1000`), it would throw the same exception...

After some investigating, I found that it would access home folder for history file. https://github.com/orientechnologies/orientdb/blob/3.0.11/core/src/main/java/com/orientechnologies/common/console/TTYConsoleReader.java#L550 You should make sure `$HOME/.orientdb` accessible Or you could config system properties of JVM through...

Yes, I've tried ```toml surf = { version = "2.0.0-alpha.4", features = [ "h1-client" , "middleware-logger", "encoding"], default-features = false } ``` but with no luck