This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE | |
| OVERWRITTEN AND LOST. Changes to this xml configuration should be made using: | |
| virsh edit win12 | |
| or other application using the libvirt API. | |
| --> | |
| <domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'> | |
| <name>win12</name> | |
| <uuid>5bb658fe-898c-4d7f-bd09-955f4e0cf387</uuid> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Reference guides: | |
| # https://wiki.archlinux.org/index.php/PCI_passthrough_via_OVMF | |
| # https://pve.proxmox.com/wiki/Pci_passthrough | |
| # https://pve.proxmox.com/wiki/Nested_Virtualization | |
| # Remember to turn on SVM in BIOS and disable CSM | |
| # Update packages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| public struct OrderedSet<Element: Hashable>: Collection, ExpressibleByArrayLiteral { | |
| public typealias Index = Int | |
| private var set: Set<Element> = [] | |
| private var storage: [Element] = [] | |
| public init(arrayLiteral elements: Element...) { | |
| self.init(elements) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| import LocalAuthentication | |
| @propertyWrapper | |
| public class Authenticated { | |
| public typealias Action = () -> Void | |
| private var _action: Action = {} | |
| public var reason: String |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| public struct Component<Target, Coordinator, Body: View>: View { | |
| private var makeBody: () -> Body | |
| public var body: Body { makeBody() } | |
| } | |
| #if os(macOS) | |
| public struct _ViewBody<Target: NSView, Coordinator>: NSViewRepresentable { | |
| internal var _makeTarget: (Context) -> Target |