Displaying 3 results from an estimated 3 matches for "aufully".
2009 Feb 19
4
[LLVMdev] Whats GoogleTest ?
What is googletest ?
Its aufully messy warnings wise on Cygwin.
Aaron
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090219/8de0a211/attachment.html>
2009 Feb 19
0
[LLVMdev] Whats GoogleTest ?
> What is googletest ?
Framework for units tests in llvm.
http://code.google.com/p/googletest/
> Its aufully messy warnings wise on Cygwin.
If you have gcc 3.X you are going to get a bunch of warnings. What gcc are
you using?
-Tanya
2012 Sep 14
1
please comment on my function
..."bb" "unknown" "unknown" "ff" "c"
--8<---------------cut here---------------end--------------->8---
it does what I want it to do, but it takes 4.5 seconds on a vector of
length 10,256,341 - I wonder if I might be doing something aufully stupid.
I thought that sub() was slow, but my second attempt:
--8<---------------cut here---------------start------------->8---
canonicalize.language <- function (s) {
s <- tolower(s)
good <- nchar(s) == 5 & substr(s,3,3) %in% c("_","-")
s[good] <- su...