similar to: Unbuffered stdout?

Displaying 20 results from an estimated 2000 matches similar to: "Unbuffered stdout?"

2002 Sep 08
2
Crashes maybe due to: "error writing 4 unbuffered bytes"
I have been trying to implement Mike's tutorial on backup with rsync, but my server has kept crashing in the middle of the rsync transfer. I am backing up /dev/hda1 to /dev/hdc1 on a SuSe v 7.3 i386 box Server crashed 8 times. 16 fsck and 8 reboots later I finally got an error message and a graceful exit from rsync. Somewhere in the middle of the crashes I compiled and installed the
2004 Mar 09
1
error writing 4 unbuffered bytes - exiting: Broken pipe
I have a filesystem from a different machine nfs mounted on the machine that is running rsync. rsync version 2.5.5 protocol version 26 Copyright (C) 1996-2002 by Andrew Tridgell and others <http://rsync.samba.org/> Capabilities: 64-bit files, socketpairs, hard links, symlinks, batchfiles, IPv6, 64-bit system inums, 64-bit internal inums I am trying to create a backup
2009 Mar 04
1
performance problem with 3.2.8: unbuffered reads for some users
Hi! I'm experiencing 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
2012 Feb 27
2
compare two data frames of different dimensions and only keep unique rows
Dear list, I am still struggling with something that should be easy: I compare two data frames with a lot of common rows and want to keep only rows that are NOT in both data frames, unique. Here are an example of these data frame. reported <- structure(list(Product = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 3L, 4L, 5L, 5L), .Label = c("Cocoa", "Coffee C", "GC",
2014 Mar 12
1
--log-file=File output
Hi All, I have a situations where I need output to a file and normally would just append ?&>output.log? to the rsync command line but can?t do that in this situation and need to run rsync with just the args via nstask. I tried the internal --log-file=File option which works except it outputs very verbosely and not the usual (xfer#8, to-check=1115/1125) output I need to parse. I don?t
2020 Oct 19
1
usage of #import in grDevices/src/qdCocoa.h
I happened to notice that this header file uses #import <Cocoa/Cocoa.h> This is the first time I came across the preprocessor directive #import; the first thing I found about it is this Q&A suggesting it's not portable nor standard C: https://stackoverflow.com/q/39280248/3576984 On the other hand, this exact invocation seems pretty common on GitHub
2006 Nov 21
4
Embedding Rails in a Cocoa app.
Hi, Has anyone tried to embed rails into a Cocoa app? I have got this working to a very primitive point using RubyCocoa. After about half an hour of playing I was able to get WEBrick to serve the rails starter page inside of a Cocoa app, but that is as far as I have got. I have an idea for a client/server app where the server is a Cocoa application that embeds WEBrick (or another server solution
2012 Feb 27
1
compare two data frames with same columns names but of different dimensions
Dear List, I want to compare and return the rows which are NOT in the two data frames. Classic methods don't work as the df have NOT the same dimensions. Here are one example of my df: reported <- structure(list(Product = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 3L, 4L, 5L, 5L), .Label = c("Cocoa", "Coffee C", "GC", "Sugar No 11", "ZS"),
2007 Dec 06
2
R-Cocoa Bridge
I had seen old posts on the list (circa 2002) regarding a Cocoa-R bridge that was under development, but I can't find anything recent about it. Does anyone know if this is available somewhere? If not, does anyone have any experience/pointers calling R functions from Cocoa? Thanks for your time, Lee Falin
2012 May 07
2
[LLVMdev] Running Objective-C in the JIT
Hello, I've been trying to get some OSX code to execute within the JIT, and it's been causing me some major headaches! I'm attempting to JIT-compile some code which uses external OSX obj-C classes (Cocoa, etc), and also contains its own embedded obj-C classes. My first hurdle in doing this was that when the code tried to call Cocoa classes, the obj-C selectors weren't being
2002 Sep 09
4
Hardware - no way -Re: Crashes maybe due to: "error writing 4 unbuffered bytes"
Dear JW, I spent hours checking and upgrading my hardware. There is nothing wrong with it. It is a 'mature' Pentium-II 400MHz system that has been running my servers WITHOUT ANY CRASHES for nearly 2 years now 24/7 Listen to me: "The crashes are dues to rsync" There is an IDENTICAL report from a totally different source at
2012 May 07
0
[LLVMdev] Running Objective-C in the JIT
Le 7 mai 2012 à 17:07, Jules a écrit : > Hello, I've been trying to get some OSX code to execute within the JIT, > and it's been causing me some major headaches! > > I'm attempting to JIT-compile some code which uses external OSX obj-C > classes (Cocoa, etc), and also contains its own embedded obj-C classes. > > My first hurdle in doing this was that when the
2012 May 08
3
[LLVMdev] Running Objective-C in the JIT
Thanks for the info! Yes, the problem is certainly that the JITed code isn't registering its classes, but even after digging through all the runtime code I can't find anything that seems suitable for doing this.. The nearest function I could find was _objc_init_image, but that seems to be for win32! I assume that the way it works must be that clang creates some static data structures
2009 Nov 26
1
compiling on snow leopard: Cocoa errors?!?!?!
Dear R-gurus, I'm trying to compile R on my new mac. It's snow leopard. So far I've seemed to be doing pretty well. I've looked at http://cran.r-project.org/bin/macosx/tools/ http://r.research.att.com/exp/ http://r.research.att.com/building.html http://r.research.att.com/tools/ All of which have been very helpful. Looking at the threads I've got around some X11 issues
2012 May 08
0
[LLVMdev] Running Objective-C in the JIT
And also, the hook to load/unload image is installed in objc-os.m using dyld_register_image_state_change_handler() function. Le 8 mai 2012 à 15:07, Julian Storer a écrit : > Thanks for the info! > > Yes, the problem is certainly that the JITed code isn't registering > its classes, but even after digging through all the runtime code I > can't find anything that seems
2009 Jun 05
2
[LLVMdev] Using LLVM JIT inside a Cocoa application
Hello, I am trying to compile a project I am writing with Xcode that will use LLVM libraries to generate code executed with the JIT. I would be curious to learn how you deal with LLVM header files, libraries, makefiles and Cocoa application projects. My candid understanding is that LLVM projects need to be built with LLVM makefiles (hence the previous message I sent about LLVM Projects). I am
2009 Jun 05
0
[LLVMdev] Using LLVM JIT inside a Cocoa application
Hello, I'm not an LLVM expert, but I think you can build a Cocoa/LLVM project by using the LLVM's libraries and headers the same way you did with any other third party library. In fact, that's what the clang Xcode project does. It does not use any makefile. In short: - Add the llvm/include folder in you header search path (in the project's build settings). To add
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 advance! Tim --~--~---------~--~----~------------~-------~--~----~ You received
2004 Mar 09
0
FW: error writing 4 unbuffered bytes - exiting: Broken pipe
I have a filesystem from a different machine nfs mounted on the machine that is running rsync. rsync version 2.5.5 protocol version 26 Copyright (C) 1996-2002 by Andrew Tridgell and others <http://rsync.samba.org/> Capabilities: 64-bit files, socketpairs, hard links, symlinks, batchfiles, IPv6, 64-bit system inums, 64-bit internal inums I am trying to create a backup
2002 Jun 18
0
error writing 4 unbuffered bytes - exiting
I am running a fairly new box, Athlon 1.4Ghz, 512 Mb RAM, RedHat 7.3, rsync rsync version 2.5.4 protocol version 26, it's disk layout is; bash-2.05a# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda6 372M 338M 15M 96% / /dev/sda1 45M 8.9M 34M 21% /boot /dev/sda5 703M 218M 449M 33% /home none 251M 0