Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for powershell (0.14 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. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    ----
    ----
    $ shasum --check gradle-wrapper.jar.sha256
    ----
    ----
    gradle-wrapper.jar: OK
    ----
    
    Manually verifying the checksum of the Wrapper JAR on Windows (using PowerShell):
    
    [source,powershell,subs=+attributes]
    ----
    > $expected = Invoke-RestMethod -Uri https://services.gradle.org/distributions/gradle-{gradleVersion}-wrapper.jar.sha256
    ----
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. pkg/volume/util/subpath/subpath_windows.go

    	return filepath.Dir(upperpath)
    }
    
    // Check whether a directory/file is a link type or not
    // LinkType could be SymbolicLink, Junction, or HardLink
    func isLinkPath(path string) (bool, error) {
    	cmd := exec.Command("powershell", "/c", "$ErrorActionPreference = 'Stop'; (Get-Item -Force -LiteralPath $env:linkpath).LinkType")
    	cmd.Env = append(os.Environ(), fmt.Sprintf("linkpath=%s", path))
    	klog.V(8).Infof("Executing command: %q", cmd.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. docs/en/docs/contributing.md

    ### Activate the environment
    
    Activate the new environment with:
    
    === "Linux, macOS"
    
        <div class="termy">
    
        ```console
        $ source ./env/bin/activate
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        $ .\env\Scripts\Activate.ps1
        ```
    
        </div>
    
    === "Windows Bash"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. docs/pt/docs/contributing.md

    ### Ativar o ambiente
    
    Ative o novo ambiente com:
    
    === "Linux, macOS"
    
        <div class="termy">
    
        ```console
        $ source ./env/bin/activate
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        $ .\env\Scripts\Activate.ps1
        ```
    
        </div>
    
    === "Windows Bash"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 21:38:15 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. src/path/filepath/path_windows_test.go

    	testenv.MustHaveSymlink(t)
    	testWalkMklink(t, "D")
    }
    
    func createMountPartition(t *testing.T, vhd string, args string) []byte {
    	testenv.MustHaveExecPath(t, "powershell")
    	t.Cleanup(func() {
    		cmd := testenv.Command(t, "powershell", "-Command", fmt.Sprintf("Dismount-VHD %q", vhd))
    		out, err := cmd.CombinedOutput()
    		if err != nil {
    			if t.Skipped() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top