Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GPT (0.02 sec)

  1. src/path/filepath/path_windows_test.go

    		"$ErrorActionPreference = \"Stop\"",
    		fmt.Sprintf("$vhd = New-VHD -Path %q -SizeBytes 3MB -Fixed", vhd),
    		"$vhd | Mount-VHD",
    		fmt.Sprintf("$vhd = Get-VHD %q", vhd),
    		"$vhd | Get-Disk | Initialize-Disk -PartitionStyle GPT",
    		"$part = $vhd | Get-Disk | New-Partition -UseMaximumSize -AssignDriveLetter:$false",
    		"$vol = $part | Format-Volume -FileSystem NTFS",
    		args,
    	}, "\n")
    
    	err := os.WriteFile(script, []byte(cmd), 0666)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - Feat: change parittion style to GPT on Windows ([#101412](https://github.com/kubernetes/kubernetes/pull/101412), [@andyzhangx](https://github.com/andyzhangx)) [SIG Storage and Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top