similar to: tests/ok-errors.R ## bad infinite recursion

Displaying 20 results from an estimated 3000 matches similar to: "tests/ok-errors.R ## bad infinite recursion"

2007 Jan 14
4
feature request, hardlink progress......
I'm copying a partition that has a bunch of hardlink based snapshots (-aPH). I think there's about 250,000 files in each backup and between 100 and 200 snapshots. Earlier today, I saw the files had completed and it was making all the hardlinks. I thought it would be "not long" but it's been making hardlinks for 12 hours (at least). There's only 36Gb in snapshot, the
2008 May 19
3
R static is dynamically linked!!
Hi, After doing all I could find with the confiure script... I set some env too... export enable_R_static_lib=yes export want_R_static=yes export WANT_R_STATIC_TRUE=yes ./configure \ --prefix=${i} \ --enable-R-static-lib \ --enable-static \ --without-readline \ --without-iconv \ && make \ && make install \ && echo "R ${v}
2007 Jan 25
3
r tidy
Is there an r-tidy program? something that works similar to perl tidy? http://perltidy.sourceforge.net/ which takes program code and reformats white space with standard indentations and spacing? I did find a ruby based rtidy, but that is for html formatting. // George -- George Georgalis, systems architect, administrator <IXOYE><
2010 Sep 09
2
set lockedmem to higher value?
We have some ORACLE PGA problem and ORACLE document say we can serup lockmem(Max lock memory) to higher value. $ulimit -a time(cpu-seconds) unlimited file(blocks) unlimited coredump(blocks) 0 data(kbytes) unlimited stack(kbytes) 10240 lockedmem(kbytes) 3145728 memory(kbytes) unlimited nofiles(descriptors) 65536 processes 2047 Can anyone tell me how to set lockedmem to higher value on
2006 Feb 03
2
warnings on symlinks using link-dest
Hi, I'm using rsync with link-dest to make snapshot like backups into /sawmill/backup/{hostname}/snapshot/{timestamp}/{root} I'm getting warnings that I don't understand... On Fri, Feb 03, 2006 at 05:00:01AM -0000, Cron Daemon wrote: >+ rsync --recursive --links --perms --times --group --owner --devices --numeric-ids --exclude '*.boot' --exclude '*.lock' --exclude
2003 Sep 28
1
infinite recursion during package installation with methods, setAs
I ran into a problem recently trying to update a package which uses S4 methods using a recent beta of R. I think I can reproduce it with a simple example. I have package called `testpkg' in directory testpkg/. In the R/ subdirectory of testpkg/ I have a file called testpkg.R which contains the following two lines: setClass("testpkg", representation(pts = "list"))
2008 May 08
1
odd behavior on remote
I've been using rsync for some time (years) to generate many hardlink snapshots per day; but I'm seeing an odd new problem today. the remote/destination host gets a file list from the source machine via ssh, and begins to write files until it "hangs". On this run only one file was transferred; on other runs many screenfulls went across + rsync --recursive --links --perms
2009 Mar 19
1
Overriding Queue Wrapup Time
Is there a way to override the queue wrapup time on the fly? I would like to allow a longer wrapup time for my agents, but if they are already done with closing up the call ticket, I would like them to be able to dial an extension or something to override the wrapup. Is there a way to do that? -- Regards, Robert Broyles
2005 Aug 15
2
encrypted destination
In the archives I see the question about encrypted destination and it's mostly answered with the --source-filter / --dest-filter patch by Kyle Jones. There are also some proposed updates to the patch. A lot of these posts 3 years old, is there plans or reasons not to include them in the main line code? // George -- George Georgalis, systems architect, administrator <IXOYE><
2008 Aug 26
1
Potential Error/Bug?: addition of NULL during arithmetic
I encountered an error that does not make sense to me given my reading of the documentation and does not appear to be referenced in the list archives or online. The error occurred when a function received a NULL value rather than a numeric value as a parameter and then attempted to use the NULL value in the calculateion. The error: "Error during wrapup: nothing to replace with" can
2010 May 24
1
Error during wrapup: cannot open the connection
I am trying to use a new (to me) package (samr) and even when I try to run a very simple example, I get this "cannot open the connection" error. The reason I am writing to r-help rather than to the authors of samr is I think this may be a more general R problem rather than a samr-specific problem. Perhaps something with my installation and write access to some particular place ? I am
2008 Mar 30
1
using rsync on raw device
Hi -- congratulations on the 3.0 release! I'm trying to use rsync to manage a raw disk image file. rsync --checksum --perms --owner --group --sparse --partial --progress \ 192.168.80.189:/dev/rwd0d /u0510a/rwd0d.img skipping non-regular file "rwd0d" sent 20 bytes received 69 bytes 178.00 bytes/sec total size is 0 speedup is 0.00 rsync version 2.6.9 protocol version 29
2012 Mar 26
2
Error during wrapup: incorrect number of dimensions
when subsetting a matrix results in a single row, it is converted to a vector, not a matrix. how do I avoid this? 1. __GOOD__ > edges <- get.edges(g,E(g)) > edges [,1] [,2] [1,] 0 2 [2,] 0 3 [3,] 0 4 [4,] 0 5 [5,] 1 1 [6,] 0 4 [7,] 0 6 [8,] 0 7 [9,] 0 8 [10,] 0 9 [11,] 0 5 [12,] 0 10 [13,] 0 11
2007 Jan 30
2
R crashes when used from within rpy (PR#9481)
Full_Name: Jose Gaetan Pierre Version: 2.4.1 OS: Fedora Core 6 Submission from: (NULL) (196.27.87.14) I have been using R from within rpy for a while because I am more familiar with Python syntax. I first noticed this bug with R-2.4.0. Screendump: ------------------------------ >>> from rpy import * >>> beer = r.scan() 1: 3 4 1 1 3 4 3 3 1 3 2 1 2 1 2 3 2 3 1 1 1 1 4 3 1 26:
2005 Feb 15
3
using poly in a linear regression in the presence of NA f ails (despite subsetting them out)
This smells like a bug to me. The error is triggered by the line: variables <- eval(predvars, data, env) inside model.frame.default(). At that point, na.action has not been applied, so poly() ended being called on data that still contains missing values. The qr() that issued the error is for generating the orthogonal basis when evaluating poly(), not for fitting the linear model itself.
2005 Feb 15
3
using poly in a linear regression in the presence of NA f ails (despite subsetting them out)
This smells like a bug to me. The error is triggered by the line: variables <- eval(predvars, data, env) inside model.frame.default(). At that point, na.action has not been applied, so poly() ended being called on data that still contains missing values. The qr() that issued the error is for generating the orthogonal basis when evaluating poly(), not for fitting the linear model itself.
2017 Nov 29
2
SAMseq errors
Hi, I am trying to using SAMseq() to analyze my RNA-seq experiment (20000 genes x 550 samples) with survival endpoint. It quickly give the following error: > library(samr)Loading required package: imputeLoading required package: matrixStats Attaching package: ?matrixStats? The following objects are masked from ?package:Biobase?: ? ? anyMissing, rowMedians Warning messages:1: package ?samr? was
2009 Jan 08
1
NAs are not allowed in subscripted assignments
Browse[1]> j <- c(1,2,NA) Browse[1]> j[j==1][-1] [1] NA Browse[1]> j[j==1][-2] [1] 1 Browse[1]> j[j==1][-2] <- 2 Error during wrapup: NAs are not allowed in subscripted assignments As far as I can see, I have no NA in the lhs (not after the second subscript anyway). Besides, I have a single value on the rhs, so it should be allowed to have NAs in the lhs, according to
2012 Jul 10
1
Negative years with strptime?
Is there a way to make as.Date() and strptime() process strings with negative years? It appears that Date objects can contain negative years and you can convert them to strings, but you can't convert them back to Date objects. x <- as.Date(c("0001-01-24", "0500-01-24")) as.character(x) # "0001-01-24" "0500-02-02" as.Date(as.character(x)) #
2018 Jan 14
2
Lmtp Memory Limit
Hi, i am using dovecot 2.2.33.2 on CentOS 7.4. Since i upgraded from CentOS 7.2. to CentOS 7.4. (without upgrading dovecot), my dovecot sieve-pipe scripts crash with Out of memory: Out of memory (allocated 262144) (tried to allocate 8793 bytes) There are some memory limits in dovecot or sieve? Can i change this value? Kernel limitks: [root at xxx software]# ulimit -a core file size