Displaying 2 results from an estimated 2 matches for "tweight".
Did you mean:
weight
2013 Jun 05
0
Survival aareg problem
...code is below.
Terry Therneau
"[.aareg" <- function(x, ..., drop=FALSE) {
if (!inherits(x, 'aareg')) stop ("Must be an aareg object")
i <- ..1
if (is.matrix(x$coefficient)) {
x$coefficient <- x$coefficient[,i, drop=drop]
x$tweight <- x$tweight[,i,drop=drop]
}
else stop("Subsripting impossible, coefficient component not a matrix")
if (!is.null(x$dfbeta)){
x$dfbeta <- x$dfbeta[,i,,drop=drop]
x$test.var2 <- x$test.var2[i,i,drop=drop]
}
x$test.statistic <- x$test....
2011 Sep 01
4
[PATCH] xen,credit1: Add variable timeslice
...me = (is_idle_vcpu(snext->vcpu) ?
- -1 : MILLISECS(CSCHED_MSECS_PER_TSLICE));
+ -1 : MILLISECS(prv->tslice_ms));
ret.task = snext->vcpu;
CSCHED_VCPU_CHECK(ret.task);
@@ -1469,10 +1468,9 @@ csched_dump(const struct scheduler *ops)
"\tweight = %u\n"
"\trunq_sort = %u\n"
"\tdefault-weight = %d\n"
- "\tmsecs per tick = %dms\n"
+ "\ttslice = %dms\n"
"\tcredits per msec = %d\n"...