Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for elfnote (0.46 sec)

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

    	n := int(ELF_NOTE_BUILDINFO_NAMESZ + Rnd(int64(len(buildinfo)), 4))
    	return elfnote(sh, startva, resoff, n)
    }
    
    func elfgobuildid(sh *ElfShdr, startva uint64, resoff uint64) int {
    	n := len(ELF_NOTE_GO_NAME) + int(Rnd(int64(len(*flagBuildid)), 4))
    	return elfnote(sh, startva, resoff, n)
    }
    
    func elfwritebuildinfo(out *OutBuf) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	if goos == "darwin" || ((goos == "linux" || goos == "windows") && goarch == "amd64") {
    		t.registerTest("API release note check", &goTest{variant: "check", pkg: "cmd/relnote", testFlags: []string{"-check"}})
    		t.registerTest("API check", &goTest{variant: "check", pkg: "cmd/api", timeout: 5 * time.Minute, testFlags: []string{"-check"}})
    	}
    
    	// Runtime CPU tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // gcBgMarkWorker goroutine.
    type gcBgMarkWorkerNode struct {
    	// Unused workers are managed in a lock-free stack. This field must be first.
    	node lfnode
    
    	// The g of this worker.
    	gp guintptr
    
    	// Release this m on park. This is used to communicate with the unlock
    	// function, which cannot access the G's stack. It is unused outside of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top