similar to: Petition to set warnPartialMatch* options to TRUE during R CMD check by default

Displaying 20 results from an estimated 6000 matches similar to: "Petition to set warnPartialMatch* options to TRUE during R CMD check by default"

2009 Dec 09
1
partial match for two datasets
Hi all, I have two sets: dig<-c("DAVID ADAMS","PIERS AKERMAN","SHERYLE BAGWELL","JULIAN BAJKOWSKI","CANDIDA BAKER") import<-c("by DAVID ADAMS","piersAKERMAN","SHERYLE BagWEL","JULIAN BAJKOWSKI with ","Cand BAKER","smith green")     I want to get the following result from
2010 Jan 22
6
Theora Petition on YouTube
Hi again, Here is a petition against YouTube, this is requesting YouTube uses open-standards to display media rather than H.264. http://www.petitionspot.com/petitions/oggandyoutube/ -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
2010 Jan 26
1
Theora Petition on YouTube (Christopher Blizzard)
On Tue, 26 Jan 2010 14:00:01 -0600, <theora-request at xiph.org> wrote: "URL?" Of myself spreading it? Or the petition. Hi Chris, I remember you from hacks.mozilla (although I am an Opera supporter). The webmaster of Xiph told me to tell the members and readers about the petition, sadly it has only reached few because I cannot create a post about it. -- Using
2004 Jan 18
2
Ogg Vorbis in Creative products petition
Hi all dudes. We're organizing a petition to ask Creative to include Ogg Vorbis support in one of their next firmware releases of their digital players. This is very important for two reasons: 1) Creative is a big company. If they include Ogg support in their digital players, other manufacturers will follow the example. 2) This should improve use experience of this class of products for
2008 Sep 17
4
Petition for PunkBuster Support/Version for WINE in Linux
Greetings, I started this petition the other day. http://www.petitionspot.com/petitions/PunkBusterforWINE As legitimate owner of a game, regardless of platform (providing that it will actually run) - one should be entitled to the online experience attached to the game. Sadly, for many Windows(tm) games under WINE this cannot be done because of the PunkBuster Anti-Cheat protection which does not
2006 Nov 24
0
[OT} Protest the Novell - Microsoft Agreement - Sign Bruce Perens petition
Protest the Microsoft-Novell Patent Agreement self explanatory http://techp.org/petition/show/1 Craig
2014 Apr 30
2
"Name partially matched in data frame"
R 3.1.0 OS X Colleagues, I recently updated to 3.1.0 and I have encountered Warning messages: ... Name partially matched in data frame when I do something like: DATAFRAME$colname where colname is actually something longer than that (but unambiguous). I have much appreciated the partial matching capabilities because it fits with my workflow. I often receive updated data months after the
2017 Jul 15
2
PartialAlias: different start addresses
> On 07/14/2017 04:37 PM, Nuno Lopes wrote: >> Thank you all for your replies. >> So here seems to be an agreement that the documentation for PartialAlias >> is incorrect. >> >> Daniel: now you got me wondering about MustAlias. This is what the docs >> say: >> "The MustAlias response may only be returned if the two memory objects >> are
2014 Aug 22
3
parallel::detectCores(TRUE) gives: Error in system(cmd, TRUE) : error in running command
Hi, Both under the current R-devel (r66456) and a version from about 3 months ago, I experience the following behavior: > parallel::detectCores(TRUE) Error in system(cmd, TRUE) : error in running command > traceback() 3: system(cmd, TRUE) 2: gsub("^ +", "", system(cmd, TRUE)[1]) 1: parallel::detectCores(TRUE) > This is on Ubuntu 14.04. Does anybody else see this? [I
2011 Mar 12
1
par(ask=TRUE) in R CMD check?
Hello: What happens in the auto-checks on R-Forge and CRAN with code using par(ask=TRUE)? Is this routine, or can it create problems? The fda package uses ask=TRUE to provide the user with a way to examine a group of plots. In the past, I've marked those tests in \examples with \dontrun. However, I wonder if that is necessary. I tried it on Windows using R
2007 Apr 06
1
0.11.4 tidings
I''ve tried 0.11.4, and it has not yet crashed, even after I removed (most of) the workarounds. However, the same is also true of 0.11.3... I haven''t seen any of these crashes for several days, which is a very good thing. I can''t remember all the workarounds I did to sidestep the crashing; some of them I don''t want to reverse because they actually were also
2007 Mar 30
1
[LLVMdev] Two ExecutionEngines from one Module
Hello everybody, I'm pretty new to LLVM programming, so if this answer is pretty simple, I apologize in advance. We are working with the released LLVM 1.9. Say you have a class called CompiledProgram which is designed to contain our Module and (potentially) our ExecutionEngine(s). In particular, I would like to have an ExecutionEngine for running our program natively and another for
2012 Oct 04
0
[LLVMdev] Interprocedural Register Allocation
On Oct 4, 2012, at 2:27 PM, "Madhusudan C.S" <madhusudancs at gmail.com> wrote: > Basically, the PrologEpilogInsertion pass will add a bit mask to MachineModuleInfo describing which registers are clobbered by the function being compiled. Later, when compiling the callers, that bit mask is used to initialize the regmask operands on call instructions. > > So the idea is to
2015 Mar 09
2
crash on lpc_restore_signal_16_intrin_sse2
On Mon, Mar 9, 2015 at 5:15 PM, lvqcl <lvqcl.mail at gmail.com> wrote: > Janne Hyv?rinen wrote: > >> I compiled flac.exe without NASM and verified that >> FLAC__lpc_restore_signal_16_intrin_sse2 is used. Decoding the same file >> that made VLC 2.2 crash decoded without issues. Would be nice if VLC was >> compilable with MSVC and we could use its debugger.
2011 Dec 05
2
class extension and documentation
I've added a "backsolve" method to the bdsmatrix library. Per the Extending manual section 7.1 I've also added the following 3 lines along with my setMethod definitions for 2 classes. backsolve <- function(r, ...) UseMethod("backsolve") backsolve.default <- base:::backsolve formals(backsolve.default) <- c(formals(backsolve.default), alist(... = )) I've
2012 Apr 30
0
file.copy(src, src, recursive=TRUE) causes a segfault (Was: Re: R CMD check . segfault on re-building vignettes)
It appears that file.copy() does not protect against the case when one copies one directory to a subdirectory of itself resulting in it trying to create and endless recursive copy of itself. REPRODUCIBLE EXAMPLE: src <- "foo" dir.create(src); file.copy(src, src, recursive=FALSE) # ok file.copy(src, src, recursive=TRUE) # PROBLEM
2012 Oct 04
2
[LLVMdev] Interprocedural Register Allocation
Hi Jakob, On Thu, Oct 4, 2012 at 1:31 PM, Jakob Stoklund Olesen <stoklund at 2pi.dk>wrote: > > On Oct 4, 2012, at 2:47 AM, Madhusudan C.S <madhusudancs at gmail.com> wrote: > > However, I was reading the DeveloperPolicy page and the policy for making > major > changes asks the developers to discuss the work here before proceeding. > So, I am > writing this
2005 Dec 23
2
APC regexp match example in newhidups.8
I was testing out newhidups with an APC UPS, and I noticed that I needed '-x vendor=American.Power.*' instead of '-x vendor=APC.*' as indicated in the man page. Do other APC USB UPSes use 'APC' in the vendor string? Should we sidestep any such problems and just go with the hex vendor ID for APC examples? This was tested with a snapshot from the development branch, but the
2006 May 18
1
R CMD check: "T used instead of TRUE"
Hello everybody, I am just trying to put together my first own CRAN-able package. I have completed the programming and my code works OK. But now when I perform R CMD check agsemisc_1.0-2.tar.gz and R gets to the step * checking examples ... I receive the following error message: > print(bwplot(Species~Sepal.Length, data=iris, panel=panel.bwstrip)) Error in rep(T, length(x)) : T used
2006 Oct 23
1
Disconnecting: Corrupted MAC on input. - Solaris 8 64-bit SPARC OpenSSH 4.4p1
Hi everyone, I tried finding this using Google, but no joy. I have a massive (6GB uncompressed, 2.9GB compressed) file I'm attempting to transfer using SCP or SFTP. I get a random length into the transfer, and then it aborts with "Disconnecting: Corrupted MAC on input." Both hosts are Solaris 8, using OpenSSH4.4p1 compiled 64-bit by the Sun Forte C compiler. I've tried