search for: dvl

Displaying 9 results from an estimated 9 matches for "dvl".

Did you mean: dpl
2012 Apr 21
1
R CMD check -- non S3 method warning
...full make check output below, which includes a few additional warnings I'm in the process of fixing)? Thanks, Whit * checking for LF line-endings in source and make files * checking for empty or unneeded directories * building ?rcppbugs_0.0.1.tar.gz? * using log directory ?/home/warmstrong/dvl/R.packages/rcppbugs.Rcheck? * using R version 2.15.0 (2012-03-30) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * checking for file ?rcppbugs/DESCRIPTION? ... OK * this is package ?rcppbugs? version ?0.0.1? * checking package namespace information ... OK * checking p...
2004 Dec 29
2
help with Rcmd check
...#Load%20hooks> my shared library is "excelpoi.so" hence I have added "useDynLib(excelpoi)" to my NAMESPACE file. Prior to this change, my package was passing Rcmd check with no errors or warnings. After this change, I get 5 warnings: whita$grep 'WARN' /home/whita/dvl/excelpoi.Rcheck/00check.log * checking S3 generic/method consistency ... WARNING * checking replacement functions ... WARNING * checking foreign function calls ... WARNING * checking for missing documentation entries ... WARNING * checking for code/documentation mismatches ... WARNING whita$ Can a...
2012 Apr 14
1
deep copy?
Is putting a variable into a list a deep copy (and is tracemem the correct way to confirm)? warmstrong at krypton:~/dvl/R.packages$ R > x <- rnorm(1000) > tracemem(x) [1] "<0x3214c90>" > x.list <- list(x.in.list=x) tracemem[0x3214c90 -> 0x2af0a20]: > Is it possible to put a variable into a list without causing a deep copy (i.e. if you _really_ want the objects to share the same...
2008 Dec 09
1
any suggestions to deal with 'Argument list too long' for a R CMD check?
.../include -I./RAbstraction -I./R.tslib.backend -I./tslib -fpic -g -O2 -c aaAccrual_days_act252.cpp -o aaAccrual_days_act2\ 52.o make: execvp: g++: Argument list too long make: *** [aaAccrual_days_act252.o] Error 127 ERROR: compilation failed for package 'RFincad' ** Removing '/home/whit/dvl/fincad.utils/fincad.generate.R/RFincad.Rcheck/RFincad'
2003 Mar 06
4
SIP Debugging
I have debugging on in Asterisk and "sip debug". How do I tell what username a SIP client is trying to use to register with Asterisk as? --Eric
2003 May 18
3
ad0: READ command timeout....
This morning I found a frozen box. On the console was this: ad0: READ command timeout tag=0 serv=0 - resetting ata0: resetting devices .. ata0-slave: ATA identify retries exceeded done After reboot, those messages were found in /var/log/messages. I'm running FreeBSD 4.8-RC from Apr 4 10:45:49 EST 2003. Any ideas? -- Dan Langille : http://www.langille.org/
2004 Apr 22
0
Samba + cups + load balancing
...ba is listening only on private interfaces (eth1) on node 1 & 2. We are connected with network and DC (win2k) with a nated connection. The two samba servers are identical: we copy all tbd files from node1 to node 2. All seems to work for now... Wait and see A+ Pierre Thank's to samba dvl for their great job :-)
2008 Jan 10
0
Kirk and asterisk
...ce6b1;rport From: "XXXXXX" <sip:XXXXXXXX at 10.0.0.70>;tag=as7a91af96 To: <sip:240 at 10.0.0.71:16406;user=phone>;tag=2870354154 <http://www.snapanumber.com/> Call-ID: 35703f0237eed17d74acac2d7ed5d8b1 at 10.0.0.70 CSeq: 14806 BYE Server: (KIRK Wireless Server 600v3/6.00 dvl-sr2 [07-60663]) XXXXXX = caller id of Calling party It looks OK, but is giving a Bad request Does anybody know how to avoid/solve this error, i get a lot of them........................ Sip.conf for a particulair handset [235] type=friend username = 235 callerid="R Vermeeren mobiel"...
2006 Apr 07
2
has_one not using the pk?
Hello, im trying to wrap a fairly ugly legacy schema using AR. How to handle normalized informations which aren''t connected via the pk? create table what ( myid int, myclass int, ;; references blahclass.blahid mygender int ) create table blahclass ( blahid int, mdesc1 text, fdesc1 text) ) I would like to wrap this as class What < AR::Base has_one :blahclass class