Kubernetes CRI CLI: crictl-shaped client, simulator server, proxy
0

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-cri / lib / wrapper.mli
454 B 15 lines
1(** Scalar wrapper messages, where a missing sub-message is distinct from an 2 explicit zero. *) 3 4type int64_value = { value : int64 } 5(** [runtime.v1.Int64Value]. *) 6 7val int64_value : int64_value Protobuf.t 8(** Codec for {!type-int64_value}. *) 9 10type uint64_value = { value : int64 } 11(** [runtime.v1.UInt64Value]; the OCaml [int64] holds the unsigned bit pattern. 12*) 13 14val uint64_value : uint64_value Protobuf.t 15(** Codec for {!type-uint64_value}. *)