Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,135 for buildID (0.12 sec)

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

    		out.Write32(0)
    	}
    
    	return int(sh.Size)
    }
    
    func addbuildinfo(val string) {
    	if val == "gobuildid" {
    		buildID := *flagBuildid
    		if buildID == "" {
    			Exitf("-B gobuildid requires a Go build ID supplied via -buildid")
    		}
    
    		hashedBuildID := notsha256.Sum256([]byte(buildID))
    		buildinfo = hashedBuildID[:20]
    
    		return
    	}
    
    	if !strings.HasPrefix(val, "0x") {
    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/runtime/pprof/vminfo_darwin_test.go

    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    func TestVMInfo(t *testing.T) {
    	var begin, end, offset uint64
    	var filename string
    	first := true
    	machVMInfo(func(lo, hi, off uint64, file, buildID string) {
    		if first {
    			begin = lo
    			end = hi
    			offset = off
    			filename = file
    		}
    		// May see multiple text segments if rosetta is used for running
    		// the go toolchain itself.
    		first = false
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/main.go

    	flag.Var(&flagW, "w", "disable DWARF generation")
    }
    
    // Flags used by the linker. The exported flags are used by the architecture-specific packages.
    var (
    	flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
    	flagBindNow = flag.Bool("bindnow", false, "mark a dynamically linked ELF object for immediate function binding")
    
    	flagOutfile    = flag.String("o", "", "write output to `file`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		for i, loc := range s.Location {
    			s.locationIDX[i] = loc.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: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            when using the daemon, especially when using small heap and building a large project.
            Due to a bug (https://builds.gradle.org/viewLog.html?buildId=284033&tab=buildResultsDiv&buildTypeId=Gradle_Master_Performance_PerformanceExperimentsLinux) no instances of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        get() = environmentVariable(BUILD_CONFIGURATION_ID)
    
    
    val Project.buildFinalRelease: Provider<String>
        get() = gradleProperty(BUILD_FINAL_RELEASE)
    
    
    val Project.buildId: Provider<String>
        get() = environmentVariable(BUILD_ID)
    
    
    val Project.buildRcNumber: Provider<String>
        get() = gradleProperty(BUILD_RC_NUMBER)
    
    
    val Project.buildRunningOnCi: Provider<Boolean>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/cmd/pprof/pprof.go

    }
    
    func (f *file) Name() string {
    	return f.name
    }
    
    func (f *file) ObjAddr(addr uint64) (uint64, error) {
    	return addr - f.offset, nil
    }
    
    func (f *file) BuildID() string {
    	// No support for build ID.
    	return ""
    }
    
    func (f *file) SourceLine(addr uint64) ([]driver.Frame, error) {
    	if f.pcln == nil {
    		pcln, err := f.file.PCLineTable()
    		if err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/plugin_test.go

    func TestBuildID(t *testing.T) {
    	// check that plugin has build ID.
    	globalSkip(t)
    	b := goCmd(t, "tool", "buildid", "plugin1.so")
    	if len(b) == 0 {
    		t.Errorf("build id not found")
    	}
    }
    
    func TestRunHost(t *testing.T) {
    	globalSkip(t)
    	run(t, "./host.exe")
    }
    
    func TestUniqueTypesAndItabs(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "./iface_a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            val performanceTest = project.tasks.register(name, PerformanceTest::class) {
                group = "verification"
                buildId = System.getenv("BUILD_ID") ?: "localBuild-${ofPattern("yyyyMMddHHmmss").withZone(systemDefault()).format(now())}"
                reportDir = project.layout.buildDirectory.file("${this.name}/${Config.performanceTestReportsDir}").get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/list/list.go

            ForTest        string   // package is only for use in named test
            Export         string   // file containing export data (when using -export)
            BuildID        string   // build ID of the compiled package (when using -export)
            Module         *Module  // info about package's containing module, if any (can be nil)
            Match          []string // command-line patterns matching this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top