Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 2M (0.02 sec)

  1. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

            # Request and limit resources to get guaranteed QoS.
            resources:
              requests:
                memory: "20Mi"
                cpu: "2m"
              limits:
                memory: "20Mi"
                cpu: "2m"
            command:
              - /monitor
              - --stackdriver-prefix={{ prometheus_to_sd_prefix }}/addons
              - --api-override={{ prometheus_to_sd_endpoint }}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. internal/s3select/select_benchmark_test.go

    }
    
    // BenchmarkSelectAll_1M - benchmark * function with 1m records.
    func BenchmarkSelectAll_1M(b *testing.B) {
    	benchmarkSelectAll(b, 1*humanize.MiByte)
    }
    
    // BenchmarkSelectAll_2M - benchmark * function with 2m records.
    func BenchmarkSelectAll_2M(b *testing.B) {
    	benchmarkSelectAll(b, 2*humanize.MiByte)
    }
    
    // BenchmarkSelectAll_10M - benchmark * function with 10m records.
    func BenchmarkSelectAll_10M(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 14 13:54:47 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. docs/throttle/README.md

    ```sh
    export MINIO_API_REQUESTS_MAX=1600
    export MINIO_API_REQUESTS_DEADLINE=2m
    export MINIO_ROOT_USER=your-access-key
    export MINIO_ROOT_PASSWORD=your-secret-key
    minio server http://server{1...8}/mnt/hdd{1...16}
    ```
    
    or
    
    ```sh
    mc admin config set myminio/ api requests_max=1600 requests_deadline=2m
    mc admin service restart myminio/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/duration_test.go

    		{"d: 5s\n", Duration{5 * time.Second}},
    		{"d: 2m0s\n", Duration{2 * time.Minute}},
    		{"d: 1h0m0.003s\n", Duration{time.Hour + 3*time.Millisecond}},
    
    		// Units with zero values can optionally be dropped
    		{"d: 2m\n", Duration{2 * time.Minute}},
    		{"d: 1h0.003s\n", Duration{time.Hour + 3*time.Millisecond}},
    	}
    
    	for _, c := range cases {
    		var result DurationHolder
    		if err := yaml.Unmarshal([]byte(c.input), &result); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 07 18:17:32 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/helpers_linux.go

    		quota = minQuotaPeriod
    	}
    
    	return
    }
    
    // sharesToMilliCPU converts CpuShares (cpu.shares) to milli-CPU value
    // TODO(vinaykul,InPlacePodVerticalScaling): Address issue that sets min req/limit to 2m/10m before beta
    // See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r662552642
    func sharesToMilliCPU(shares int64) int64 {
    	milliCPU := int64(0)
    	if shares >= int64(cm.MinShares) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/quantity_test.go

    			expectValue: trueVal,
    		},
    		{
    			name:        "equality_transitivity",
    			expr:        `quantity("2M") == quantity("0.002G") && quantity("2000k") == quantity("2M") && quantity("0.002G") == quantity("2000k")`,
    			expectValue: trueVal,
    		},
    		{
    			name:        "inequality",
    			expr:        `quantity("200M") == quantity("0.3G")`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. pkg/volume/emptydir/empty_dir_linux.go

    		prefix := "pagesize="
    		if strings.HasPrefix(opt, prefix) {
    			// NOTE: Adding suffix 'i' as result should be comparable with a medium size.
    			// pagesize mount option is specified without a suffix,
    			// e.g. pagesize=2M or pagesize=1024M for x86 CPUs
    			trimmedOpt := strings.TrimPrefix(opt, prefix)
    			if !strings.HasSuffix(trimmedOpt, "i") {
    				trimmedOpt = trimmedOpt + "i"
    			}
    			pageSize, err := resource.ParseQuantity(trimmedOpt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/token.go

    func (bto *BootstrapTokenOptions) AddTTLFlagWithName(fs *pflag.FlagSet, flagName string) {
    	fs.DurationVar(
    		&bto.TTL.Duration, flagName, bto.TTL.Duration,
    		"The duration before the token is automatically deleted (e.g. 1s, 2m, 3h). If set to '0', the token will never expire",
    	)
    }
    
    // AddUsagesFlag adds the --usages flag to the given flagset
    func (bto *BootstrapTokenOptions) AddUsagesFlag(fs *pflag.FlagSet) {
    	fs.StringSliceVar(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/duration/duration_test.go

    		{d: -2*time.Second + 1, want: "0s"},
    		{d: 0, want: "0s"},
    		{d: time.Second - time.Millisecond, want: "0s"},
    		{d: 2*time.Minute - time.Millisecond, want: "119s"},
    		{d: 2 * time.Minute, want: "2m"},
    		{d: 2*time.Minute + time.Second, want: "2m1s"},
    		{d: 10*time.Minute - time.Millisecond, want: "9m59s"},
    		{d: 10 * time.Minute, want: "10m"},
    		{d: 10*time.Minute + time.Second, want: "10m"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 17 18:04:52 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  10. pkg/apis/core/helper/helpers_test.go

    		{resource.Quantity{}, resource.MustParse("1m"), false},
    		{
    			resource.NewQuantity(5, resource.BinarySI),
    			resource.NewQuantity(5, resource.DecimalSI),
    			true,
    		},
    		{resource.MustParse("2m"), resource.MustParse("1m"), false},
    	}
    
    	for index, item := range table {
    		if e, a := item.shouldEqual, Semantic.DeepEqual(item.a, item.b); e != a {
    			t.Errorf("case[%d], expected %v, got %v.", index, e, a)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top