Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for elfnote (0.22 sec)

  1. src/cmd/internal/buildid/note.go

    			if err != nil {
    				return nil, fmt.Errorf("read desc failed: %v", err)
    			}
    			if name == string(noteName) && typ == noteType {
    				return desc, nil
    			}
    		}
    	}
    	return nil, nil
    }
    
    var elfGoNote = []byte("Go\x00\x00")
    var elfGNUNote = []byte("GNU\x00")
    
    // The Go build ID is stored in a note described by an ELF PT_NOTE prog
    // header. The caller has already opened filename, to get f, and read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. doc/next/9-todo.md

    -->
    
    <!-- Items that don't need to be mentioned in Go 1.23 release notes but are picked up by relnote todo.
    
    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/runtime/mgcstack.go

    type stackWorkBufHdr struct {
    	_ sys.NotInHeap
    	workbufhdr
    	next *stackWorkBuf // linked list of workbufs
    	// Note: we could theoretically repurpose lfnode.next as this next pointer.
    	// It would save 1 word, but that probably isn't worth busting open
    	// the lfnode API.
    }
    
    // Buffer for stack objects found on a goroutine stack.
    // Must be smaller than or equal to workbuf.
    type stackObjectBuf struct {
    	_ sys.NotInHeap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    }
    
    const PreemptMSupported = preemptMSupported
    
    type LFNode struct {
    	Next    uint64
    	Pushcnt uintptr
    }
    
    func LFStackPush(head *uint64, node *LFNode) {
    	(*lfstack)(head).push((*lfnode)(unsafe.Pointer(node)))
    }
    
    func LFStackPop(head *uint64) *LFNode {
    	return (*LFNode)((*lfstack)(head).pop())
    }
    func LFNodeValidate(node *LFNode) {
    	lfnodeValidate((*lfnode)(unsafe.Pointer(node)))
    }
    
    func Netpoll(delta int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/modules.txt

    golang.org/x/arch/arm/armasm
    golang.org/x/arch/arm64/arm64asm
    golang.org/x/arch/ppc64/ppc64asm
    golang.org/x/arch/x86/x86asm
    # golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    golang.org/x/mod/module
    golang.org/x/mod/semver
    golang.org/x/mod/sumdb
    golang.org/x/mod/sumdb/dirhash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/runtime/mspanset.go

    }
    
    const (
    	spanSetBlockEntries = 512 // 4KB on 64-bit
    	spanSetInitSpineCap = 256 // Enough for 1GB heap on 64-bit
    )
    
    type spanSetBlock struct {
    	// Free spanSetBlocks are managed via a lock-free stack.
    	lfnode
    
    	// popped is the number of pop operations that have occurred on
    	// this block. This number is used to help determine when a block
    	// may be safely recycled.
    	popped atomic.Uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/build/relnote/links.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package relnote
    
    import (
    	"fmt"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/mod/module"
    	md "rsc.io/markdown"
    )
    
    // addSymbolLinks looks for text like [Buffer] and
    // [math.Max] and replaces them with links to standard library
    // symbols and packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/all.css

        border-radius: 10px;
        font-size: 1rem;
        border: 0;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4)
    }
    
    #scroll-to-top:hover {
        color: #de7d40
    }
    
    @media screen {
        .endnote-ref {
            display: none
        }
    }
    
    @media print {
        .col-md-9, .col-lg-7, .col-xl-8 {
            max-width: 83.2%;
            flex: 0 0 83.2%
        }
    
        .col-12 {
            max-width: 100%;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. src/runtime/mgcwork.go

    // Internally, the GC work pool is kept in arrays in work buffers.
    // The gcWork interface caches a work buffer until full (or empty) to
    // avoid contending on the global work buffer lists.
    
    type workbufhdr struct {
    	node lfnode // must be first
    	nobj int
    }
    
    type workbuf struct {
    	_ sys.NotInHeap
    	workbufhdr
    	// account for the above fields
    	obj [(_WorkbufSize - unsafe.Sizeof(workbufhdr{})) / goarch.PtrSize]uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. 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)
Back to top