Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for 250m (0.11 sec)

  1. hack/testdata/sorted-pods/sorted-pod1.yaml

      labels:
        name: sorted-pod3-label
    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
  2. cluster/gce/manifests/kube-apiserver.manifest

        {{containerSecurityContext}}
        "image": "{{pillar['kube_docker_registry']}}/kube-apiserver-amd64:{{pillar['kube-apiserver_docker_tag']}}",
        "resources": {
          "requests": {
            "cpu": "250m"
          }
        },
        "command": [
                     "/go-runner", "--log-file=/var/log/kube-apiserver.log", "--also-stdout=false", "--redirect-stderr=true",
                     "/usr/local/bin/kube-apiserver",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server_test.go

    		{
    			kubeReserved:   map[string]string{"cpu": "200m", "memory": "-150G", "ephemeral-storage": "10Gi"},
    			systemReserved: map[string]string{"cpu": "200m", "memory": "15Ki"},
    			errorExpected:  true,
    			name:           "negative quantity value",
    		},
    		{
    			kubeReserved:   map[string]string{"cpu": "200m", "memory": "150Gi", "ephemeral-storage": "10Gi"},
    			systemReserved: map[string]string{"cpu": "200m", "memory": "15Ky"},
    			errorExpected:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. pkg/scheduler/util/pod_resources_test.go

    			v1.ResourceList{
    				v1.ResourceCPU: resource.MustParse("200m"),
    			},
    			200,
    			DefaultMemoryRequest,
    		},
    		{
    			"only_memory_exist",
    			v1.ResourceList{
    				v1.ResourceMemory: resource.MustParse("400Mi"),
    			},
    			DefaultMilliCPURequest,
    			400 * 1024 * 1024,
    		},
    		{
    			"cpu_memory_exist",
    			v1.ResourceList{
    				v1.ResourceCPU:    resource.MustParse("200m"),
    				v1.ResourceMemory: resource.MustParse("400Mi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/quantity_test.go

    		},
    		{
    			name:        "equality_reflexivity",
    			expr:        `quantity("200M") == quantity("200M")`,
    			expectValue: trueVal,
    		},
    		{
    			name:        "equality_symmetry",
    			expr:        `quantity("200M") == quantity("0.2G") && quantity("0.2G") == quantity("200M")`,
    			expectValue: trueVal,
    		},
    		{
    			name:        "equality_transitivity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    		{int64Amount{value: 1, scale: -100}, 10, int64Amount{value: 1, scale: -100}, false},
    		{int64Amount{value: -5, scale: 2}, 500, int64Amount{value: -2500, scale: 2}, true},
    		{int64Amount{value: -5, scale: -2}, 500, int64Amount{value: -2500, scale: -2}, true},
    		{int64Amount{value: 0, scale: 1}, 0, int64Amount{value: 0, scale: 1}, true},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/testdata/issue22295.pkg/plugin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var f *int
    
    func init() {
    	f = new(int)
    	*f = 2503
    }
    
    func F() int { return *f }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 271 bytes
    - Viewed (0)
  8. test/fixedbugs/bug384.go

    // errorcheck
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 2500
    
    package foo
    
    // Check that we only get root cause message, no further complaints about r undefined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 355 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/issue22295.pkg/main.go

    import (
    	"log"
    	"plugin"
    )
    
    func main() {
    	p, err := plugin.Open("issue.22295.so")
    	if err != nil {
    		log.Fatal(err)
    	}
    	f, err := p.Lookup("F")
    	if err != nil {
    		log.Fatal(err)
    	}
    	const want = 2503
    	got := f.(func() int)()
    	if got != want {
    		log.Fatalf("got %d, want %d", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 486 bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/input/ztunnel.yaml

    spec:
      profile: ambient
      components:
        ztunnel:
          enabled: true
          k8s:
            resources:
              requests:
                cpu: 100m
                memory: 100Mi
              limits:
                cpu: 200m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 12 03:09:45 UTC 2023
    - 327 bytes
    - Viewed (0)
Back to top