Displaying 4 results from an estimated 4 matches for "resplit".
Did you mean:
nsplit
2009 Nov 19
2
Efficient cbind of elements from two lists
Hi!
I have a data.frame "data" and splitted it.
data <- split(data, data[,1])
This is a quite slow procedure; and I do not want to do it again. So,
any unsplit and "resplit" is no option for me.
But: I have to cbind "variables" to the splitted data from another list,
that contains of vectors with matching sizes, so
for (i in 1:length(data)) {
data[[i]] <- cbind(data[[i]], l[[i]]))
}
works well; but very, very slowly.
The lapply solution:
data...
2023 Feb 17
6
[Bug 3542] New: Allow to redirect stderr only even with tty
...For splitting stdout and stderr we have can use solution like this:
https://unix.stackexchange.com/questions/653431/ssh-with-separate-stdin-stdout-stderr-and-tty
or use process substitution
https://tldp.org/LDP/abs/html/process-sub.html
with `2> >(sed 's|.*|stderr:&|')` and then resplit locally. This does
incur a bit overhead.
The request:
- could we have regular fd (guarded behind a flag because it seems
uncommon) and having tty.
- Or allow fd 2 to not be attached to the tty
--
You are receiving this mail because:
You are watching the assignee of the bug.
2016 Apr 04
2
[PATCH FOR DISCUSSION ONLY 1/2] scripts: Add a script for formatting all C code in the project.
...too
bad, but there are some problems:
(a) The way struct initializers are formatted is weird. I'm not even
sure I understand what rules clang is following, since structs get all
sorts of different styles with no rhyme or reason.
(b) It splits up long string constants (although it doesn't resplit
string constants which are already sufficiently split).
(c) It gets horribly confused by our start_element()...end_element()
XML macros.
This doesn't solve the whole problem. We would still need further
scripts to look for problems such as:
(i) Error messages terminated/not terminated by fu...
2017 Dec 04
2
[RFC] - Deduplication of debug information in linkers (LLD)
...can now assemble a subset of ARC instructions.
> [r319609](http://reviews.llvm.org/rL319609).
>
>
> ## Clang commits
>
> * clang-format gained options to control sorting of include blocks,
> allowing
> groups to be sorted individually, merged and sorted, and merged and
> resplit.
> [r319024](http://reviews.llvm.org/rL319024).
>
> * A number of math libcalls/builtins are now converted to equivalent LLVM
> intrinsics. [r319593](http://reviews.llvm.org/rL319593).
>
> * clangd gained a fuzzy match scorer.
> [r319557](http://reviews.llvm.org/rL319557).
>...