Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 288 for toolChain (0.33 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/UpToDateScalaCompileIntegrationTest.groovy

                }
    
                scala {
                    zincVersion = "1.7.1"
                }
    
                java {
                    toolchain {
                        languageVersion = JavaLanguageVersion.of(
                            !providers.gradleProperty("changed").isPresent()
                                ? ${jdk8.languageVersion.majorVersion}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/README.md

    # Go Telemetry
    
    This repository holds the Go Telemetry server code and libraries, used for
    hosting [telemetry.go.dev](https://telemetry.go.dev) and instrumenting Go
    toolchain programs with opt-in telemetry.
    
    **Warning**: this repository is intended for use only in tools maintained by
    the Go team, including tools in the Go distribution and auxiliary tools like
    [gopls](https://pkg.go.dev/golang.org/x/tools/gopls) or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Types for installing JVM toolchains.
     */
    @NonNullApi
    package org.gradle.jvm.toolchain.internal.install;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 763 bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaLanguageVersion.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain.internal;
    
    import org.gradle.api.internal.jvm.JavaVersionParser;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    
    import java.io.Serializable;
    
    public class DefaultJavaLanguageVersion implements JavaLanguageVersion, Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JavaInstallationRegistry.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.jvm.toolchain.internal.InstallationLocation;
    
    import java.util.List;
    
    
    @NonNullApi
    @ServiceScope({ Scope.Build.class, Scope.Global.class })
    public interface JavaInstallationRegistry {
        List<JvmToolchainMetadata> toolchains();
    
        void addInstallation(InstallationLocation downloadedInstallation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    // Package directive defines an Analyzer that checks known Go toolchain directives.
    package directive
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    )
    
    const Doc = `check Go toolchain directives such as //go:debug
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/pluginProject/groovy/database-logic/build.gradle

    plugins {
        id 'java-library'
        id 'org.jetbrains.kotlin.jvm' version '1.9.23'
    }
    
    repositories {
        mavenCentral()
    }
    
    java {
        toolchain.languageVersion.set(JavaLanguageVersion.of(11))
    }
    
    tasks.test {
        useJUnitPlatform()
    }
    
    kotlin {
        jvmToolchain {
            languageVersion.set(JavaLanguageVersion.of(11))
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 347 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/ShowToolchainsIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain
    
    import org.apache.commons.lang.StringUtils
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ShowToolchainsIntegrationTest extends AbstractIntegrationSpec {
    
        def "shows toolchains only once across all projects"() {
            when:
            createDirs("a", "b", "c")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServicesSupport.java

    import org.gradle.launcher.daemon.registry.DaemonRegistry;
    import org.gradle.launcher.daemon.registry.DaemonRegistryServices;
    import org.gradle.launcher.daemon.toolchain.DaemonClientToolchainServices;
    import org.gradle.launcher.daemon.toolchain.DaemonJavaToolchainQueryService;
    
    import java.io.InputStream;
    import java.util.UUID;
    
    /**
     * Some support wiring for daemon clients.
     *
     * @see DaemonClientServices
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. doc/next/2-language.md

    For details see the [language spec](/ref/spec#For_statements).
    
    <!-- go.dev/issue/46477, CL 566856, CL 586955, CL 586956 -->
    Go 1.23 includes preview support for [generic type aliases](/issue/46477).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
Back to top