Displaying 5 results from an estimated 5 matches for "main_info".
Did you mean:
domain_info
2009 Jul 28
1
WinHQ.org website - CSS preloading
...he hover images would need to be loaded when the mouse is hovered over them.
I found a solution here:
http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/
So, currently the CSS is e.g. as follows:
Code:
ul.winehq_menu li.info { background-image: url('images/main_info.png'); background-repeat: no-repeat }
ul.winehq_menu li.info:hover { background-image: url('images/main_info_s.png'); background-repeat: no-repeat }
And instead doing something like:
Code:
ul.winehq_menu li.info { background-image: url('images/main_info_s.png...
2010 May 07
1
[PATCH 1/2]xl: Add "xl domid" command
...l/xl_cmdtable.c Fri May 07 19:35:40 2010 +0800
@@ -35,7 +35,8 @@
{ "vcpu-set", &main_vcpuset, "set the number of active VCPUs allowed for the domain" },
{ "list-vm", &main_list_vm, "list the VMs,without DOM0" },
{ "info", &main_info, "get information about Xen host" },
- { "sched-credit", &main_sched_credit, "get/set credit scheduler parameters" }
+ { "sched-credit", &main_sched_credit, "get/set credit scheduler parameters" },
+ { "domid", &main_d...
2012 Apr 24
8
[PATCH v2] libxl: prevent xl from running if xend is running.
...ctive VCPUs allowed for the domain",
"<Domain> <vCPUs>",
},
{ "list-vm",
- &main_list_vm, 0,
+ &main_list_vm, 0, 0,
"List the VMs,without DOM0",
"",
},
{ "info",
- &main_info, 0,
+ &main_info, 0, 0,
"Get information about Xen host",
"-n, --numa List host NUMA topology information",
},
{ "sharing",
- &main_sharing, 0,
+ &main_sharing, 0, 0,
"Get information about page sha...
2013 Apr 18
9
[PATCH v5 1/2] libxl: Introduce functions to add and remove USB devices to an HVM guest
This patch exposes a generic interface which can be expanded in the
future to implement USB for PVUSB, qemu, and stubdoms. It can also be
extended to include other types of USB other than host USB (for example,
tablets, mice, or keyboards).
For each device removed or added, one of two protocols is available:
* PVUSB
* qemu (DEVICEMODEL)
The caller can additionally specify "AUTO", in
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have
been applied. These are the tested and updated remainder, addressing
the previous comments.
1 Preparatory work.
2-4 The new parser and its documentation.
5-6 Replace old parsers with calls to the new one.
7-8 Two features, one of them essential.
9 Basic test suite for disk string parsing, as adhoc script.