Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 12M (0.01 sec)

  1. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/TimeFormattingTest.groovy

            "1 hour"            | "10 hours"          | hours(1)                            | "1h"
            "1 hour"            | "10 hours"          | hours(4.2123456)                    | "4h 12m 44s"
            "10 hours"          | "100 hours"         | hours(42.123456)                    | "42h 7m 24s"
            "100 hours"         | "None"              | hours(421.23456)                    | "421h 14m 4s"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. 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