Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 874 for installations (0.4 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/NativeBinaryRulesTest.groovy

        }
    
        def "test executable"() {
            def executableFile = new NativeExecutableFileSpec();
            def installation = new NativeInstallationSpec();
            def binary = initBinary(NativeExecutableBinarySpecInternal, NativeExecutableSpec)
            binary.executable >> executableFile
            binary.installation >> installation
    
            when:
            toolProvider.getExecutableName("base_name") >> "exe_name"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. releasenotes/notes/detect-cni.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 22 16:31:03 UTC 2022
    - 287 bytes
    - Viewed (0)
  3. tests/integration/operator/install_test.go

    			})
    
    			// Install with a fake tag to make the installation fail
    			_, _, err := istioCtl.Invoke([]string{
    				"install", "--skip-confirmation",
    				"--set", "tag=0.20.0-faketag",
    				"--readiness-timeout", "5s",
    			})
    			assert.Error(t, err)
    
    			// Here we should have two activated webhooks, but dry-run should not report any error, which
    			// means the re-installation can be done successfully.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 14:30:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. releasenotes/notes/drop-kustomize.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issues:
    - 44237
    releaseNotes:
    - |
      **Removed** `kustomization.yaml` and pre-generated installation manifests (`gen-istio.yaml`, etc) from published releases.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 14 02:14:42 UTC 2023
    - 344 bytes
    - Viewed (0)
  5. build-logic/packaging/src/test/kotlin/gradlebuild/packaging/GradleDistributionInstallTest.kt

                mkdir()
                File(this, "gradle").writeText("stub")
                File(this, "gradle.exe").writeText("stub")
            }
    
            assertFails("Install directory $target does not look like a Gradle installation. Cannot delete it to install.")
            assertTargetIsPreserved()
        }
    
        @Test
        fun `does not install to non-empty dir with empty lib`() {
            target.resolve("bin").apply {
                mkdir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVersionDetector.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Probes a JVM installation to determine the Java version it provides.
     */
    @ServiceScope(Scope.Global.class)
    public interface JvmVersionDetector {
        /**
         * Probes the Java version for the given JVM installation.
         */
        int getJavaVersionMajor(JavaInfo jvm);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. releasenotes/notes/sni-dnat-default.yaml

        1. Follow our new [Multicluster Installation](/docs/setup/install/multicluster/) documentation.
    
           This documentation will guide you through running a dedicate gateway deployment for this type of traffic (generally referred to as the `eastwest-gateway`).
           This `eastwest-gateway` will automatically be configured to support `AUTO_PASSTHROUGH`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 09:47:40 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. releasenotes/notes/network-label.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 25500
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:02:28 UTC 2020
    - 360 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetLinkDependenciesIntegrationTest.groovy

                    lib library: 'lib1', linkage: 'static'
                }
            }
        }
    }
    """
            when:
            succeeds "installMainExecutable"
    
            then:
            installation("build/install/main").exec().out == "12\n"
        }
    
        @ToBeFixedForConfigurationCache
        def "library dependency of 1 language source set is available to another when linking"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. releasenotes/notes/42852.yaml

    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    # If issue is not in the current repo, specify its full URL instead.
    issue:
      - https://github.com/istio/istio/issues/42852
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 26 14:42:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top