Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pages64 (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		}
    		estimatedGetCalls := uint64(1)
    		if pageSize != 0 {
    			// We expect that kube-apiserver will be increasing page sizes
    			// if not full pages are received, so we should see significantly less
    			// than 1000 pages (which would be result of talking to etcd with page size
    			// copied from pred.Limit).
    			// The expected number of calls is n+1 where n is the smallest n so that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/qos_container_manager_linux.go

    		},
    	}
    
    	// update the qos level cgroup settings for cpu shares
    	if err := m.setCPUCgroupConfig(qosConfigs); err != nil {
    		return err
    	}
    
    	// update the qos level cgroup settings for huge pages (ensure they remain unbounded)
    	if err := m.setHugePagesConfig(qosConfigs); err != nil {
    		return err
    	}
    
    	// update the qos level cgrougs v2 settings of memory qos if feature enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. cmd/object_api_suite_test.go

    		}
    		if result.IsTruncated {
    			t.Errorf("%s: Expected IsTruncated to be `false`, but instead found it to be `%v`", instanceType, result.IsTruncated)
    		}
    	}
    
    	// check after paging occurs pages work.
    	for i := 6; i <= 10; i++ {
    		key := "obj" + strconv.Itoa(i)
    		_, err = obj.PutObject(context.Background(), "bucket", key, mustGetPutObjReader(t, bytes.NewBufferString(uploadContent), int64(len(uploadContent)), "", ""), opts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top