Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for 2M (0.07 sec)

  1. pkg/quota/v1/evaluator/core/pods_test.go

    							Limits:   api.ResourceList{api.ResourceCPU: resource.MustParse("2m")},
    						},
    					}, {
    						Name: "bar",
    						Resources: api.ResourceRequirements{
    							Requests: api.ResourceList{api.ResourceCPU: resource.MustParse("1m")},
    							Limits:   api.ResourceList{api.ResourceCPU: resource.MustParse("2m")},
    						},
    					}},
    				},
    			},
    			required: []corev1.ResourceName{corev1.ResourceMemory},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. internal/config/certs_test.go

    q3s4ymFGfoo0S/XNDQXgE5A5QjAKRKUyW2i7pHIIhTyOpeJQeFHDi2/zaZRxoCog
    lD2/HKLi5xJtRelZaaGyEJ20c05VzaSZ+EtRIN33foNdyQQL6iAUU3hJ6JlcmRIB
    bRfX4XPH1w9UfFU5ZKwUciCoDcL65bsyv/y56ItljBp7Ok+UUKl0H4myFNOSfsuU
    IIj4neslnAvwQ8SN4XUpug+7pGF+2m/5UDwRzSUN1H2RfgWN95kqR+tYqCq/E+KO
    i0svzFrljSHswsFoPBqKngI7hHwc9QTt5q4frXwj9I4F6HHrTKZnC5M4ef26sbJ1
    r7JRmkt0h/GfcS355b0uoBTtF1R8tSJo85Zh47wE+ucdjEvy9/pjnzKqIoJo9bNZ
    ri+ue7GhH5EUca1Kd10bH8FqTF+8AHh4yW6xMxSkSgFGp7KtraAVpdp+6kosymqh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  3. pkg/volume/emptydir/empty_dir_test.go

    									},
    								},
    							},
    						},
    					},
    				},
    				mounter: mount.NewFakeMounter([]mount.MountPoint{{Path: tmpdir, Opts: []string{"rw", "pagesize=2M", "realtime"}}}),
    				mountDetector: &testMountDetector{
    					pageSize: &pageSize2Mi,
    					isMnt:    true,
    					err:      nil,
    				},
    			},
    			shouldFail: false,
    		},
    		"Valid: already mounted": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/options_test.go

    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    		"--proxy-client-cert-file=/var/run/kubernetes/proxy.crt",
    		"--proxy-client-key-file=/var/run/kubernetes/proxy.key",
    		"--request-timeout=2m",
    		"--storage-backend=etcd3",
    		"--lease-reuse-duration-seconds=100",
    	}
    	fs.Parse(args)
    
    	// This is a snapshot of expected options parsed by args.
    	expected := &Options{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/flag/flag_test.go

    	args := []string{
    		"-bool",
    		"-bool2=true",
    		"--int", "22",
    		"--int64", "0x23",
    		"-uint", "24",
    		"--uint64", "25",
    		"-string", "hello",
    		"-float64", "2718e28",
    		"-duration", "2m",
    		extra,
    	}
    	if err := f.Parse(args); err != nil {
    		t.Fatal(err)
    	}
    	if !f.Parsed() {
    		t.Error("f.Parse() = false after Parse")
    	}
    	if *boolFlag != true {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/options_test.go

    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    		"--proxy-client-cert-file=/var/run/kubernetes/proxy.crt",
    		"--proxy-client-key-file=/var/run/kubernetes/proxy.key",
    		"--request-timeout=2m",
    		"--storage-backend=etcd3",
    		"--service-cluster-ip-range=192.168.128.0/17",
    		"--lease-reuse-duration-seconds=100",
    	}
    	fs.Parse(args)
    
    	// This is a snapshot of expected options parsed by args.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/log/config_test.go

    	}
    
    	// construct a log string that contains 128 characters
    	line := ""
    	for i := 0; i < 8; i++ {
    		line += "0123456789ABCDEF" // 16 characters
    	}
    
    	// make sure that all log outputs is much larger than 2M
    	wg := sync.WaitGroup{}
    	for i := 0; i < 4; i++ {
    		wg.Add(1)
    		go func() {
    			for ii := 0; ii < 1024; ii++ {
    				for j := 0; j < 8; j++ {
    					log.Println(line)
    				}
    			}
    			wg.Done()
    		}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expectRuntimeCost:   6,
    		},
    		{
    			name:                "equality_transitivity",
    			expr:                `quantity("2M") == quantity("0.002G") && quantity("2000k") == quantity("2M") && quantity("0.002G") == quantity("2000k")`,
    			expectEstimatedCost: checker.CostEstimate{Min: 3, Max: 5534023222112865798},
    			expectRuntimeCost:   9,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	}
    	if f.Timeout != nil {
    		flags.StringVar(f.Timeout, flagTimeout, *f.Timeout, "The length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests.")
    	}
    	if f.DisableCompression != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    func (out *Nat) resetFor(m *Modulus) *Nat {
    	return out.reset(len(m.nat.limbs))
    }
    
    // maybeSubtractModulus computes x -= m if and only if x >= m or if "always" is yes.
    //
    // It can be used to reduce modulo m a value up to 2m - 1, which is a common
    // range for results computed by higher level operations.
    //
    // always is usually a carry that indicates that the operation that produced x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top