Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for PlatformToolProvider (0.23 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/c/tasks/CCompileTest.groovy

    import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.nativeplatform.toolchain.internal.PreCompiledHeader
    import org.gradle.nativeplatform.toolchain.internal.compilespec.CCompileSpec
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivecpp/tasks/ObjectiveCppPreCompiledHeaderCompileTest.groovy

    import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.nativeplatform.toolchain.internal.compilespec.ObjectiveCppPCHCompileSpec
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    import org.gradle.util.TestUtil
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivecpp/tasks/ObjectiveCppCompileTest.groovy

    import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.nativeplatform.toolchain.internal.PreCompiledHeader
    import org.gradle.nativeplatform.toolchain.internal.compilespec.ObjectiveCppCompileSpec
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/ConfigurableComponentWithSharedLibrary.java

    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    
    /**
     * A configurable view of a component that produces a shared library. This should become public in some form.
     */
    public interface ConfigurableComponentWithSharedLibrary extends ComponentWithSharedLibrary, ComponentWithObjectFiles, ComponentWithOutputs, ComponentWithNames {
        PlatformToolProvider getPlatformToolProvider();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeToolChainInternal.java

         */
        @Override
        PlatformToolProvider select(NativePlatformInternal targetPlatform);
    
        /**
         * Locates the tools that can build binaries from the given source language that can run on the given target machine.
         */
        PlatformToolProvider select(NativeLanguage sourceLanguage, NativePlatformInternal targetMachine);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftBinaryTest.groovy

    import org.gradle.language.nativeplatform.internal.Names
    import org.gradle.language.swift.SwiftPlatform
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.util.TestUtil
    import org.gradle.util.UsesNativeServices
    import org.junit.Rule
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProviderTest.groovy

        def workerLeaseService = Mock(WorkerLeaseService)
        def metaDataProvider = Mock(CompilerMetaDataProvider)
        def targetPlatform = Mock(NativePlatformInternal)
        def platformToolProvider = new GccPlatformToolProvider(buildOperationExecuter, operatingSystem, toolSearchPath, toolRegistry, execActionFactory, namingSchemeFactory, true, workerLeaseService, metaDataProvider)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivec/tasks/ObjectiveCCompileTest.groovy

    import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.nativeplatform.toolchain.internal.PreCompiledHeader
    import org.gradle.nativeplatform.toolchain.internal.compilespec.ObjectiveCCompileSpec
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/ConfigurableComponentWithExecutable.java

    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    
    /**
     * A configurable view of a component that produces an executable and installation. This should become public in some form.
     */
    public interface ConfigurableComponentWithExecutable extends ComponentWithExecutable, ComponentWithInstallation, ComponentWithObjectFiles, ComponentWithOutputs, ComponentWithNames {
        PlatformToolProvider getPlatformToolProvider();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/tasks/AssemblerTest.groovy

    import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.nativeplatform.toolchain.internal.compilespec.AssembleSpec
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    import org.gradle.util.TestUtil
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top