Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 178 for targetPlatform (0.24 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractTargetedNativeComponentSpec.java

        private final List<PlatformRequirement> targetPlatforms = new ArrayList<>();
        private final Set<String> buildTypes = new HashSet<String>();
        private final Set<String> flavors = new HashSet<String>();
    
        @Override
        public List<PlatformRequirement> getTargetPlatforms() {
            return Collections.unmodifiableList(targetPlatforms);
        }
    
        @Override
        public void targetPlatform(String targetPlatform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

            buildFile << """
                task verifyBinariesSwiftVersion {
                    doLast {
                        ${componentUnderTestDsl}.binaries.get().each {
                            assert it.targetPlatform.sourceCompatibility.version == ${expectedVersion}
                        }
                    }
                }
            """
    
            expect:
            succeeds "verifyBinariesSwiftVersion"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/ExtractSymbols.java

        private Compiler<SymbolExtractorSpec> 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(SymbolExtractorSpec.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)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/AbstractPrebuiltLibraryBinary.java

        private final BuildType buildType;
        private final NativePlatform targetPlatform;
        private final Flavor flavor;
        protected final FileCollectionFactory fileCollectionFactory;
    
        public AbstractPrebuiltLibraryBinary(String name, PrebuiltLibrary library, BuildType buildType, NativePlatform targetPlatform, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/JdtTest.groovy

            properties['org.eclipse.jdt.core.compiler.problem.assertIdentifier'] == 'ignore'
            properties['org.eclipse.jdt.core.compiler.problem.enumIdentifier'] == 'ignore'
            properties['org.eclipse.jdt.core.compiler.codegen.targetPlatform'] == '1.3'
        }
    
        def defaultsForJava1_4Source() {
            Properties properties = new Properties()
    
            when:
            jdt.loadDefaults()
            jdt.sourceCompatibility = JavaVersion.VERSION_1_4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top