similar to: Failed "make check" under Fedora Core 4 (PR#7979)

Displaying 20 results from an estimated 8000 matches similar to: "Failed "make check" under Fedora Core 4 (PR#7979)"

2005 Jun 29
2
Failed make (PR#7978)
I downloaded R v2.1.1 earlier this morning to compile under Fedora Core 4. It compiled without incident, but 'make check' failed. Below is the relevant part of its report. Is this a known problem? I used a locally compiled version of GCC v4.0.0 that reports [kent at d89h102 R-2.1.1]$ gcc -v Using built-in specs. Target: i686-pc-linux-gnu Configured with: ../gcc-4.0.0/configure
2002 Mar 22
2
rare bad bug in sys.function() {or match.arg()} (PR#1409)
I found this tracing a bug when experimenting with a new sort() function using match.arg(). It was triggered because mosaicplot.default(.) has an argument called `sort' and calls itself the sort() function in which I was using match.arg()... Here is (input for) a small clean example : #### bad match.arg() // sys.function() bug : #### MM, 22.3.2002 callme <- function(a = 1, mm =
2006 Mar 12
1
alias_method interferes ApplicationHelper
Hello, I''m using Ruby 1.8.4 (darwinport), rails-1.0.0 (gem) , Powerbook / Mac OS X 10.4.5 , Webrick. How come Rails always raises NoMethodError for my helper (must_fill and rp or number_to_currency_rp) in application_helper.rb ? I doubt that alias_method is the culprit, but if i give # comment then there will be no errors at all ... :/ what am i doing wrong? is it a bug or stupid me? Thx
2003 Sep 26
3
dialing out with the outgoing queue problem.
Hi, I have cvs updated all my modules (zapata, libpri, zaptel and asterisk). I have also read in the archives & seems that no-one has run into this problem. What I'm trying to do is simple. Just make and outbound call using the /var/spool/asterisk/outgoing directory. I copied /usr/src/asterisk/sample.call and only changed the context & extension. I configured my Zap1 to the same
2001 Aug 07
3
Packages: What expressions are allowed outside/before .First.lib?
Sorry for this long message. The two first questions asks for general coding standard when creating packages, the third one asks if the .R files are concatenated in lexical order or not, the fourth question is a "how-to" question. All questions are related. If there is a reference where I can read about this please tell me, because then I could repost a more restricted set of questions.
2004 Jun 08
8
New version of DIAX (0.9.8a) available now for free download
Hi all, A new version of DIAX (0.9.8a) is ready to be downloaded from the following locations: http://www.laser.com/dante or http://www.geocities.com/tdanro What's new in 0.9.8a: - unconditional autoanswer or based on CallerID (user configurable); - use any Ericsson/SonyEricsson GSM/PCS to control DIAX (feedback on the phone display) through Bluetooth (or serial cable). You do not even
2003 Oct 23
3
List of lm objects
Hi R-Helpers: I?m trying to fit the same linear model to a bunch of variables in a data frame, so I was trying to adapt the codes John Fox, Spencer Graves and Peter Dalgaard proposed and discused yesterday on this e-mail list: for (y in df[, 3:5]) { mod = lm(y ~ Trt*Dose, data = x, contrasts = list(Trt = contr.sum, Dose = contr.sum)) Anova(mod, type = "III") } ## by John Fox or for
2009 Nov 18
1
getting the name of a single object in R for debugging output
I often use a debug flag (set to TRUE) to turn on various debugging print statements in my R scripts.  I was thinking I should create a function debugPrint(object,debugFlag), to print out the object name and contents if the debugFlag is set to TRUE.  Then I wouldn't have to make my script ugly(..er) than it already is by adding IF statements all over the place.  I've seen how ls() dumps
2002 Jan 06
2
Passing names of variables to functions
Hi, I am still new to R and have a programming question. I have created a small function which takes a parameter. In the function I want to be able to refer to the names of the variables sent to the function (specifically I want to be able to use the name of the variable given to the function in an output table). For example, in the following (fictional) function I want some way of printing
2004 Apr 08
2
nlme on Windows 2000 (v1.8.1)
I have a problem with nlme on Windows 2000, and I'm having a devil of a time determining whether the problem is with my computer or with something in R. I'm running v1.8.1 on a Dell Pentium III with 512MB of RAM and all of the recommended Windows 2000 updates applied. If I use Rterm, I can run analyses with NLME to my heart's content. But when I run Rgui, I encounter a floating
2004 Apr 01
1
Still trying program -> phone call
A while back, I asked about using Asterisk in a medical environment where the task is to write a program that connects to a phone and sends a message like: Hello Mrs. Jones. How are you doing today? Press 1 if you're OK. Press 2 if you need help. Or start talking, and your message will be passed to a person. After connecting and sending the sound file, the program would
2009 Aug 12
2
Symbolic references - passing variable names into functions
Hello All, I am trying to write a function which would operate on columns of a dataframe specified in parameters passed to that function. f = function(dataf, col1 = "column1", col2 = "column2") { dataf$col1 = dataf$col2 # just as an example } The above, of course, does not work as intended. In some languages one can force evaluation of a variable, and then
2008 Oct 20
5
Combining all possible values of variables into a new...
I'm trying to create a new column in my data.frame where subjects are categorized depending on values on four other columns. In any other case I would just nest a few ifelse statements, however, in this case i have 4*6*2*3=144 combinations and i get weird 'context overflow' errors. So I wonder if there is a more efficient way of doing this. For illustrational purposes, let's say
2012 May 24
1
svychisq using two frames
Hello, I?m hoping you have a few minutes to help out someone very new to R. I?ve done some searching, but cannot find this particular issue. I have survey data from two different time periods (years). Both years are stratified samples and have the same variables (and variable names), but are different people in the community answering in the different years. Everything loads into the survey
2016 Apr 06
2
LTO renaming of constants with inline assembly
On Wed, Apr 6, 2016 at 11:16 AM, Peter Collingbourne <peter at pcc.me.uk> wrote: > On Wed, Apr 6, 2016 at 10:49 AM, Teresa Johnson <tejohnson at google.com> > wrote: > >> >> >> On Wed, Apr 6, 2016 at 10:46 AM, Peter Collingbourne <peter at pcc.me.uk> >> wrote: >> >>> I suspect that the right way to do promotion/renaming of this
2008 Mar 21
1
Problem with Makefile.win and environment variable
Dear all, When porting my package to WinXP I have the following problem: I need to create an environment variable "MYVAR=c:\mypath" which I have saved in the control panel "System->My Computer" (under the `Advanced' tab). I have two files which need to access MYVAR: config.win, Makefile.win While "config.win" does recognize MYVAR correctly,
2016 Apr 13
2
LTO renaming of constants with inline assembly
I still wonder if this would be an issue in _standard_ (not thin) LTO? This test seems to be OK on my (slightly modified) standard LTO flow, but I do wonder for a more general case. Sergei --- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Peter Collingbourne
2016 Apr 06
2
LTO renaming of constants with inline assembly
On Wed, Apr 6, 2016 at 10:46 AM, Peter Collingbourne <peter at pcc.me.uk> wrote: > I suspect that the right way to do promotion/renaming of this sort is to > rename at the MC layer just before writing the symbol table to the object > file. > I think that is too late - how would the symbols be distinguished in the LTO case below after the IR is linked but before we renamed the
2016 Apr 06
2
LTO renaming of constants with inline assembly
I encountered an issue with ThinLTO handling of inline assembly, where the inline assembly referenced a constant that was a local variable. The local var was renamed because it was promoted in ThinLTO mode, but the inline assembly copy was not renamed and we ended up with an undef at link time. It looks like this is a general problem with inline assembly and LTO. Wondering if it is a known issue.
2005 Jul 28
1
samba ignores supplementary groups for acl
Hi, I'm running samba 3.0.14a-3 on Debian sarge (sparc). The filesystem is ext3 with acl support. winbind works fine. Please see below. when I am logged in using ssh, I can list the files in a folder (/var/Share) for which the group "staff" has r-x permissions. The problem is I can't list the folder through samba: $ ssh cyberlab+kent@cladms003 Password: Linux cladms003