Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for runtimePlatform (0.18 sec)

  1. src/debug/buildinfo/buildinfo_test.go

    		{"linux", "amd64"},
    		{"windows", "386"},
    		{"windows", "amd64"},
    	}
    	runtimePlatform := platform{runtime.GOOS, runtime.GOARCH}
    	haveRuntimePlatform := false
    	for _, p := range platforms {
    		if p == runtimePlatform {
    			haveRuntimePlatform = true
    			break
    		}
    	}
    	if !haveRuntimePlatform {
    		platforms = append(platforms, runtimePlatform)
    	}
    
    	buildModes := []string{"pie", "exe"}
    	if testenv.HasCGO() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def conf = conf()
            def targetPlatform = Attribute.of('targetPlatform', Platform)
            def runtimePlatform = Attribute.of('runtimePlatform', Platform)
    
            when:
            conf.getAttributes().attribute(targetPlatform, Platform.JAVA6)
            conf.getAttributes().attribute(runtimePlatform, Platform.JAVA7)
    
            then:
            conf.attributes.getAttribute(targetPlatform) == Platform.JAVA6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // A platform variant without 'runtime-api-info' artifact such that distributions can depend on each other
    consumablePlatformVariant("runtimePlatform", listOf(coreRuntimeOnly, pluginsRuntimeOnly))
    
    // A lifecycle task to build all the distribution zips for publishing
    val buildDists by tasks.registering
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top