Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 874 for installations (0.25 sec)

  1. cluster/gce/gci/master.yaml

          Description=Forwards Kubernetes bootstrap logs to serial port.
          Before=kube-master-installation.service
    
          [Service]
          User=kube-bootstrap-logs-forwarder
          Group=systemd-journal
          SupplementaryGroups=serial
          ExecStart=journalctl --no-tail --no-pager --follow --utc --output short-iso --unit kube-master-installation --unit kube-master-configuration --unit kubelet
          StandardOutput=tty
          TTYPath=/dev/ttyS2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. releasenotes/notes/50218.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 48634
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 187 bytes
    - Viewed (0)
  3. releasenotes/notes/33455.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 33455
    
    releaseNotes:
    - |
      **Improved** the installation of Istio on remote clusters using an external control plane.
      The istiodRemote component now includes all of the resources needed for either a basic remote or config cluster.
    
    upgradeNotes:
    - title: The istiodRemote installation component now includes config cluster resources.
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:21 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

                sources {
                    cpp.lib ${notation}
                }
            }
        }
    }
    """
    
            when:
            succeeds "installMainExecutable"
    
            then:
            installation("build/install/main").exec().out == app.englishOutput
    
            where:
            notationName | notation
            "direct"     | "\$.components.hello"
            "map"        | "library: 'hello'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

            this.installation = installation
            this.mavenVersion = installation.version
            this.mavenHome = installation.home
            this.workingDirectory = workingDirectory
            this.tasksToRun = tasksToRun
            this.jvmArguments = jvmOpts
            this.mavenOpts = mavenOpts
            this.args = args
        }
    
        @Override
        boolean isExpectFailure() {
            throw new UnsupportedOperationException()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/flags.go

    		Should only be set when istio.test.kube.deploy=false`)
    	flag.StringVar(&settingsFromCommandline.IngressGatewayServiceNamespace, "istio.test.kube.ingressGatewayServiceNamespace",
    		settingsFromCommandline.IngressGatewayServiceNamespace,
    		`Specifies the namespace of the ingressgateway service to use when running tests in a preinstalled istio installation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryService.java

            Optional<JvmToolchainMetadata> installation = locateToolchain(toolchainSpec);
            if (!installation.isPresent()) {
                String exceptionMessage = String.format(
                    "Cannot find a Java installation on your machine (%s) matching the Daemon JVM defined requirements: %s.", OperatingSystem.current(), toolchainSpec
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. releasenotes/notes/mesh-expansion.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 25933
    
    releaseNotes:
    - |
      **Added** port 15012 to the default list of ports for the `istio-ingressgateway` Service.
    - |
      **Deprecated** installation flags `values.global.meshExpansion.enabled` in favor of user-managed config and `values.gateways.istio-ingressgateway.meshExpansionPorts` in favor of `components.ingressGateways[name=istio-ingressgateway].k8s.service.ports`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactInstaller.java

    import org.apache.maven.api.services.ArtifactInstallerRequest;
    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.installation.InstallRequest;
    import org.eclipse.aether.installation.InstallResult;
    import org.eclipse.aether.installation.InstallationException;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/NativeLanguageSamplesIntegrationTest.groovy

            when:
            run "installMainExecutable"
    
            then:
            executedAndNotSkipped ":compileMainExecutableMainC", ":linkMainExecutable", ":mainExecutable"
    
            and:
            installation(assembler.dir.file("build/install/main")).exec().out == "5 + 7 = 12\n"
        }
    
        @ToBeFixedForConfigurationCache
        def "c"() {
            given:
            sample c
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top