Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,162 for buildID (0.49 sec)

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

    const buildIDSeparator = "/"
    
    // actionID returns the action ID half of a build ID.
    func actionID(buildID string) string {
    	i := strings.Index(buildID, buildIDSeparator)
    	if i < 0 {
    		return buildID
    	}
    	return buildID[:i]
    }
    
    // contentID returns the content ID half of a build ID.
    func contentID(buildID string) string {
    	return buildID[strings.LastIndex(buildID, buildIDSeparator)+1:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    			var fileNames []string
    			if m.BuildID != "" {
    				fileNames = []string{filepath.Join(path, m.BuildID, baseName)}
    				if matches, err := filepath.Glob(filepath.Join(path, m.BuildID, "*")); err == nil {
    					fileNames = append(fileNames, matches...)
    				}
    				fileNames = append(fileNames, filepath.Join(path, noVolumeFile, m.BuildID)) // perf path format
    				// Llvm buildid protocol: the first two characters of the build id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataJsonWriter.java

        @Nullable
        private final String buildId;
        private final ChecksumService checksumService;
    
        public ModuleMetadataJsonWriter(
            JsonWriter jsonWriter,
            ModuleMetadataSpec metadata,
            @Nullable String buildId,
            ChecksumService checksumService
        ) {
            super(jsonWriter);
            this.metadata = metadata;
            this.buildId = buildId;
            this.checksumService = checksumService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gc.go

    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    		// The build ID matters because it affects the overall hash
    		// in the plugin's pseudo-import path returned below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	"   PPROF_BINARY_PATH  Search path for local binary files\n" +
    	"                      default: $HOME/pprof/binaries\n" +
    	"                      searches $buildid/$name, $buildid/*, $path/$buildid,\n" +
    	"                      ${buildid:0:2}/${buildid:2}.debug, $name, $path,\n" +
    	"                      ${name}.debug, $dir/.debug/${name}.debug,\n" +
    	"                      usr/lib/debug/$dir/${name}.debug\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. src/runtime/pprof/proto_test.go

    		}
    		var mappings []*profile.Mapping
    		id := uint64(1)
    		parseProcSelfMaps(mmap, func(lo, hi, offset uint64, file, buildID string) {
    			mappings = append(mappings, &profile.Mapping{
    				ID:      id,
    				Start:   lo,
    				Limit:   hi,
    				Offset:  offset,
    				File:    file,
    				BuildID: buildID,
    			})
    			id++
    		})
    		if len(mappings) < 2 {
    			// It is possible for a binary to only have 1 executable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    			continue
    		}
    		if m.BuildID == "" {
    			if u, err := url.Parse(m.File); err == nil && u.IsAbs() && strings.Contains(strings.ToLower(u.Scheme), "http") {
    				// Skip mappings pointing to a source URL
    				continue
    			}
    		}
    
    		name := filepath.Base(m.File)
    		if m.BuildID != "" {
    			name += fmt.Sprintf(" (build ID %s)", m.BuildID)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/runtime/pprof/proto.go

    		// enter the mappings into b.mem in the first place.
    
    		buildID, _ := elfBuildID(file)
    		addMapping(lo, hi, offset, file, buildID)
    	}
    }
    
    func (b *profileBuilder) addMapping(lo, hi, offset uint64, file, buildID string) {
    	b.addMappingEntry(lo, hi, offset, file, buildID, false)
    }
    
    func (b *profileBuilder) addMappingEntry(lo, hi, offset uint64, file, buildID string, fake bool) {
    	b.mem = append(b.mem, memMap{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

                new ScenarioBuildResultData(
                    scenarioName: it.name,
                    scenarioClass: it.className,
                    testProject: testProject,
                    webUrl: TC_URL + buildId,
                    teamCityBuildId: buildId,
                    agentName: agentName,
                    status: (it.errors || it.failures) ? "FAILURE" : "SUCCESS",
                    testFailure: collectFailures(it))
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return &fileNM{file: file{
    			b:       b,
    			name:    name,
    			buildID: buildID,
    			m:       &elfMapping{start: start, limit: limit, offset: offset, kernelOffset: kernelOffset},
    		}}, nil
    	}
    	return &fileAddr2Line{file: file{
    		b:       b,
    		name:    name,
    		buildID: buildID,
    		m:       &elfMapping{start: start, limit: limit, offset: offset, kernelOffset: kernelOffset},
    	}}, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top