search for: getuuid

Displaying 9 results from an estimated 9 matches for "getuuid".

Did you mean: getuid
2011 Nov 11
1
Problem with listDomains() in Xen
...can return an empty array when there are no active domains known to libvirt. So you need to check id.length before accessing any element in the array. Follow up- I tried accessing the length of the array and it's 0 all the time. And there are active domains available. In fact, I'm able to getUUID from the domain name. Other functions work fine too. Am I missing something?Can someone please help me? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20111111/be6e43e4/attachment.htm>
2004 Dec 03
0
Package dev: Depends, require, SaveImage best practices?
...ESCRIPTION' ... OK * checking if this is a source package ... OK * Installing *source* package 'graph' ... ** libs make: `graph.so' is up to date. ** R ** data ** inst ** preparing package for lazy loading Error in assign("nullgraphID", getuuid()) : couldn't find function "getuuid" Execution halted ERROR: lazy loading failed for package 'graph' ERROR Installation failed. To conclude: what am I missing? Would it be better to just require(Ruuid)? Always use SaveImage? Much tanks, + set...
2003 Feb 11
1
Ruuid package
Hello ... I would like to direct people's attention to the package "Ruuid" on the Biconductor website (http://www.bioconductor.org/repository/devel/package/html/Ruuid.html). It's purpose is to generate UUID values, and has a simple R interface (currently one function: getuuid(), with multiple options). Under unix, it uses Theodore Ts'o's libuuid to create and manage these values, while on a Win32 system it uses both the Win32 API and a subset of the libuuid. A S4 class was created to manage the UUID values in R. Please let me know if you encounter any difficu...
2009 Sep 18
2
Ruuid missing Gtk glib.dylib
...: Library not loaded: /Library/Frameworks/GTK+.framework/Versions/2.14.X11/Resources/lib/libglib-2.0.0.dylib Referenced from: /Library/Frameworks/R.framework/Resources/library/Ruuid/libs/i386/Ruuid.so Reason: image not found Error: package/namespace load failed for 'Ruuid' Error in args(getuuid) : no function to return from, jumping to top level ------------------------------------------------ J. Christopher Bare Institute for Systems Biology
2010 May 19
2
Squashed commits...
Refactoring the previous patch ended up creating two deltas. This patch pushes them both together into a single commit.
2010 May 24
0
[PATCH matahari] Moves the CPU properties into the Host API space.
...(); + iter != _listeners.end(); + iter++) + { + (*iter)->updated(); + } } void @@ -121,12 +126,6 @@ Host::removeHostListener(HostListener* listener) _listeners.erase(listener); } -Processors& -Host::getProcessors() -{ - return _processors; -} - string Host:: getUUID() const { @@ -163,6 +162,24 @@ Host::isBeeping() const return _beeping; } +string +Host::getCPUModel() const +{ + return Platform::instance()->getCPUModel(); +} + +unsigned int +Host::getNumberOfCPUCores() const +{ + return Platform::instance()->getNumberOfCPUCores(); +} + +double +H...
2010 Apr 15
1
[PATCH matahari] Refactored the Host agent.
...eHostWrapper(void); - - // QMF Methods - ManagementObject* GetManagementObject(void) const { return mgmt_object; } - status_t ManagementMethod(uint32_t methodId, Args& args, string& text); + HostAgent() {} + virtual ~HostAgent() {} - // Field Accessors - const string &getUUID(void) { return uuid; } - const string &getHostname(void) { return hostname; } - const string &getHypervisor(void) { return hypervisor; } - const string &getArch(void) { return arch; } - bool isBeeping(void) { return beeping; } - int getMemory(void) { return memory; } + M...
2010 Mar 15
0
[PATCH] Updated the list of ignored files and fixed whitespace issues.
...name; @@ -78,7 +78,7 @@ class HostWrapper : public Manageable // QMF Methods ManagementObject* GetManagementObject(void) const { return mgmt_object; } status_t ManagementMethod(uint32_t methodId, Args& args, string& text); - + // Field Accessors const string &getUUID(void) { return uuid; } const string &getHostname(void) { return hostname; } @@ -93,4 +93,3 @@ class HostWrapper : public Manageable // Main Loop void doLoop(void); }; - diff --git a/src/main.cpp b/src/main.cpp index d51c4d9..002a02e 100644 --- a/src/main.cpp +++ b/src/main.cpp @...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...a tools/python/xen/xend/XendDomainInfo.py >--- a/tools/python/xen/xend/XendDomainInfo.py Tue Aug 30 08:47:51 2005 >+++ b/tools/python/xen/xend/XendDomainInfo.py Tue Aug 30 16:14:53 2005 >@@ -47,7 +47,7 @@ > from xen.xend.XendRoot import get_component > > from xen.xend.uuid import getUuid >-from xen.xend.xenstore import DBVar >+from xen.xend.xenstore import DBVar, XenNode, DBMap > > """Shutdown code for poweroff.""" > DOMAIN_POWEROFF = 0 >@@ -231,6 +231,7 @@ > DBVar(''start_time'', ty=''float'...