search for: millard

Displaying 5 results from an estimated 5 matches for "millard".

Did you mean: willard
2015 Mar 15
4
[LLVMdev] FreeBSD's 11.0-CURRENT contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h's IntrusiveRefCntPtr and its use violates C++ privacy rules
...... IntrusiveRefCntPtr<ExternalSemaSource> clang::createChainedIncludesSource( CompilerInstance &CI, IntrusiveRefCntPtr<ExternalSemaSource> &Reader) { ... IntrusiveRefCntPtr<ChainedIncludesSource> source(new ChainedIncludesSource()); ... return source; } === Mark Millard markmi at dsl-only.net
2024 Jan 29
1
strcapture performance when perl = TRUE
...} utils:::conformToProto(out,proto) } else { strcapture(pattern,x,proto,perl,useBytes) } } Now comparing with strcapture we can expand the named capture example from the grep documentation: notables <- c( " Ben Franklin and Jefferson Davis", "\tMillard Fillmore", "Bob", NA_character_ ) regex <- "(?<first>[[:upper:]][[:lower:]]+) (?<last>[[:upper:]][[:lower:]]+)" proto = data.frame("", "") (strcapture(regex, notables, proto, perl = TRUE)) X.. X...1 1 Ben Franklin 2...
2014 Jan 30
1
Asterisk 12 questions
Hi. I'm attempting to compile Asterisk 12, but we want to use chan_sip instead of pjsip. I am missing something. I assumed that chan_sip was going to be added by default. Apparently not. I saw it in the menuconfig. Dumb question, but double xx beside It..does that mean not avail/not going to be installed? Can someone point me in the proper direction? A specific area where I can learn to
2005 Feb 10
4
[ANNOUNCE] New stable release of Samba Console (1.1.23)
Hi, I'm officialy announcing the new 1.1.23 stable release of Samba Console, along with a stable IMC release too (1.2.24). This code is just going in production at a new customer site this week. From the project web site : Samba Console <http://imc.sourceforge.net/samba/index.html> is the first console developped for IMC. It offers a simple and ergonomic interface for managing a
2011 Feb 25
0
Named capture in regexp
Dear R core developers, One feature from Python that I have been wanting in R is the ability to capture groups in regular expressions using names. Consider the following example in R. > notables <- c(" Ben Franklin and Jefferson Davis","\tMillard Fillmore") > name.rex <- "(?<first>[A-Z][a-z]+) (?<last>[A-Z][a-z]+)" > (parsed <- regexpr(name.rex,notables,perl=TRUE)) [1] 3 2 attr(,"match.length") [1] 12 16 attr(,"capture.start") [,1] [,2] [1,] 3 7 [2,] 2 10 attr(,&quot...