Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for pages64 (0.45 sec)

  1. src/runtime/mpallocbits.go

    }
    
    // free frees the range [i, i+n) of pages in the pallocBits.
    func (b *pallocBits) free(i, n uint) {
    	(*pageBits)(b).clearRange(i, n)
    }
    
    // freeAll frees all the bits of b.
    func (b *pallocBits) freeAll() {
    	(*pageBits)(b).clearAll()
    }
    
    // pages64 returns a 64-bit bitmap representing a block of 64 pages aligned
    // to 64 pages. The returned block of pages is the one containing the i'th
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc.go

    	// by huge pages.
    	chunkHugePages bool
    
    	// Whether or not this struct is being used in tests.
    	test bool
    }
    
    func (p *pageAlloc) init(mheapLock *mutex, sysStat *sysMemStat, test bool) {
    	if levelLogPages[0] > logMaxPackedValue {
    		// We can't represent 1<<levelLogPages[0] pages, the maximum number
    		// of pages we need to represent at the root level, in a summary, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. src/runtime/mgcsweep.go

    				lock(&mheap_.lock)
    
    				// Get released stats.
    				releasedBg := mheap_.pages.scav.releasedBg.Load()
    				releasedEager := mheap_.pages.scav.releasedEager.Load()
    
    				// Print the line.
    				printScavTrace(releasedBg, releasedEager, false)
    
    				// Update the stats.
    				mheap_.pages.scav.releasedBg.Add(-releasedBg)
    				mheap_.pages.scav.releasedEager.Add(-releasedEager)
    				unlock(&mheap_.lock)
    			})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/gc.go

    	// address space (which may or may not be backed by physical pages)
    	// whereas HeapReleased is an estimate of the amount of bytes returned
    	// to the OS. Their difference then roughly corresponds to the amount
    	// of virtual address space that is backed by physical pages.
    	//
    	// heapBacked also subtracts out maxPageCache bytes of memory because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

        ```
    
    Now you can go to <a href="http://127.0.0.1:8008" class="external-link" target="_blank">http://127.0.0.1:8008</a> and see your changes live.
    
    You will see that every language has all the pages. But some pages are not translated and have an info box at the top, about the missing translation.
    
    Now let's say that you want to add a translation for the section [Features](features.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. docs/fr/docs/contributing.md

    Si vous regardez le site web FastAPI docs, vous verrez que chaque langue a toutes les pages. Mais certaines pages ne sont pas traduites et sont accompagnées d'une notification concernant la traduction manquante.
    
    Mais si vous le gérez localement de cette manière, vous ne verrez que les pages déjà traduites.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pe.go

    	}
    
    	b.entries = append(b.entries, e)
    	rt.blocks[page] = b
    }
    
    func (rt *peBaseRelocTable) write(ctxt *Link) {
    	out := ctxt.Out
    
    	// sort the pages array
    	sort.Sort(rt.pages)
    
    	for _, p := range rt.pages {
    		b := rt.blocks[p]
    		const sizeOfPEbaseRelocBlock = 8 // 2 * sizeof(uint32)
    		blockSize := uint32(sizeOfPEbaseRelocBlock + len(b.entries)*2)
    		out.Write32(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  8. pkg/collateral/control.go

    	// ManPageInfo provides extra information necessary when emitting man pages.
    	ManPageInfo doc.GenManHeader
    
    	// Predicates to use to filter environment variables and metrics. If not set, all items will be selected.
    	Predicates Predicates
    }
    
    // EmitCollateral produces a set of collateral files for a CLI command. You can
    // select to emit markdown to describe a command's function, man pages, YAML
    // descriptions, and bash completion files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    		for i := range slow.BySize {
    			slow.BySize[i].Mallocs = bySize[i].Mallocs
    			slow.BySize[i].Frees = bySize[i].Frees
    		}
    
    		for i := mheap_.pages.start; i < mheap_.pages.end; i++ {
    			chunk := mheap_.pages.tryChunkOf(i)
    			if chunk == nil {
    				continue
    			}
    			pg := chunk.scavenged.popcntRange(0, pallocChunkPages)
    			slow.HeapReleased += uint64(pg) * pageSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/templates/productpage.html

                        <th scope="col" class="whitespace-nowrap px-2 py-3.5 text-left text-sm font-semibold text-gray-900">Pages</th>
                        <th scope="col" class="whitespace-nowrap px-2 py-3.5 text-left text-sm font-semibold text-gray-900">Type</th>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top