search for: feature_name

Displaying 20 results from an estimated 22 matches for "feature_name".

2017 Oct 08
1
Re: [PATCH v11 5/6] mllib: add XPath helper xpath_get_nodes()
...In v2v/output_libvirt.ml we presently have: (* Get guest/features/* nodes. *) let obj = Xml.xpath_eval_expression xpathctx "features/*" in let features = ref [] in for i = 0 to Xml.xpathobj_nr_nodes obj - 1 do let feature_node = Xml.xpathobj_node obj i in let feature_name = Xml.node_name feature_node in push_front feature_name features done; !features I think this can be rewritten as: (* Get guest/features/* nodes. *) let features = xpath_get_nodes xpathctx "features/*" in let features = List.map Xml.node_name features in Rich....
2006 Dec 05
0
The amazing smartctl -a /dev/hda
...e or idle. After command completion occurred, registers were: ER ST SC SN CL CH DH -- -- -- -- -- -- -- 84 51 00 ac 28 f9 e1 Error: ICRC, ABRT at LBA = 0x01f928ac = 33106092 Commands leading to the command that caused the error were: CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name -- -- -- -- -- -- -- -- ---------------- -------------------- c8 00 08 a5 28 f9 e1 00 9d+18:33:42.900 READ DMA c8 00 68 3d 28 f9 e1 00 9d+18:33:42.900 READ DMA c8 00 10 3d 1a f9 e1 00 9d+18:33:42.900 READ DMA c8 00 68 d5 19 f9 e1 00 9d+18:33:42.900 READ DMA c8 00 08 0d 12...
2012 Apr 17
10
Very Strange and Probably Obscure Problem
Hi... I really hope that somebody can help me to brainstorm this problem. Please let me describe my enviornment. Environment --------------- Fedora 16 x86_64(fully up-to-date) Wine 1.5.1 32bit and noarch binaries only Nvidia GPU - GTS 450 Nvidia Driver - 295.40 (including 32bit libraries) I've installed Perfectworld International under wine. Everything was running fine until the most recent
2009 May 24
3
OT: SMART warning on hard drive, same warning for 2 1 /2 years
...used the error occurred, the device was in an unknown state. After command completion occurred, registers were: ER ST SC SN CL CH DH -- -- -- -- -- -- -- 04 51 01 01 a5 5a a0 Commands leading to the command that caused the error were: CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name -- -- -- -- -- -- -- -- ---------------- -------------------- 08 d6 01 01 a5 5a a0 02 03:14:14.480 DEVICE RESET b0 d6 01 9f 4f c2 a0 00 03:12:29.984 SMART WRITE LOG b0 d5 01 9f 4f c2 a0 00 03:12:29.968 SMART READ LOG b0 d6 01 50 4f c2 a0 00 03:12:26.512 SMART WRI...
2009 Nov 06
2
SMART errors
...dle. After command completion occurred, registers were: ER ST SC SN CL CH DH -- -- -- -- -- -- -- 84 51 00 65 69 db e1 Error: ICRC, ABRT at LBA = 0x01db6965 = 31156581 Commands leading to the command that caused the error were: CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name -- -- -- -- -- -- -- -- ---------------- -------------------- c8 00 10 65 69 db e1 00 00:37:33.571 READ DMA c8 00 08 7d 4b db e1 00 00:37:33.515 READ DMA c8 00 30 4d 4b db e1 00 00:37:33.458 READ DMA c8 00 40 65 48 db e1 00 00:37:33.456 READ DMA c8 00 28...
2017 Oct 27
0
[PATCH v11 7/8] mllib: add XPath helper xpath_get_nodes
..._set_current_context xpathctx node; (* Get guest/features/* nodes. *) - let obj = Xml.xpath_eval_expression xpathctx "features/*" in - - let features = ref [] in - for i = 0 to Xml.xpathobj_nr_nodes obj - 1 do - let feature_node = Xml.xpathobj_node obj i in - let feature_name = Xml.node_name feature_node in - push_front feature_name features - done; - !features + let features = xpath_get_nodes xpathctx "features/*" in + List.map Xml.node_name features ) class output_libvirt oc output_pool = object diff --git a/v2v/test-harness/v2v_test_h...
2014 Oct 31
0
[PATCH] v2v: -o libvirt: Get the <features/> right in the output XML (RHBZ#1159258).
..._current_context xpathctx node; + + (* Get guest/features/* nodes. *) + let obj = Xml.xpath_eval_expression xpathctx "features/*" in + + let features = ref [] in + for i = 0 to Xml.xpathobj_nr_nodes obj - 1 do + let feature_node = Xml.xpathobj_node doc obj i in + let feature_name = Xml.node_name feature_node in + features := feature_name :: !features + done; + !features + ) + let append_child child = function | PCData _ | Comment _ -> assert false | Element e -> e.e_children <- e.e_children @ [child] @@ -33,15 +69,48 @@ let append_attr attr = fu...
2010 Aug 27
3
[PATCH 0/2] [RFC] xl: add cpuid config file option
...in the config file. As I don''t like the current interface xm exposes (basically because it is complicated, unintuitive and very error prone), I implemented a new scheme for specifying CPUID flags policy, combining QEMU''s and Xen''s approach: cpuid = "<base>,<feature_name>=[01xks]*,... The patch includes a (preliminary) list of feature names along with their bit positions. The value for each feature bit copies the current meaning is Xen: 0: clear, 1: set, x: don''t care/use default, k: keep from host, s: use host but preserve across migration The value ca...
2007 Nov 02
0
RMySQL inserting data problem
...y, empty, log, snr, empty, empty) dbWriteTable(con, "processed_data", insert, append=TRUE, row.name=FALSE) dbCommit(con) the table i am trying to insert into: CREATE TABLE `processed_data` ( `processed_data_id` int(6) unsigned NOT NULL, `data_id` int(6) unsigned NOT NULL, `feature_name` varchar(100), `channel1_signal` int(5), `channel2_signal` int(5), `log2_ratio` double(5,2), `flag` varchar(100), `chr_copy_num` double(5,2), `significance` double(7,4), PRIMARY KEY (`processed_data_id`,`data_id`) ) Can anyone explain why i am getting this error? Error: '.clas...
2015 Jun 25
0
[PATCH v2] v2v: Free XML objects in the correct order.
...guest/features/* nodes. *) @@ -62,7 +62,7 @@ let target_features_of_capabilities_doc doc arch = let features = ref [] in for i = 0 to Xml.xpathobj_nr_nodes obj - 1 do - let feature_node = Xml.xpathobj_node doc obj i in + let feature_node = Xml.xpathobj_node obj i in let feature_name = Xml.node_name feature_node in features := feature_name :: !features done; @@ -355,7 +355,7 @@ class output_libvirt oc output_pool = object let obj = Xml.xpath_eval_expression xpathctx expr in if Xml.xpathobj_nr_nodes obj < 1 then default else ( - let nod...
2015 Jun 25
0
[PATCH] v2v: Free XML objects in the correct order.
...guest/features/* nodes. *) @@ -62,7 +62,7 @@ let target_features_of_capabilities_doc doc arch = let features = ref [] in for i = 0 to Xml.xpathobj_nr_nodes obj - 1 do - let feature_node = Xml.xpathobj_node doc obj i in + let feature_node = Xml.xpathobj_node obj i in let feature_name = Xml.node_name feature_node in features := feature_name :: !features done; @@ -355,7 +355,7 @@ class output_libvirt oc output_pool = object let obj = Xml.xpath_eval_expression xpathctx expr in if Xml.xpathobj_nr_nodes obj < 1 then default else ( - let nod...
2015 Jun 25
2
[PATCH v2] v2v: Free XML objects in the correct order.
In version 2: - No substantial change, I just tidied up the code a bit. - Removed one case where whitespace changes had crept in. Rich.
2009 Oct 06
2
Failing Hard Disk?
...at caused the error occurred, the device was active or idle. After command completion occurred, registers were: ER ST SC SN CL CH DH -- -- -- -- -- -- -- 40 51 00 ff ff ff 0f Commands leading to the command that caused the error were: CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name -- -- -- -- -- -- -- -- ---------------- -------------------- 60 00 f8 ff ff ff 4f 00 36d+00:05:49.464 READ FPDMA QUEUED 60 00 00 ff ff ff 4f 00 36d+00:05:49.438 READ FPDMA QUEUED 61 00 08 59 d0 09 40 00 36d+00:05:49.430 WRITE FPDMA QUEUED 61 00 18 41 d0 09 40 00 36d+00:05:49.417...
2017 Oct 27
15
[PATCH v11 0/8] virt-builder-repository
Hi all, Here is the latest version of the series. Diffs to v10: * Make Index.arch a (string, string option) maybe and use it to guess arch at parse time * Compute the image size at parse time when the template flag is set and the value is missing. * Add virt-repository_main slow test * Other fixes from Richard's comments Cédric Bosdonnat (7): Ignore builder/*.out and *.img
2016 Jul 07
12
[PATCH v3 0/8] v2v: Move Curl wrapper to mllib and more.
v2 -> v3: - Changes to the Curl API suggested by Pino.
2016 Jul 07
9
[PATCH v2 0/8] v2v: Move Curl wrapper to mllib and use it for virt-builder (and more).
v1 -> v2: - Fixed the bug with precedence of if / @. - Add some imperative list operators inspired by Perl, and use those for constructing the Curl arguments, and more. Rich.
2017 Oct 08
4
[PATCH 0/3] common/mlstdutils: Add Std_utils List and Option modules.
In Std_utils we already extend Char and String. These commits take it a little further by extending List and adding a new Option submodule. All basically simple refactoring. Rich.
2017 Oct 08
7
[[PATCH v2 0/4] common/mlstdutils: Add Std_utils List and Option modules.
This time including the first commit ...
2017 Oct 05
14
[PATCH v11 0/6] virt-builder-repository
Hi there, This is an update of the series. Just to rebase it on top of Rich's latest changes. Cédric Bosdonnat (5): builder: rename docs test script builder: add a template parameter to get_index builder: add Index.write_entry function mllib: add XPath helper xpath_get_nodes() New tool: virt-builder-repository Pino Toscano (1): builder: add simple OCaml osinfo-db reader
2009 Aug 03
9
[PATCH 0/9] Quota support for ocfs2-tools (version 3)
Hi, below comes a new version of the series of patches implementing quota support for ocfs2-tools. I've fixed the calls of ocfs2_malloc_blocks() which were given number of bytes instead of number of blocks. Besides that the series should be the same. Honza