Displaying 7 results from an estimated 7 matches for "ctim".
Did you mean:
ctime
1997 Dec 09
1
[Fwd: R-beta: R 0.50 alpha]
...;m using the rsept for WINDOWS 95 (with modified men?, and "fixed" survival4).
See the Ennapadam Venkatraman's example made in date 35/07/97 19.02
Ennapadam Venkatraman wrote:
> library(splines)
> library(survival4)
> xx <- NULL
> xx$ftim <- exp(-runif(100))
> xx$ctim <- 2*runif(100)
> xx$sts <- 1*(xx$ftim <= xx$ctim)
> xx$otim <- xx$sts*xx$ftim + (1-xx$sts)*xx$ctim
> xx$z1 <- runif(100)
> xx$z2 <- runif(100)
> survfit( Surv(otim,sts) ~ 1,xx)
Error in eval(frame, data)[subset, , drop = FALSE] : incorrect number of
dimensions
>...
1997 Jul 25
2
R-beta: R 0.50 alpha
...redistribute it under certain conditions.
Type "license()" for details.
[Previously saved workspace restored]
> runif(1)
[1] 0.05205324
> .Random.seed
[1] 4721 5660 21509
> library(splines)
> library(survival4)
> xx <- NULL
> xx$ftim <- exp(-runif(100))
> xx$ctim <- 2*runif(100)
> xx$sts <- 1*(xx$ftim <= xx$ctim)
> xx$otim <- xx$sts*xx$ftim + (1-xx$sts)*xx$ctim
> xx$z1 <- runif(100)
> xx$z2 <- runif(100)
> survfit( Surv(otim,sts) ~ 1,xx)
Call: survfit(formula = Surv(otim, sts) ~ 1, data = xx)
n events mean se(m...
1997 Jul 25
2
R-beta: R 0.50 alpha
...redistribute it under certain conditions.
Type "license()" for details.
[Previously saved workspace restored]
> runif(1)
[1] 0.05205324
> .Random.seed
[1] 4721 5660 21509
> library(splines)
> library(survival4)
> xx <- NULL
> xx$ftim <- exp(-runif(100))
> xx$ctim <- 2*runif(100)
> xx$sts <- 1*(xx$ftim <= xx$ctim)
> xx$otim <- xx$sts*xx$ftim + (1-xx$sts)*xx$ctim
> xx$z1 <- runif(100)
> xx$z2 <- runif(100)
> survfit( Surv(otim,sts) ~ 1,xx)
Call: survfit(formula = Surv(otim, sts) ~ 1, data = xx)
n events mean se(m...
2016 Nov 10
0
[PATCH 2/3] qemu: Implement virtio-pstore device
...; > > + rarg->info.id = cpu_to_le64(rarg->info.id);
> > > + rarg->info.type = cpu_to_le16(rarg->info.type);
> > > + rarg->info.flags = cpu_to_le32(rarg->info.flags);
> > > + rarg->info.time_sec = cpu_to_le64(stbuf.st_ctim.tv_sec);
> >
> > Is this seconds since epoch?
> > Why ctim specifically?
> > Pls add comments.
>
> I think it doesn't matter either ctim or mtim.
>
> >
> > > + rarg->info.time_nsec = cpu_to_le32(stbuf.st_ctim.tv_nsec);
> >
> &g...
2013 Oct 09
0
[PATCH 1/1] Porting klibc to AArch64
...unsigned long st_nlink;
- unsigned int st_mode;
- unsigned int st_uid;
- unsigned int st_gid;
- unsigned int __pad1;
- __stdev64 (st_rdev);
- unsigned long st_size;
- struct timespec st_atim;
- struct timespec st_mtim;
- struct timespec st_ctim;
- unsigned long st_blksize;
- long st_blocks;
- unsigned long __unused[3];
-};
+ unsigned long st_dev; /* Device. */
+ unsigned long st_ino; /* File serial number. */
+ unsigned int st_mode; /* File mode. */
+...
2016 Aug 20
7
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v3)
Hello,
This is another iteration of the virtio-pstore work. In this patchset
I addressed most of feedbacks from previous version and drooped the
support for PSTORE_TYPE_CONSOLE for simplicity. It'll be added once the basic implementation
* changes in v3)
- use QIOChannel API (Stefan, Daniel)
- add bound check for malcious guests (Daniel)
- drop support PSTORE_TYPE_CONSOLE for now
2016 Aug 20
7
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v3)
Hello,
This is another iteration of the virtio-pstore work. In this patchset
I addressed most of feedbacks from previous version and drooped the
support for PSTORE_TYPE_CONSOLE for simplicity. It'll be added once the basic implementation
* changes in v3)
- use QIOChannel API (Stefan, Daniel)
- add bound check for malcious guests (Daniel)
- drop support PSTORE_TYPE_CONSOLE for now