Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 6Gi (0.03 sec)

  1. pkg/kubelet/eviction/memory_threshold_notifier_test.go

    				Operator: evictionapi.OpLessThan,
    				Value: evictionapi.ThresholdValue{
    					Quantity: quantityMustParse("1Gi"),
    				},
    			},
    			expectedThreshold:  resource.MustParse("6Gi"),
    			updateThresholdErr: nil,
    			expectErr:          false,
    		},
    		{
    			description: "error updating node level threshold",
    			available:   resource.MustParse("3Gi"),
    			usage:       resource.MustParse("2Gi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1", decQuantity(1, 0, DecimalSI)},
    
    		// Binary suffixes
    		{"1Ki", decQuantity(1024, 0, BinarySI)},
    		{"8Ki", decQuantity(8*1024, 0, BinarySI)},
    		{"7Mi", decQuantity(7*1024*1024, 0, BinarySI)},
    		{"6Gi", decQuantity(6*1024*1024*1024, 0, BinarySI)},
    		{"5Ti", decQuantity(5*1024*1024*1024*1024, 0, BinarySI)},
    		{"4Pi", decQuantity(4*1024*1024*1024*1024*1024, 0, BinarySI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top