Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 05Ki (0.14 sec)

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

    		{"12E", decQuantity(12, 18, DecimalSI)},
    
    		// We'll accept fractional binary stuff, too.
    		{"100.035Ki", decQuantity(10243584, -2, BinarySI)},
    		{"0.5Mi", decQuantity(.5*1024*1024, 0, BinarySI)},
    		{"0.05Gi", decQuantity(536870912, -1, BinarySI)},
    		{"0.025Ti", decQuantity(274877906944, -1, BinarySI)},
    
    		// Things written by trolls
    		{"0.000000000001Ki", decQuantity(2, -9, DecimalSI)}, // rounds up, changes format
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    			enforceMinReclaim: true,
    			thresholds:        []evictionapi.Threshold{hardThreshold},
    			observations: signalObservations{
    				evictionapi.SignalMemoryAvailable: signalObservation{
    					available: quantityMustParse("1.05Gi"),
    				},
    			},
    			result: []evictionapi.Threshold{hardThreshold},
    		},
    		"threshold-not-met-with-min-reclaim": {
    			enforceMinReclaim: true,
    			thresholds:        []evictionapi.Threshold{hardThreshold},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top