Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 172 for targetPlatforms (0.43 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/StripSymbols.java

        }
    
        private Compiler<StripperSpec> createCompiler() {
            NativePlatformInternal targetPlatform = Cast.cast(NativePlatformInternal.class, this.targetPlatform.get());
            NativeToolChainInternal toolChain = Cast.cast(NativeToolChainInternal.class, getToolChain().get());
            PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
            return toolProvider.newCompiler(StripperSpec.class);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

                architecture "x86_64"
            }
            arm {
                architecture "arm"
            }
        }
        components {
            main {
                targetPlatform "x86"
                targetPlatform "x86_64"
                targetPlatform "arm"
            }
        }
    }
    
    """
    
            and:
            succeeds "assemble"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProvider.kt

    import org.jetbrains.kotlin.analysis.api.platform.KotlinComposableProvider
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.platform.TargetPlatform
    
    /**
     * Provides information about packages that are visible to Kotlin in the given scope. Can be constructed via [KotlinPackageProviderFactory].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppLibraryTest.groovy

            binary.targetPlatform == targetPlatform
            binary.toolChain == toolChain
            binary.platformToolProvider == platformToolProvider
    
            library.binaries.realizeNow()
            library.binaries.get() == [binary] as Set
        }
    
        def "can add static library"() {
            def targetPlatform = Stub(CppPlatform)
            def toolChain = Stub(NativeToolChainInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtModuleBuilder.kt

     */
    
    package org.jetbrains.kotlin.analysis.project.structure.builder
    
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    import org.jetbrains.kotlin.platform.TargetPlatform
    
    @KtModuleBuilderDsl
    public abstract class KtModuleBuilder {
        protected val directRegularDependencies: MutableList<KtModule> = mutableListOf()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

        private Compiler<StaticLibraryArchiverSpec> createCompiler() {
            NativePlatformInternal targetPlatform = Cast.cast(NativePlatformInternal.class, this.targetPlatform.get());
            NativeToolChainInternal toolChain = Cast.cast(NativeToolChainInternal.class, getToolChain().get());
            PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
            return toolProvider.newCompiler(StaticLibraryArchiverSpec.class);
        }
    
    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/platform-base/src/main/java/org/gradle/platform/base/PlatformAwareComponentSpec.java

    @Incubating @HasInternalProtocol
    public interface PlatformAwareComponentSpec extends VariantComponentSpec {
        /**
         * Specifies a platform that this component should be built be for.
         */
        void targetPlatform(String targetPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            this.toolChain = toolChain;
        }
    
        @Override
        public NativePlatform getTargetPlatform() {
            return targetPlatform;
        }
    
        @Override
        public void setTargetPlatform(NativePlatform targetPlatform) {
            this.targetPlatform = targetPlatform;
        }
    
        @Override
        public BuildType getBuildType() {
            return buildType;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestSuiteTest.groovy

        def "can add a test executable"() {
            def targetPlatform = Stub(SwiftPlatform)
            def toolChain = Stub(NativeToolChainInternal)
            def platformToolProvider = Stub(PlatformToolProvider)
    
            expect:
            def exe = testSuite.addExecutable(identity, targetPlatform, toolChain, platformToolProvider)
            exe.name == 'testExecutable'
            exe.targetPlatform == targetPlatform
            exe.toolChain == toolChain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents/build.gradle

    apply plugin: 'google-test'
    
    model {
        // google test libs are only built for 32-bit
        platforms {
            x86 {
                architecture "x86"
            }
        }
        components {
            all {
                targetPlatform "x86"
            }
        }
        components {
    <%
    components.each { component ->
        out.println """
            ${component.name}(${component.type}) {
                binaries.all {"""
        component.deps.each { dep ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top