Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for bucketOf (0.18 sec)

  1. src/reflect/value.go

    	elem        unsafe.Pointer
    	t           unsafe.Pointer
    	h           unsafe.Pointer
    	buckets     unsafe.Pointer
    	bptr        unsafe.Pointer
    	overflow    *[]unsafe.Pointer
    	oldoverflow *[]unsafe.Pointer
    	startBucket uintptr
    	offset      uint8
    	wrapped     bool
    	B           uint8
    	i           uint8
    	bucket      uintptr
    	checkBucket uintptr
    }
    
    func (h *hiter) initialized() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      local node_binary_tar_urls=()
    
      for region in "${PREFERRED_REGION[@]}"; do
        suffix="-${region}"
        local staging_bucket="gs://kubernetes-staging-${project_hash}${suffix}"
    
        # Ensure the buckets are created
        if ! gsutil ls "${staging_bucket}" >/dev/null; then
          echo "Creating ${staging_bucket}"
          gsutil mb -l "${region}" -p "${PROJECT}" "${staging_bucket}"
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	val := ValueOf(&tmp).Elem()
    	allocs = testing.AllocsPerRun(100, func() {
    		mv := MakeMapWithSize(TypeOf(map[int]int{}), size)
    		// Only adding half of the capacity to not trigger re-allocations due too many overloaded buckets.
    		for i := 0; i < size/2; i++ {
    			val.SetInt(int64(i))
    			mv.SetMapIndex(val, val)
    		}
    	})
    	if allocs > 10 {
    		t.Errorf("allocs per map assignment: want at most 10 got %f", allocs)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top