Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installBat (0.15 sec)

  1. src/os/exec/lp_windows_test.go

    		if err := dst.Close(); err != nil {
    			t.Fatal(err)
    		}
    	}()
    
    	_, err = io.Copy(dst, src)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    // installBat creates a batch file at dst that prints its own
    // path when run.
    func installBat(t *testing.T, dstPath string) {
    	dst, err := os.OpenFile(dstPath, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0o777)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. ci/devinfra/docker_windows/Dockerfile

            "--quiet", "--wait", "--nocache", \
            "--add", "Microsoft.VisualStudio.Workload.VCTools", \
            "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", \
            "--add", "Microsoft.VisualStudio.Component.Windows10SDK.19041" -Wait; \
        Start-Process -FilePath C:/TEMP/vs_buildtools.exe -ArgumentList "--installPath", "C:/VS", \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top