Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,418 for buildID (0.32 sec)

  1. guava/module.json

        "version": "${pom.version}",
        "attributes": {
          "org.gradle.status": "${module.status}"
        }
      },
      "createdBy": {
        "maven": {
          "version": "${maven.version}",
          "buildId": "${maven.build.version}"
        }
      },
      "variants": [
        {
          "name": "${variant.jvmEnvironmentVariantName}ApiElements",
          "attributes": {
            "org.gradle.category": "library",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 18:11:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/profile/profile.go

    }
    
    // Mapping corresponds to Profile.Mapping
    type Mapping struct {
    	ID              uint64
    	Start           uint64
    	Limit           uint64
    	Offset          uint64
    	File            string
    	BuildID         string
    	HasFunctions    bool
    	HasFilenames    bool
    	HasLineNumbers  bool
    	HasInlineFrames bool
    
    	fileX    int64
    	buildIDX int64
    }
    
    // Location corresponds to Profile.Location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    }
    
    func parseMappingEntry(l string) (*Mapping, error) {
    	var start, end, perm, file, offset, buildID string
    	if me := procMapsRE.FindStringSubmatch(l); len(me) == 6 {
    		start, end, perm, offset, file = me[1], me[2], me[3], me[4], me[5]
    	} else if me := briefMapsRE.FindStringSubmatch(l); len(me) == 7 {
    		start, end, perm, file, offset, buildID = me[1], me[2], me[3], me[4], me[5], me[6]
    	} else {
    		return nil, errUnrecognized
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top