Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,075 for toolChain (0.22 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.toolchain.plugins.GppCompilerPlugin.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.toolchain.plugins.MicrosoftVisualCppPlugin.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/conf/toolchains.xml

       |   Look for documentation of the toolchains-aware plugin which configuration elements
       |   can be used.
       |
       | See also https://maven.apache.org/guides/mini/guide-using-toolchains.html
       |
       | General example
    
      <toolchain>
        <type/>
        <provides>
          <version>1.0</version>
        </provides>
        <configuration/>
      </toolchain>
    
       | JDK examples
    
      <toolchain>
        <type>jdk</type>
        <provides>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  4. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

      xml.namespace="http://maven.apache.org/TOOLCHAINS/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/toolchains-${version}.xsd">
      <id>toolchains</id>
      <name>MavenToolchains</name>
      <description><![CDATA[
        This is a reference for the Maven Toolchains descriptor.
        <p>The default location for the toolchains file is {@code ~/.m2/toolchains.xml}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <toolchains>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.5</version>
             <vendor>sun</vendor>
         </provides>
         <configuration>
            <jdkHome>${env.JAVA_HOME}</jdkHome>
         </configuration>
      </toolchain>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.6</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 29 10:03:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks-extend.xml

    under the License.
    -->
    
    <toolchains>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.5</version>
             <vendor>sun</vendor>
         </provides>
         <configuration>
            <jdkHome>${env.JAVA_HOME}</jdkHome>
            <toolsJar>lib/tools.jar</toolsJar>
         </configuration>
      </toolchain>
      <toolchain>
         <type>jdk</type>
         <provides>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 29 10:03:50 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gotoolchain_local.txt

    # GOTOOLCHAIN=auto uses go line if newer than local toolchain.
    env GOTOOLCHAIN=auto
    go mod init m
    go mod edit -go=1.700 -toolchain=none
    go version
    stdout 1.700
    
    go mod edit -go=1.300 -toolchain=none
    go version
    stdout 1.500 # local toolchain is newer
    
    go mod edit -go=1.700 -toolchain=go1.300
    go version
    stdout go1.700 # toolchain too old, ignored
    
    go mod edit -go=1.300 -toolchain=default
    go version
    stdout go1.500
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks-extra.xml

    under the License.
    -->
    
    <toolchains>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.4</version>
             <vendor>sun</vendor>
             <!-- no id, so it's considered 'default' -->
         </provides>
         <configuration>
            <jdkHome>${env.JAVA_HOME}</jdkHome>
         </configuration>
      </toolchain>
      <toolchain>
         <type>jdk</type>
         <provides>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 29 10:03:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                    .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
                        "Some toolchain resolvers had provisioning failures: custom (Unable to download toolchain matching the requirements " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

            private final AvailableToolChains.ToolChainCandidate toolChain;
    
            public ToolChainExecution(AvailableToolChains.ToolChainCandidate toolChain) {
                this.toolChain = toolChain;
            }
    
            @Override
            protected String getDisplayName() {
                return toolChain.getDisplayName();
            }
    
            @Override
            public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top