Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsDarwin (0.08 sec)

  1. src/cmd/link/internal/ld/lib.go

    		if ctxt.IsDarwin() && ctxt.IsAMD64() {
    			const noPieWarning = "ld: warning: -no_pie is deprecated when targeting new OS versions\n"
    			if i := bytes.Index(out, []byte(noPieWarning)); i >= 0 {
    				// swallow -no_pie deprecation warning, issue 54482
    				out = append(out[:i], out[i+len(noPieWarning):]...)
    			}
    		}
    		if ctxt.IsDarwin() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	//
    	// This ratio is used as part of multiplicative factor to help the scavenger account
    	// for the additional costs of using scavenged memory in its pacing.
    	scavengeCostRatio = 0.7 * (goos.IsDarwin + goos.IsIos)
    
    	// scavChunkHiOcFrac indicates the fraction of pages that need to be allocated
    	// in the chunk in a single GC cycle for it to be considered high density.
    	scavChunkHiOccFrac  = 0.96875
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	type compressedSect struct {
    		index      int
    		compressed []byte
    		syms       []loader.Sym
    	}
    
    	supported := ctxt.IsELF || ctxt.IsWindows() || ctxt.IsDarwin()
    	if !ctxt.compressDWARF || !supported || ctxt.IsExternal() {
    		return
    	}
    
    	var compressedCount int
    	resChannel := make(chan compressedSect)
    	for i := range dwarfp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top