Displaying 4 results from an estimated 4 matches for "tmpv".
Did you mean:
tmp
2010 Jan 16
1
order() fails on a chr object of class "AsIs" with "\265" in it
Here's an example (session info at the end).
> tmpv <- c('\265g/L','Bq/L')
> order(tmpv)
[1] 2 1
> tmpv <- I(tmpv)
> order(tmpv)
Error in if (xi > xj) 1L else -1L : missing value where TRUE/FALSE needed
> foov <- gsub('\265','',tmpv)
> order(foov)
[1] 2 1
> str(tmpv)
Class 'AsIs...
2002 Mar 13
1
several bugs (PR#918) lists and matrices
...uot;) ## refuse to do similar assignment
Error: incompatible types in subset assignment
>
### 3. subsetting a vector of lists doesn't behave the way I anticipate.
### It looks like NULL is not handled consistently inside a vector.
### Sometimes it can be an element, sometimes not.
> tmpv <- vector("list", 2)
> tmpv
[[1]]
NULL
[[2]]
NULL
> tmpv[1] <- "abcd" ## I assigned to the first element.
> tmpv ## Both elements are still here.
[[1]]
[1] "abcd"
[[2]]
NULL
> tmpv[1] <- NULL ## I assigned to the first element...
2012 Jun 24
0
nouveau _BIOS method
...AD._HID.A....._S
2d90: 54 41 00 a0 0a 93 50 4b 42 43 0a ff a4 00 a0 0a TA....PKBC......
2da0: 93 54 50 41 44 00 a4 0a 0f a4 00 08 5f 43 52 53 .TPAD......._CRS
2db0: 11 09 0a 06 23 00 10 01 79 00 5b 82 41 38 54 50 ....#...y.[.A8TP
2dc0: 4d 5f 08 54 4d 50 56 00 14 46 07 5f 48 49 44 00 M_.TMPV..F._HID.
2dd0: a0 0f 93 54 56 49 44 0b d1 15 a4 0c 24 d8 01 02 ...TVID.....$...
2de0: a0 18 91 93 54 56 49 44 0b 50 10 93 54 56 49 44 ....TVID.P..TVID
2df0: 0b 0b 10 a4 0c 5c a3 10 00 a0 0f 93 54 56 49 44 .....\......TVID
2e00: 0b fa 19 a4 0c 4d cf 35 04 a0 0f 93 54 44 49 44 .....M.5......
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with
updates coming from blktap2.5.
Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>