David Delassus
                                            David Delassus
                                        
                                    Using cmake and a compiler supporting the C++14 standard should work. I haven't written any platform specific code.
Problem fixed in pull request #10
The official client doesn't use Swagger Fluent though.
@godber I've written an SDK to write Kubernetes Operators based on this library: https://sdk.datapio.co/docs/k8s-operator/ I've used it to write PoCs before switching to Elixir. If this library were to be...
> Are there any reasons for using this community library instead of [official library](https://github.com/kubernetes-client/javascript)? > This library provides a fluent API which is far easier to use.
For what it's worth, none of the above worked for me. I'm using Elixir 1.12 / OTP 24. And this dependency overwrites the logger configuration. When running `mix test` on...
Thank you for the example, it seems to get rid of the error, but now I'm confronted to the following error: ``` expected &dyn Fn(usize, &mut ParseState, &mut ErrorState, &dyn...
As for the syntax, it is unclear at the moment how operators with 3 operands would work: - ternary conditional operator `expr "?" expr ":" expr` Or operators with a...
`Node::new()` expected `Box` : ```rust impl Node { pub fn new(location: LocationInfo, data: Box) -> Self { Self { location, data } } } ```
The way to determine if an expression should participate in precedence climbing feels arbitrary but, ok I see how complex cases can be reduced to a simpler use case. Yet,...