Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for InstalledToolChain (0.29 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

            }
        }
    
        private final List<String> args = new ArrayList<String>();
        private final AvailableToolChains.InstalledToolChain toolChain;
        private TestFile workingDir;
        private String projectName;
    
        public MSBuildExecutor(TestFile workingDir, AvailableToolChains.InstalledToolChain toolChain) {
            this.workingDir = workingDir;
            this.toolChain = toolChain;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/ExecutableFixture.groovy

    import org.gradle.test.fixtures.file.ExecOutput
    import org.gradle.test.fixtures.file.TestFile
    
    class ExecutableFixture extends NativeBinaryFixture {
        ExecutableFixture(TestFile file, AvailableToolChains.InstalledToolChain toolChain) {
            super(file, toolChain)
        }
    
        public ExecOutput exec(Object... args) {
            assertExists()
            return file.execute(args as List, toolChain.runtimeEnv)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/AssemblerWithCHelloWorldApp.groovy

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

    @Requires(UnitTestPreconditions.NotMacOs)
    abstract class AbstractInstalledToolChainIntegrationSpec extends AbstractIntegrationSpec implements HostPlatform {
        static AvailableToolChains.InstalledToolChain toolChain
        File initScript
    
        AvailableToolChains.InstalledToolChain getToolchainUnderTest() { toolChain }
    
        def setup() {
            initScript = file("init.gradle") << """
                allprojects { p ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/StaticLibraryFixture.groovy

     */
    
    package org.gradle.nativeplatform.fixtures
    
    import org.gradle.test.fixtures.file.TestFile
    
    class StaticLibraryFixture extends NativeBinaryFixture {
        StaticLibraryFixture(TestFile file, AvailableToolChains.InstalledToolChain toolChain) {
            super(file, toolChain)
        }
    
        List<String> listObjectFiles() {
            getBinaryInfo().listObjectFiles()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 982 bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

    import org.gradle.test.fixtures.file.TestFile.Snapshot
    
    class NativeBinaryFixture {
        final TestFile file
        protected final AvailableToolChains.InstalledToolChain toolChain
    
        NativeBinaryFixture(TestFile file, AvailableToolChains.InstalledToolChain toolChain) {
            this.file = file
            this.toolChain = toolChain
        }
    
        URI toURI() {
            file.toURI()
        }
    
        Snapshot snapshot() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftLibraryInitIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.nativeplatform.fixtures.AvailableToolChains
    import org.gradle.nativeplatform.fixtures.AvailableToolChains.InstalledToolChain
    import org.gradle.nativeplatform.fixtures.RequiresInstalledToolChain
    import org.gradle.nativeplatform.fixtures.SharedLibraryFixture
    import org.gradle.nativeplatform.fixtures.ToolChainRequirement
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/components/AbstractComponentReportIntegrationTest.groovy

    Note: currently not all plugins register their components, so some components may not be visible here."""
            return formatter.transform(raw).readLines().findAll { !it.isEmpty() }.join('\n')
        }
    
        AvailableToolChains.InstalledToolChain getToolChain() {
            return AvailableToolChains.defaultToolChain
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/SharedLibraryFixture.groovy

     */
    
    package org.gradle.nativeplatform.fixtures
    
    import org.gradle.test.fixtures.file.TestFile
    
    class SharedLibraryFixture extends NativeBinaryFixture {
        SharedLibraryFixture(TestFile file, AvailableToolChains.InstalledToolChain toolChain) {
            super(file, toolChain)
        }
    
        TestFile getLinkFile() {
            if (toolChain.visualCpp) {
                return file.withExtension(".lib")
            }
            return file
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestCppInteroperabilityIntegrationTest.groovy

                tasks(":greeter").debug.allToLink,
                tasks.debug.compile, tasks.test.allToInstall, ":xcTest", ":test")
        }
    
        @Override
        AvailableToolChains.InstalledToolChain getToolchainUnderTest() {
            return swiftToolChain
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top