Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for toolChain (0.15 sec)

  1. maven-embedder/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-settings-builder</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-toolchain-builder</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    //	go get example.com/mod@none
    //
    // To upgrade the minimum required Go version to the latest released Go version:
    //
    //	go get go@latest
    //
    // To upgrade the Go toolchain to the latest patch release of the current Go toolchain:
    //
    //	go get toolchain@patch
    //
    // See https://golang.org/ref/mod#go-get for details.
    //
    // In earlier versions of Go, 'go get' was used to build and install packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

            """
                plugins {
                    id("java-gradle-plugin")
                    id("jvm-test-suite")
                    $pluginDefinition
                }
    
                java {
                    toolchain {
                        languageVersion = JavaLanguageVersion.of(${jvm.javaVersionMajor})
                    }
                }
    
                gradlePlugin {
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.internal.service.scopes.GradleUserHomeScopeServiceRegistry;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.launcher.daemon.configuration.DaemonServerConfiguration;
    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.context.DefaultDaemonContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

    import org.gradle.internal.buildoption.InternalFlag;
    import org.gradle.internal.buildoption.InternalOptions;
    import org.gradle.internal.component.local.model.OpaqueComponentIdentifier;
    import org.gradle.jvm.toolchain.JavaLauncher;
    import org.gradle.jvm.toolchain.JavaToolchainService;
    import org.gradle.plugin.devel.GradlePluginDevelopmentExtension;
    import org.gradle.plugin.devel.PluginDeclaration;
    import org.gradle.plugin.devel.tasks.GeneratePluginDescriptors;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            //
            file("processor/build.gradle") << """
                plugins {
                    id 'java'
                }
    
                java {
                    toolchain {
                        languageVersion = JavaLanguageVersion.of(${testedJdkVersion.getMajorVersionNumber()})
                    }
                }
            """
            file("processor/src/main/java/DummyAnnotation.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    Support for other toolchains criteria will be added in a future release.
    
    On the next execution of Gradle, the launcher will use this file to locate a compatible JVM installation and start the daemon with it.
    
    === Daemon JVM discovery
    
    To locate a compatible JVM installation, Gradle re-uses the mechanism provided by the <<toolchains.adoc#toolchains,Java Toolchains>> feature.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		}
    	}
    	if p.Internal.BuildInfo != nil {
    		fmt.Fprintf(h, "modinfo %q\n", p.Internal.BuildInfo.String())
    	}
    
    	// Configuration specific to compiler toolchain.
    	switch cfg.BuildToolchainName {
    	default:
    		base.Fatalf("buildActionID: unknown build toolchain %q", cfg.BuildToolchainName)
    	case "gc":
    		fmt.Fprintf(h, "compile %s %q %q\n", b.toolID("compile"), forcedGcflags, p.Internal.Gcflags)
    		if len(p.SFiles) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import org.gradle.internal.nativeintegration.services.NativeServices;
    import org.gradle.internal.scripts.ScriptFileUtil;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.jvm.toolchain.internal.ToolchainConfiguration;
    import org.gradle.launcher.cli.DefaultCommandLineActionFactory;
    import org.gradle.launcher.daemon.configuration.DaemonBuildOptions;
    import org.gradle.process.internal.streams.SafeStreams;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.language.nativeplatform.tasks.AbstractNativeSourceCompileTask.setPreCompiledHeader(org.gradle.nativeplatform.toolchain.internal.PreCompiledHeader)> has arguments/return type org.gradle.nativeplatform.toolchain.internal.PreCompiledHeader that is not Gradle public...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top