search for: chuck

Displaying 20 results from an estimated 2409 matches for "chuck".

Did you mean: check
2006 Mar 09
3
substituting values
dear list, i have a matrix with missing values like 1 2 3 4 x x 2 2 2 2 2 2 2 x 2 the x stands for the missing value. i have to substitute it to NA substitute or replace didn´t work out, as they are for vectors only however matrix[,i] also didn´t work. can anybody tell me, who i can change these values easily? thanks stefan [[alternative HTML
2004 Oct 22
1
mounting win2003 server shares fails
...2000, etc... everything works no problem. When I try to mount a share on a win2003 server, the command completes successfully, but when I try to view the folder, it is not showing. I have tried several variations of commands: mount -t smbfs -o username=administrator,password=xx //apps/sti /home/chuck/smb4k/apps/sti mount -t smbfs -o username=administrator,password=xx,uid=chuck,gid=chuck //apps/sti /home/chuck/smb4k/apps/sti mount -t smbfs -o username=administrator,password=xx,uid=chuck,gid=chuck,fmask=777,dmask=777 //apps/sti /home/chuck/smb4k/apps/sti This is what I get.. as both ROOT and t...
2013 May 09
0
Replace rows in dataframe based on values in other columns
Hi, dat1<- read.table(text=" Restaurant owner purchase_date ??????????? 23 Chuck 3/4/2011 ??????????? 23 Chuck 3/4/2011 ??????????? 23 Chuck 3/4/2011 ??????????? 23 Chuck 3/4/2011 ??????????? 23 Bob??????? 1/1/2013 ??????????? 23 Bob??????? 1/1/2013 ??????????? 23 Bob???????? 1/1/2013 ??????????? 15 Hazel 4/11/2010 ??????????? 15 Hazel 4/11/2010 ??????????? 15 Hazel 4/11/2010 ?...
2005 Mar 08
1
To convert an adjacency list model into a nested set model
...al I want to do the same as John Celko mentioned it here with SQL: http://groups.google.co.uk/groups?hl=en&lr=lang_en&selm=8j0n05%24n31%241 %40nnrp1.deja.com Assume you have a tree structure like this Albert / \ / \ Bert Chuck / | \ / | \ / | \ / | \ Donna Eddie Fred in an adjacency list model: > emp=c("Albert", "Bert", "Chuck", "Donna", "Eddie...
2002 May 29
3
rsync 2.5.5, HPUX, getting unexplained error at main.c(578)
I compiled rsync-2.5.5 on HPUX 11.11, using the +DA2.0W and +O3 options. invoking a simple rsync to transfer a file works (I ran a diff on the file, no changes) e.g: sdx1 214: ./rsync --rsh='/usr/bin/ssh -x' --rsync-path=/usr/local/src/rsync-2.5.5/rsync /scratch/chuck/tmp.test sdx2:/scratch/chuck However, adding the -a option yields an unexplained error: (In all of the following cases the file is transferred successfully; the problem was originally noted transferring a directory, but the examples were simplified since a single file transfer will also show the...
2015 Sep 03
5
Beta CentOS 7 Xen packages available
...-44-candidate", in a sibling directory to virtx7-44-testing. It has a more recent date, so I tried with that and it works fine. It resolves the issues listed in your email from 7/7/2015. I am now looking for a libvirt-daemon-xen package for Centos 7. Any ideas on where that lives? Thanks, Chuck
2004 Dec 08
5
problems with print$
Hi All, I finally signed up for the list after years of using Samba successfully - a testament to the quality of Samba. Yet now I have a problem with the point-and-print functionality. I am able to authenticate against my server (Solaris 8, Samba 3.0.7, OpenLDAP 2.1.25) as user 'chuck' in my LDAP directory and browse the shares, but when I right-click on the printer and select Properties (on WinXP), I get a dialog: Printer properties cannot be displayed. Access is denied. And no properties dialog is shown. I googled the above message and found exactly one reference, th...
2005 Mar 29
3
ices question ? (gui)
Hi Chuck, Thanks, I'd be very interested in seeing it. In light of not being able to find what I wanted on google, I've started my own (in PHP), I guess it could be beneficial to share. ;-) Let me know if you're interested, Kind Regards, Nick On Tue, 29 Mar 2005 12:08:44 -0500, Chuck Tellech...
2008 Feb 29
1
Using ym4r/mapstraction''s cluster.js with RJS
...... I''m trying to use this the YM4R/mapstraction clusterer with RJS but having a hard time, I can create a working cluster when i initiate it in a controller, but not from RJS. For the proper flow in my app it would be very helpful to be able to do it from RJS. Thanks for the help, Chuck -- *Chuck Fletcher* Email: chuck at chuckfletcher.com <mailto:chuck at chuckfletcher.com> Phone: 646.867.2312 AIM: chuckfletc <aim:goim?screenname=chuckfletc> Linked In: chuckfletcher <http://www.linkedin.com/in/chuckfletcher>
2013 Mar 29
2
[LLVMdev] dynamic passes
not in this case. the architecture is changing on a per function pass. mips32->mips16->mips16.... same issue would be for arm->thumb1->arm On 03/29/2013 04:26 PM, Chuck Zhao wrote: > Can you do this instead: > > PassManager pm = ...; > pm.add(other needed passes); > ... > if(arch you are interested) > pm.add(your pass); > ... > pm.run(); > > > Chuck > > > On 3/29/2013 4:15 PM, Reed Kotler wrote: >> This is what...
2013 Mar 29
0
[LLVMdev] dynamic passes
.... E.g. PassManager pm0 = .. ; // for mips32; PassManager pm1 = .. ; // for mips16; ... if(function needs to run on mips32) pm0.run(); else if(function needs to run on mips16) pm1.run(); ... Of course, you have to figure out the suitable sets of functions for each sub target. Hope it helps. Chuck On 3/29/2013 4:28 PM, reed kotler wrote: > not in this case. > > the architecture is changing on a per function pass. > > mips32->mips16->mips16.... > > same issue would be for > > arm->thumb1->arm > > On 03/29/2013 04:26 PM, Chuck Zhao wrote: >>...
2005 Aug 23
2
merge list entries
dear expeRts, i would like to merge the data frame entries in a list. for example: > #input > myl <- list(q1=data.frame(id=c("Alice", "Bob"), grade=c(90, 49)), q2=data.frame(id=c("Alice", "Chuck"), grade=c(70, 93)), q3=data.frame(id=c("Bob", "Chuck"), grade=c(84, 40))) > #output > (mydf <- magic(myl)) id grade.1 grade.2 grade.3 1 Alice 90 70 NA 2 Bob 49 NA 84 3 Chuck NA 93 40 my three atte...
2015 Apr 08
3
6.5 install dvd won't
When I boot a machine from disc 1 of 2, Centos 6.5 install dvd, I get to a grub prompt. I have no idea what to do from there, but clearly something isn't right. Shoudl I try to download centos 6 again and burn new discs? thanks, -chuck --
2015 Jan 07
3
dovecot move doesn't work
On 1/7/2015 12:06 AM, Alexander Dalloz wrote: > Am 06.01.2015 um 23:55 schrieb Chuck Campbell: >> I'm running centos 6.6 with the default 2.0.9-xxx dovecot. >> >> I run sa-learn against my spam_to_learn folder, then I wan to move those emails >> to a learned_spam folder. >> when I do a doveadm -Dv move -u user learned_spam mailbox 'spam_to_lear...
2008 Feb 21
3
[LLVMdev] LLVM Win32 Issue
Thanks for your response Chuck. >From this and the other responses to my question, it looks like I'm including all the right object files, so it must be something with Visual Studio stripping "dead" code. So, given your response Chuck, I have a few questions. First, what exactly is the code that VStudio seems...
2001 Dec 17
2
Moving Win2k into the Samba system
Hey all, I just was wondering if there are any issues I should be aware of before moving Win2k and XP into my Samba loop? I have read the docs available but have found nothing Win2k or XP specific. Thanks in advance, chuck Chuck's Top 10 Things to Remember and Think about! ======================================================= 10. Please return stewardess to original upright position. 9. Fighting for peace is like fucking for virginity. 8. Never date someone because you're too lazy to commit suicide. 7. It...
2014 Aug 06
3
slow i/o with a raid 50 on a 3ware controller
...e system is ext4. I'm going to try some other filesystems, but could anyone suggest any alternative raid setups as well as stripe sizes I should try? The old server uses the same controller on a centos 5.10 setup, using ext3, and it performs much faster i/o. The old 3ware setup is raid 5. -chuck -- ACCEL Services, Inc.| Specialists in Gravity, Magnetics | (713)993-0671 ph. | and Integrated Interpretation | (713)993-0608 fax 448 W. 19th St. #325| Since 1992 | (713)306-5794 cell Houston, TX, 77008 | Chuck Campbell | ca...
2015 Jul 06
1
Windows 8.1 Join Domain
El 6/7/2015 7:22 p. m., "Chuck Theobald" <chuckt at uoregon.edu> escribi?: > > On 6/26/2015 3:32 AM, Daniel M?ller wrote: >> >> You have a dotted domain like my.dom? >> >> The windows 8.1 will refuse to join. >> Just look at: >> http://tam.belchenstuermer.de/join-a-samba-domai...
2013 Mar 29
2
[LLVMdev] dynamic passes
This is what I'm doing right now and the only issues that came up in internal review is that we have to create the pass object now for things that we are unlikely to need. On 03/29/2013 04:05 PM, Chuck Zhao wrote: > I think you will have to add the passes anyway before asking the pass > manager object to run. > In addition, you can specify some dependency, so that that non relevant > pass will not have a chance to run. The PassManager should be able to > figure that out given the r...
2005 Oct 16
4
Cannot telnet to port 5038 on asterisk
Hi, I cannot do the following: telnet 127.0.0.1 5038 I get connection refused and this is preventing AMP from installing. I had this working when I was using FC3 but I had to upgrade to FC4 for another application. So I am running PHP5, MYSQL 4 with FC4 and asterisk is running (I had this problem before with FC3 and it turned out asterisk was not running) I am using 1.2.0 beta1 Asterisk