Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 2M (0.03 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	KubernetesAPICall *metav1.Duration `json:"kubernetesAPICall,omitempty"`
    
    	// EtcdAPICall is the amount of time to wait for the kubeadm etcd client to complete a request to
    	// the etcd cluster.
    	// Default: 2m
    	// +optional
    	EtcdAPICall *metav1.Duration `json:"etcdAPICall,omitempty"`
    
    	// TLSBootstrap is the amount of time to wait for the kubelet to complete TLS bootstrap
    	// for a joining node.
    	// Default: 5m
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    00000350  fa 8a 9e 4e d9 7a b3 a5  45 7a 96 16 03 03 00 20  |...N.z..Ez..... |
    00000360  6f a0 f0 cf 0b 2b c2 d1  36 d8 64 2b 72 86 7b ab  |o....+..6.d+r.{.|
    00000370  c7 86 5d c3 67 ec d6 c0  32 4d b8 1f fa d9 3a af  |..].g...2M....:.|
    >>> Flow 10 (server to client)
    00000000  14 03 03 00 11 b4 79 7e  62 ea ea f7 37 1d a4 65  |......y~b...7..e|
    00000010  9d 02 95 b8 4a 6c 16 03  03 00 20 6a 45 d1 d0 ff  |....Jl.... jE...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top