Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,320 for toolchain2 (0.26 sec)

  1. src/cmd/go/internal/gover/toolchain.go

    package gover
    
    import (
    	"cmd/go/internal/base"
    	"context"
    	"errors"
    	"fmt"
    	"strings"
    )
    
    // FromToolchain returns the Go version for the named toolchain,
    // derived from the name itself (not by running the toolchain).
    // A toolchain is named "goVERSION".
    // A suffix after the VERSION introduced by a -, space, or tab is removed.
    // Examples:
    //
    //	FromToolchain("go1.2.3") == "1.2.3"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/Toolchain.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.toolchain;
    
    /**
     * Toolchain interface.
     *
     * @since 2.0.9
     */
    public interface Toolchain {
    
        /**
         * get the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

    package org.apache.maven.api;
    
    import java.util.Map;
    
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Toolchain interface.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Toolchain {
        /**
         * Gets the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChain.java

    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A set of compilers that are used together to construct binaries.
     */
    @HasInternalProtocol
    public interface ToolChain extends Named {
        /**
         * Returns a human consumable name for this tool chain.
         *
         * @since 1.11
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1003 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultToolchainManager.java

        }
    
        private Toolchain toToolchain(org.apache.maven.toolchain.Toolchain toolchain) {
            return new ToolchainWrapper(toolchain);
        }
    
        private static class ToolchainWrapper implements Toolchain {
            private final org.apache.maven.toolchain.Toolchain toolchain;
    
            ToolchainWrapper(org.apache.maven.toolchain.Toolchain toolchain) {
                this.toolchain = toolchain;
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

            directories*.source == ["Maven Toolchains", "Maven Toolchains"]
    
            where:
            useProperty << [true, false]
        }
    
        def "supplies single path for a single toolchain with non-resolvable environment variable"(boolean useProperty) {
            given:
            def toolchains = mavenHome.createFile(new File("toolchains.xml"))
            toolchains.write('''<toolchains>
                <toolchain>
                <type>jdk</type>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainsBuilder.java

        /**
         * Builds the toolchains model from the configured toolchain files.
         *
         * @param userToolchainsFile The path to the toolchains file, may be <code>null</code> to disable parsing.
         * @return The toolchains model or <code>null</code> if no toolchain file was configured or the configured file does
         *         not exist.
         * @throws MisconfiguredToolchainException If the toolchain file exists but cannot be parsed.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

        def helloWorldApp = new CHelloWorldApp()
    
        def setup() {
            buildFile << """
    apply plugin: 'c'
    
    model {
        toolChains {
            ${toolChain.buildScriptConfig}
        }
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    lib library: 'hello', linkage: 'static'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

                            ToolchainPrivate toolchain = fact.createToolchain(model);
                            if (requirements == null || toolchain.matchesRequirements(requirements)) {
                                toolchains.add(toolchain);
                            }
                        } catch (MisconfiguredToolchainException ex) {
                            logger.error("Misconfigured toolchain.", ex);
                        }
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. maven-toolchain-model/src/site/apt/index.apt

     Hervé Boutemy
     -----
     2006-11-04
     -----
    
    Maven Toolchain Model
    
     This is the model for Maven toolchain in <<<org.apache.maven.toolchain>>> package,
     delegating content to {{{../api/maven-api-toolchain/index.html}Maven 4 API immutable toolchain}}. All the effective model
     building logic from multiple toolchains files is done in {{{../maven-toolchain-builder/}Maven Toolchain Builder}}.
    
     The following are generated from this model:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top