Displaying 20 results from an estimated 5000 matches similar to: "R 2.1 dies when some text() arguments are NULL (PR#7477)"
2005 Jan 03
1
[LLVMdev] Problem with LLVM CFE bootstrap at FreeBSD
I can't boostrap LLVM CFE at FreeBSD with current LLVM and LLVM CFE CVS
sources.
GCC bootstrap terminated with error:
/usr/home/wanderer/pkg/build/llvm/objcfe/gcc/xgcc -B/usr/home/wanderer/pkg/build/llvm/objcfe/gcc/
-B/home/wanderer/pkg/build
/llvm/night/cfe/i386-unknown-freebsd5.3/bin/ -B/home/wanderer/pkg/build/llvm/night/cfe/i386-unknown-freebsd5.3/lib/
-isystem
2004 Nov 17
2
[LLVMdev] llvm-test portability failures
I updated my source tree and after putting malloc.h back things look a lot better. Still getting a large number of JIT-only failures. There is now only one assertion failure:
/home/cfe/x86/llvm-gcc/bin/g++ -I/usr/home/llvm/obj/projects/llvm-test/MultiSource/Benchmarks/Prolangs-C++/city -I/usr/home/llvm/obj/projects/llvm-test/../../../projects/llvm-test/MultiSource/Benchmarks/Prolangs-C++/city
2004 Nov 17
0
[LLVMdev] llvm-test portability failures
On Wed, 17 Nov 2004, Jeff Cohen wrote:
> I updated my source tree and after putting malloc.h back things look a lot better. Still getting a large number of JIT-only failures. There is now only one assertion failure:
>
> /home/cfe/x86/llvm-gcc/bin/g++ -I/usr/home/llvm/obj/projects/llvm-test/MultiSource/Benchmarks/Prolangs-C++/city
2004 Nov 17
2
[LLVMdev] llvm-test portability failures
After going through 17000+ lines of output, I come up with the following...
===========================================
In file included from /usr/home/llvm/obj/projects/llvm-test/../../../projects/llvm-test/MultiSource/Applications/hexxagon/hexxagonmove.cpp:26:
/usr/include/sys/timeb.h:43: error: `time_t' does not name a type
2004 Nov 17
0
[LLVMdev] llvm-test portability failures
Ignore the missing malloc.h errors. I screwed up badly. I was undoing my alloca.h hack and removed the wrong file.
On Tue, 16 Nov 2004 23:29:43 -0800
Jeff Cohen <jeffc at jolt-lang.org> wrote:
> After going through 17000+ lines of output, I come up with the following...
>
> ===========================================
>
> In file included from
2006 Aug 15
0
imap+ssl feedback
I've been using 1.0rc5 since August 2nd. Thunderbird users on multiple
platforms haven't had any problems saving messages to the Sent mailbox.
I know from reading release notes that the SSL proxy code in rc5 is
different from rc6, but I have to admit to being leery about upgrading
since it works for me.
Here's my configure command:
./configure --without-shadow --localstatedir=/var
2006 Oct 16
1
errors on copying messages to sent-mail
Howdy,
In rc10 I'm still experiencing the occasional error copying mail to my
sent messages folder. This is on Thunderbird 1.5.0.7 on a Mac.
My configure command:
./configure --without-shadow --localstatedir=/var -with-cyrus-sasl2
--without-gssapi --without-vpopmail --prefix=/usr/local
--build=i386-portbld-freebsd5.3
FYI,
Todd
2006 May 23
2
ActionMailer stopped working after upgrade to Rails 1.1
Hello,
I am using implicit e-mail templates to send HTML messages. I had no
problems till I have upgraded to Rails 1.1. Now the deliver_xxx method
just fails without *any* error message. No error or whatsoever (both
in development and production environments) exist in logs. Stranger
than that, a blank page is being displayed (according to logs, 0
length response, with 200 OK code). I googled for
2005 Jan 10
2
Problem with compiling - Freebsd on AMD64 (PR#7489)
Full_Name: Kelly Black
Version: 2.0.1
OS: FreeBSD 5.3 on AMD64
Submission from: (NULL) (149.106.32.93)
I downloaded R-2.0.1 from the R website, ran configure then make and got an
error. I will paste a copy of the output from the makefile below. The problem
was when the makefile tried to run the R binary. When I came across the error I
reran configure, but this time with the following arguments:
2011 Jan 12
1
Degrees of freedom
Hello,
I have a little problem about degree of freedom in R.
if you can help me, I will be happy.
I used nlme?function to analyze my data and run the linear mixed
effects model in R.
I did the linear mixed effect analysis in SAS?and SPSS as well.
However, R gave?the different degrees of freedom than SAS?and SPSS did.
Can you help me to learn what the reason is to obtain different
degrees of
2002 Sep 27
3
Retaining regularly used add-ons
Hi everyone,
How might I go about configuring R to keep
add-on packages loaded from session to session?
Is this undesireable for some reason?
At present, I keep a file called "pckgs.txt" in my
working directory with, e.g.,
library(gnlm)
library(Hmisc)
...
and then type source("add-ons.txt") every time I start
a new session. I suspect there's a more elegant way
to hold
2003 Jun 15
1
Fitted probabilities from glmmPQL?
Hello All,
Specifying 'type = "response"' when using predict() on a
model fit using glm(...,family="binomial") returns fitted
probabilities.
Is it possible to get the same from a model object
fit using glmmPQL() ?
Thanks in advance,
Rob
_____________________________________________________
Rob Keefe Lab: (208) 885-5165
M.S. student
2003 Jul 25
1
Multiple expressions in system.time()?
Hi All,
Is it possible for system.time() to measure the time
it takes for a machine to evaluate more than one R
expression?
For example,
# This I can do:
> system.time(x <- rnorm(100000))
[1] 0.07 0.00 0.13 0.00 0.00
# But this I can't:
> system.time(x <- rnorm(100000); new <- sample(x, 100000, replace=T))
Error: syntax error
# Nor this:
> system.time(x <-
2015 Feb 16
3
[LLVMdev] LLVM parallel annotations
Hi all,
I'm a grad student from MIT and as part of my thesis, I will be propagating
parallelism in the IR level. I will be modifying clang and adding LLVM IR
metadata annotations to indicate parallel regions and loops, then write
optimizer passes that will run on top of the annotated LLVM IR.
There has been a lot of research lately on Parallel IRs, such as SPIR[1
2006 Aug 16
9
BSD people, please test kqueue changes
I rewrote much of the kqueue code since the old code didn't handle
properly the case when both input and output I/O handlers were added to
the same file descriptor with different callbacks. This is done commonly
in Dovecot, so I'm wondering why more people didn't complain about
problems with it.. :)
I don't anyway have access to any BSDs so the code is completely
untested. Please
2004 Mar 22
3
Rsync killed my server
I have the following as a line in a script kicked off from cron:
sudo rsync -e ssh -avz /Times_QPS/ 192.168.22.72:/Times_QPS/ --eahfs
It logs the output to a log file, however rsync caused the log file to go to an 80gb file and fill up my disk because it threw a mental when a file it went to sync was no longer there!
Is there some way to get the sync to ignore errors?
-Jason
2004 Mar 13
4
nnet classification accuracy vs. other models
I was wandering if anybody ever tried to compare the classification
accuracy of nnet to other (rpart, tree, bagging) models. From what I
know, there is no reason to expect a significant difference in
classification accuracy between these models, yet in my particular case
I get about 10% error rate for tree, rpart and bagging model and 80%
error rate for nnet, applied to the same data.
Thanks.
2006 Aug 17
2
SaltedHashLoginGenerator no such file to load -- iconv
Hi,
I''m trying to use the SaltedHashLoginGenerator as documented on
http://wiki.rubyonrails.com/rails/pages/SaltedHashLoginGenerator
Ruby version: ruby 1.8.4 (2005-12-24) [i386-openbsd3.9]
I''ve the following commands:
gem install salted_login_generator
gem install localization_generator
rails myapp
cd myapp
ruby script/generate salted_login User Localization
All ran
2003 Oct 16
2
returning dynamic variable names from function
Within a function I'm assigning dynamic variable names and values to them
using the "assign" function. I want to pass back the results but am
uncertain how to do this.
Basically, my function reads a number of data files and uses the filename of
each file as the variable name for a list-to-become-dataframe. I want then
to pass all these lists back, but again, the names of the
2005 Jan 03
2
[LLVMdev] gmake check broken
I'm getting the following error:
ERROR: tcl error sourcing /usr/home/jeffc/llvm/obj/test/site.exp.
extra characters after close-quote
while executing
"set llvmgcc
"PATH="/usr/home/jeffc/llvm/obj/Debug/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/home/jef..."
(file "/usr/home/jeffc/llvm/obj/test/site.exp"