search for: huping

Displaying 20 results from an estimated 28 matches for "huping".

Did you mean: hoping
2011 Apr 16
0
Bug#623058: logcheck: tweak 'rsyslogd was HUPed' filter
Package: logcheck Version: 1.3.13 Severity: minor Tags: patch Hi, Logcheck reports messages of the form: Mar 15 06:25:26 foohost rsyslogd: [origin software="rsyslogd" swVersion="5.7.6" x-pid="3301" x-info="http://www.rsyslog.com"] rsyslogd was HUPed I suggest the following tweak to /etc/logcheck/ignore.d.server/rsyslog: diff -u
2003 Jun 25
2
Markov chain simulation
Hi, Does anybody know a function to simulate a Markov chain given a probability transition matrix and an initial state ? Thanks. Philippe -- -------------------------------------------------- Philippe Hup? Institut Curie - Equipe Bioinformatique 26, rue d'Ulm - 75005 PARIS France +33 (0)1 42 34 65 29 Philippe.Hupe at curie.fr <mailto:Philippe.Hupe at curie.fr>
1999 Jul 15
1
Not reopening logfiles when HUPing
Hi, I thought that HUPing the master smbd process (and/or the child processes) was supposed to cause the logfiles to be reopened? This does not appear to happen on our installation (2.0.4b2, Solaris 2.6). If I make a connection to a share, rename the logfile and HUP/delete the daemon (either parent or child), a new fil...
2003 Sep 11
4
how to insert a double quote with the paste function?
Hello, I would like to write in a variable the following string : Hello "World" If I do cat("Hello ","\"World\""), I have the good result on the screen but it can not be affected to a variable. If I do the same thing with paste paste("Hello ","\"World\"") it does not work since \" seems to be not recognized. So what
2005 Jan 21
2
* creating vignettes ... ERROR
Dear R developers, I had some problem when building package: for exemple when building the package e1071 available from CRAN, I get the following message error: * checking for file 'e1071/DESCRIPTION' ... OK * preparing 'e1071': * cleaning src * running cleanup * creating vignettes ... ERROR /usr/lib/R/bin/texi2dvi: pdflatex exited with bad status, quitting.
2012 Dec 25
1
stream/ices_instance_stream Failed initial connect to 172.16.0.116:8000 (Login failed: Success
...2.3.3)! > apt-get purge icecast-server apt-get install icecast2 If you want to have the latest version, you'll have to get the debian source package for that from SID and rebuild it locally. The proper config file is located at: /etc/icecast2/icecast.xml Changes take effect after either HUPing the icecast process or restarting it. Also just to make sure: in neither config file the password is hashed. It's always plain text. If you are following some sort of 'howto', then it's outdated. Cheers Thomas
2003 May 15
2
AW: error-prone feature?
> Well, that is in all good texts on R, together with the > solution: drop=FALSE. See ?"[" for the on-line details. OK. Thank you a lot. Now patched cclust and clustIndex work fine for 1D case. BTW, why not to apply the "drop=F" to these functions? I guess other users need 1D case as well. kind regards, Valery A.Khamenya
2003 May 19
1
Line plots with different symbols on the same line
Hello, my data is an ordered list of observations where each observation is either of condition "efficient" (coded as 1) or "non-efficient" (0) as e.g. No. Obs Condition 1 1.1 0 2 1.2 1 3 1.4 1 4 1.5 0 5 2.5 1 etc. My goal is to plot a single line with lty='o' but different symbols for either condition whenever condition is 1 or 0, i.e. on the x-axis the
2003 Jun 27
1
How to get pixel position of a plot
Hi, I would like to plot a graph on the jpeg device for example and to write a table associated to this plot where I have the pixel coordonates of each plotted point so that I could include the jpeg image onto a html page and get all the information about each point when the mouse button is pressed. The indentify() can do it but on the window device... Thanks for any idea. Philippe --
2003 Jun 30
1
symbol size on a plot
Hi, I would like to get from a plot the size of the symbols plotted. Imagine I have the following plot function : plot(1:2,1:2, pch=15, cex=4) I would like the get the values SIZE1 and SIZE2 so that if I plot the following rectangle : rect(1.5,1.5, 1.5+SIZE1, 1.5+SIZE2) then the size of this square is exactely the same as the one of the symbols that have been plotted. Thanks for any idea. --
2004 Dec 21
1
aggregate and median
I am trying to use the function aggregate with the median function but I get the following error: Error in FUN(X[[1]], ...) : Argument "INDEX" When I replace median by mean, it works perfectly Can someone tell me where the problem comes from? Thx I am running R 2.0.0 on SunOS 5.9 -- Philippe Hup?? UMR 144 - Service Bioinformatique Institut Curie Laboratoire de Transfert (4??me
2010 Apr 08
2
general linear hypothesis testing for manova model
Hello, I have a MANOVA model and I want to test the following hypothesis: LBM = 0 where B is the parameter estimates. Is there any function to do this in R? Cheers, Philippe -- Philippe Hup? Institut Curie, CNRS UMR 144, INSERM U900 26 rue d'Ulm 75005 Paris - France Email : Philippe.Hupe at curie.fr T?l : +33 (0)1 56 24 69 91 Fax: +33 (0)1 56 24 69 11 website :
2005 Sep 13
1
problems with Auth and Alpha 1a
...with IMAP and POP3, both can use PAM and SQL (MySQL) as login methods, though only POP3 is accessible from "the world" - IMAP is restricted via firewall to only localhost. Simple eh? The problem is that dovecot apparently drops the SQL part from time to time. Though this can be fixed by HUPing the dovecotdaemon I'd rather that I didn't have to. I've narrowed the problem to something like this: Over time, Dovecot/POP3/SQL combination dies - I've yet to examine if the problem is on IMAP as well as this is only recently reported. I have never experienced this myself since I...
2005 Apr 12
4
Adding authenticated mountpoints
On Mon, 12 Apr 2005, Karl Heyes wrote: > My current work is on > http://mediacast1.com/~karl/testing/icecast-2.2-kh3pre.tar.gz Bugs: Relays ignore the hidden flag HUPing icecast puts icecast in a strange state where it doesn't actually take account of the conf changes, and also won't terminate on a TERM and needs a KILL - but it does still "work" otherwise. How is fallback to file actually meant to work ? I notice you've got fallback-when-...
2003 Jul 30
6
reverse array indexing
Hi, Suppose I have a multidimensional array: tmp <- array(1:8, c(2,2,2)) is there a function out there that, given a one-dimensional array index, will return the separate indices for each array dimension? for instance, tmp[8] is equivalent to tmp[2,2,2]. I'd like to derive the vector (2,2,2) from the index 8. thanks, Brad Buchsbaum
2005 Apr 11
2
AAC support?
Karl Heyes wrote: > A container from nullsoft hm, I learn something new every day :) >>so when the source client logs in, it lies to icecast, saying it's an >>mp3 stream? (as icecast won't accept anything else, but mp3 or ogg >>vorbis...) > > no, a source client identifies itself with a mime-type. MP3 being the > default handler. Being the default handler
2005 Apr 13
0
Adding authenticated mountpoints
...g/icecast-2.2-kh3pre.tar.gz > Bugs: 2 other bugs came up, one was relating to excessive memory usage when using theora and server full messages. Both are fixed now > Relays ignore the hidden flag they work here, although the hidden attribute is associated with a mount, not a relay. > HUPing icecast puts icecast in a strange state where it doesn't > actually take account of the conf changes, and also won't terminate on a > TERM and needs a KILL - but it does still "work" otherwise. this is fixed now, turned out to be a read lock not releasing. > How is fa...
2007 Jul 04
2
Upgrade from 1.00 to 1.0.1
Hi, I'm getting a bunch of errors since I upgraded to 1.0.0. I understand now that some of them are bug related to release 1.0.0. I'm about to upgrade to 1.0.1. Does anyone know if there are changes in the config file btwn these to versions? Also, what is the best way to do the upgrade? Can I just run ./configure : make : make install : killlall -HUP dovetcot? Best Regards -
2005 Jan 19
1
* creating vignettes ... ERROR
Hi, I have the following error when building a package * creating vignettes ... ERROR Error: chunk 3 Error in pmatch(x, table, duplicates.ok) : argument is not of mode character Error in buildVignettes(dir = ".") : Error: chunk 3 Error in pmatch(x, table, duplicates.ok) : argument is not of mode character Execution halted I use R-2.0.1 under debian linux 2.6.9
2006 Apr 26
0
Generalized SVD
Hi, I need to computed the GSVD of two matrices. For doing so I used in my C code the lapack routine dggsvd. But when I source my file gsvd.R I have the following error: Error in eval.with.vis(expr, envir, enclos) : BLAS/LAPACK routine 'DGGSVD' gave error code -1 Is there a problem with the parameters passed through the gsvd.R script? Is there a problem within the C script?