search for: dus

Displaying 20 results from an estimated 21 matches for "dus".

Did you mean: bus
2004 Nov 12
1
Winbind, still unreliable
Hi there, I recently posted about problems with winbind resolving names from ADS. We have an ADS Domain Controller serving the domain MED-DUS and an NT 4 PDC serving the domain MEDOIL. We want to use a samba server as memberserver in the MED-DUS domain. I joined the samba server to the MED-DUS domain. The domain join worked ok. All users (including MEDOIL) are visible. Next i started winbind. Made sure (via wbinfo and getent) that ev...
2009 Aug 19
5
scale or not to scale that is the question - prcomp
...888, 0.922, 0.882, 0.923, 1, 1), p2o5 = c(0.78, 0.784, 1.834, 1.906, 1.915, 0.806, 1.863, 0.775, 0.817, 0.742, 0.783, 0.759, 0.787, 0.758, 0.783, 3, 2), al2o3 = c(5.812, 5.819, 3.938, 5.621, 3.928, 3.901, 5.621, 5.828, 4.038, 5.657, 3.993, 5.735, 4.002, 5.728, 4.042, 6, 5), dus = structure(c(2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 1L, 1L, 1L, 1L, 2L, 2L, 1L, 1L), .Label = c("ano", "ne"), class = "factor")), .Names = c("vzorek", "iep", "skupina", "sio2", "p2o5", "al2o3", "dus&...
2007 Dec 18
1
SIP Anonymous auth
Hi all, i am new with VOIP and use asterisk with Trixbox ;) When i have a look in my logs i see the following problem: chan_sip.c: Failed to authenticate user "Anonymous" <sip:Anonymous at dus.net> I never setup a user "Anonymous" which is communicating with dus.net ;) Can anyone explain why it will authentificate with the User Anonymous? My SIP/Trunk conf looks as the following: register=USER:PASS at voip.dus.net/USER fromdomain=voip.dus.net fromuser=user host=voip.dus...
2011 Apr 08
4
Simulation from discrete uniform
Dear all, I am trying to simulate from discrete uniform distribution. But I could not find any in-built code in R. Could anyone help me please? Thanks in advance for the time and help. Cassie [[alternative HTML version deleted]]
2006 Oct 03
2
[LLVMdev] Extracting all BasicBlocks of a Function into new Function
...> > void foo(int X, ...) { > P = va_start(); > bar(X, P); > } > > void bar(int X, valist P) { > use(P); > } Can the other va_...-intrinsics be used in bar as were the "P = va_start" in bar? The va_start probably is unnecessary now in bar, but where dus the va_end need to be: at the end of foo or of bar or doesn't it matter? Thanks for the remark, Bram Adams GH-SEL, INTEC, Ghent University (Belgium)
2003 Apr 16
0
Scheepjeswolharmonie Veenendaal
2002 Oct 30
1
Crontab ??
********************************************************************** Este email assim como os ficheiros que possa ter em anexo s?o confidenciais e para uso exclusivo da pessoa ou organiza??o para o qual foi enviado. Se recebeu este email por engano por favor notifique Redes@bnc.pt Esta nota confirma que esta mensagem foi verificada pelo MIMEsweeper n?o tendo sido encontrados virus.
2003 Mar 20
0
Misschien leuk voor u
...tten, bijvoorbeeld de huisvrouw die af en toe de computer aanraakt tot aan de doorgewinterde programmeur. Het is dan ook de bedoeling dat leden elkaar gaan helpen. Bijvoorbeeld iemand stelt een vraag in het forum, een ander geeft het antwoord. Dit kan ook per e-mail en zal centraal worden geregeld. Dus in het kort: elk lid dat actief mee wil doen, kan zijn steentje bijdragen. Lid worden is erg simpel: Stuur een e-mail naar : klantiskoning@hotmail.com en schrijf een kort berichtje dat je lid wilt worden van computervrienden, en wat relevante gegevens. De relevante gegevens zijn alleen de gegeven...
2002 Aug 15
4
tinc-1.0pre7-i386-1.tgz
...keys met: #./tincd -n test-vpn -K wordt de public key in /etc/tinc/test-vpn/suse op suse opgeslagen en op arnout wordt de public key in /etc/tinc/test-vpn/arnout opgesagen. Deze bestanden heb ik naar de ander computer gekopieerd in /etc/tinc/test-vpn/hosts/arnout en /etc/tinc/test-vpn/hosts/suse Dus van arnout naar suse en andersom. /etc/tinc/test-vpn/hosts/suse Subnet 192.168.0.0/24 Address 192.168.0.99 port = 655 -----BEGIN RSA PUBLIC KEY----- hier staat de key -----END RSA PUBLIC KEY----- /etc/tinc/test-vpn/hosts/arnout Subnet = 192.168.0.0/24 Address = 192.168.0.89 port = 655 -----BE...
2010 Feb 26
1
Error in Aggregate function
Hi, When I run the Aggregate function in repeat loop, I got the following error: Error in sort.list(unique.default(x), na.last = TRUE) : 'x' must be atomic for 'sort.list' Have you called 'sort' on a list? How to solve this error. Anyone can help me. Urgent. Thanks. Meenakshi. -- View this message in context:
2003 Sep 01
0
Antigen found VIRUS= Win32.Sobig.F (CA(Vet), NAI, Kaspersky) virus
...virus: VIRUS= Win32.Sobig.F (CA(Vet),NAI,Kaspersky). Het bericht "Re: That movie" was verzonden vanaf samba@samba.org. De status van de attachment is: Purged. Deze mail is uitsluitend ter informatie, u hoeft verder niets te doen. Dit is een automatisch gegenereerde boodschap, het heeft dus geen zin deze e-mail te beantwoorden. :------------------------------ Dear user, You tried to send an attachment with a virus. It's the attachment movie0045.pif you send to user . The attachment was infected with the virus: VIRUS= Win32.Sobig.F (CA(Vet),NAI,Kaspersky). The message "Re:...
2006 Oct 03
0
[LLVMdev] Extracting all BasicBlocks of a Function into new Function
On Mon, 2 Oct 2006, Bram Adams wrote: > So, I wonder what problems may show up in this algorithm (steps 4, 5 > and 6 seem to be crucial). The vararg-case could be a problem in step > 5, although the va_start intrinsic isn't tied to the surrounding > Function at first sight. There is an implicit dependency between vastart and the function it lives in. Specifically, if you have:
2006 Oct 03
0
[LLVMdev] Extracting all BasicBlocks of a Function into new Function
...P = va_start(); >> bar(X, P); >> } >> >> void bar(int X, valist P) { >> use(P); >> } > > Can the other va_...-intrinsics be used in bar as were the "P = > va_start" in bar? The va_start probably is unnecessary now in bar, > but where dus the va_end need to be: at the end of foo or of bar or > doesn't it matter? All the non-vastart calls can be anywhere. va_end in particular codegens to a noop on all targets llvm currently supports, fwiw. -Chris -- http://nondot.org/sabre/ http://llvm.org/
2006 Oct 02
3
[LLVMdev] Extracting all BasicBlocks of a Function into new Function
Hi, Op 2-okt-06, om 21:35 heeft Chris Lattner het volgende geschreven: > I think the easiest way to do this is to do the 'complement' as you > describe, but specially handle the varargs case. Basically you > need to > call va_start in the original function, and pass the valist pointer > down. > This shouldn't be too hard. OK. I've been rethinking my use
2020 May 06
2
du hung, wild display in ps
...SS: segment not present: invalid opcode: alignment check: stack segment: fpu exception: simd exception: iret exception: /var/log/messages -- /usr/bin/abrt-dump-oops -xtD root 11090 1 11090 11 1 15:08 pts/1 00:01:10 du -s /mnt/backup/backups even after killing the du. there were two DUs shown, I killed the parent (presumably the one I started) but the one that remains seems to be un-killable. This is what the output looked like before I killed du: # ps -eLf | grep du root 1185 1 1185 0 1 May01 ? 00:00:00 /usr/bin/abrt-watch-log -F Backtrace /var/log/Xorg.0....
2010 Feb 24
2
Calling Data frame objects with spaces in their names
Hello I have the following data frame which I read from an EXCEL file, and when i try to call one of its columns with a space in their names I am not being able to. For example if I do EURODOLLAR$ED1.Comdty Date I obtain the following error: Error: inesperado símbolo en "EURODOLLAR$ED1.Comdty Date" I have also tried using . or _ instead of the space and have obtained no succes. How do I
2010 Jul 07
1
Why do <none>s appear in the list of predictor variables in logistic regression using 'step' or 'stepAIC' function?
...e>                                    101.00             107.00 - AreaOfCover             1          103.01             107.01 - Ivy                             1          118.86             122.86     The blow is my data: > rbs.no.NA.rows     Presence AreaOfCover CoverCharac Ivy  DOS  DUS DSHRB HSHRUB  HVEG LEAF WSTEM VEG 1          1      2200.0           2   0  2.0  0.2   5.0    1.0  1.00    5     5   1 2          0      4000.0           2   0  2.0  0.5   4.0    1.0  1.00    0    10   0 3          0      2880.0           2   0  3.0  1.0   2.0    1.0  0.50    0     5   0 4     ...
1997 Jul 24
0
Security hole in mgetty+sendfax
...lt;7C1$FS*=/;_QWVD0^^)4MAK>V+)MH!76''&;!%<G^]K MZ%.9NX#A$6E%GSO''Z$;(=JA]-HSXKX#F&(5?()Z&Y 9A(?&T,&<01NC+SR-] M65"D# J4A2N:,NDVH!;E[&BC(<Y*F[,7$ABCZ^#UNUO@O>H?[N''''TZ<-(P_^ M2Y5%.[0("%=%+4NA!:KK#=\TX#_4X/RM$2_+>,DUS=M<$>@L5Y\V 116-7/> MYO0MQ#%/1>8O:QGA"FA1H'':J) H NQ/&,1S%-5JI?5>XW3<J1Q$''(\FMI\:& MT"(3DR.C#$G%J8 1#/S$E100C3-BA<V;7GI[H8V^8''Y6''<W8OIB%2<2H++VL MS-U3WD^=35&ZS["V10)*R-"-0 :(DN)<#2FV%21;=]*IMWVS9"%*...
2006 Nov 19
3
host allow
Hi, We want to restrict acces to the shares on our samba server using "hosts allow". Can I get this to work with clients who have dynamic IP addresses and don't have revers DNS lookup ? Best regards, Eric Eijkelboom Sr Systems Manager Medtronic B.V. Heerlen, The Netherlands Phone : +31-(0)45-566.8544 Fax : +31-(0)45-566.8008 www.medtronic.com <http://www.medtronic.com/>
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking