Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 172 for targetPlatforms (0.17 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/commonJdt.properties

    eclipse.preferences.version=1
    org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
    org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
    org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
    org.eclipse.jdt.core.compiler.compliance=1.6
    org.eclipse.jdt.core.compiler.debug.lineNumber=generate
    org.eclipse.jdt.core.compiler.debug.localVariable=generate
    org.eclipse.jdt.core.compiler.debug.sourceFile=generate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 587 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.tasks.InstallExecutable.xml

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

    }
    """
            settingsFile << "rootProject.name = 'test'"
        }
    
        private void useStandardConfig() {
            buildFile << """
    model {
        components {
            hello(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            helloTest(GoogleTestTestSuiteSpec) {
                testing \$.components.hello
            }
        }
    }
    tasks.withType(RunTestExecutable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

                    binaries.withType(StaticLibraryBinary) {
                        def libName = targetPlatform.operatingSystem.windows ? 'hello.lib' : 'libhello.a'
                        staticLibraryFile = file("libs/build/libs/hello/static/english/\${libName}")
                    }
                    binaries.withType(SharedLibraryBinary) {
                        def os = targetPlatform.operatingSystem
                        def baseDir = "libs/build/libs/hello/shared/french"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeParallelIntegrationTest.groovy

                        this.afterCallback = afterCallback
                    }
    
                    @Override
                    PlatformToolProvider select(NativePlatformInternal targetPlatform) {
                        def toolProvider = delegate.select(targetPlatform)
                        if (! decorated.contains(toolProvider)) {
                            Field workerLeaseService = toolProvider.getClass().getDeclaredField("workerLeaseService")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppExecutable.java

            super(names, objectFactory, baseName, sourceFiles, componentHeaderDirs, 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.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            if (vsInstall == null) {
                throw new UnsupportedOperationException("Visual Studio is unavailable on this system.")
            }
            DefaultNativePlatform targetPlatform = new DefaultNativePlatform("default");
            def visualCpp = vsInstall.visualCpp.forPlatform(targetPlatform)
            vcBin = visualCpp.binDir
            vcPath = visualCpp.path.join(';')
        }
    
        static @Nullable VisualStudioInstall findVisualStudio() {
    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/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/TargetPlatformConfiguration.java

    public interface TargetPlatformConfiguration {
        /**
         * Returns whether a platform is supported or not.
         */
        boolean supportsPlatform(NativePlatformInternal targetPlatform);
    
        /**
         *  applies a platform specific toolchain configuration
         */
        void apply(DefaultGccPlatformToolChain platformToolChain);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.platform.base.PlatformAwareComponentSpec.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>targetPlatform</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

            }
    
            buildFile << """
    model {
        platforms {
            x86 {
                architecture "i386"
            }
        }
        components {
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                binaries.all {
                    linker.args "-v"
                }
            }
        }
    }
                """
            then:
            succeeds "mainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top