search for: vanilla

Displaying 20 results from an estimated 2975 matches for "vanilla".

2012 Apr 13
4
#!/usr/bin/env Rscript --vanilla ??
...rogramming language, I'm prefering at times to write Rscript files instead of shell scripts, notably when R has nice ways to do some of the things. On a standard standalone platform with standard R, I would start such a script with --------------------------------------- #! /usr/bin/Rscript --vanilla --------------------------------------- (yes, the "--vanilla" is important to me, in this case) However; as, at work, my scripts have to work correctly on quite a few different (unixy : several flavors of Linux, Solaris, MacOS X) platforms, *and* as an R developer, I have many different...
2007 Sep 19
2
[LLVMdev] Building current llvm-gcc-4.0 TOT fails on darwin x86
Hi all, building current llvm-gcc-4.0 TOT(Revision: 42128) with current llvm (Revision: 42128) on 8.10.1 Darwin (x86) fails with the following message. Is that a just a temporary inconsistency or should i file a bug? /Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/xgcc -B/Users/ arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/ -B/Users/arnold/ Desktop/testing/vanilla-gcc-4.0/obj/../install/i686-apple-darwin8/ bin/ -B/Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/../install/ i686-apple-darwin8/lib/ -isystem /Users/arnold/Desktop/testing/...
2012 Feb 24
3
puppet kick failing
puppet kick ceased working for me when I upgraded to 2.6.3; I''ve also tried it with 2.7.10 and get the same result: > root@npuppet.ucar.edu $ puppet kick vanilla.cms.ucar.edu > Triggering vanilla.cms.ucar.edu > Host vanilla.cms.ucar.edu failed: Server hostname ''vanilla.cms.ucar.edu'' did not match server certificate; expected ca > vanilla.cms.ucar.edu finished with exit code 2 > Failed: vanilla.cms.ucar.edu I''ve tried...
2010 Jul 03
2
pkg/tests: how to run them with --vanilla
...n set). R 2.12.x will ensure > that the tests are run in English, and it saves a lot of unnecessary > chatter if the reference results also are. > > As a further point, > >> [Sauvegarde de la session pr?c?dente restaur?e] > > indicates that they were not generated in a vanilla session, and they > should be (as the tests are run with --vanilla --slave). > > Brian Ripley I always used to run the .Rout.save files with R CMD BATCH xxx.R So it seems I should rather do it with R --vanilla... I tried: cat xxx.R| R --vanilla --slave > xxx.Rout.save But this giv...
2003 Jan 10
3
ext3 corruption with vanilla kernel 2.4.19?
Hello After compiling and booting a RH 8.0 box with a 2.4.19 vanilla kernel i've started to experience some problems on my /home partition, (i/o errors on 2 files). After rebooting the machine failed the to mount /home and dropped me in the recovery shell. The fsck is still running after 9 hours. The system is a dual athlon MP with 1Gb ram and ASUS MB. the /hom...
2011 Mar 14
1
Rscript, hashbang, and arguments
Hi, I have a bunch of R scripts which have the hash bang !/usr/bin/env Rscript and I typically run these scripts by passing in some parameters like this: ./nameOfRScript arg1 arg2 ... I know Rscript has the option to run in --vanilla. Where exactly do I insert the --vanilla option? When I do something like this: ./nameOfRScript --vanilla arg1 arg2 ... And I try to access the commandArgs, the first argument is --vanilla which isn't what I want. I tried to do commandArgs(trailingOnly=TRUE) with ./nameOfRScript --vanilla...
2007 Sep 19
2
[LLVMdev] Building current llvm-gcc-4.0 TOT fails on darwin x86
I now get: /Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/xgcc -B/Users/ arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/ -B/Users/arnold/ Desktop/testing/vanilla-gcc-4.0/obj/../install/i686-apple-darwin8/ bin/ -B/Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/../install/ i686-apple-darwin8/lib/ -isystem /Users/arnold/Desktop/testing/...
2020 Mar 19
2
R CMD check --as-cran attempts to hide R_LIBS_USER but fails
...y setting R_LIBS_SITE and R_LIBS_USER. However, contrary to R_LIBS_SITE, it fails for R_LIBS_USER and the user's personal library is still available for test scripts. Should I revise my assumptions, or is that intentional? The short version. Shouldn't: $ R_LIBS_USER='' Rscript --vanilla -e ".libPaths()" [1] "/home/hb/R/x86_64-pc-linux-gnu-library/4.0" [2] "/home/hb/software/R-devel/trunk/lib/R/library" give the same output as: $ R_LIBS_USER="no_such_dir" Rscript --vanilla -e ".libPaths()" [1] "/home/hb/software/R-devel/trunk...
2005 Feb 18
4
R & bash script
Hi how is it possible to use more than one command when i'm didn't want use R CMD BATCH for specific reason? $ echo "(x<-1:10)" | R --vanilla works $ echo "(x<-1:10 ;y<-20:30 ;lm(y ~ x))" | R --vanilla works not. Is it further possible using bash variables like $i from a loop in the bash echo call i.e. dm$x$i$k <- read.data("dmdata$x$i$k.dat",header=T) many thanks for a starting point! christian
2019 May 27
0
opus-1.3.1 patch for ARM Cortex-M4F (single precision)
...nstant". The compiler gives the following warning to the line A warning: #1035-d: single-precision operand implicitly converted to double-precision More details, refer to: https://mcuoneclipse.com/2019/03/29/be-aware-floating-point-operations-on-arm-cortex-m4f/ diff -Naupr opus-1.3.1-vanilla/celt/celt_encoder.c opus-1.3.1/celt/celt_encoder.c --- opus-1.3.1-vanilla/celt/celt_encoder.c 2018-10-17 03:52:45 +0800 +++ opus-1.3.1/celt/celt_encoder.c 2019-05-27 17:15:55 +0800 @@ -1321,7 +1321,7 @@ static int compute_vbr(const CELTMode *m /*printf("%f %f %f %f %d %d ", st->a...
2003 May 29
2
R CMD BATCH --vanilla --slave produces unwanted lines
...r R for a working script...I was pleased to see the solution wasn't obvious!) Anyway, now I'm trying to run R in batch mode, but I'm getting extra output, which I don't want (RedHat 8.3, R-1.7.0): r:~% cat test.R options(echo=FALSE) write(rnorm(4),"") r:~% R CMD BATCH --vanilla --slave test.R r:~% cat test.Rout > options(echo=FALSE) 0.1500393 0.1067567 0.2707306 -1.657154 [1] 1.82 0.07 1.87 0.00 0.00 r:~% I just want the four random variables, not the "options(echo=FALSE)" line nor the final line which looks like the output of a proc.time() call (how come...
2007 Sep 19
0
[LLVMdev] Building current llvm-gcc-4.0 TOT fails on darwin x86
...T(Revision: 42128) with current llvm > (Revision: 42128) on 8.10.1 Darwin (x86) fails with the following > message. Is that a just a temporary inconsistency or should i file a > bug? I think I broke this with long double. I'll get it fixed shortly. > /Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/xgcc -B/Users/ > arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/ -B/Users/arnold/ > Desktop/testing/vanilla-gcc-4.0/obj/../install/i686-apple-darwin8/ > bin/ -B/Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/../install/ > i686-apple-darwin8/lib/ -isystem /Users/arnold/...
2002 Jul 04
4
Chroot patch (v3.4p1)
...ecessary first step (IMO). It applies clean with 'patch -l'. Also attached is a shell script that helps to build a chrooted home dir on a RedHat 7.2 box. (I would appreciate some feedback from a core developer as to whether this looks to be a useful approach or not.) --- openssh-3.4p1.vanilla/servconf.c Mon Jun 24 23:22:04 2002 +++ openssh-3.4p1/servconf.c Wed Jul 3 11:23:26 2002 @@ -292,7 +292,7 @@ sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost, sStrictModes, sEmptyPasswd, sKeepAlives, sUseLogin, sAllowTcpForwarding, sCompression, - sAllowUsers, sDenyUsers, sAllowGroups, sD...
2016 May 02
1
Closing a fifo() on Windows core dumps R (3.2.5, 3.3.0 RC and devel)
The following core dumps R 3.2.5, R 3.3.0 RC and R devel on Windows. I have tried to use a minimal setup (for all versions tested), i.e. C:\> cd C:\ C:\> set PATH=C:\PROGRA~1\R\R-33~1.0RC\bin C:\> set R_DEFAULT_PACKAGES=base C:\> R --quiet --vanilla > close(fifo("foo.tmp", open="wb")) [core dump] C:\> R --quiet --vanilla > con <- fifo('foo.tmp', open='wb') > print(con) description class mode text opened can read "\v" "fifo" &...
2008 Oct 31
2
Problem of running R console from Java on linux box
Hi the list: I can not create R process from Java application with my linux box, the process never was created, or just terminated immediately after I called Runtime.getRuntime().exec(...) The command lines I have tried are(the paths are all correct): "/bin/sh /usr/bin/R" "/bin/sh -c /usr/bin/R" "/usr/lib/R/bin/exec/R"(also set R_HOME=/usr/lib/R) I
2020 Mar 19
1
R CMD check --as-cran attempts to hide R_LIBS_USER but fails
..."'no_such_dir'" (sic!). The only other interpretation I can imagine from using R_LIBS_USER='' on Linux is that is exists there to force the default settings in case it is already set externally by user. For example, if one do export R_LIBS_USER="$PWD" R --vanilla CMD check --as-cran teeny_0.1.0.tar.gz then tests scripts still get R_LIBS_USER="~/R/x86_64-pc-linux-gnu-library/3.6". But, then why is there a difference between Windows and Linux in this essential behavior? To me, this suggests there is a mistake somewhere. OTH, I know that lots of...
2013 Nov 21
2
Running R embedded in an mpiexec spawned process - Fatal error: you must specify '--save', '--no-save' or '--vanilla'
...th embedded R that is proven to run in a single process: ./Sample1.exe on a Debian Linux with R 3.0.2 Running the same code with mpiexec, it fails at the R engine initialization: mpiexec -n 1 ./Sample1.exe Fatal error: you must specify '--save', '--no-save' or '--vanilla' ------------------------------------------------------------------------- The behavior is actually reproducible with the straight R mpiexec -n 1 R Fatal error: you must specify '--save', '--no-save' or '--vanilla' --------------------------------------...
2010 Apr 23
1
Path simple menu integrated progress indicator
...s the user to specify the text to display when loading MENU LOADMSGROW -- controls where the text is written Example configuration: MENU LOADMSG Booting MENU LOADMSGROW 25 It works with my setup, please let me know if you find any bugs or spot any problems. Thank you. diff -uprN syslinux-3.86-vanilla//com32/include/syslinux/loadfile.h syslinux-3.86/com32/include/syslinux/loadfile.h --- syslinux-3.86-vanilla//com32/include/syslinux/loadfile.h 2010-03-31 11:24:25.000000000 -0500 +++ syslinux-3.86/com32/include/syslinux/loadfile.h 2010-04-15 10:14:24.000000000 -0500 @@ -9,7 +9,9 @@ #define...
2006 Jun 26
2
[PATCH, RFC 3/13] OTP: parity table
Add OTP parity table. diff -urdpNX /usr/share/dontdiff -x Makefile dovecot.vanilla/src/lib-otp/otp-parity.c dovecot/src/lib-otp/otp-parity.c --- dovecot.vanilla/src/lib-otp/otp-parity.c 1970-01-01 03:00:00.000000000 +0300 +++ dovecot/src/lib-otp/otp-parity.c 2006-06-23 13:44:31.161891112 +0400 @@ -0,0 +1,29 @@ +/* + * OTP parity table. + * + * Copyright (c) 2006 Andrey Panin <...
2004 Dec 16
4
1.0-test58
http://dovecot.org/test/ - Fixed APPEND hanging in some situations. Didn't happen with mail_save_crlf=yes. - Added pop3_uidl_format setting. No need to patch sources anymore if you don't want the default. Does anyone want pop3_uidl_xuidl_header yes/no setting, with fallbacking to pop3_uidl_format if X-UIDL header isn't found? Shouldn't be difficult to do.. - Added