Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,162 for buildID (0.2 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

            parser.parse(resource('''
        {
            "formatVersion": "1.1",
            "component": { "url": "elsewhere", "group": "g", "module": "m", "version": "v" },
            "builtBy": { "gradle": { "version": "123", "buildId": "abc" } }
        }
    '''), metadata)
    
            then:
            1 * metadata.getMutableVariants()
            0 * _
        }
    
        def "parses component metadata attributes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

            when:
            succeeds 'publish'
    
            then:
            def module = ivyRepo.module('group', 'root', '1.0')
            module.assertPublished()
            module.parsedModuleMetadata.createdBy.buildId != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
Back to top