Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 12M (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    type Format string
    
    const (
    	DecimalExponent = Format("DecimalExponent") // e.g., 12e6
    	BinarySI        = Format("BinarySI")        // e.g., 12Mi (12 * 2^20)
    	DecimalSI       = Format("DecimalSI")       // e.g., 12M  (12 * 10^6)
    )
    
    // MustParse turns the given string into a quantity or panics; for tests
    // or other cases where you know the string is valid.
    func MustParse(str string) Quantity {
    	q, err := ParseQuantity(str)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top