similar to: Stack overflow error while creating package

Displaying 20 results from an estimated 10000 matches similar to: "Stack overflow error while creating package"

2009 Apr 06
3
Installing Warehouse- undefined symbol: apr_dbm_type_db
Hi All, I want to install warehouse application but i could use rake command because of following error. Kindly support me to resolve the same. Error- !! No Ultraviolet gem found, defaulting to javascript syntax highlighting. Do not be afraid. !! Error loading plugins: Mysql::Error: Table ''electron_xorndevelopment.plugins'' doesn''t exist: SELECT * FROM `plugins`
2007 Mar 31
3
Help in getting aggregated data
Hi team, I have the data of the form: > a<- data.frame(x=c(1,2,1,4,3), y=c(1,2,1,4,3), z=c(1,2,3,4,5)) I need the output of the form > b<- data.frame(x=c(1,2,3,4), y=c(1,2,3,4), z=(3,2,5,4) ) As you can see, the Z value contains the maximum for each of the (x,y) combinations. I used > c<-by(a$z, list(x=a$x, y=a$y), max) > c[,] y x 1 2 3 4 1 3 NA NA NA 2
2010 Feb 05
1
Reg: Rgraphviz installation
Hi, Could you guide me to upload Rgraphviz library. I have installed Graphviz 2..20.3.1 , even followed the instructions in Read me, but I cannot load the package. There is a error message "This application has failed to start becaues libcdt-4.dll was not found. Re-installing the application may fix this problem", whenever we plan to load the package. Thanks in Advance Deepak
2007 Feb 20
7
How to Get data from Web Page to Database.
Hi, I want to get the details from a table which is displayed on a Web page into the Database. How to read that Web page ? I mean if there is table Student details like Roll no., name etc. And I want to read that table & store it into my database in table My_Student. How to do this? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2005 May 05
2
names(dist(mat)) gives NULL in R 2.1.0
Dear list, I do not know if this is a bug. Let's suppose mat is a matrix derived from this code: > x<-rnorm(10) > y<-rnorm(10) > names(x)<-LETTERS[1:10] > names(y)<-LETTERS[1:10] > mat<-cbind(x,y) Now in R 2.0.1 I have: > names(dist(mat)) "A" "B" "C" "D" "E" "F" "G" "H"
2005 May 17
4
device mapping
Hi, How do I map certain pci devices directly into a user domain? Has anybody done this? Any leads would be appreciated. thanks deepak _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Apr 19
2
RODBC odbcCloseAll odbcClose Windows XP
Hello... After installing the precompiled version of R 2.1.0 (congratulations to the R Development Core Team) for Windows XP (Service Pack 2), I'm having problems with the "odbcCloseAll" and "odbcClose" functions within the "RODBC" package. I get pretty much the same error message for both functions: odbcCloseAll() produces: Error in
2011 Sep 14
1
Building R package with precompiled shared library
Dear R users, we are trying to build a R package that includes a precompiled shared library, let's say mylib.so. We created the skeleton of the package and we moved the mylib.so file into the libs folder that we created at the same level of the folders man and R. Moreover we created the file NAMESPACE and we added the line useDynLib(mylib, .registration=TRUE). The building step seems to work
2005 Nov 04
4
Dom0 eth0 has different MAC address than expected, ignoring
Hi, I''m a newbie to Xen and I need some help. I saw user ''datto'' had a similar problem but changed to FC4 to resolve it. I''m currently running FC3 and Xen2.0.7. I did the usual ''make install'' and I can boot into Xen dom0. However, my network card is not working. The driver is found in the linux-2.6.11.12-xen0 tree but not selected. I
2005 Jul 07
2
R under suse linux 9.3
Hi, dear list members, I've been using R under windows XP and I am now changing my system to SUSE LINUX 9.3. I could figure out that there is no precompiled version of R for LINUX. To get me going, I would like your help regarding what I need to setup R under my SUSE LINUX. Which compiler do I need to be able to compile the source and I was wondering if I could get GNU compiler?
2005 Apr 13
1
package submission and binary versions
Dear r-help- >From reading the CRAN web page, it appears that you should not submit precompiled binary versions of your package, but rather that these are built for you by someone working with CRAN. I submitted my package using R CMD build but without the binary flag on. I'd like to have a binary version available for Windows users. Should I submit a precompiled binary version as well?
2005 May 05
2
problem with plot() and R 2.1.0
The following line when pasted into an R Console window causes Windows XP to flash a blue screen and then restart. R version 2.1.0 >plot(x=c(1:100000),y=sin(c(1:100000)), type="l") Windows XP SP2 I installed the precompiled version of R 2.1.0 This isn't the data I was originally trying to graph, but a way to reproduce the error I observed. Plotting without the sin() did not
2011 Sep 13
1
"Isn't precompiled" message while compiling
I have one JS library that references image assets in /app/assets/images/subdir/. When I execute "bundle exec rake assets:precompile RAILS_ENV=production", I receive an error that the image file in /subdir/ isn''t precompiled ... while I''m telling it to compile all assets. I''ve tried clearing out /public/assets/. Any ideas? Thanks, Christopher Thielen --
2013 Apr 18
2
gpxelinux.0 Unable to locate configuration file while pxelinux.0 works
I have a situation very similar to whats in http://www.syslinux.org/archives/2013-January/019251.html The server is setup to provide info over dhcp+tftp and I'm planning on chaning that to dhcp+http so I copied gpxelinux.0 to pxelinux.0 and started failing. The client (in my case it's a hp proliant BL460c G7) manage to get gpxelinux.0 loaded but when it comes to load the config file it
2005 Nov 23
3
Infinite recursion in S3 methods crashes R on windows (related to PR#8203?)
Hi, Infinite recursion in S3 methods seem to crash R on Windows 2000 (R terminating with the ("Rgui.exe has generated errors...") message, rather than throwing an error. This happens with both Rgui and Rterm. The following toy example triggers this: myf <- function(x, ...) UseMethod("myf") myf.default <- function(x, ...) myf(x) myf(1) ...R crashes... Which I
2015 Jun 15
2
[PATCH] resize: make available expand method warnings more prominent
When hitting a filesystem which we cannot or don't know how to expand, instead of print a warning in verbose mode only, print it always when showing the summary of the changes. In the virt-resize documentation, add a paragraph about this warning. --- resize/resize.ml | 30 +++++++++++++++++++++++------- resize/virt-resize.pod | 39 +++++++++++++++++++++++++++++++++++++++ 2 files
2007 Apr 25
0
Redcloth bug - Stack overflow in regexp matcher
Hi, I''ve been using the rassmalog static blogging engine and have encountered a stack overflow inside the redcloth regexp matcher. I don''t seem to suffer this error on my Ubuntu (Feisty Fawn) box (with Ruby 1.8.4??), but I do get it on my Gentoo system. Running the following line will generate it (I''ve attached the YAML/redcloth file to this message). $ ruby -ryaml
2005 Nov 21
0
chmlib: Major security fix for stack overflow vulnerability
http://www.sven-tantau.de/public_files/chmlib/chmlib_20051126.txt Should be described in VuXML. And there was other major security fixes between 0.35 and 0.36. -- Sem.
2005 Jun 14
1
protection stack overflow??
Hi dear Rers, I am using SSOAP package to access SOAP service at NCBI. I followed the example code in SSOAP but failed. > z <- .SOAP("http://www.ncbi.nlm.nih.gov/entrez/eutils/soap/soap_adapter.cgi", method="run_eInfo", db="pubmed", action = I("einfo")) Error: protect(): protection stack overflow what's wrong? Thanks very much. Regards
2007 Sep 29
0
Stack overflow in Internet Explorer
I tried the prototype example in Internet Explorer 7 in Windows XP SP2 and Internet Explorer 6 in Windows XP SP2. Sometime after both browsers give stack overflow erros and stop receiving messages but still I could send messages and they get delivered. Why is this happening? Is there a way to fix it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are