Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for moduledata (0.26 sec)

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

    	}
    }
    
    // fixZeroSizedSymbols gives a few special symbols with zero size some space.
    func fixZeroSizedSymbols(ctxt *Link) {
    	// The values in moduledata are filled out by relocations
    	// pointing to the addresses of these special symbols.
    	// Typically these symbols have no size and are not laid
    	// out with their matching section.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	// packages in the program (excluding those added at runtime
    	// by package plugin). Run through the modules in dependency
    	// order (the order they are initialized by the dynamic
    	// loader, i.e. they are added to the moduledata linked list).
    	for m := &firstmoduledata; m != nil; m = m.next {
    		doInit(m.inittasks)
    	}
    
    	// Disable init tracing after main init done to avoid overhead
    	// of collecting statistics in malloc and newproc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	GoFiles      []string // absolute paths to package source files
    	NonGoFiles   []string // absolute paths to package non-Go files
    	IgnoredFiles []string // absolute paths to ignored source files
    
    	ModulePath    string            // module path (may be "" on module error)
    	ModuleVersion string            // module version (may be "" on main module or module error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //		Use       []Use
    //		Replace   []Replace
    //	}
    //
    //	type Godebug struct {
    //		Key   string
    //		Value string
    //	}
    //
    //	type Use struct {
    //		DiskPath   string
    //		ModulePath string
    //	}
    //
    //	type Replace struct {
    //		Old Module
    //		New Module
    //	}
    //
    //	type Module struct {
    //		Path    string
    //		Version string
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top