search for: close

Displaying 20 results from an estimated 37120 matches for "close".

2017 Jul 07
1
[New Patch] Fix disk corruption when writing
...fc=file("/dev/full", "w") >>>>>> > write.csv("a", file=fc) >>>>>> Error in writeLines(paste(col.names, collapse = sep), file, sep = eol) : >>>>>> system call failure on writing >>>>>> > close(fc) >>>>>> >>>>>> Serguei. >>>>> >>>>> I suspect that flushing on every write will slow things down too much. >>>> That's quite plausible. >>>> >>>>> >>>>> I think a better ap...
2010 Jan 11
0
tweedie.profile error message
...2 AHE remote no 1 A 1 25 2 2 AHE remote no 2 A 0 2 0 3 C remote yes 1 A 5 20 0 3 C remote yes 2 A 7 15 6 3 HE remote yes 1 A 5 20 3 3 HE remote yes 2 A 0 3 0 3 AHE remote yes 1 A 3 1 0 3 AHE remote yes 2 A 6 3 2 4 C close no 1 A 0 5 1 4 C close no 2 A 5 25 6 4 HE close no 1 A 10 6 0 4 HE close no 2 A 10 15 0 4 AHE close no 1 A 10 10 0 4 AHE close no 2 A 5 7 3 5 C close yes 1 A 0 7 0 5 C close yes 2 A 0 20 7 5 HE close yes 1 A 0 25...
2012 Dec 13
2
[PATCH 1/2] daemon: NFC Use symbolic names in commandrvf
...s an ext2 filesystem, this is the major and minor. * This is so we can ignore this device from the point of view of the * user, eg. in guestfs_list_devices and many other places. @@ -834,22 +838,22 @@ commandrvf (char **stdoutput, char **stderror, int flags, signal (SIGPIPE, SIG_DFL); close (0); if (flag_copy_stdin) { - dup2 (stdin_fd[0], 0); - close (stdin_fd[0]); - close (stdin_fd[1]); + dup2 (stdin_fd[PIPE_READ], STDIN_FILENO); + close (stdin_fd[PIPE_READ]); + close (stdin_fd[PIPE_WRITE]); } else { /* Set stdin to /dev/null (ignore fai...
2017 Jul 07
2
[New Patch] Fix disk corruption when writing
...nux box): >>>> > fc=file("/dev/full", "w") >>>> > write.csv("a", file=fc) >>>> Error in writeLines(paste(col.names, collapse = sep), file, sep = eol) : >>>> system call failure on writing >>>> > close(fc) >>>> >>>> Serguei. >>> >>> I suspect that flushing on every write will slow things down too much. >> That's quite plausible. >> >>> >>> I think a better approach is to catch the error in the Rconn_printf >>> ca...
2003 Feb 21
1
2.2.7a - lot of open/close calls
I'me trying to track down a performance problem as I posted yesterday and as I increase the log level I've noticed this... [2003/02/21 08:19:06, 2] smbd/open.c:open_file(245) dm389245 opened file mr00257.bat read=Yes write=No (numopen=1) [2003/02/21 08:19:06, 2] smbd/close.c:close_normal_file(213) dm389245 closed file mr00257.bat (numopen=0) [2003/02/21 08:19:06, 2] smbd/open.c:open_file(245) dm389245 opened file mr00257.bat read=Yes write=No (numopen=1) [2003/02/21 08:19:06, 2] smbd/close.c:close_normal_file(213) dm389245 closed file mr00257.bat (numopen=0) [2...
2011 May 08
3
Another quantmod question
I'm having troubles with the names of columns. quantmod deal with stock quotes. I've created an array of the first 5 closing prices from Jan 2007. (Is there a problem that the name is the same as the variable name? There shouldn't be.) > close close 2007-01-03 1416.60 2007-01-04 1418.34 2007-01-05 1409.71 2007-01-08 1412.84 2007-01-09 1412.11 When I try to create a more complex array by adding columns, the names get fouled up. Here's a simple example. > cbind(changed.close = close+1, zero = 0, close)...
2012 Feb 07
5
Table rearranging
I have a table that looks like this: measurement?? ?date??? door ?? color 0.93529385?? ?513?? ?open?? ?red 0.97419293?? ?420??? open ?? red 0.962053514?? ?513?? ?closed?? ?red 0.963909937?? ?1230?? ?open?? ?blue 0.97652034?? ?1230?? ?open?? ?green 0.989310795?? ?1230?? ?closed?? ?blue 0.9941022?? ?917?? ?closed?? ?yellow I would like to create a table that has: Open measurement, Closed measurement, date, color.? For every date/color combination, there should be...
2008 May 22
1
tests/ok-errors.R ## bad infinite recursion
...oo() } +#foo() # now simple "infinite recursion" +# +# +#> ## bad infinite recursion / on.exit / ... interactions +#> bar <- function() 1+1 +#> foo <- function() { on.exit(bar()); foo() } +#> foo() # now simple "infinite recursion" +#Error: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error: segfault from C stack overflow +#Error: C stack usage is too close to the limit +...
2008 Jan 30
0
Samba hanging from time to time
...user1 opened file somedata/ADMIN/some directory/2008/~WRD3964.tmp read=Yes write=Yes (numopen=5) [2008/01/30 13:00:44, 2] smbd/open.c:open_file(391) user1 opened file somedata/ADMIN/some directory/2008/A file name 33 chars long 080130.doc read=No write=No (numopen=6) [2008/01/30 13:00:44, 2] smbd/close.c:close_normal_file(406) user1 closed file somedata/ADMIN/some directory/2008/A file name 33 chars long 080130.doc (numopen=5) NT_STATUS_OK [2008/01/30 13:00:44, 2] smbd/open.c:open_file(391) user1 opened file somedata/ADMIN/some directory/2008/~WRD3964.tmp read=No write=No (numopen=6) [2008/01...
2007 Aug 09
2
Closing a DB
Hi, As part of my whole indexing thing, I want to move the databases around, from within the code. So, I figured that the safest bet would be to close the DB before attempting to move it. But there's no Xapian::Database::close() or even Xapian::WritableDatabase::close(). I have a global variable that holds the database, and I open it in the main(): // globals Xapian::WritableDatabase g_Xap; int main( int argc, char ** argv ) { g_Xap...
2002 Aug 29
1
weird loop selecting print driver from w2k client w/ samba 2.2.5 w/ patches
...pressing OK or Apply... or selecting this printer from the uploaded drivers and pressing OK and Apply, the printer properties window hourglasses and my machine logs fill up with the messages below. The general idea is, it opens the 15 files that were uploaded for the drivers. Then reopens and closes each one, then closes them all. This process is repeated over and over again while windows print properties shows the hourglass. I've been able to upload and use generic windows drivers for other printers just fine, but when I did this one "from disk" using the manufacturer'...
2008 Feb 05
2
Samba crashing word and excell?
...user1 opened file somedata/ADMIN/some directory/2008/~WRD3964.tmp read=Yes write=Yes (numopen=5) [2008/01/30 13:00:44, 2] smbd/open.c:open_file(391) user1 opened file somedata/ADMIN/some directory/2008/A file name 33 chars long 080130.doc read=No write=No (numopen=6) [2008/01/30 13:00:44, 2] smbd/close.c:close_normal_file(406) user1 closed file somedata/ADMIN/some directory/2008/A file name 33 chars long 080130.doc (numopen=5) NT_STATUS_OK [2008/01/30 13:00:44, 2] smbd/open.c:open_file(391) user1 opened file somedata/ADMIN/some directory/2008/~WRD3964.tmp read=No write=No (numopen=6) [2008/01...
2011 Jan 06
1
[PATCH] close client socket after closing response body
...se is broken :) Anyways it''s pushed out to master and 1.1.x-stable in case people want^Wneed it *right* *now*: >From b72a86f66c722d56a6d77ed1d2779ace6ad103ed Mon Sep 17 00:00:00 2001 From: Eric Wong <normalperson at yhbt.net> Date: Wed, 5 Jan 2011 22:39:03 -0800 Subject: [PATCH] close client socket after closing response body Response bodies may capture the block passed to each and save it for body.close, so don''t close the socket before we have a chance to call body.close --- lib/unicorn/http_response.rb | 1 - lib/unicorn/http_server.rb | 1 + t/t0018-write-...
2006 Aug 14
4
too many close calls for non-opened fds
Hello All, I'm using OpenSSH 4.3p2 in HP-UX 11.23. On running tusc (a tool to trace system calls and signals) on sshd, I found lot of close calls upto 2047. Those close calls try to close a non-opened file descriptor and results in an error. This behaviour is seen only from OpenSSH 3.9 where closefrom() call is introduced to close the file descriptors before re-exec. The fix is to check the resource limits before calling close(), b...
2004 Jul 21
5
Windows Backup
hi, i created a share called backup and it is wrightable for everyone but even so the windows gives me the access denied when using windows backup but i can acess normaly and create using windows explorer any ideas? using win2k
2014 Nov 15
0
Processed: closing 726827, closing 763102, closing 711273, closing 744163, closing 603366, closing 648670 ...
Processing commands for control at bugs.debian.org: > close 726827 4.4.0-1 Bug #726827 [xen-utils-4.1] xen-utils-4.1: Xen doesn't start on a laptop with Nvidia Optimus graphics There is no source info for the package 'xen-utils-4.1' at version '4.4.0-1' with architecture '' Unable to make a source version for version '4.4.0-1...
2009 Apr 15
6
Intersection of two sets of intervals
...sets of "intervals", where an interval is an ordered pair [a,b] of two numbers. Is there an efficient way in R to generate the intersection of two lists of same? For concreteness: I'm representing a set of intervals with a data.frame: > list1 = as.data.frame(list(open=c(1,5), close=c(2,10))) > list1 open close 1 1 2 2 5 10 > list2 = as.data.frame(list(open=c(1.5,3), close=c(2.5,10))) > list2 open close 1 1.5 2.5 2 3.0 10.0 How do I get the intersection which would be something like: open close 1 1.5 2.0 2 5.0 10.0 I wonder if the...
1999 Aug 06
0
MS-Client
...x8 smb_newconn: fd=3, pid=20380 smb_newconn: detected WIN95 server smb_newconn: protocol=5, max_xmit=2920, pid=20380 capabilities=0x0 smb_proc_readdir_long: starting fpos=2, mask=\* smb_proc_readdir_long: new mask, len=3@1003, mask=ARD smb_proc_readdir_long: received 28 entries, eos=1, resume=0 smb_close_dentry: closed //ACCESRY, count=1 smb_close_dentry: closed //BATHROOM, count=1 smb_close_dentry: closed //BEDROOM, count=1 smb_close_dentry: closed //CATALOG, count=1 smb_close_dentry: closed //DEN, count=1 smb_close_dentry: closed //DINING, count=1 smb_close_dentry: closed //EXPERT.BMP, count=1 sm...
2001 Mar 06
5
Ports in close state
...ult -32, setting invalid smb_retry: new pid=20679, generation=12 and it generates a new connection I've got SO_KEEPALIVE active in the socket options in my SMB.CONF to try and maintain the connections. The problem is that when it generates a new connection, the old connection port is left in a CLOSE state for a long time, occasionally long enough that it manages to crash the server (Based on the log I think PROFTPD helps crash it but I'm not sure.) Mar 5 11:14:59 trentuc kernel: Unable to handle kernel NULL pointer dereference at virtual address 00000040 Mar 5 11:14:59 trentuc kernel: c...
2008 Feb 06
1
Rsync Hang with multiple files
I have a problem with rsync hanging when transferring multiple files over a VPN to a separate server. Local server is RHEL4 and remote server is FC6. It ends up failing with the following error message: rsync: connection unexpectedly closed (3193 bytes received so far) [receiver] rsync error: error in rsync protocol data stream (code 12) at io.c(600) [receiver=3.0.0pre8] rsync: connection unexpectedly closed (3193 bytes received so far) [generator] rsync error: unexplained error (code 255) at io.c(600) [generator=3.0.0pre8] Started...