Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 172 for targetPlatforms (0.34 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftExecutable.java

            super(names, objectFactory, taskDependencyFactory, module, testable, source, configurations, implementation, targetPlatform, toolChain, platformToolProvider, identity);
            this.executableFile = objectFactory.fileProperty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolChainInternal.java

    import org.gradle.platform.base.ToolChain;
    
    public interface ToolChainInternal<T extends Platform> extends ToolChain {
        /**
         * Locates the tools that can target the given platform.
         */
        ToolProvider select(T targetPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 954 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinary.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>flavor</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>buildType</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.play.PlayApplicationBinarySpec.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>jarFile</td>
                </tr>
                <tr>
                    <td>assetsJarFile</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

    eclipse.jdt {
        sourceCompatibility = '1.4'
        targetCompatibility = 1.3
    }
    '''
    
            def jdt = parseJdtFile()
            assert jdt.contains('source=1.4')
            assert jdt.contains('targetPlatform=1.3')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void sourceAndTargetCompatibilityDefaultIsCurrentJavaVersion() {
            runEclipseTask '''
    apply plugin: 'java'
    apply plugin: 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChainRegistry.java

     */
    @Incubating
    public interface ToolChainRegistry<P extends Platform, T extends ToolChain> {
        /**
         * Returns the best tool chain to build for the target platform.
         */
        T getForPlatform(P targetPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1014 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.tasks.CreateStaticLibrary.xml

                </tr>
                <tr>
                    <td>outputFile</td>
                </tr>
                <tr>
                    <td>toolChain</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>staticLibArgs</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

    }
    """
            settingsFile << "rootProject.name = 'test'"
        }
    
        private void useStandardConfig() {
            buildFile << """
    model {
        components {
            hello(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            helloTest(CUnitTestSuiteSpec) {
                testing \$.components.hello
            }
        }
        binaries {
            withType(CUnitTestSuiteBinarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

                    buildTypes {
                        debug
                        release
                    }
                    components {
                        all {
                            targetPlatform "win32"
                            targetPlatform "x64"
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.language.rc.tasks.WindowsResourceCompile.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>toolChain</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>outputDir</td>
                </tr>
                <tr>
                    <td>source</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top