Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for chunkOf (0.28 sec)

  1. src/runtime/mgc.go

    			gcController.globalsScan.Load()>>20, " MB globals, ",
    			work.maxprocs, " P")
    		if work.userForced {
    			print(" (forced)")
    		}
    		print("\n")
    		printunlock()
    	}
    
    	// Set any arena chunks that were deferred to fault.
    	lock(&userArenaState.lock)
    	faultList := userArenaState.fault
    	userArenaState.fault = nil
    	unlock(&userArenaState.lock)
    	for _, lc := range faultList {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    		return err
    	}
    	return nil
    }
    
    // restoreTransitionedObject for multipart object chunks the file stream from remote tier into the same number of parts
    // as in the xl.meta for this version and rehydrates the part.n into the fi.DataDir for this version as in the xl.meta
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // countAlloc returns the number of objects allocated in span s by
    // scanning the mark bitmap.
    func (s *mspan) countAlloc() int {
    	count := 0
    	bytes := divRoundUp(uintptr(s.nelems), 8)
    	// Iterate over each 8-byte chunk and count allocations
    	// with an intrinsic. Note that newMarkBits guarantees that
    	// gcmarkBits will be 8-byte aligned, so we don't have to
    	// worry about edge cases, irrelevant bits will simply be zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/reflect/type.go

    		return append(dst, prog...)
    	}
    
    	// Element is small with pointer mask; use as literal bits.
    	ptrs := typ.PtrBytes / goarch.PtrSize
    	mask := typ.GcSlice(0, (ptrs+7)/8)
    
    	// Emit 120-bit chunks of full bytes (max is 127 but we avoid using partial bytes).
    	for ; ptrs > 120; ptrs -= 120 {
    		dst = append(dst, 120)
    		dst = append(dst, mask[:15]...)
    		mask = mask[15:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top