Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 10Mi (0.11 sec)

  1. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				IPTablesDropBit:                           utilpointer.Int32(DefaultIPTablesDropBit),
    				FailSwapOn:                                utilpointer.Bool(true),
    				ContainerLogMaxSize:                       "10Mi",
    				ContainerLogMaxFiles:                      utilpointer.Int32(5),
    				ContainerLogMaxWorkers:                    utilpointer.Int32(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. plugin/pkg/admission/limitranger/admission_test.go

    				{
    					Type:           api.LimitTypeContainer,
    					Max:            getComputeResourceList("100m", "2Gi"),
    					Min:            getComputeResourceList("25m", "1Mi"),
    					Default:        getComputeResourceList("75m", "10Mi"),
    					DefaultRequest: getComputeResourceList("50m", "5Mi"),
    				},
    			},
    		},
    	}
    	externalLimitRange := corev1.LimitRange{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedVolumes: newVolumeArray("volume3-6", "10Gi", "uid3-6-x", "claim3-6-x", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty),
    			initialClaims:   newClaimArray("claim3-6", "uid3-6", "10Gi", "volume3-6", v1.ClaimPending, nil, volume.AnnBindCompleted),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    			},
    			Used: corev1.ResourceList{
    				corev1.ResourcePersistentVolumeClaims: resource.MustParse("1"),
    				corev1.ResourceRequestsStorage:        resource.MustParse("10Gi"),
    			},
    		},
    	}
    
    	// start up quota system
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	kubeClient := fake.NewSimpleClientset(resourceQuota)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%+.3g", 1 + 2i, "(+1+2i)"},
    	{"%+.3g", complex64(1 + 2i), "(+1+2i)"},
    	{"%#g", 1 + 2i, "(1.00000+2.00000i)"},
    	{"%#g", 123456 + 789012i, "(123456.+789012.i)"},
    	{"%#g", 1e-10i, "(0.00000+1.00000e-10i)"},
    	{"%#g", -1e10 - 1.11e100i, "(-1.00000e+10-1.11000e+100i)"},
    	{"%#.0f", 1.23 + 1.0i, "(1.+1.i)"},
    	{"%#.0e", 1.23 + 1.0i, "(1.e+00+1.e+00i)"},
    	{"%#.0x", 1.23 + 1.0i, "(0x1.p+00+0x1.p+00i)"},
    	{"%#.0g", 1.23 + 1.0i, "(1.+1.i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"5Ti", decQuantity(5*1024*1024*1024*1024, 0, BinarySI)},
    		{"4Pi", decQuantity(4*1024*1024*1024*1024*1024, 0, BinarySI)},
    		{"3Ei", decQuantity(3*1024*1024*1024*1024*1024*1024, 0, BinarySI)},
    
    		{"10Ti", decQuantity(10*1024*1024*1024*1024, 0, BinarySI)},
    		{"100Ti", decQuantity(100*1024*1024*1024*1024, 0, BinarySI)},
    
    		// Decimal suffixes
    		{"5n", decQuantity(5, -9, DecimalSI)},
    		{"4u", decQuantity(4, -6, DecimalSI)},
    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