Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 288 for toolChain (0.53 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/api/plugins/JvmToolchainsPluginTest.groovy

    import org.gradle.internal.Actions
    import org.gradle.jvm.toolchain.JavaToolchainService
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    
    class JvmToolchainsPluginTest extends AbstractProjectBuilderSpec {
    
        def setup() {
            project.pluginManager.apply(JvmToolchainsPlugin)
        }
    
        def "available under jvm-toolchains id"() {
            expect:
            project.pluginManager.hasPlugin("jvm-toolchains")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. maven-api-impl/pom.xml

                    <param>packageModelV4=org.apache.maven.api.toolchain</param>
                    <param>packageToolV4=org.apache.maven.toolchain.v4</param>
                  </params>
                </configuration>
              </execution>
              <execution>
                <id>velocity-metadata</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainIntegrationTest.groovy

        def setup() {
            executer.requireIsolatedDaemons()
            executer.requireDaemon()
        }
    
        def "Given daemon toolchain version When executing any task Then daemon jvm was set up with expected configuration"() {
            given:
            writeJvmCriteria(Jvm.current())
            captureJavaHome()
    
            expect:
            succeeds("help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def jdk8 = createJdkInstallation("8")
            when:
            def registry = createRegistry([jdk8])
            def toolchains = registry.toolchains()
    
            then:
            toolchains.size() == 1
            loggerFactory.recordedMessages.find { it.contains("Extracting toolchain metadata from '$jdk8'") }
        }
    
        private TestFile createJdkInstallation(String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/versions/toolchain_go121.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.21
    // +build go1.21
    
    package versions
    
    func init() {
    	if Compare(toolchain, Go1_21) < 0 {
    		toolchain = Go1_21
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 291 bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainSpecInternal.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain.internal;
    
    import org.gradle.jvm.toolchain.JavaToolchainSpec;
    
    public interface JavaToolchainSpecInternal extends JavaToolchainSpec {
    
        /**
         * A key corresponding to the spec that is an immutable snapshot of the spec properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

                    } else {
                        DeprecationLogger.deprecateBehaviour("Using task ValidatePlugins without applying the Java Toolchain plugin.")
                            .withProblemIdDisplayName("Using task ValidatePlugins without applying the Java Toolchain plugin.")
                            .withProblemId("missing-java-toolchain-plugin")
                            .willBecomeAnErrorInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultToolchainsXmlFactory.java

    import org.apache.maven.api.services.xml.XmlWriterException;
    import org.apache.maven.api.services.xml.XmlWriterRequest;
    import org.apache.maven.api.toolchain.PersistedToolchains;
    import org.apache.maven.toolchain.v4.MavenToolchainsStaxReader;
    import org.apache.maven.toolchain.v4.MavenToolchainsStaxWriter;
    
    import static org.apache.maven.internal.impl.StaxLocation.getLocation;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go121.go

    	// available. We use a go version derived from the toolchain used to
    	// compile the tool by default.
    	// This will be <= go1.21. We take this as the maximum version that
    	// this tool can support.
    	//
    	// There are no features currently in x/tools that need to tell fine grained
    	// differences for versions <1.22.
    	return toolchain
    }
    
    // InitFileVersions is a noop when compiled with this Go version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 938 bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultJvmVendorSpecTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain.internal
    
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata
    import org.gradle.internal.jvm.inspection.JvmVendor
    import org.gradle.jvm.toolchain.JvmVendorSpec
    import spock.lang.Specification
    
    import java.util.function.Predicate
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top