similar to: missing SIGWINCH?

Displaying 20 results from an estimated 1100 matches similar to: "missing SIGWINCH?"

2005 Dec 21
1
System Reliability Metrics
I need to calculate some metrics such as Mean Time Between Failure (MTBF), etc (see http://www.cs.sandia.gov/~jrstear/ras for a more complete list). I have observations like start end state 1 2005-11-11 09:05:00 2005-11-11 12:20:00 Scheduled Downtime 2 2005-11-12 13:42:00 2005-11-12 14:45:00 Unscheduled Downtime where each row describes
2005 Jun 01
2
sink() within a function?
sink() isn't behaving as i expect, when used inside a function, eg: x<-data.frame(F=c("O","O")) f<-"foo.txt" sink(f); format(x); sink(); # foo.txt looks great! foo<-function(x,f) { sink(f); format(x); sink(); } foo(x,f=f) # foo.txt is empty! why is this, and how can i successfully sink() within a function? my real function does some
2005 Jun 01
2
sink() within a function?
sink() isn't behaving as i expect, when used inside a function, eg: x<-data.frame(F=c("O","O")) f<-"foo.txt" sink(f); format(x); sink(); # foo.txt looks great! foo<-function(x,f) { sink(f); format(x); sink(); } foo(x,f=f) # foo.txt is empty! why is this, and how can i successfully sink() within a function? my real function does some
2006 Dec 11
1
a web interface to identify()
i have a function like this: # show a plot and run a script when the user clicks on a plot, # where the script arguments correspond to the user-selected point. blah <- function(x, y) { plot(y~x) n <- identify(x=x, y=y) com <- system(command=paste("bleh", names(y)[n])) } i would like to do this via a web page instead of x11() etc. eg: 1) a user clicks on
2004 Apr 27
1
'R CMD build' fails when there are spaces in the path (PR#6830)
Full_Name: Byron Ellis Version: R 1.9.0 (and 2.0.0) OS: Linux (Redhat Fedora Core) Submission from: (NULL) (140.247.241.197) It appears that `R CMD build` cannot handle spaces in the path when building packages for distribution. For instance: [ellis@net-78815 ~/Bayesian Networks]$ R CMD build bnsl * checking for file 'bnsl/DESCRIPTION' ... OK * preparing 'bnsl': * cleaning src *
2010 Jul 13
4
SIGWINCH
Hi, I followed the procedure to replace a running unicorn. Works fine, except for one thing: after I decide to back out, ie I send a HUP to the old master followed by a QUIT to the new master, then: 1. the new master does die, and the old master does work again 2. the "old" master keeps running with a process name of "master (old)" 3. the "old" master keeps
2010 Jun 04
1
Suggested change to build.pl
Under Linux the cleanup script (if it exists) is run at the end, before the package archive is created, and this prevents intermediate files that are no longer needed from being written to the archive. Unfortunately, this does not happen under Windows when there is a cleanup.win. That is, cleanup.win is not run before the archive is created. Here is the code in build.pl that checks for cleanup
2020 Nov 23
2
.Internal(quit(...)): system call failed: Cannot allocate memory
The call to system() probably is an internal call used to delete the session's tempdir(). This sort of failure means that a potentially large amount of disk space is not being recovered when R is done. Perhaps R_CleanTempDir() could call R_unlink() instead of having a subprocess call 'rm -rf ...'. Then it could also issue a specific warning if it was impossible to delete all of
2005 Nov 24
1
Windows R CMD build <pkg> leftovers
A command R CMD build <pkg> that fails, e.g., because of C code compilation errors, leaves a directory %TMPDIR%/Rinst.xxx containing the file R.css. Although R CMD INSTALL --build cleans up after itself, build does not. A fix is below. Also, build.in references Rcmd.exe, which I thought was no longer necessary? Index: build.in
2001 May 04
1
instaling needs printenv on solaris 2.7
To exicute 'make check' correctly there needs to be a printenv in the path. If you don't have /usr/ucb in your path you should probibly put it there. The errors: <..> collecting examples for package `base' ... make[5]: Entering directory `/apps/sm/SunOS/sun4u/5.7/data/stats/r/1.2.3/.src/R-1.2.3/src/library' >>> Building/Updating help pages for package
2009 Jan 13
0
How can I get Rspec on Mac iTerm formatting and colors occuring when I use Putty remotely???
Hi, Any ideas how can I get the nice formatting & colors that occurs on my Mac iTerm when I run Rspec (e.g. ./script/autotest), to occur when I log in to my dev environment via Putty (from Windows) and run it here??? -- Greg http://blog.gregnet.org/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on
2006 Feb 15
0
setup program doesn't find extracted dll
Hello to all, i'm trying to install the german tax software "Tax@2006". using: wine 0.9.5 on ubuntu 5.10 I type "wine z:/setup.exe" (z = wine's dos-device cdrom). the follonwing steps follows: - Splash Screen "Buhl Data" - Installshield preparing installation... - Installshield starts, but brings a Popup: - Message: "Failed to extract
2004 Mar 15
1
R v1.9.0 alpha w/ Rtools: gzip problem
Hi, Gordon Smyth brought the following problem to my attention. PROBLEM/"BUG": Using R v1.9.0 alpha for Windows and the latest Rtools from Brian Ripley you get the following problem trying to R CMD build a package (or a bundle); >R CMD build R.basic * checking for file 'R.basic/DESCRIPTION' ... OK * preparing 'R.basic': * checking whether 'INDEX' is
2017 Sep 29
2
Call for testing: OpenSSH 7.6
On 29 September 2017 at 11:05, Iain Morgan <imorgan+openssh at nas.nasa.gov> wrote: [...] > This is due to my shell being csh, which is pickier about undefined > variables than the Bourne-style shells. The attached patch fixes the > issue. Thanks for figuring this out. > - 'test -z "$SSH_USER_AUTH"' || fail "SSH_USER_AUTH present" > +
2010 Oct 03
2
R-beta_2010-10-02_r53128 fails to compile on FreeBSD
I tried to compile R-beta_2010-10-02_r53128 on FreeBSD 9.0-CURRENT (amd64) with gcc-4.4.5 and it fails: ----------------------------------------- gcc -std=gnu99 -I../../src/extra/zlib -I../../src/extra/bzip2 -I../../src/extra/pcre -I../../src/extra -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -g -O2 -c sysutils.c -o sysutils.o sysutils.c: In function
2005 Dec 22
2
Pretty Log Output on OS X
Howdy, I am using Apple''s Terminal and Rails 1.0 on Tiger. I am tailing my log files and it seems with one of these updates things changed a little. I see all these ''ESC'' codes all over. How can I make the output prettier? I''d rather not move to iTerm, not one of my faves. Cheers.
2020 Nov 24
2
.Internal(quit(...)): system call failed: Cannot allocate memory
On 11/24/20 11:27 AM, Jan Gorecki wrote: > Thanks Bill for checking that. > It was my impression that warnings are raised from some internal > system calls made when quitting R. At that point I don't have much > control over checking the return status of those. > Your suggestion looks good to me. > > Tomas, do you think this could help? could this be implemented? I think
2009 Apr 25
2
Extracting an object name?
Dear Sir or Madam: This is an extension to a earlier post, about looping through several thousand files, and testing student's models against a different data-set, called rclnow, for "recall now". The problem is, that the instructor never specified to the students, what they should name their "lm" object. So what they created was: "arbitrary variable name"
2005 Mar 28
17
[Bug 1004] X11 forwarding not working with ssh3.9p1 (Error: Can't open display)
http://bugzilla.mindrot.org/show_bug.cgi?id=1004 Summary: X11 forwarding not working with ssh3.9p1 (Error: Can't open display) Product: Portable OpenSSH Version: 3.9p1 Platform: All OS/Version: Linux Status: NEW Severity: major Priority: P2 Component: Miscellaneous
2011 Jan 20
4
No command 'rspec' found
I installed rspec on Linux Ubuntu 10.04, but no command ''rspec'' is found. Perhaps the PATH is wrong. What is the correct search path? The following was copied from my terminal. Thank you for taking a look: ~$ sudo gem install rspec --version 2.0.0 ~$ gem list --local *** LOCAL GEMS *** rspec (2.0.0) ~$ ls /var/lib/gems/1.8/gems rspec-2.0.0 ~$ printenv PATH