Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for 4000m (0.05 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static_test.go

    				description: "SingleSocketHT, DeAllocOneInitContainer",
    				topo:        topoSingleSocketHT,
    				pod: makeMultiContainerPod(
    					[]struct{ request, limit string }{
    						{"4000m", "4000m"}}, // 0, 1, 4, 5
    					[]struct{ request, limit string }{
    						{"2000m", "2000m"}}), // 0, 4
    				containerName:   "initContainer-0",
    				stAssignments:   state.ContainerCPUAssignments{},
    				stDefaultCPUSet: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    			containerIDs:     []string{"appFakeID-1", "appFakeID-2"},
    			pod: makeMultiContainerPod(
    				[]struct{ request, limit string }{
    					{"2000m", "2000m"},
    					{"4000m", "4000m"}},
    				[]struct{ request, limit string }{
    					{"2000m", "2000m"},
    					{"2000m", "2000m"}}),
    			expInitCSets: []cpuset.CPUSet{
    				cpuset.New(0, 4),
    				cpuset.New(0, 4, 1, 5)},
    			expCSets: []cpuset.CPUSet{
    				cpuset.New(0, 4),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/traffic-annotations.yaml

      selector:
        matchLabels:
          app: traffic
      template:
        metadata:
          annotations:
            # We set 4 CPUs here and concurrency=0 below. Expect concurrency to be set to 4.
            sidecar.istio.io/proxyCPU: 4000m
            traffic.sidecar.istio.io/includeInboundPorts: "1,2,3"
            traffic.sidecar.istio.io/excludeInboundPorts: "4,5,6"
            traffic.sidecar.istio.io/excludeOutboundPorts: "7,8,9"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:33 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			name:         "if exceed limit, use limit",
    		},
    		{
    			// Pod: gcr.io/4000 gcr.io/10
    
    			// Node1
    			// Image: gcr.io/4000:latest 4000MB
    			// Score: 100 * (4000M/3 - 23M)/(1000M * 2 - 23M) = 66
    
    			// Node2
    			// Image: gcr.io/10:latest 10MB
    			// Score: 0 (10M*1/3 < 23M, min-threshold)
    
    			// Node3
    			// Image:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/traffic-annotations.yaml.injected

              discoveryAddress: foo:123
              concurrency: 0
              proxyMetadata:
                FOO: bar
                ISTIO_META_TLS_CLIENT_KEY: /etc/identity2/client/keys/client-key.pem
            sidecar.istio.io/proxyCPU: 4000m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    		{
    			// Node1 scores (remaining resources) on 0-MaxNodeScore scale
    			// CPU Score: ((4000 - 0) * MaxNodeScore) / 4000 = MaxNodeScore
    			// Memory Score: ((10000 - 0) * MaxNodeScore) / 10000 = MaxNodeScore
    			// Node1 Score: (100 + 100) / 2 = 100
    			// Node2 scores (remaining resources) on 0-MaxNodeScore scale
    			// CPU Score: ((4000 - 0) * MaxNodeScore) / 4000 = MaxNodeScore
    			// Memory Score: ((10000 - 0) * MaxNodeScore) / 10000 = MaxNodeScore
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  7. test/abi/uglyfib.go

    }
    
    //go:registerparams
    //go:noinline
    func h(x int, xm1, xm2, p *int) {
    	var y = [4]int{x - 4, 0, 0, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	k(*xm1, xm2, &x, p)
    	f(*xm2, &x, &y[0], p)
    }
    
    //go:registerparams
    //go:noinline
    func k(x int, xm1, xm2, p *int) {
    	var y = [5]int{x - 4, 0, 0, 0, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	f(*xm2, &x, &y[0], p)
    	g(*xm1, xm2, &x, p)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    	}{
    		{
    			// Node1 scores (used resources) on 0-MaxNodeScore scale
    			// CPU Score: (0 * MaxNodeScore)  / 4000 = 0
    			// Memory Score: (0 * MaxNodeScore) / 10000 = 0
    			// Node1 Score: (0 + 0) / 2 = 0
    			// Node2 scores (used resources) on 0-MaxNodeScore scale
    			// CPU Score: (0 * MaxNodeScore) / 4000 = 0
    			// Memory Score: (0 * MaxNodeScore) / 10000 = 0
    			// Node2 Score: (0 + 0) / 2 = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    				Resources: v1.ResourceRequirements{
    					Requests: v1.ResourceList{
    						v1.ResourceCPU:    resource.MustParse("1000m"),
    						v1.ResourceMemory: resource.MustParse("2000"),
    					},
    				},
    			},
    			{
    				Resources: v1.ResourceRequirements{
    					Requests: v1.ResourceList{
    						v1.ResourceCPU:    resource.MustParse("2000m"),
    						v1.ResourceMemory: resource.MustParse("3000"),
    						"nvidia.com/gpu":  resource.MustParse("3"),
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0ff00090, 0x01700010, 3, CMN_EQ, 0x1c04, instArgs{arg_R_16, arg_R_shift_R}},                                // CMN<c> <Rn>,<Rm>,<type> <Rs> cond:4|0|0|0|1|0|1|1|1|Rn:4|(0)|(0)|(0)|(0)|Rs:4|0|type:2|1|Rm:4
    	{0x0ff0f010, 0x01700000, 4, CMN_EQ, 0x1c04, instArgs{arg_R_16, arg_R_shift_imm}},                              // CMN<c> <Rn>,<Rm>{,<shift>} cond:4|0|0|0|1|0|1|1|1|Rn:4|(0)|(0)|(0)|(0)|imm5:5|type:2|0|Rm:4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
Back to top