Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AssemblerWithCHelloWorldApp (0.34 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/AssemblerWithCHelloWorldApp.groovy

    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    import org.gradle.nativeplatform.fixtures.AvailableToolChains
    
    
    class AssemblerWithCHelloWorldApp extends MixedLanguageHelloWorldApp {
        AssemblerWithCHelloWorldApp(AvailableToolChains.InstalledToolChain toolChain) {
            super(toolChain)
        }
    
        @Override
        List<String> getPluginList() {
            return ['c', 'assembler']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.RequiresInstalledToolChain
    import org.gradle.nativeplatform.fixtures.ToolChainRequirement
    import org.gradle.nativeplatform.fixtures.app.AssemblerWithCHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.HelloWorldApp
    
    import static org.gradle.util.Matchers.containsText
    
    @RequiresInstalledToolChain(ToolChainRequirement.SUPPORTS_32_AND_64)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageParallelIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.AssemblerWithCHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.HelloWorldApp
    
    
    class AssemblyLanguageParallelIntegrationTest extends AbstractNativeSoftwareModelParallelIntegrationTest {
    
        @Override
        HelloWorldApp getApp() {
            return new AssemblerWithCHelloWorldApp(toolChain)
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top