Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 874 for installations (0.28 sec)

  1. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

            model,
            this,
            "packageBuild",
            extraParameters = buildScanTag("BuildDistributions") +
                " -PtestJavaVersion=${LINUX.buildJavaVersion.major}" +
                " -Porg.gradle.java.installations.auto-download=false"
        )
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        artifactRules = """$artifactRules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:52:00 UTC 2023
    - 970 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            return new DaemonJavaToolchainQueryService(createInstallationRegistry(installations, detector), currentJavaHomePath)
        }
    
        private def createInstallationRegistry(Collection<String> locations, JvmMetadataDetector detector) {
            def installations = locations.collect {
                def location = locationFor(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. releasenotes/notes/multicuster-secret-auth.yaml

        The two authentication methods output but `istioctl create-remote-secret` (`oidc` and `token`), are not impacted.
        As a result, only users that are creating custom kubeconfig files will be impacted.
    
        A new environment variable, `PILOT_INSECURE_MULTICLUSTER_KUBECONFIG_OPTIONS`, is added to Istiod to enable the methods that were removed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 22:23:58 UTC 2021
    - 1010 bytes
    - Viewed (0)
  4. releasenotes/notes/47269.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    issue:
      - 47269
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 246 bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/LocationListInstallationSupplier.java

            return property.stream()
                .filter(path -> !path.trim().isEmpty())
                .map(this::asInstallations).collect(Collectors.toSet());
        }
    
        private InstallationLocation asInstallations(String candidate) {
            return InstallationLocation.userDefined(fileResolver.resolve(candidate), getSourceName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. releasenotes/notes/29894.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 29026
    
    releaseNotes:
    - |
      **Added** `WorkloadEntry` resources will be read from all clusters in multi-cluster installations and do not need to be duplicated.
      Makes Virtual Machine auto-registration compatible with multi-primary multi-cluster. This feature is diabled by default and can be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 14 20:15:28 UTC 2021
    - 461 bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/InvalidInstallationWarningReporter.java

    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.jvm.toolchain.internal.InstallationLocation;
    
    import java.util.function.BiConsumer;
    
    /**
     * Reports invalid JVM installations with the provided logger `warn` level.
     */
    public class InvalidInstallationWarningReporter implements BiConsumer<InstallationLocation, JvmInstallationMetadata> {
    
        private final Logger logger;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/CompileAll.kt

        applyDefaults(
            model,
            this,
            "compileAllBuild -PignoreIncomingBuildReceipt=true -DdisableLocalCache=true",
            extraParameters = buildScanTag("CompileAll") + " " + "-Porg.gradle.java.installations.auto-download=false"
        )
    
        artifactRules = """$artifactRules
            platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        """.trimIndent()
    }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:52:00 UTC 2023
    - 999 bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/MavenToolchainsIntegrationTest.groovy

        def "logs at info level when invalid toolchain file is provided"() {
            def toolchainsFile = file("toolchains.xml")
            executer.withArgument("-Porg.gradle.java.installations.maven-toolchains-file=${TextUtil.escape(toolchainsFile.absolutePath)}")
            executer.withToolchainDetectionEnabled()
            toolchainsFile << "not xml"
    
            when:
            succeeds 'javaToolchains', '--info'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/AutoInstalledInstallationSupplier.java

    import java.util.Set;
    import java.util.stream.Collectors;
    
    public class AutoInstalledInstallationSupplier implements InstallationSupplier {
    
        public static final String AUTO_DOWNLOAD = "org.gradle.java.installations.auto-download";
    
        private final ToolchainConfiguration configuration;
        private final JdkCacheDirectory cacheDirProvider;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top