search for: implifi

Displaying 8 results from an estimated 8 matches for "implifi".

Did you mean: implify
2016 Jul 01
0
[PATCH 1/2] v2v: fix and implify the internal Convert_linux:discover_modpath
First check for the existence of the directory /etc/modprobe.d, in case using a file under it; this also skips all the other checks, since they are not needed at all. Also /etc/modprobe.d exists on recent Linux versions, so let's give priority to the more common methods. When /etc/modprobe.d does not exist, check for the file to edit using a single list of possible files, now in order of
2016 Feb 09
0
inconsistency in treatment of USE.NAMES argument
...you probably don't know that lapply() is also somewhat older than sapply() [but that part is pre-R (but S-) history ...] which explains part: 1) lapply() does *not* have a USE.NAMES argument and it always keeps names when they are there in X. 2) sapply() has been designed as "s"implified l"apply" where in this case "simplified" also was to mean "user-friendly" / "simple to use". For that reason, a) sapply() also keeps names when they are there (as lapply). b) If USE.NAMES=TRUE (as by default) is also constructs names in...
2016 Feb 08
2
inconsistency in treatment of USE.NAMES argument
Hi, Both vapply() and sapply() support the 'USE.NAMES' argument. According to the man page: USE.NAMES: logical; if ?TRUE? and if ?X? is character, use ?X? as ?names? for the result unless it had names already. But if 'X' has names already and 'USE.NAMES' is FALSE, it's not clear what will happen to the names. Are they going to propagate to the result
2017 Dec 09
0
Remove
> On Dec 8, 2017, at 6:16 PM, David Winsemius <dwinsemius at comcast.net> wrote: > > >> On Dec 8, 2017, at 4:48 PM, Ashta <sewashm at gmail.com> wrote: >> >> Hi David, Ista and all, >> >> I have one related question Within one group I want to keep records >> conditionally. >> example within >> group A I want keep rows that
2017 Dec 09
1
Remove
You could make numeric vectors, named by the group identifier, of the contraints and subscript it by group name: > DM <- read.table( text='GR x y + A 25 125 + A 23 135 + A 14 145 + A 35 230 + B 45 321 + B 47 512 + B 53 123 + B 55 451 + C 61 521 + C 68 235 + C 85 258 + C 80 654',header = TRUE, stringsAsFactors = FALSE) > > GRmin <- c(A=15, B=40, C=60) > GRmax <-
2016 Feb 11
2
inconsistency in treatment of USE.NAMES argument
...lapply() is also somewhat older > than sapply() [but that part is pre-R (but S-) history ...] > which explains part: > > 1) lapply() does *not* have a USE.NAMES argument and it > always keeps names when they are there in X. > > 2) sapply() has been designed as "s"implified l"apply" where > in this case "simplified" also was to mean "user-friendly" / > "simple to use". > For that reason, > a) sapply() also keeps names when they are there (as lapply). > b) If USE.NAMES=TRUE (as by default) is also...
2017 Dec 09
2
Remove
> On Dec 8, 2017, at 4:48 PM, Ashta <sewashm at gmail.com> wrote: > > Hi David, Ista and all, > > I have one related question Within one group I want to keep records > conditionally. > example within > group A I want keep rows that have " x" values ranged between 15 and 30. > group B I want keep rows that have " x" values ranged
2016 Jul 01
4
[PATCH 0/2] v2v: fix setting custom modprobe options
Hi, due to a broken discover_modpath function, and to a wrong block for a match statement, the modprobe options for virtio/SCSI blocks where not written at all. This series provides a small refactor, and the fixes. Thanks, -- Pino Toscano (2): v2v: fix and implify the internal Convert_linux:discover_modpath v2v: fix priority of match in configure_kernel_modules v2v/convert_linux.ml | 34