search for: sstr

Displaying 8 results from an estimated 8 matches for "sstr".

Did you mean: str
2009 Jul 23
0
[PATCH server] Add network QMF apis.
...nt_properties(vm) end diff --git a/src/ovirt-agent/ovirt_api.xml b/src/ovirt-agent/ovirt_api.xml index a5aa383..6efa58b 100644 --- a/src/ovirt-agent/ovirt_api.xml +++ b/src/ovirt-agent/ovirt_api.xml @@ -20,6 +20,20 @@ </doc:desc> <property name="version" type="sstr" access="RC" desc="Ovirt version string"/> + <method name="create_physical_network"> + <arg name="name" dir="I" type="sstr" desc="Name of the new network"/> + <arg name="proto" dir=...
2010 Apr 26
0
[PATCH matahari] Created the NetworkDevice agent.
...f not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. A copy of the GNU General Public License is - * also available at http://www.gnu.org/copyleft/gpl.html. - */ - -#include <iostream> -#include <string> -#include <sstream> -#include <vector> -#include <stdexcept> - -#include <hal/libhal.h> -#include <cstdio> -#include <sys/ioctl.h> -#include <sys/types.h> -#include <sys/socket.h> -#include <linux/types.h> -#include <linux/ethtool.h> -#include <linux/sock...
2004 Sep 13
1
Rd files with "%" (was: permuting dimensions)
Professor Ripley thanks for this. Very much appreciated. The original subject line reflected my late-night conviction that the answer might involve passing a strange list to do.call(). Anyway, package magic is broken (only in R-devel, I might add) because I have a function called "%eq%". R-2.0.0 CMD check is stopping (I think) because it interprets the "%" as a
2009 Jul 16
0
[PATCH server] add network QMF apis. (still in progress)
...etwork) + end + end +end diff --git a/src/ovirt-agent/ovirt_api.xml b/src/ovirt-agent/ovirt_api.xml index a5aa383..8eb7ef2 100644 --- a/src/ovirt-agent/ovirt_api.xml +++ b/src/ovirt-agent/ovirt_api.xml @@ -73,12 +73,24 @@ </doc:desc> <property name="name" type="sstr" desc="The name of the network"/> <property name="proto" type="sstr" desc="The boot protocol on this network, one of 'static', 'dhcp' or 'bootp'"/> + <!-- FIXME: What about IP addresses, usages, and VMs referen...
2010 Apr 26
2
Patch supercedes previous patch...
In looking at the code I realized that the last of the HAL depenencies were removed with this patch. So, I'm pushing an updated patch that contains none of the HAL code in it.
2004 Nov 18
3
Errors checking a library
Hi I am writing an R library. The documentation for one of my functions includes an example that I *know* works - simply cut and paste into R on either Windows and Linux and it works perfectly, no errors or warnings, nothing, nyet. However, when I run "R CMD check" on the library, I get an error. I am running R CMD check on linux, and the offending piece of code appears to be:
2010 May 24
0
[PATCH matahari] Moves the CPU properties into the Host API space.
...id updated(); -}; - -#endif diff --git a/src/schema.xml b/src/schema.xml index 206e39b..fd83ac1 100644 --- a/src/schema.xml +++ b/src/schema.xml @@ -2,6 +2,7 @@ <class name="Host"> + <!-- general properties --> <property name="uuid" type="sstr" access="RO" desc="Host UUID" index="y"/> <property name="hostname" type="sstr" access="RO" desc="Hostname"/> <property name="memory" type="int64" access="RO" desc=...
2010 Apr 19
1
[PATCH matahari] Removes all code for the previous CPUWrapper class.
...not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. A copy of the GNU General Public License is - * also available at http://www.gnu.org/copyleft/gpl.html. - */ - -#include <iostream> -#include <fstream> -#include <sstream> -#include <string> -#include <vector> -#include <stdexcept> - -#include <pcre.h> - -#include "cpu.h" -#include "qmf/com/redhat/matahari/CPU.h" - -using namespace std; -namespace _qmf = qmf::com::redhat::matahari; - -template<typename targetType&...