Matthew James Briggs

Results 102 comments of Matthew James Briggs

Is there an example of how to set the status of a CRD object, including Conditions? I guess that example would be in kube-runtime, but my search brought me here.

Oh, I noticed this: `#[kube(status = "FooStatus")]` Here: https://github.com/clux/controller-rs/blob/7a9c03ba0959663a9ac6e85706ed37261187b000/src/manager.rs#L29 Which helps me understand what's happening a lot better. Edit: and further down in that file is the exact example of...

This is also my biggest complaint in using the SDK. One idea that a team member here had is that EC2 functionality could be opted-into using Cargo features. Often you...

This seems promising https://github.com/tfussell/miniz-cpp

Sorry I haven't answered yet. I'll try to get you an answer, but the short answer is that the tickTime field tells you when the note starts and duration tells...

> On April 4, 2020 at 8:01:56 AM, p-groarke ([email protected]) wrote: > > Are you ok with ExternalProject instead of find_package? It tests the same thing, but it makes it...

Unfortunately no. In fact, it looks like repeats may be oversimplified in the "api" namespace. If that is the case, then you would need to go to the lower-level "private"...

I don't think so. It's a sad state of affairs, I wouldn't expect you to be the person to implement this.

This may help https://nodejs.org/api/addons.html Typically in cases where JavaScript isn't performant enough, you can write C++ code and link it into Node.js like a plugin. Then you can call your...

How did you arrive at standardizing on argh instead of clap? I think clap is becoming the de-facto standard crate for this.