Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,135 for buildID (0.33 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    }
    
    // GetBuildID returns the GNU build-ID for an ELF binary.
    //
    // If no build-ID was found but the binary was read without error, it returns
    // (nil, nil).
    func GetBuildID(f *elf.File) ([]byte, error) {
    	findBuildID := func(notes []elfNote) ([]byte, error) {
    		var buildID []byte
    		for _, note := range notes {
    			if note.Name == "GNU" && note.Type == noteTypeGNUBuildID {
    				if buildID == nil {
    					buildID = note.Desc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	Name() string
    
    	// ObjAddr returns the objdump address corresponding to a runtime address.
    	ObjAddr(addr uint64) (uint64, error)
    
    	// BuildID returns the GNU build ID of the file, or an empty string.
    	BuildID() string
    
    	// SourceLine reports the source line information for a given
    	// address in the file. Due to inlining, the source line information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/internal/buildid/buildid_test.go

    // Copyright 2017 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 buildid
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"debug/elf"
    	"encoding/binary"
    	"internal/obscuretestdata"
    	"os"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    ### `gradle` value
    
    This value, nested in `createdBy`, must contain an object with the following values:
    
    - `version`: The version of Gradle. A string
    - `buildId`: The buildId for the Gradle instance. A string
    
    ### `variants` value
    
    This value must contain an array with zero or more elements. Each element must be an object with the following values:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	size = size - (size % mapsizeRounding)
    	key := mappingKey{
    		size:   size,
    		offset: m.Offset,
    	}
    
    	switch {
    	case m.BuildID != "":
    		key.buildIDOrFile = m.BuildID
    	case m.File != "":
    		key.buildIDOrFile = m.File
    	default:
    		// A mapping containing neither build ID nor file name is a fake mapping. A
    		// key with empty buildIDOrFile is used for fake mappings so that they are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    	tg.run("list", "-export", "-f", "{{.BuildID}}", "strings")
    	buildID := strings.TrimSpace(tg.stdout.String())
    	if buildID == "" {
    		t.Fatalf(".BuildID with -export was empty")
    	}
    
    	tg.run("tool", "buildid", file)
    	toolBuildID := strings.TrimSpace(tg.stdout.String())
    	if buildID != toolBuildID {
    		t.Fatalf(".BuildID with -export %q disagrees with 'go tool buildid' %q", buildID, toolBuildID)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gccgo.go

    		ldflags = str.StringList("-Wl,-(", ldflags, "-Wl,-)")
    	}
    
    	if root.buildID != "" {
    		// On systems that normally use gold or the GNU linker,
    		// use the --build-id option to write a GNU build ID note.
    		switch cfg.Goos {
    		case "android", "dragonfly", "linux", "netbsd":
    			ldflags = append(ldflags, fmt.Sprintf("-Wl,--build-id=0x%x", root.buildID))
    		}
    	}
    
    	var rLibPath string
    	if cfg.Goos == "aix" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    ### `gradle` value
    
    This value, nested in `createdBy`, must contain an object with the following values:
    
    - `version`: The version of Gradle. A string
    - `buildId`: optional. The buildId for the Gradle instance. A string
    
    ### `variants` value
    
    This value must contain an array with zero or more elements. Each element must be an object with the following values:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/link/doc.go

    	-aslr
    		Enable ASLR for buildmode=c-shared on windows (default true).
    	-bindnow
    		Mark a dynamically linked ELF object for immediate function binding (default false).
    	-buildid id
    		Record id as Go toolchain build id.
    	-buildmode mode
    		Set build mode (default exe).
    	-c
    		Dump call graphs.
    	-compressdwarf
    		Compress DWARF if possible (default true).
    	-cpuprofile file
    		Write CPU profile to file.
    	-d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

        def fingerprinterRegistry = Stub(FileCollectionFingerprinterRegistry) {
            getFingerprinter(_) >> fingerprinter
        }
        def executionHistoryStore = Mock(ExecutionHistoryStore)
        def buildId = UniqueId.generate()
    
        def actionListener = Stub(TaskActionListener)
        def outputChangeListener = Stub(OutputChangeListener)
        def changeDetector = new DefaultExecutionStateChangeDetector()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top