Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 172 for targetPlatforms (0.27 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

                }
                platform_x64 {
                    architecture 'x86-64'
                }
            }
            components {
                main {
                    targetPlatform 'platform_x86'
                }
                hello {
                    targetPlatform 'platform_x86'
                }
            }
        }
    """
            run "mainExecutable"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

            binary.name >> name
            binary.names >> Names.of(name)
            binary.module >> project.objects.property(String)
            binary.targetMachine >> Stub(TargetMachine)
            binary.targetPlatform >> Stub(SwiftPlatform)
            binary.sourceCompatibility >> project.objects.property(SwiftVersion)
    
            when:
            project.pluginManager.apply(SwiftBasePlugin)
            project.components.add(binary)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html#org.gradle.language.swift.tasks.SwiftCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                // HACK to install the executable from a repository
                def binary = application.developmentBinary
                task install(type: InstallExecutable) {
                    targetPlatform.set(binary.map { it.compileTask.get().targetPlatform.get() })
                    toolChain.set(binary.map { it.toolChain })
                    installDirectory = layout.projectDirectory.dir("install")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        def "can have two attributes with the same type but different names"() {
            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:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                DefaultNativePlatform targetPlatform = new DefaultNativePlatform("default");
                installDir = install.getVisualStudioDir();
                version = install.getVersion();
                org.gradle.nativeplatform.toolchain.internal.msvcpp.VisualCpp visualCpp = install.getVisualCpp().forPlatform(targetPlatform);
                cppCompiler = visualCpp.getCompilerExecutable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

        fun createPackageSymbolIfOneExists(packageFqName: FqName): KaFirPackageSymbol? {
            val exists = packageProvider.doesPackageExist(packageFqName, analysisSession.targetPlatform)
            if (!exists) {
                return null
            }
            return createPackageSymbol(packageFqName)
        }
    
        fun createPackageSymbol(packageFqName: FqName): KaFirPackageSymbol {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/main/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement" value="do not insert"/>
    <setting id="org.eclipse.jdt.core.compiler.codegen.targetPlatform" value="1.8"/>
    <setting id="org.eclipse.jdt.core.formatter.brace_position_for_switch" value="end_of_line"/>
    <setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces" value="do not insert"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Sep 17 06:39:42 UTC 2017
    - 30.5K bytes
    - Viewed (0)
Back to top