Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,162 for buildID (0.28 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/link/elf_test.go

    	goTool := testenv.GoToolPath(t)
    
    	cmd := testenv.Command(t, goTool, "build", "-o", outFile, "-ldflags", "-buildid 0x1234 -B gobuildid", goFile)
    	cmd.Dir = t.TempDir()
    
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    		t.Fatal(err)
    	}
    
    	expectedGoBuildID := notsha256.Sum256([]byte("0x1234"))
    
    	gnuBuildID, err := buildid.ReadELFNote(outFile, string(ld.ELF_NOTE_BUILDINFO_NAME), ld.ELF_NOTE_BUILDINFO_TAG)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

            writeTo(writer, publication, [publication])
            def buildIdContent = ""
            if (withBuildId) {
                buildIdContent = """,
          "buildId": "${buildId}\""""
            }
    
            then:
            writer.toString() == """{
      "formatVersion": "${GradleModuleMetadataParser.FORMAT_VERSION}",
      "component": {
        "group": "group",
        "module": "module",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	// go tool yet forms part of our command-line interface.
    	// TODO(adonovan): clarify the contract.
    
    	// Print the tool version so the build system can track changes.
    	// Formats:
    	//   $progname version devel ... buildID=...
    	//   $progname version go1.9.1
    	progname, err := os.Executable()
    	if err != nil {
    		return err
    	}
    	f, err := os.Open(progname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/internal/profile/encode.go

    		for _, l := range s.Location {
    			s.locationIDX = append(s.locationIDX, l.ID)
    		}
    	}
    
    	for _, m := range p.Mapping {
    		m.fileX = addString(strings, m.File)
    		m.buildIDX = addString(strings, m.BuildID)
    	}
    
    	for _, l := range p.Location {
    		for i, ln := range l.Line {
    			if ln.Function != nil {
    				l.Line[i].functionIDX = ln.Function.ID
    			} else {
    				l.Line[i].functionIDX = 0
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top