search for: 325002

Displaying 2 results from an estimated 2 matches for "325002".

2008 Aug 18
1
iowait / Perfomance problems with xen on drbd (centos 5.2)
...: Writing on the Xen-devices produces an iowait about 50 to 60% on the xen-processors. we have 3 szenarios tested: a) Xen on DRBD b) Xen on DRBD but disconnected c) direct mounted DRBD You can see the difference in Write pro Char and Write per Block. a: 3792 / 4011 b: 52037 / 103777 c: 57135 / 325002 See bonnie_result.txt for more data. We attached our drbd.conf and a xen-config for your information. The Server are each 2xDual-Core AMD Opteron(tm) Processor 2214 HE with 32 Gb RAM and 2TB-Harddrive on Raid5 running von CentOS 5.2. The XEN-DomUs are Debian 4 or Ubuntu 8. The NICs are bonded In...
2010 Jul 02
1
generating list of all arguments that function was called with
Hello, Consider: f1 <- function(a, b, c, d, ...) { c(list(a = a, b = b, c = c, d = d), list(...)) } > f1(a = 1, b = 2, c = 3, d = 4, more = 5) $a [1] 1 $b [1] 2 $c [1] 3 $d [1] 4 $more [1] 5 Question: I'm guessing there exists a function such that I don't have to list each bound argument separately in the list in 'f1'. It seems like it should be easy but