search for: setro

Displaying 6 results from an estimated 6 matches for "setro".

Did you mean: metro
2014 Nov 23
0
[PATCH 2/3] New API: guestfs_blockdev_setra: Adjust readahead for filesystems and devices.
...xtraarg, int prints) } int +do_blockdev_setra (const char *device, int sectors) +{ + if (sectors < 0) { + reply_with_error ("readahead sectors must be >= 0"); + return -1; + } + return (int) call_blockdev (device, "--setra", sectors, 0); +} + +int do_blockdev_setro (const char *device) { - return (int) call_blockdev (device, "--setro", 0, 0); + return (int) call_blockdev (device, "--setro", -1, 0); } int do_blockdev_setrw (const char *device) { - return (int) call_blockdev (device, "--setrw", 0, 0); + return (int) call...
2014 Nov 23
7
[PATCH 0/3] patches needed for virt-bmap
See http://rwmj.wordpress.com/2014/11/23/mapping-files-to-disk/
2014 Nov 24
2
[PATCH v2 0/2] patches needed for virt-bmap
Does *not* incorporate changes suggested by Pino yet. Rich.
2011 Sep 23
1
Significance test
...t I'm kinda new to this. The two tests I'm aware of are the Student's t and Wilcoxon Rank Sum; neither seems to apply here. I've tried Googling this, but haven't found anything useful (maybe I'm not using the right terms...). Any help would be greatly appreciated. Regards, setro -- View this message in context: http://r.789695.n4.nabble.com/Significance-test-tp3836155p3836155.html Sent from the R help mailing list archive at Nabble.com.
2011 Sep 24
1
help
...quot;getAllPeakSequence" problem (Nico902) > 2. Re: How make a x,y dataset from a formula based entry > (Helios de Rosario) > 3. Re: writing data from several matrices in R into one > excel-file with several sheets (Marion Wenty) > 4. Significance test (setrofim) > 5. Re: Subsetting a zooreg object using window / subset > (Wesley Roberts) > 6. Re: R-help Digest, Vol 103, Issue 22 (mihalicza.peter at emki.hu) > 7. Clusplot axes (Chloe Strevens) > 8. Re: Significance test (Yuta Tamberg) > 9. Newbie question: Co...
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-