search for: unbuff

Displaying 20 results from an estimated 175 matches for "unbuff".

Did you mean: inbuff
2002 Sep 08
2
Crashes maybe due to: "error writing 4 unbuffered bytes"
...exit from rsync. Somewhere in the middle of the crashes I compiled and installed the 2.5.4 stable version. Here is the error dialog: building file list ... done var/log/httpd/ var/log/httpd/access.combined.8sep02.log var/log/httpd/access.combined.log var/log/httpd/error_log rsync: error writing 4 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(464) rsync: error writing 70 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(464) A search of Google Usenet showed two identical incidents...
2004 Mar 09
1
error writing 4 unbuffered bytes - exiting: Broken pipe
...system inums, 64-bit internal inums I am trying to create a backup image on the remote machine, but thanks to NFS it looks like a local filesystem. The command I am using is rsync -rluRtpPv --delete /net/moe/bne/* /net/burns/bne_old/ | tee rsync_report2 I then get this: rsync: error writing 4 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(463) rsync: error writing 69 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(463) I searched the gmane group for a solution to no great sat...
2008 Sep 18
2
Unbuffered stdout?
...dout and stderr via NSPipes. I'm having an issue where output from the DOS mode text program doesn't get to the Objective-C/Cocoa program until after the program ends in Wine. I think this is happening because stdout is buffered. Is there a way to cause Wine to treat stdout and stderr as unbuffered? Thanks, -- Dan
2009 Mar 04
1
performance problem with 3.2.8: unbuffered reads for some users
...g strange performance problems after upgrading to samba 3.2.8 from 3.0.30. For all users except smbadmin (who has administrative rights), read performance is _very_ bad. Looking at the read-requests using filemon and wireshark, I found out that for those users, every read is handled transparently (unbuffered) over the net. (I.e. a 2 byte read-request of the application leads to a 2 byte Read And X Request over the net.) If the user is smbadmin, reads are block buffered. (A 2 byte read-request of the same application as above leads to a 4096 byte Read And X Request over the net.) Clients are WinXP...
2019 Apr 05
1
[PATCH nbdkit] vddk: Add support for VIXDISKLIB_FLAG_OPEN_UNBUFFERED.
I suppose we may as well implement the only other flag too ... It's not clear what this does, something like O_DIRECT I imagine. Rich.
2002 Jun 18
0
error writing 4 unbuffered bytes - exiting
...dev/ --exclude /mnt/ --exclude /lost+found/ --exclude /tmp/ --delete -T /tmp / /opt/archive Note this is the ONLY thing the /opt/archive filesystem is used for. I run rsync every three hours to make sure it is up to date.. Just recently I have been getting these errors; rsync: error writing 4 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(464) rsync: error writing 69 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(464 And the rsync fails. I read in the archives and "Cur...
2004 Mar 09
0
FW: error writing 4 unbuffered bytes - exiting: Broken pipe
...system inums, 64-bit internal inums I am trying to create a backup image on the remote machine, but thanks to NFS it looks like a local filesystem. The command I am using is rsync -rluRtpPv --delete /net/moe/bne/* /net/burns/bne_old/ | tee rsync_report2 I then get this: rsync: error writing 4 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(463) rsync: error writing 69 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(463) I searched the gmane group for a solution to no great sat...
2006 Dec 16
0
unbuffered output?
How do I do unbuffered output from a rails app? I suspect the question really is "how do I do unbuffered output from ruby" but since it''s for a rails app here I am:-) Also if I understand correctly apache >= 1.3 no longer buffers output?... any thoughts on that also appreciated. Thanks in adv...
2006 Mar 14
0
Unbuffered Output?
Is it possible to send unbuffered output to client browser from a controller and/or view? If so, how? Thanks!!
2002 Jul 18
0
rsync: error writing NNNN unbuffered bytes - exiting:Connection reset by peer -> NIC driver problem!
...d driver combos that are: 1. Know Good, 2, Known to have problems. Put Realtec NICs with the 8139too driver on the "Known to have problems" list. -----Forwarded Message----- From: Bill Geddes <bill_geddes@agilent.com> To: rsync@lists.samba.org Subject: rsync: error writing NNNN unbuffered bytes - exiting:Connection reset by peer Date: 13 Jun 2002 09:38:56 -0600 Has anyone figured out what is happening with this error? There are many reports of this, but the advise seems to fall short - ie. make sure you are using rsync 2.5.n, make sure the target disk is not full. I have used...
2009 Dec 18
2
[LLVMdev] [PATCH] Circular Buffered Debug Stream
...d stream. + /// + static const bool DELETE_STREAM = true; + + /// PRESERVE_STREAM - Tell the destructor to not delete the held + /// stream. + /// + static const bool PRESERVE_STREAM = false; + + private: + /// TheStream - The real stream we output to. We set it to be + /// unbuffered, since we're already doing our own buffering. + /// + raw_ostream *TheStream; + + /// DeleteStream - Do we need to delete TheStream in the + /// destructor? + /// + bool DeleteStream; + + /// BufferSize - The size of the buffer in bytes. + /// + size_t BufferSize;...
2009 Dec 18
2
[LLVMdev] [PATCH] Circular Buffered Debug Stream
...urn; > > > > + if (DeleteStream) > > > > + delete TheStream; > > > > + else if (BufferSize > 0) > > > > + TheStream->SetBufferSize(BufferSize); > > > > + else > > > > + TheStream->SetUnbuffered(); > > > > > > Another issue is that this is transfering the circular stream's > > > buffer to the underlying stream. Would it make more sense and would it > > > be worth it to save the underlying streams buffer size and restore it > > > in rele...
2009 Dec 19
0
[LLVMdev] [PATCH] Circular Buffered Debug Stream
...ar names. How about giving them a name involving 'ownership' like TAKES_OWNERSHIP? "preservation" isn't really the same as "not deleting when the stream is destroyed" to me. > + /// TheStream - The real stream we output to. We set it to be > + /// unbuffered, since we're already doing our own buffering. > + /// > + raw_ostream *TheStream; Now that I understand the model :) I don't see why you need to fiddle with the underlying buffering of TheStream. In the dbgs() use case, the underlying stream will be errs() which is alr...
2009 Dec 17
2
[LLVMdev] [PATCH] Circular Buffered Debug Stream
...d stream. + /// + static const bool DELETE_STREAM = true; + + /// PRESERVE_STREAM - Tell the destructor to not delete the held + /// stream. + /// + static const bool PRESERVE_STREAM = false; + + private: + /// TheStream - The real stream we output to. We set it to be + /// unbuffered, since we're already doing our own buffering. + /// + raw_ostream *TheStream; + + /// DeleteStream - Do we need to delete TheStream in the + /// destructor? + /// + bool DeleteStream; + + /// BufferSize - The size of the buffer in bytes. + /// + unsigned BufferSiz...
2009 Dec 19
2
[LLVMdev] [PATCH] Circular Buffered Debug Stream
...tream is destroyed" to me. That's a good idea. I just took these from what Dan (I think) did in formatted_raw_ostream. I'll change them here and rename DeleteStream to OwnsStream as well. > > + /// TheStream - The real stream we output to. We set it to be > > + /// unbuffered, since we're already doing our own buffering. > > + /// > > + raw_ostream *TheStream; > > Now that I understand the model :) I don't see why you need to fiddle > with the underlying buffering of TheStream. In the dbgs() use case, > the underlying stream wi...
2006 May 01
1
Is there a way to do unbuffered render :update ?
Greetings all, I have an action which does some stuff and then does a render :update to replace a container with a partial, the delay due to processing is more than I''d like for expecting a user to wait without hitting the button again and again. Is there a way to force the render''s display when the satement is executed rather than at the end of the action? Thanks, Andy --
2002 Jun 13
1
rsync: error writing NNNN unbuffered bytes - exiting:Connection reset by peer
Has anyone figured out what is happening with this error? There are many reports of this, but the advise seems to fall short - ie. make sure you are using rsync 2.5.n, make sure the target disk is not full. I have used rsync 2.5.[1,2,4,5] on my rsync server, and I get the same results. The target disk I am working with never gets more than 2% full when the rsync client and server quit talking
2014 Nov 02
3
[LLVMdev] "Anti" scheduling with OoO cores?
...other FDIV operations (FDIVDrr and FDIVSrr). This seems to be already semi-modelled, with a "ResourceCycles=[18]" line in the SchedWriteRes for this instruction. This doesn't seem to work (a poor schedule is produced) so I changed it to also require another resource that I modelled as unbuffered (BufferSize=0), in the hope that this would "block" other FDIVs... no joy. Then I noticed that the MicroOpBufferSize is set to 128, which is wildly high as Cortex-A57 has separated smaller reorder buffers, not one larger reorder buffer. Even reducing it down to "2" made no...
2009 Dec 18
4
[LLVMdev] [PATCH] Circular Buffered Debug Stream
...// put into ErrorInfo, and the stream should be immediately > > + /// destroyed; the string will be empty if no error occurred. > > This comment is out of date, there is no ErrorInfo. Will remove. > > + /// > > + /// As a side effect, the given Stream is set to be Unbuffered. > > + /// This is because circular_raw_ostream does its own buffering, > > + /// so it doesn't want another layer of buffering to be happening > > + /// underneath it. > > + /// > > + circular_raw_ostream(raw_ostream &Stream, unsigned BuffSi...
2009 Dec 18
0
[LLVMdev] [PATCH] Circular Buffered Debug Stream
...+ if (DeleteStream) > > > > > + delete TheStream; > > > > > + else if (BufferSize > 0) > > > > > + TheStream->SetBufferSize(BufferSize); > > > > > + else > > > > > + TheStream->SetUnbuffered(); > > > > > > > > Another issue is that this is transfering the circular stream's > > > > buffer to the underlying stream. Would it make more sense and would > > > > it be worth it to save the underlying streams buffer size and restore >...