similar to: Clients loose connection

Displaying 20 results from an estimated 2000 matches similar to: "Clients loose connection"

2006 Jul 13
3
set the bahavior that R deal with missing values?
Dear Rusers, The default behavior in R when performing a regression model with missing values is to exclude any case that contains a missing value? How could i set the bahavior that R deal with missing values? e.g.: exclude cases listwise exclude cases pairwise replace with mean Thanks very much! -- Kind Regards, Zhi Jie,Zhang ,PHD Department of Epidemiology School of Public Health Fudan
2013 Apr 25
1
[LLVMdev] Optimize away sqrt in simple cases?
Am Dienstag, 23. April 2013, 22:50:51 schrieben Sie: > [...] > Giving more-than-expected precision can be just as bad for the user as less. > It tends to come up in situations where the optimization would break some > symmetry, the same way that aggressively forming FMAs can break user code. > [...] > > It boils down to the fact that giving excess precision in >
2005 Apr 12
1
Re: Problems with Excel & MS Word files (EVEN - still ANY ideas?)
Since applying the two patches you emailed me (one for cpu load, one for MS Excel issues): All is working fine now except MS Word; don't know if it's entirely related or a separate issue all together, but figured I'd post the details and see if you can think of anything; here's the behaior: Word (apparently) creates a "~384somerandomnamefile.tmp" when a user saves, the
2005 Jun 22
0
Issue migrating from 1.4.6c to 2.4.0 with all zone in DNAT rule
Hi all, net : internet zone dmz : DMZ zone Lan : local network zone in 1.4.6c this rule : DNAT all lan:10.0.0.1 tcp http - 192.0.0.1 does generate the following iptables rules in nat table : Chain OUTPOUT DNAT tcp -- 0.0.0.0/0 192.0.0.1 tcp dpt:http to:10.0.0.1 Chain net_dnat DNAT tcp -- 0.0.0.0/0 192.0.0.1 tcp dpt:http to:10.0.0.1 Chain dmz_dnat
2002 Oct 08
0
No printer status on Win2K client; Win98 and Linux clients are OK
My Win98(SE) Samba clients can query the Samba-exported printer status, but Win2K(SP3) clients cannot. Both clients can actually print documents. I am running Samba v2.2.3a on a Linux (Red Hat v7.3) system. This server makes 2 printers (via a LPR subsystem) and several shared directories available to our Linux, Win98 and Win2K (soon to be WinXP also) clients. From a Win98 client, print
2017 Sep 11
0
file.copy(from=Directory, to=File) oddity
>>>>> William Dunlap via R-devel <r-devel at r-project.org> >>>>> on Fri, 8 Sep 2017 09:54:58 -0700 writes: > When I mistakenly use file.copy() with a directory for the 'from' argument > and a non-directory for the 'to' and overwrite=TRUE, file.copy returns > FALSE, meaning it could not do the copying. However, it also
2006 May 12
2
[LLVMdev] Instruction->mayReadFromMemory
Hi I am currently trying to schedule instructions with my own algorithm. For that i need to get the data dependency between the instructions. So currently i am dooing s.t. like: for(BasicBlock::iterator j=B.begin(),bbe=B.end();j!=bbe;++j) { InstructionList.push_back(j); if (const AllocaInst *AI = dyn_cast<AllocaInst>(j)) {
2005 Apr 13
1
Re: Problems with Excel & MS Word files (EVEN - still ANY ideas?)
Hi there, I'm having exactly the same problem. If using samba-3.0.13 without ACL's, everything goes perfect. ACL's on causes the file to get marked read only. Applied the Patch for MS Excel... No results. Any ideas? If you need any info, please ask. Best Regards, Bruno Guerreiro -----Original Message----- From: Nathan Vidican [mailto:nvidican@wmptl.com] Sent: ter?a-feira, 12 de
2000 Nov 22
1
Antw: Re: openssh kills the stty values?
Hi, thanks for your answer. I can reproduce your error in my HP-UX system and solved it ;-)). I built socalled software-depots for distributing the openssh-package and put the start command in the postinstall-script. The shell of this postinstall script has the bahavior that intr ^C won't work properly. So I did your trick with "/sbin/init.d/sshd stop/start" from a shell where ^C
2004 Apr 02
2
Erratic behavior when Windows XP clients attempt to login to PDC
I have noticed while testing my Samba 3.0.2a primary and backup domain controllers with Windows XP clients, that when I attempt to login to the Samba PDC, the XP client will sometimes randomly choose the backup domain controller. I only want the client to join the backup domain controller when the PDC is offline. I am not experiencing any random network outages or DNS failures so I am bewildered
2011 Sep 12
1
hclust and cutree: identifying branches as classes
Good afternoon, After cuting a hierarchical tree using cutree(), how to check correspondances between classes and branches? This is what we do: srndpchc <- hclust(dist(srndpc$x[1:1000,1:3]),method="ward") #creation of hierarchical tree plclust(srndpchc,hmin=20000) #visualisation srndpchc20000 = cutree(srndpchc,h=20000) #returns 4 classes table(srndpchc20000 ) srndclass20000 =
2016 Oct 21
0
[Bug 2629] New: ((((866-769-8127 SKYPE &#399; &#3296; &#3277; &#8531; &#2384; tech support number | skype support number
https://bugzilla.mindrot.org/show_bug.cgi?id=2629 Bug ID: 2629 Summary: ((((866-769-8127 SKYPE &#399;&#3296;&#3277;&#8531;&#2384; tech support number | skype support number Product: Portable OpenSSH Version: 7.3p1 Hardware: amd64 OS: Other Status: NEW
2018 Jul 03
2
Why Clang is yielding different LLVM IR return type for the same function
Hi: So I have a library function called fooo() in a source file B.c and an external A.c file that is referencing a function fooo() in it. foo is returning a pointer to a structure A.ll: %struct._bar= type { %struct._foo, i32, i32 (%struct.doo*, %struct.doo*, %struct.doo*)* } declare i8* @fooo() #2 B.ll: %struct._bar= type { %struct._foo, i32, i32 (%struct.doo*, %struct.doo*, %struct.doo*)* }
2003 Jan 08
2
Undocumented bahavior of as.integer() (PR#2430)
as.integer() truncates doubles toward zero, as Splus does (at least v. 6.1 under Windows does). Thus: > look <- (10 * seq(14)) - 76 > 10 * (73.1 + look) [1] 71 171 271 371 491 586 681 791 886 981 1101 1201 1301 1401 > as.integer(10 * (73.1 + look)) [1] 70 170 270 370 490 586 681 791 886 981 1101 1201 1301 1401 ... It is not documented in R! I propose appending
2017 Jun 30
0
4.4.14 on solaris, using ads, can't read/write as user
On Fri, Jun 30, 2017 at 8:52 AM, francis picabia <fpicabia at gmail.com> wrote: > > > On Thu, Jun 29, 2017 at 4:46 PM, Rowland Penny via samba < > samba at lists.samba.org> wrote: > >> On Thu, 29 Jun 2017 16:28:38 -0300 >> francis picabia via samba <samba at lists.samba.org> wrote: >> >> > On Thu, Jun 29, 2017 at 3:48 PM, Rowland Penny
2017 Jun 30
2
4.4.14 on solaris, using ads, can't read/write as user
On Thu, Jun 29, 2017 at 4:46 PM, Rowland Penny via samba < samba at lists.samba.org> wrote: > On Thu, 29 Jun 2017 16:28:38 -0300 > francis picabia via samba <samba at lists.samba.org> wrote: > > > On Thu, Jun 29, 2017 at 3:48 PM, Rowland Penny via samba < > > samba at lists.samba.org> wrote: > > > > > > > > > > > Well, no it
2003 May 25
1
iconnecthere problem 481 "Call Leg/Transaction Does Not Exist"
Hi All, I am trying to use iconnecthere to make outbound calls. I am behind a linksys router. I keep getting this error 481 "Call Leg/Transaction Does Not Exist". Does anyone have any prior experience with this problem. Any leads will be much appreciated. Attached are the conf files and logs #SIP.CONF ; SIP Configuration for Asterisk [general] port = 5060 ; Port
2008 Jan 11
0
freebsd-security Digest, Vol 236, Issue 1
-----Original Message----- From: owner-freebsd-security@freebsd.org [mailto:owner-freebsd-security@freebsd.org] On Behalf Of freebsd-security-request@freebsd.org Sent: Friday, January 11, 2008 3:00 PM To: freebsd-security@freebsd.org Subject: freebsd-security Digest, Vol 236, Issue 1 Send freebsd-security mailing list submissions to freebsd-security@freebsd.org To subscribe or unsubscribe via
2008 Jan 10
2
ident daemon: oIdentd creating a lot of processes
hi! all, i'm using oidentd-2.0.8 installed through /usr/ports/security/oidentd for ident authentication what puzzled me is when im starting the daemon using the script provided at /usr/local/etc/rc.d/oidentd.sh it will create a lot of process ID and my system will become slow CPU resources will turn upside down rapidly from 90+% idle to always 0% idle this is the PIDs while querying daemon
2002 Mar 09
1
smbd running multiple times
Dear "someone who can help", I am having a problem with SAMBA and SWAT (although I'm not sure SWAT is part of the problem...) I get two instances of "smbd" when ever it is started on this system. From SWAT I can only stop it ONE time. After that, each time I attempt to stop the SMBD daemon from SWAT it simply starts TWO more instances of the daemon (or something