search for: detault

Displaying 4 results from an estimated 4 matches for "detault".

Did you mean: default
2005 Feb 07
1
rsyncd.conf is not created although successful installation of rsync on debian but
Hi All, I have installed rysnc-2.6.3 on my debian linux ( 2.2.20-idepci #1 Sat Apr 20 12:45:19 EST 2002 i686). While configuration it was successful and i installed it without any error. Now, in default installation it should create rsyncd.conf as detault configuration file.. but it has not been created anywhere in system. root@jike:/tmp/temp/rsync-2.6.3# which rsync /usr/local/bin/rsync In config log also i have got successful message as configure:11413: result: * As of v2.6.0, the default remote shell is ssh instead of rsh!! * configur...
2004 Nov 16
0
Re: Win32, file descriptors and rb_io_check_writable()
...line endings aren''t the same >(although wordpad handles them properly). I guess I should find an >octal dump tool for windows to verify. Hopefully, you''ll see what I >mean. > Sorry if you receive this message again. My mail account seems to be messed. That is due to detault translation mode. Insert _setmode(NUM2INT(args[0]),_O_TEXT); after RFILE(self)->fptr->mode = rb_io_mode_flags("w+"); RFILE(self)->fptr->f = rb_fdopen(NUM2INT(args[0]),"w+"); in case of TEXT MODE. >Regards, > >Dan Regards, Park Heesob --MIME...
2004 Nov 16
0
Re: Win32, file descriptors and rb_io_check_writable()
Hi Park, > That is due to detault translation mode. > > Insert > _setmode(NUM2INT(args[0]),_O_TEXT); > after > RFILE(self)->fptr->mode = rb_io_mode_flags("w+"); > RFILE(self)->fptr->f = rb_fdopen(NUM2INT(args[0]),"w+"); > in case of TEXT MODE. Ah, thanks. On a side n...
2004 Jun 10
1
tryCatch() and preventing interrupts in 'finally'
With tryCatch() it is possible to catch interrupts with tryCatch(). Then you can use a 'finally' statement to clean up, release resources etc. However, how can I "protect" against additional interrupts? This is a concern when the hold down Ctrl+C and generates a sequence of interrupts. Example: tryCatch({ cat("Press Ctrl+C...\n"); Sys.sleep(5); }, interrupt =