Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for toolChain (0.14 sec)

  1. src/cmd/go/internal/workcmd/edit.go

    The -toolchain=name flag sets the Go toolchain to use.
    
    The -print flag prints the final go.work in its text format instead of
    writing it back to go.mod.
    
    The -json flag prints the final go.work file in JSON format instead of
    writing it back to go.mod. The JSON output corresponds to these Go types:
    
    	type GoWork struct {
    		Go        string
    		Toolchain string
    		Godebug   []Godebug
    		Use       []Use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

    import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform;
    import org.gradle.nativeplatform.toolchain.internal.SystemLibraries;
    import org.gradle.nativeplatform.toolchain.internal.metadata.AbstractMetadataProvider;
    import org.gradle.nativeplatform.toolchain.internal.metadata.CompilerType;
    import org.gradle.process.internal.ExecAction;
    import org.gradle.process.internal.ExecActionFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

        ToolchainConfiguration toolchainConfiguration = Stub(ToolchainConfiguration)
    
        def defineJdks(JvmToolchainMetadata... toolchains) {
            def javaInstallationRegistry = Mock(JavaInstallationRegistry)
            javaInstallationRegistry.toolchains() >> toolchains
    
            def styledTextOutputFactory = Mock(StyledTextOutputFactory)
            styledTextOutputFactory.create(_) >> outputProbe
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/go/main.go

    //
    // We have to handle the -C flag this way for two reasons:
    //
    //  1. Toolchain selection needs to be in the right directory to look for go.mod and go.work.
    //
    //  2. A toolchain switch later on reinvokes the new go command with the same arguments.
    //     The parent toolchain has already done the chdir; the child must not try to do it again.
    func handleChdirFlag() {
    	_, used := lookupCmd(os.Args[1:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

    import org.gradle.internal.classpath.CachedClasspathTransformer;
    import org.gradle.internal.classpath.DefaultClassPath;
    import org.gradle.internal.file.Deleter;
    import org.gradle.jvm.toolchain.JavaInstallationMetadata;
    import org.gradle.jvm.toolchain.JavaLauncher;
    import org.gradle.jvm.toolchain.JavaToolchainService;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.util.internal.GFileUtils;
    import org.gradle.work.DisableCachingByDefault;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/README.md

    The ID should preferably match the name of the `adoc` file. 
    For instance, linking to `toolchains.adoc` is possible with `<<toolchains.adoc#toolchains,Text>>`, and the declaration looks like:
        ```asciidoc
        [[toolchains]]
        = Toolchains for JVM projects
        ```
    3. Include the new chapter file in the [`userguide_single.adoc`](src/docs/userguide/userguide_single.adoc).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.internal.buildoption.FeatureFlags;
    import org.gradle.internal.file.Deleter;
    import org.gradle.jvm.toolchain.JavaInstallationMetadata;
    import org.gradle.jvm.toolchain.JavaLauncher;
    import org.gradle.jvm.toolchain.JavaToolchainService;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.util.internal.GFileUtils;
    import org.gradle.util.internal.IncubationLogger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. doc/godebug.md

    its value is derived from three sources:
    the defaults for the Go toolchain used to build the program,
    amended to match the Go version listed in `go.mod`,
    and then overridden by explicit `//go:debug` lines in the program.
    
    The [GODEBUG History](#history) gives the exact defaults for each Go toolchain version.
    For example, Go 1.21 introduces the `panicnil` setting,
    controlling whether `panic(nil)` is allowed;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    ====
    include::sample[dir="snippets/java/toolchain-basic/kotlin",files="build.gradle.kts[tags=toolchain]"]
    include::sample[dir="snippets/java/toolchain-basic/groovy",files="build.gradle[tags=toolchain]"]
    ====
    
    You can learn more about this in the <<toolchains.adoc#toolchains,Java toolchains>> guide.
    
    [[sec:compiling_with_release]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .withBinding("packageNameChoice", packageNameChoice)
                .withBinding("subprojectName", settings.subprojects.first())
                .withBinding("toolChain", toolChain)
                .withBinding("exampleClass", exampleClass)
                .withBinding("sourceFile", sourceFile)
                .withBinding("testSourceFile", testSourceFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top