You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in k8s specs we often see IntOrString types or things like
type Quantity struct {
// i is the quantity in int64 scaled form, if d.Dec == nil
i int64Amount
// d is the quantity in inf.Dec form if d.Dec != nil
d infDecAmount
// s is the generated value of this quantity to avoid recalculation
s string
// Change Format at will. See the comment for Canonicalize for
// more details.
Format
}
We need to be able to handle taking in multiple types for this
in k8s specs we often see
IntOrString
types or things likeWe need to be able to handle taking in multiple types for this
proposing the backend be structured similarly to
The text was updated successfully, but these errors were encountered: