Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,268 for c000 (0.12 sec)

  1. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            assertEquals(2000, intervalControlHelper.getDelay());
    
            intervalControlHelper.ruleList.clear();
    
            intervalControlHelper.addIntervalRule("12:15", "12:15", "*", 3000);
            assertEquals(3000, intervalControlHelper.getDelay());
    
            intervalControlHelper.ruleList.clear();
    
            intervalControlHelper.addIntervalRule("12:15", "12:15", "3,5", 4000);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types_test.go

    				v1.ResourceMemory:           *resource.NewQuantity(2000, resource.BinarySI),
    				v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    			},
    			expected: &Resource{
    				MilliCPU:         4,
    				Memory:           2000,
    				EphemeralStorage: 5000,
    			},
    		},
    		{
    			resource: &Resource{
    				MilliCPU:         4,
    				Memory:           4000,
    				EphemeralStorage: 5000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_test.go

    	// 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"
    	pName2 = "pod2"
    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. cluster/gce/config-common.sh

        suggested_range="10.40.0.0/20"
      fi
      if [[ "$(get-num-nodes)" -gt 4000 ]]; then
        suggested_range="10.40.0.0/19"
      fi
      echo "${suggested_range}"
    }
    
    function get-cluster-ip-range {
      local suggested_range="10.64.0.0/14"
      if [[ "$(get-num-nodes)" -gt 1000 ]]; then
        suggested_range="10.64.0.0/13"
      fi
      if [[ "$(get-num-nodes)" -gt 2000 ]]; then
        suggested_range="10.64.0.0/12"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. test/inline_big.go

    	return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6] + a[7]
    }
    
    func f(a []int) int { // ERROR "cannot inline f:.*" "a does not escape" "function f considered 'big'"
    	// Add lots of nodes to f's body. We need >5000.
    	// See cmd/compile/internal/gc/inl.go:inlineBigFunction*
    	a[0] = 0
    	a[1] = 0
    	a[2] = 0
    	a[3] = 0
    	a[4] = 0
    	a[5] = 0
    	a[6] = 0
    	a[7] = 0
    	a[8] = 0
    	a[9] = 0
    	a[10] = 0
    	a[11] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    					v1.ResourceEphemeralStorage: *resource.NewQuantity(2000, resource.BinarySI),
    				},
    				capacity: v1.ResourceList{
    					v1.ResourceCPU:              *resource.NewMilliQuantity(2000, resource.DecimalSI),
    					v1.ResourceMemory:           *resource.NewQuantity(10e9, resource.BinarySI),
    					v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			},
    			{
    				Names: []string{
    					"gcr.io/300:latest",
    					"gcr.io/300:v1",
    				},
    				SizeBytes: int64(300 * mb),
    			},
    			{
    				Names: []string{
    					"gcr.io/2000:latest",
    				},
    				SizeBytes: int64(2000 * mb),
    			},
    		},
    	}
    
    	node25010 := v1.NodeStatus{
    		Images: []v1.ContainerImage{
    			{
    				Names: []string{
    					"gcr.io/250:latest",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			period:   uint64(20000),
    			expected: int64(10000),
    		},
    		{
    			msg:      "1000 input 10k period and 10k expected quota",
    			input:    int64(1000),
    			period:   uint64(10000),
    			expected: int64(10000),
    		},
    		{
    			msg:      "1500 input 5000 period and 7500 expected quota",
    			input:    int64(1500),
    			period:   uint64(5000),
    			expected: int64(7500),
    		}} {
    		t.Run(testCase.msg, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/resource_allocation_test.go

    					Overhead: v1.ResourceList{
    						v1.ResourceCPU:    resource.MustParse("1"),
    						v1.ResourceMemory: resource.MustParse("1Mi"),
    					},
    				},
    			},
    			expected: map[v1.ResourceName]int64{
    				v1.ResourceCPU:    1000,
    				v1.ResourceMemory: oneMi,
    			},
    		},
    		{
    			name: "1x requestless container",
    			pod: v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top