Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for powershell (0.41 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. 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)
  3. 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)
  4. src/os/exec/lp_windows.go

    			}
    			dotf, dotErr = f, &Error{file, ErrDot}
    		}
    	}
    
    	path := os.Getenv("path")
    	for _, dir := range filepath.SplitList(path) {
    		if dir == "" {
    			// Skip empty entries, consistent with what PowerShell does.
    			// (See https://go.dev/issue/61493#issuecomment-1649724826.)
    			continue
    		}
    
    		if f, err := findExecutable(filepath.Join(dir, file), exts); err == nil {
    			if dotErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. cluster/gce/windows/k8s-node-setup.psm1

    #  - Always use single-quoted strings unless actually interpolating variables
    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    $GCE_METADATA_SERVER = "169.254.169.254"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. docs/de/docs/contributing.md

    ### Umgebung aktivieren
    
    Aktivieren Sie die neue Umgebung mit:
    
    === "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: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. docs/zh/docs/contributing.md

    ### 激活虚拟环境
    
    使用以下方法激活新环境:
    
    === "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: Wed Mar 13 11:57:21 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. cluster/log-dump/log-dump.sh

    }
    
    # Saves a copy of the Windows Docker event log to ${WINDOWS_LOGS_DIR}\docker.log
    # on node $1.
    function export-windows-docker-event-log() {
        local -r node="${1}"
    
        local -r powershell_cmd="powershell.exe -Command \"\$logs=\$(Get-EventLog -LogName Application -Source Docker | Format-Table -Property TimeGenerated, EntryType, Message -Wrap); \$logs | Out-File -FilePath '${WINDOWS_LOGS_DIR}\\docker.log'\""
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. src/cmd/go/script_test.go

    	return env, nil
    }
    
    var extraEnvKeys = []string{
    	"SYSTEMROOT",         // must be preserved on Windows to find DLLs; golang.org/issue/25210
    	"WINDIR",             // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    	"LIBRARY_PATH",       // allow override of non-standard static library paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top