Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 874 for installations (0.36 sec)

  1. releasenotes/notes/install-autoscalingv2.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 32005
    
    releaseNotes:
    - |
      **Deprecated** Kubernetes Autoscaling v2beta1 API support for installation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 21:00:21 UTC 2022
    - 249 bytes
    - Viewed (0)
  2. releasenotes/notes/48147.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 48112
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 18:44:58 UTC 2024
    - 243 bytes
    - Viewed (0)
  3. releasenotes/notes/41923.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
    - |
      **Added** Add support for allowing CSR signers via Helm installation
    
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 28 17:53:28 UTC 2022
    - 283 bytes
    - Viewed (0)
  4. releasenotes/notes/48982.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - https://github.com/istio/istio/issues/48643
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 16:47:03 UTC 2024
    - 254 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/java/InstalledJdk.java

    import java.io.File;
    
    /**
     * Represents a Java Development Kit machine installation.
     *
     * @since 2.11
     */
    public interface InstalledJdk {
        /**
         * The version of the Java installation.
         *
         * @return The Java version. Never returns {@code null}.
         */
        JavaVersion getJavaVersion();
    
        /**
         * The home directory of the Java installation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/VisualCppToolChainDiscoveryIntegrationTest.groovy

      - ${toolChain.instanceDisplayName}:
          - The specified installation directory '${file('does-not-exist')}' does not appear to contain a Visual Studio installation.""")
        }
    
        def "tool chain is not available when SDK install is not available"() {
            when:
            buildFile << """
    model {
        toolChains {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaInstallationMetadata.java

        String getVendor();
    
        /**
         * The path to installation this tool belongs to.
         * <p>
         * This value matches what would be the content of {@code JAVA_HOME} for the given installation.
         *
         * @return the installation path
         */
        @Internal
        Directory getInstallationPath();
    
        /**
         * Returns true if this installation corresponds to the build JVM.
         *
         * @since 8.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.14.md

    ### Cloud Provider
    
    - Fixed a bug that caused PV allocation on non-English vSphere installations to fail  ([#73115](https://github.com/kubernetes/kubernetes/pull/73115), [@alvaroaleman](https://github.com/alvaroaleman))
    
    ### Cluster Lifecycle
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/java/JavaRuntime.java

    import java.io.File;
    
    /**
     * Represents a Java virtual machine installation.
     *
     * @since 2.11
     */
    public interface JavaRuntime {
        /**
         * The Java version of the Java runtime installation.
         *
         * @return The Java version. Never returns {@code null}.
         */
        JavaVersion getJavaVersion();
    
        /**
         * The home directory of the Java runtime installation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                    install 'some.group:test:1.2'
                }
            """
            executer.inDirectory(consumer)
            run("install")
    
            then:
            def installation = installation("consumer/install")
            installation.exec().out == app.expectedOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "can publish an executable and library to a Maven repository"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top