Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,418 for buildID (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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