Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for 100Gi (0.06 sec)

  1. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "123456789012345678890i", 0, 0},
    	{_Literal, "0.i", 0, 0},
    	{_Literal, ".0i", 0, 0},
    	{_Literal, "3.14159265i", 0, 0},
    	{_Literal, "1e0i", 0, 0},
    	{_Literal, "1e+100i", 0, 0},
    	{_Literal, "1e-100i", 0, 0},
    	{_Literal, "2.71828e-1000i", 0, 0},
    	{_Literal, "'a'", 0, 0},
    	{_Literal, "'\\000'", 0, 0},
    	{_Literal, "'\\xFF'", 0, 0},
    	{_Literal, "'\\uff16'", 0, 0},
    	{_Literal, "'\\U0000ff16'", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. pkg/api/v1/resource/helpers_test.go

    			cName:         "foo",
    			pod:           getPod("foo", podResources{memoryRequest: "100Mi"}),
    			expectedValue: "104857600",
    		},
    		{
    			fs: &v1.ResourceFieldSelector{
    				Resource: "requests.memory",
    				Divisor:  resource.MustParse("1Mi"),
    			},
    			cName:         "foo",
    			pod:           getPod("foo", podResources{memoryRequest: "100Mi", memoryLimit: "1Gi"}),
    			expectedValue: "100",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  3. pkg/quota/v1/evaluator/core/pods_test.go

    						},
    					}},
    				},
    			},
    			usage: corev1.ResourceList{
    				corev1.ResourceName(corev1.ResourceHugePagesPrefix + "2Mi"):         resource.MustParse("100Mi"),
    				corev1.ResourceName(corev1.ResourceRequestsHugePagesPrefix + "2Mi"): resource.MustParse("100Mi"),
    				corev1.ResourcePods: resource.MustParse("1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // quantity("50M").compareTo(quantity("50Mi")) // returns -1
    // quantity("50Mi").compareTo(quantity("50M")) // returns 1
    // quantity("150Mi").isGreaterThan(quantity("100Mi")) // returns true
    // quantity("50Mi").isGreaterThan(quantity("100Mi")) // returns false
    // quantity("50M").isLessThan(quantity("100M")) // returns true
    // quantity("100M").isLessThan(quantity("50M")) // returns false
    
    func Quantity() cel.EnvOption {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/go/scanner/scanner_test.go

    	{token.IMAG, "0.i", literal},
    	{token.IMAG, ".0i", literal},
    	{token.IMAG, "3.14159265i", literal},
    	{token.IMAG, "1e0i", literal},
    	{token.IMAG, "1e+100i", literal},
    	{token.IMAG, "1e-100i", literal},
    	{token.IMAG, "2.71828e-1000i", literal},
    	{token.CHAR, "'a'", literal},
    	{token.CHAR, "'\\000'", literal},
    	{token.CHAR, "'\\xFF'", literal},
    	{token.CHAR, "'\\uff16'", literal},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/etcd/local_test.go

            host: 127.0.0.1
            path: /readyz
            port: 2381
            scheme: HTTP
          periodSeconds: 1
          timeoutSeconds: 15
        resources:
          requests:
            cpu: 100m
            memory: 100Mi
        startupProbe:
          failureThreshold: 24
          httpGet:
            host: 127.0.0.1
            path: /readyz
            port: 2381
            scheme: HTTP
          initialDelaySeconds: 10
          periodSeconds: 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/etcd/local.go

    			},
    			Resources: v1.ResourceRequirements{
    				Requests: v1.ResourceList{
    					v1.ResourceCPU:    resource.MustParse("100m"),
    					v1.ResourceMemory: resource.MustParse("100Mi"),
    				},
    			},
    			// The etcd probe endpoints are explained here:
    			// https://github.com/kubernetes/kubeadm/issues/3039
    			LivenessProbe:  staticpodutil.LivenessProbe(probeHostname, "/livez", probePort, probeScheme),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  8. pkg/kubelet/container/helpers_test.go

    		})
    	}
    }
    
    func TestHashContainerWithoutResources(t *testing.T) {
    	cpu100m := resource.MustParse("100m")
    	cpu200m := resource.MustParse("200m")
    	mem100M := resource.MustParse("100Mi")
    	mem200M := resource.MustParse("200Mi")
    	cpuPolicyRestartNotRequired := v1.ContainerResizePolicy{ResourceName: v1.ResourceCPU, RestartPolicy: v1.NotRequired}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. src/fmt/scan_test.go

    	{"(3.4e1-2i)\n", &complex128Val, 3.4e1 - 2i},
    	{"-3.45e1-3i\n", &complex64Val, complex64(-3.45e1 - 3i)},
    	{"-.45e1-1e2i\n", &complex128Val, complex128(-.45e1 - 100i)},
    	{"-.4_5e1-1E2i\n", &complex128Val, complex128(-.45e1 - 100i)},
    	{"0x1.0p1+0x1.0P2i\n", &complex128Val, complex128(2 + 4i)},
    	{"-0x1p1-0x1p2i\n", &complex128Val, complex128(-2 - 4i)},
    	{"-0x1ep-1-0x1p2i\n", &complex128Val, complex128(-15 - 4i)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top