Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 1024x1024 (0.19 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    	imageFsAvailableBytes := uint64(1024 * 1024)
    	imageFsCapacityBytes := uint64(1024 * 1024 * 2)
    	nodeFsAvailableBytes := uint64(1024)
    	nodeFsCapacityBytes := uint64(1024 * 2)
    	imageFsInodesFree := uint64(1024)
    	imageFsInodes := uint64(1024 * 1024)
    	nodeFsInodesFree := uint64(1024)
    	nodeFsInodes := uint64(1024 * 1024)
    	containerFsAvailableBytes := uint64(1024 * 1024 * 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    							v1.ResourceMemory: *resource.NewQuantity(
    								int64(1024*1024/2),
    								resource.BinarySI),
    						},
    					},
    					{
    						Name: "container2",
    						Usage: v1.ResourceList{
    							v1.ResourceCPU: *resource.NewMilliQuantity(
    								int64(cpu/2),
    								resource.DecimalSI),
    							v1.ResourceMemory: *resource.NewQuantity(
    								int64(1024*1024/2),
    								resource.BinarySI),
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	// Set SSL to on to do encryption tests
    	globalIsTLS = true
    	defer func() { globalIsTLS = false }()
    
    	var (
    		oneMiB        int64 = 1024 * 1024
    		key32Bytes          = generateBytesData(32 * humanize.Byte)
    		key32BytesMd5       = md5.Sum(key32Bytes)
    		metaWithSSEC        = map[string]string{
    			xhttp.AmzServerSideEncryptionCustomerAlgorithm: xhttp.AmzEncryptionAES,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	"k8s.io/kubernetes/pkg/kubelet/cm/memorymanager/state"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager/bitmask"
    )
    
    const (
    	mb           = 1024 * 1024
    	gb           = mb * 1024
    	pageSize1Gb  = 1048576
    	hugepages1Gi = v1.ResourceName(v1.ResourceHugePagesPrefix + "1Gi")
    )
    
    var (
    	containerRestartPolicyAlways = v1.ContainerRestartPolicyAlways
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/56020")
    	}
    	const testString = "The test string aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
    	const nRandBytes = 1024 * 1024
    	ts := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		if req.Method == "HEAD" {
    			if g := req.Header.Get("Accept-Encoding"); g != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    	schedutil "k8s.io/kubernetes/pkg/scheduler/util"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	testSchedulerName       = "test-scheduler"
    	mb                int64 = 1024 * 1024
    )
    
    var (
    	emptySnapshot         = internalcache.NewEmptySnapshot()
    	podTopologySpreadFunc = frameworkruntime.FactoryAdapter(feature.Features{}, podtopologyspread.New)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

                  override fun contentLength(): Long = contentLength
    
                  override fun writeTo(sink: BufferedSink) {
                    val buffer = ByteArray(1024 * 1024)
                    var bytesWritten: Long = 0
                    while (bytesWritten < contentLength) {
                      val byteCount = Math.min(buffer.size.toLong(), contentLength - bytesWritten).toInt()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top