Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 5300m (0.04 sec)

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

    	diskSize := resource.NewQuantity(5*1000*1000*1000, resource.DecimalSI)
    	fmt.Printf("diskSize = %v\n", diskSize)
    
    	cores := resource.NewMilliQuantity(5300, resource.DecimalSI)
    	fmt.Printf("cores = %v\n", cores)
    
    	// Output:
    	// memorySize = 5Gi
    	// diskSize = 5G
    	// cores = 5300m
    }
    
    func ExampleMustParse() {
    	memorySize := resource.MustParse("5Gi")
    	fmt.Printf("memorySize = %v (%v)\n", memorySize.Value(), memorySize.Format)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  2. operator/samples/pilot-k8s.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        pilot:
          k8s:
            resources:
              requests:
                cpu: 1000m # override from default 500m
                memory: 4096Mi # ... default 2048Mi
            hpaSpec:
              maxReplicas: 10 # ... default 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 28 14:16:35 UTC 2021
    - 340 bytes
    - Viewed (0)
  3. src/image/png/testdata/pngsuite/basn0g16.sng

    IMAGE {
        pixels hex
    0000 0900 1200 1b00 2400 2d00 3600 3f00 4800 5100 5a00 6300 6c00 7500 7e00 8700 9000 9900 a200 ab00 b400 bd00 c600 cf00 d800 e100 ea00 f300 fc00 f0ff d5ff baff 
    0200 0b00 1400 1d00 2600 2f00 3800 4100 4a00 5300 5c00 6500 6e00 7700 8000 8900 9200 9b00 a400 ad00 b600 bf00 c800 d100 da00 e300 ec00 f500 fe00 eaff cfff b4ff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5.2K bytes
    - Viewed (0)
  4. hack/testdata/sorted-pods/sorted-pod1.yaml

    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)
  5. cluster/addons/calico-policy-controller/calico-node-vertical-autoscaler-configmap.yaml

    data:
      node-autoscaler: |-
        {
          "calico-node": {
            "requests": {
              "cpu": {
                "base": "80m",
                "step": "20m",
                "nodesPerStep": 10,
                "max": "500m"
              }
            }
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 15:32:57 UTC 2019
    - 409 bytes
    - Viewed (0)
  6. pkg/kubelet/container/container_hash_test.go

              "name": "foo",
              "key": "bar",
              "optional": true
            }
          }
        }
      ],
      "resources": {
        "limits": {
          "foo": "1G"
        },
        "requests": {
          "foo": "500M"
        }
      }
    }
    `
    
    	sampleV131HashValue = uint64(0x8e45cbd0)
    )
    
    func TestConsistentHashContainer(t *testing.T) {
    	container := &v1.Container{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.golden.yaml

              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 3
              timeoutSeconds: 5
            resources:
              requests:
                cpu: 500m
                memory: 2048Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              readOnlyRootFilesystem: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MaximumHeapHelperTest.groovy

            where:
            osTotalMemory            | expected
            MemoryAmount.of('2g')    | MemoryAmount.of('512m')
            MemoryAmount.of('1g')    | MemoryAmount.of('512m')
            MemoryAmount.of('1000m') | MemoryAmount.of('500m')
    
            maximumHeapHelper = testMaximumHeapHelper(true)
    
            testCase = "JVM with ${osTotalMemory} OS total memory"
        }
    
        def "default max heap on #testCase is #expected"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. docs/site-replication/run-ssec-object-replication-with-compression.sh

    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello world" >/tmp/data/plainfile
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/mpartobj.txt
    shred -s 500M /tmp/data/mpartobj.txt
    echo "done"
    
    # Enable compression for site minio1
    ./mc admin config set minio1 compression enable=on extensions=".txt" --insecure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 3
              timeoutSeconds: 5
            resources:
              requests:
                cpu: 500m
                memory: 2048Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              readOnlyRootFilesystem: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top