Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 2M (0.03 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	// practice, we will have one dynamic table per HTTP/2 connection. If we
    	// assume a very powerful server that handles 1M QPS per connection and each
    	// request adds (then evicts) 100 entries from the table, it would still take
    	// 2M years for evictCount to overflow.
    	ents       []HeaderField
    	evictCount uint64
    
    	// byName maps a HeaderField name to the unique id of the newest entry with
    	// the same name. See above for a definition of "unique id".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. istioctl/pkg/metrics/metrics.go

      istioctl experimental metrics productpage-v1
    
      # Retrieve workload metrics for various services with custom duration
      istioctl experimental metrics productpage-v1 -d 2m
    
      # Retrieve workload metrics for various services in the different namespaces
      istioctl experimental metrics productpage-v1.foo reviews-v1.bar ratings-v1.baz`,
    		// nolint: goimports
    		Aliases: []string{"m"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top