Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,320 for toolchain2 (0.25 sec)

  1. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-toolchains/README.adoc

    ====
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew check
    
    BUILD SUCCESSFUL
    9 actionable tasks: 9 executed
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            'current'      | Jvm.current()                       | 'java-base'
            'differentJdk' | AvailableJavaHomes.differentVersion | 'jvm-toolchains'
            'current'      | Jvm.current()                       | 'jvm-toolchains'
        }
    
        def "fails on toolchain and executable mismatch (with application plugin)"() {
            def jdkCurrent = Jvm.current()
            def jdkOther = AvailableJavaHomes.differentVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/VisualCppToolChainDiscoveryIntegrationTest.groovy

      - ${toolChain.instanceDisplayName}:
          - The specified installation directory '${file('does-not-exist')}' does not appear to contain a Visual Studio installation.""")
        }
    
        def "tool chain is not available when SDK install is not available"() {
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                windowsSdkDir "does-not-exist"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/merge/MavenToolchainMergerTest.java

     * under the License.
     */
    package org.apache.maven.toolchain.merge;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Collections;
    
    import org.apache.maven.toolchain.io.DefaultToolchainsReader;
    import org.apache.maven.toolchain.model.PersistedToolchains;
    import org.apache.maven.toolchain.model.TrackableBase;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

            def binDir = testDirectory.createDir("bin")
            wrapperTool(binDir, "c-compiler", toolChain.CCompiler, "-DFRENCH")
            wrapperTool(binDir, "static-lib", toolChain.staticLibArchiver)
            wrapperTool(binDir, "linker", toolChain.linker)
    
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                path file('${binDir.toURI()}')
                eachPlatform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaryRules.java

            assignToolsToNativeBinaryExtension(nativeBinary, buildDir);
        }
    
        private static void assignToolsToNativeBinary(NativeBinarySpecInternal nativeBinary, NativeBinarySpec nativeBinarySpec, NativeToolChainRegistryInternal toolChains) {
            NativeToolChainInternal toolChain = toolChainFor(nativeBinarySpec, toolChains);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

    import org.gradle.nativeplatform.platform.internal.NativePlatformInternal
    import org.gradle.nativeplatform.toolchain.NativeToolChainRegistry
    import org.gradle.nativeplatform.toolchain.internal.NativeLanguage
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.platform.base.BinarySpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/MavenToolchainsIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.spockframework.util.TextUtil
    
    class MavenToolchainsIntegrationTest extends AbstractIntegrationSpec {
        def "logs at info level when invalid toolchain file is provided"() {
            def toolchainsFile = file("toolchains.xml")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import org.apache.maven.execution.MavenSession;
    
    /**
     * Component for use by the <code>maven-toolchains-plugin</code> only.
     * It provides API: <ol>
     * <li>to retrieve every toolchains available in user settings,</li>
     * <li>to store chosen toolchain into build context for later use by toolchain-aware plugins.</li>
     * </ol>
     *
     * @since 2.0.9
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsWriter.java

         * the method returns.
         *
         * @param output The writer to serialize the toolchains to, must not be {@code null}.
         * @param options The options to use for serialization, may be {@code null} to use the default values.
         * @param toolchains The toolchains to serialize, must not be {@code null}.
         * @throws IOException If the toolchains could not be serialized.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top