Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 300T (0.14 sec)

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

    		{decQuantity(1080, -3, DecimalSI), "1080m", "1.08"},
    		{decQuantity(108, -2, DecimalSI), "1080m", "1080000000n"},
    		{decQuantity(10800, -4, DecimalSI), "1080m", ""},
    		{decQuantity(300, 6, DecimalSI), "300M", ""},
    		{decQuantity(1, 12, DecimalSI), "1T", ""},
    		{decQuantity(1234567, 6, DecimalSI), "1234567M", ""},
    		{decQuantity(1234567, -3, BinarySI), "1234567m", ""},
    		{decQuantity(3, 3, DecimalSI), "3k", ""},
    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/volume/csi/csi_mounter_test.go

    			readOnly:   false,
    			fsType:     "",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    			name: "fstype, fsgroup, RWM, ROM provided (should not apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteMany,
    				corev1.ReadOnlyMany,
    			},
    			fsType:     "ext4",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    			}
    		}
    	}
    }
    
    func TestAttacherMountDevice(t *testing.T) {
    	pvName := "test-pv"
    	var testFSGroup int64 = 3000
    	nonFinalError := volumetypes.NewUncertainProgressError("")
    	transientError := volumetypes.NewTransientOperationFailure("")
    
    	testCases := []struct {
    		testName                       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_test.go

    )
    
    const (
    	// This offset offsetCRI is to distinguish it from Cadvisor stats
    	offsetCRI = 1000
    )
    
    const (
    	seedRoot       = 0
    	seedKubelet    = 200
    	seedMisc       = 300
    	seedSandbox0   = 1000
    	seedContainer0 = 2000
    	seedSandbox1   = 3000
    	seedContainer1 = 4000
    	seedContainer2 = 5000
    	seedSandbox2   = 6000
    	seedContainer3 = 7000
    	seedSandbox3   = 8000
    )
    
    const (
    	pName0 = "pod0"
    	pName1 = "pod1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		runPreScore          bool
    	}{
    		{
    			name: "test case for ScoringStrategy RequestedToCapacityRatio case1",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  74,
    		},
    		{
    			name:             "index of array of number maps",
    			schemaGenerator:  getMapArrayWithRule("number", `self[0].x > 2.0`),
    			expectedCalcCost: 4,
    			setMaxElements:   3000,
    			expectedSetCost:  4,
    		},
    		{
    			name:             "duration array with all",
    			schemaGenerator:  genArrayWithRule("duration", "self.all(x, true)"),
    			expectedCalcCost: 2359295,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. docs/bucket/notifications/README.md

    ```sh
    mc admin config set myminio notify_webhook:1 queue_limit="0"  endpoint="http://localhost:3000" queue_dir=""
    ```
    
    ### Step 2: Enable Webhook bucket notification using MinIO client
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "epSlice3",
    			},
    			AddressType: discovery.AddressTypeIPv6,
    			Endpoints: []discovery.Endpoint{
    				{
    					Addresses: []string{"3001:0da8:75a3:0000:0000:8a2e:0370:7334"},
    				},
    			},
    		},
    	}
    
    	epSlice2 := endpointSlices[1]
    	epSlice3 := endpointSlices[2]
    
    	result := dropEndpointSlicesPendingDeletion(endpointSlices)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. tests/query_test.go

    	DB.AutoMigrate(&QueryResetNullValue{}, &QueryResetItem{})
    
    	now := time.Now()
    	q1 := QueryResetNullValue{
    		Name:    "name",
    		Flag:    true,
    		Number1: 100,
    		Number2: 200,
    		Number3: 300.1,
    		Now:     &now,
    		Item1: &QueryResetItem{
    			ID:   "u_1_1",
    			Name: "item_1_1",
    		},
    		Item2: &QueryResetItem{
    			ID:   "u_1_2",
    			Name: "item_1_2",
    		},
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  10. src/time/time_test.go

    var minDurationTests = []struct {
    	d    Duration
    	want float64
    }{
    	{Duration(-60000000000), -1},
    	{Duration(-1), -1 / 60e9},
    	{Duration(1), 1 / 60e9},
    	{Duration(60000000000), 1},
    	{Duration(3000), 5e-8},
    }
    
    func TestDurationMinutes(t *testing.T) {
    	for _, tt := range minDurationTests {
    		if got := tt.d.Minutes(); got != tt.want {
    			t.Errorf("Duration(%s).Minutes() = %g; want: %g", tt.d, got, tt.want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top