Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 100 for 1024x1024 (0.26 sec)

  1. cmd/xl-storage_test.go

    		Recursive: false,
    		Immediate: false,
    	}); err != nil {
    		t.Fatal(err)
    	}
    
    	// 3) Streaming bitrot check on proper file
    	algo = HighwayHash256S
    	shardSize := int64(1024 * 1024)
    	shard := make([]byte, shardSize)
    	w := newStreamingBitrotWriter(storage, "", volName, fileName, size, algo, shardSize)
    	reader := bytes.NewReader(data)
    	for {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	debugScanConservative = false
    
    	// sweepMinHeapDistance is a lower bound on the heap distance
    	// (in bytes) reserved for concurrent sweeping between GC
    	// cycles.
    	sweepMinHeapDistance = 1024 * 1024
    )
    
    // heapObjectsCanMove always returns false in the current garbage collector.
    // It exists for go4.org/unsafe/assume-no-moving-gc, which is an
    // unfortunate idea that had an even more unfortunate implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. 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)
  4. src/net/http/httputil/reverseproxy_test.go

    	frontendClient := frontend.Client()
    
    	var wg sync.WaitGroup
    	for i := 0; i < 2; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			for j := 0; j < 10; j++ {
    				const reqLen = 6 * 1024 * 1024
    				req, _ := http.NewRequest("POST", frontend.URL, &io.LimitedReader{R: neverEnding('x'), N: reqLen})
    				req.ContentLength = reqLen
    				resp, _ := frontendClient.Transport.RoundTrip(req)
    				if resp != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K 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. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    					fakePods[i].ResourceVersion = strconv.Itoa(i)
    					if i%(tc.totalObjectNum/tc.expectObjectNum) == 0 {
    						fakePods[i].Spec.NodeName = "node-0"
    					}
    					data := make([]byte, 1024*2, 1024*2) // 2k labels
    					rand.Read(data)
    					fakePods[i].Spec.NodeSelector = map[string]string{
    						"key": string(data),
    					}
    				}
    
    				// build test cacher
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/apis/core/types.go

    	// More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types
    	// +optional
    	Type SecretType
    }
    
    // MaxSecretSize represents the max secret size.
    const MaxSecretSize = 1 * 1024 * 1024
    
    // SecretType defines the types of secrets
    type SecretType string
    
    // These are the valid values for SecretType
    const (
    	// SecretTypeOpaque is the default; arbitrary user-defined data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Type SecretType `json:"type,omitempty" protobuf:"bytes,3,opt,name=type,casttype=SecretType"`
    }
    
    const MaxSecretSize = 1 * 1024 * 1024
    
    type SecretType string
    
    const (
    	// SecretTypeOpaque is the default. Arbitrary user-defined data
    	SecretTypeOpaque SecretType = "Opaque"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top