Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 1h2m (0.03 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			schema: schemas(durationFormat, durationFormat),
    			expectCost: map[string]int64{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "duration('1h2m3s4ms')"): 11,
    				"self.val1 == duration('1h2m') + duration('3s4ms')":                                  4,
    				"self.val1.getHours() == 1":                                                          4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			schema: schemas(durationFormat, durationFormat),
    			valid: []string{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "duration('1h2m3s4ms')"),
    				"self.val1 == duration('1h2m') + duration('3s4ms')",
    				"self.val1.getHours() == 1",
    				"self.val1.getMinutes() == 62",
    				"self.val1.getSeconds() == 3723",
    				"self.val1.getMilliseconds() == 3723004",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. 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)
  4. src/time/example_test.go

    	// d.Round( 10m0s) = 1h20m0s
    	// d.Round(1h0m0s) = 1h0m0s
    }
    
    func ExampleDuration_String() {
    	fmt.Println(1*time.Hour + 2*time.Minute + 300*time.Millisecond)
    	fmt.Println(300 * time.Millisecond)
    	// Output:
    	// 1h2m0.3s
    	// 300ms
    }
    
    func ExampleDuration_Truncate() {
    	d, err := time.ParseDuration("1h15m30.918273645s")
    	if err != nil {
    		panic(err)
    	}
    
    	trunc := []time.Duration{
    		time.Nanosecond,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. 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