Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for powershell (0.43 sec)

  1. cluster/gce/windows/smoke-test.sh

    function undeploy_windows_webserver_pod {
      ${kubectl} delete deployment "$windows_webserver_deployment"
    }
    
    windows_command_deployment=windows-powershell
    windows_command_pod_label=powershell
    windows_command_replicas=1
    
    # Deploys a multi-arch Windows pod capable of running PowerShell.
    function deploy_windows_command_pod {
      echo "Writing example deployment to $windows_command_deployment.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/testonly/install-ssh.psm1

          [Net.SecurityProtocolType]::Tls12
      $url = ("https://github.com/PowerShell/Win32-OpenSSH/releases/download/" +
              "v7.9.0.0p1-Beta/OpenSSH-Win64.zip")
      $ProgressPreference = 'SilentlyContinue'
      Invoke-WebRequest $url -OutFile C:\openssh-win64.zip
    
      # Unzip and install open-ssh
      Expand-Archive -Force C:\openssh-win64.zip -DestinationPath $OPENSSH_ROOT
      powershell.exe `
          -ExecutionPolicy Bypass `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_acl_windows.txt

    go build -o $TMP\main.exe main.go
    
    # Read ACLs for the files.
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\exe-acl.txt
    exec powershell -Command 'Get-Acl main.go | Select -expand AccessToString'
    cp stdout $WORK\src-acl.txt
    cd $TMP
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\guest-acl.txt
    
    cd $WORK
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. ci/devinfra/docker_windows/Dockerfile

    FROM mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019
    
    # Set default powershell policy for this script (ProgressPreference='SilentlyContinue' makes
    # downloads with Invoke-WebRequest not show the progress bar and is MUCH faster).
    SHELL ["powershell.exe", "-ExecutionPolicy", "Bypass", "-Command", "$ErrorActionPreference='Stop'; $ProgressPreference='SilentlyContinue'; $VerbosePreference = 'Continue';"]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    Typical Gradle invocation:
    
    ----
    $ gradle build
    ----
    
    To run the Wrapper on a Linux or OSX machine:
    
    ----
    $ ./gradlew build
    ----
    
    To run the Wrapper on Windows PowerShell:
    
    ----
    $ .\gradlew.bat build
    ----
    
    The command is run in the same directory that the Wrapper is located in.
    If you want to run the command in a different directory, you must provide the relative path to the Wrapper:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_server_journal_windows.go

    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"context"
    	"fmt"
    	"os/exec"
    	"strings"
    )
    
    const powershellExe = "PowerShell.exe"
    
    // getLoggingCmd returns the powershell cmd and arguments for the given nodeLogQuery and boot
    func getLoggingCmd(n *nodeLogQuery, services []string) (string, []string, error) {
    	args := []string{
    		"-NonInteractive",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 15:54:36 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. cluster/gce/windows/common.psm1

        [parameter(Mandatory=$true)] [string]$Algorithm
      )
      $actual = Get-FileHash -Path $Path -Algorithm $Algorithm
      # Note: Powershell string comparisons are case-insensitive by default, and this
      # is important here because Linux shell scripts produce lowercase hashes but
      # Powershell Get-FileHash produces uppercase hashes. This must be case-insensitive
      # to work.
      if ($actual.Hash -ne $Hash) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if bytes.Contains(out, []byte("The following helper DLL cannot be loaded")) {
    		t.Skipf("powershell failure:\n%s", err)
    	}
    	if !bytes.Contains(out, []byte("The following commands are available:")) {
    		t.Skipf("powershell does not speak English:\n%s", out)
    	}
    }
    
    func netshInterfaceIPShowInterface(ipver string, ifaces map[string]bool) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. docs/docker/README.md

      -e "MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \
      -v /mnt/data:/data \
      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    #### Windows (custom access and secret keys)
    
    ```powershell
    docker run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio1 \
      -e "MINIO_ROOT_USER=AKIAIOSFODNN7EXAMPLE" \
      -e "MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \
      -v D:\data:/data \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  10. mvnw.cmd

        )
        if "%MVNW_VERBOSE%" == "true" (
            echo Couldn't find %WRAPPER_JAR%, downloading it ...
            echo Downloading from: %WRAPPER_URL%
        )
    
        powershell -Command "&{"^
    		"$webclient = new-object System.Net.WebClient;"^
    		"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top