Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for TiB (0.02 sec)

  1. src/runtime/mranges.go

    	// structure is meant to represent the Go heap. At worst, copying this
    	// would take ~160µs assuming a conservative copying rate of 25 GiB/s (the
    	// copy will almost never trigger a page fault) for a 1 TiB heap with 4 MiB
    	// arenas which is completely discontiguous. ~160µs is still a lot, but in
    	// practice most platforms have 64 MiB arenas (which cuts this by a factor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/runtime/mpagecache_test.go

    		},
    	}
    	// Disable these tests on iOS since we have a small address space.
    	// See #46860.
    	if PageAlloc64Bit != 0 && goos.IsIos == 0 {
    		const chunkIdxBigJump = 0x100000 // chunk index offset which translates to O(TiB)
    
    		// This test is similar to the one with the same name for
    		// pageAlloc.alloc and serves the same purpose.
    		// See mpagealloc_test.go for details.
    		sumsPerPhysPage := ChunkIdx(PhysPageSize / PallocSumBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  3. src/runtime/mpagealloc_test.go

    	// See #46860.
    	if PageAlloc64Bit != 0 && goos.IsIos == 0 {
    		tests["ExtremelyDiscontiguous"] = test{
    			chunks: []ChunkIdx{
    				BaseChunkIdx,
    				BaseChunkIdx + 0x100000, // constant translates to O(TiB)
    			},
    			inUse: []AddrRange{
    				MakeAddrRange(PageBase(BaseChunkIdx, 0), PageBase(BaseChunkIdx+1, 0)),
    				MakeAddrRange(PageBase(BaseChunkIdx+0x100000, 0), PageBase(BaseChunkIdx+0x100001, 0)),
    			},
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  4. src/runtime/debug/garbage.go

    // environment variable is set, in which case it provides the initial
    // setting. GOMEMLIMIT is a numeric value in bytes with an optional
    // unit suffix. The supported suffixes include B, KiB, MiB, GiB, and
    // TiB. These suffixes represent quantities of bytes as defined by
    // the IEC 80000-13 standard. That is, they are based on powers of
    // two: KiB means 2^10 bytes, MiB means 2^20 bytes, and so on.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/runtime/string_test.go

    		{"10Mi", 0, false},
    		{"100Gi", 0, false},
    		{"99Ti", 0, false},
    		{"22iB", 0, false},
    		{"B", 0, false},
    		{"iB", 0, false},
    		{"KiB", 0, false},
    		{"MiB", 0, false},
    		{"GiB", 0, false},
    		{"TiB", 0, false},
    		{"-120KiB", 0, false},
    		{"-891MiB", 0, false},
    		{"-704GiB", 0, false},
    		{"-42TiB", 0, false},
    		{"99999999999999999999KiB", 0, false},
    		{"99999999999999999MiB", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  6. docs/security/README.md

    #### Randomness
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  7. src/runtime/mspanset.go

    	// span in the heap were stored in this set, and each span were
    	// the minimum size (1 runtime page, 8 KiB), then roughly the
    	// smallest heap which would be unrepresentable is 32 TiB in size.
    	index atomicHeadTailIndex
    }
    
    const (
    	spanSetBlockEntries = 512 // 4KB on 64-bit
    	spanSetInitSpineCap = 256 // Enough for 1GB heap on 64-bit
    )
    
    type spanSetBlock struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/runtime/string.go

    //
    // s must match the following regular expression:
    //
    //	^[0-9]+(([KMGT]i)?B)?$
    //
    // In other words, an integer byte count with an optional unit
    // suffix. Acceptable suffixes include one of
    // - KiB, MiB, GiB, TiB which represent binary IEC/ISO 80000 units, or
    // - B, which just represents bytes.
    //
    // Returns an int64 because that's what its callers want and receive,
    // but the result is always non-negative.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/runtime/extern.go

    other languages, and memory held by the operating system on behalf of the Go
    program. GOMEMLIMIT is a numeric value in bytes with an optional unit suffix.
    The supported suffixes include B, KiB, MiB, GiB, and TiB. These suffixes
    represent quantities of bytes as defined by the IEC 80000-13 standard. That is,
    they are based on powers of two: KiB means 2^10 bytes, MiB means 2^20 bytes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top