Displaying 6 results from an estimated 6 matches for "choosy".
Did you mean:
choose
2007 Mar 17
5
2nd attempt - Repairing vorbis files
...n.
I'm using Ogg Vorbis since 2000 and some of my files appear to be
damaged - at least some players reject some of them (WinAmp,
Quintessential Media Player beta 116). Is there a repair tool for
Windows which could rebuild vorbis files so that they all could be
played in WinAmp, which is very choosy about oggs? Thank you.
Tomas Valusek
P.S.: Where is a search page for archives of this list?
2008 Sep 24
1
string to numeric question
...it by 1 so that
it becomes "02". but the following code obviously won't work when the
input string is say "10" because then it gives "011" when I just want
"11". uuugh.
does someone know an easy way ( i guess hard is fine too. beggars can't
be choosy ) around that ? the code below probably explains more
clearly what i mean. thanks.
temp1 <- "01"
paste("0",as.numeric(temp1)+1,sep="")
temp10 <- "10"
paste("0",as.numeric(temp10)+1,sep="")
2013 May 07
0
[LLVMdev] [Reminder] 3.3 Patches
...er.
(2) No new features will be accepted!
(3) Try to limit patches to bug fixes. If you are finishing a feature, please do it quickly.
(4) Please minimize "clean-up" patches.
Code Reviewers
--------------
Please review patches and CC me directly when you approve them. Also, please be choosy about which patches should go in. I want to avoid a lot of churn on the release branch.
Thanks!
-bw
2023 Feb 18
1
Adding support for S7 to base R
On 18/02/2023 9:51 a.m., Duncan Murdoch wrote:
> One more comment:
>
> The utils::setBreakpoint() function should be updated to be able to set
> breakpoints in S7 methods, or a substitute function should be added to
> the S7 package.
>
> RStudio 2022.12.0+353 (not sure if that's the latest) also needs to be
> taught how to do that, since it doesn't seem to use
2023 Mar 13
1
Adding support for S7 to base R
...hy, because it's there, and
also, some of my favorite packages (sp and Matrix) use it, and I like my
code to look like the source code for the language. To that end, when I'm
training up engineers or data scientists to use OOP in R, I have them look
at source code-- but then also have to be choosy about source code for what
lest they become confused by the differences between S3 and S4 (not to
mention R6, RC, and whatever else might be out there).
R is the only language I know of that has multiple different object
oriented systems, and that makes it a big barrier to entry for people
learnin...
2006 May 08
13
monitoring tcp writes
i''m using the following probe to calculate how many bytes are being written by tcp write calls, by process and total:
fbt:ip:tcp_output:entry
{
this->tcpout_size = msgdsize(args[1]);
@tcpout_size[execname] = sum(this->tcpout_size);
@tcpout_size["TOTAL_TCP_OUT"] = sum(this->tcpout_size);
}
I run this probe for N seconds.
I suppose that if i get the