similar to: file statistics collection using stat(2) data obtained by rsync

Displaying 20 results from an estimated 5000 matches similar to: "file statistics collection using stat(2) data obtained by rsync"

2013 Feb 09
3
help on plotting series with different x-axis values on a graph with one x-axis
Hi, I have run into this problem a couple of times now and hope you can help! If I want to plot mulitiple series with differing x-axis values (however, all in the same range) in 1 plot with one common axis R obstruses the plots. E.g. if I plot water content against time and I start with the sampler at 5 cm depth, it plots that one right. But the next depth, 15 cm, is measured at slightly
2007 Feb 15
2
simpleR or usingR package by Verzani
I am a new R user and so I thought I could start with "Using R for Introductory statistics" by Verzani. In order to use some of the functions and datasets I have to install the simpleR package which is is now inside the UsingR package. I did so using >install.packages("UsingR"). However, the functions such as "simple.freqpoly.R" do not work. I also tried to
2013 Jan 20
0
[LLVMdev] Clang's approach to anonymous struct pointer parameters
Hi Rick, this is a bug in Clang's LLVM-IR code generator: http://llvm.org/bugs/show_bug.cgi?id=14920 Best, Florian On Sunday, January 20, 2013 01:57:37 Rick Mann wrote: > For the following code: > > struct XBeePacket; > > typedef void (*CompletionProc)(XBeePacket* inPacket, void* inParam2); > > struct > XBeePacket > { >
1997 Dec 16
1
Samba/Amiga smbclient?
Hi Rask, I installed the GG ls, as you suggested, and some other directory commands (rm, dir, ..) as well, into amitcp:samba/bin. BIN: is assigned to this. My path looks here first before amitcp:bin. I still get no action for mput *, with recurs on, and mask *. Also, lcd prints nothing as well. Can you suggest anything else? Am I missing something else, perhaps? Cheers, Chris. On 15 Dec 97
2001 Dec 31
2
Extracting/setting elements from/in a matrix/array
Dear all, I had to extracts/set elements from/in a matrix. Let say I have two vectors dim1 and dim2 of indices in the respective two dimensions of a matrix: I want to extract all the corresponding elements. I the case of a nxn matrix, dim1 <- 1:n and dim2 <- 1:n would extract the diagonal. I know one way would be to use the functions 'row' and 'col', but the matrixes I
2009 Jun 16
1
[Announce] Samba 3.2.12 Maintenance Release Available for Download
================================================================ "Your background and environment is with you for life. No question about that." Sean Connery ================================================================ Release Announcements ===================== This is a maintenance release of the Samba 3.2 series. Major enhancements in 3.2.12 include: o
2009 Jun 16
1
[Announce] Samba 3.2.12 Maintenance Release Available for Download
================================================================ "Your background and environment is with you for life. No question about that." Sean Connery ================================================================ Release Announcements ===================== This is a maintenance release of the Samba 3.2 series. Major enhancements in 3.2.12 include: o
2006 Jan 16
1
How to analysis Y98 chips using RankProd package?
Dear R and Bioconductor Helpers, I am using a package called RankProd under Bioconductor to analysis my Y98 (yeast) microarray data. I had no problem following the example in the vignette but got stocked when I tried to analyze my own data. When I tried to run the following command, RP.out <- RP(rrf.sub, rrf.cl.sub, gene.names = y98.gnames, rand = 123) I got the following response: Rank
2010 May 28
0
FW: smbd *not* breaking hard links when saving files
Hi Tim et al., Yes, I can see that the new behaviour would seem like an 'optimization', possibly especially for large files, in that it saves the unlink operation. was (quasi): unlink, open(write), write data, close now is (quasi): open(write, truncate), write data, close However, this old behaviour enabled my rather nice hard link copy (cheap!) local backup. The question is, is the
2012 Jul 30
0
[LLVMdev] global control flow graph at machine code level
Hi Abhishek, On Sunday, July 29, 2012 18:32:11 AbhishekR wrote: > It seems like I may have to modify the way MachineFunction is instantiated in MachineFunctionAnalysis. Instead of doing it per Function, it may have to be done for the entire Module by instantiating MachineFunction objects for every Function inside the Module. This might require major changes to the PassManager framework as well.
2001 Jul 19
1
Compiling R-1.3.0-patched on OSF1
Dear R-users, I currently have trouble in trying to compile R-1.3.0-patched on Compaq OSF1. -------- >uname -a OSF1 adenine.fysik.dtu.dk V4.0 1229 alpha -------- The 'configure' step ended seemingly corretly: ----------------------- R is now configured for alphaev6-dec-osf4.0f Source directory: . Installation directory: /home/adenine/sysman/laurent/share/ C
2010 May 20
1
Geneland error on unix: Error in MCMC(........ :, unused argument(s) (ploidy = 2, genotypes = geno)
I am receiving the above error ( full r session output below) the script runs OK in windows. and "genotypes" and "ploidy" are both correct arguments any suggestions would be most welcome Nevil Amos MERG/ACB Monash University School of Biological Sciences > library(Geneland) Loading required package: RandomFields Loading required package: fields Loading required
2012 Jul 12
0
[LLVMdev] RFC: Pass Manager Redux
On Wed July 11 2012 11:50:01 Chandler Carruth wrote: > - What else did I miss? > > > Things that are totally out of scope: pass registration, the current pass order and structure, the fundamental interface of mapping from a pass to an analysis, etc. This is really about pass management and scheduling. > Hi Chandler, I understand why the pass registration and the pass
2001 Jul 16
2
Trouble with the memory allocation
Dear R-users, I am currently facing what appears to be a strange thing (at least to my humble understanding). If I understood correctly, starting with the version 1.2.3, R memory allocation can be done dynamically, and there is no need to fiddle with the --nsize and --vsize parameter any longer... So far this everything seemed to go this way (I saw the size of my processes growing when I was
2001 Oct 22
1
No subject
Dear all, I may have overlooked something but the following piece of code causes me trouble: > a_data.frame(1:4) > a X1.4 1 1 2 2 3 3 4 4 > apply(a,2,cat) 1 2 3 4Error in ans[[1]] : subscript out of bounds > apply(a,1,cat) 1234NULL Is this the fact my data.frame has only one dimension ? (and do I forget somewhere (but where ?) to specify not to 'drop'
2001 Oct 27
1
trouble with data.matrix
Dear all, The following causes me trouble: > a <- data.frame(2:5,3:6,4:7) > str(a) `data.frame': 4 obs. of 3 variables: $ X2.5: int 2 3 4 5 $ X3.6: int 3 4 5 6 $ X4.7: int 4 5 6 7 > str(data.matrix(a)) int [1:4, 1:3] 2 3 4 5 3 4 5 6 4 5 ... - attr(*, "dimnames")=List of 2 ..$ : chr [1:4] "1" "2" "3" "4" ..$ : chr
2003 Sep 25
4
[Bug 716] OpenSSH 3.7.1p2: sshd doesn't start at reboot (Tru64 UNIX)
http://bugzilla.mindrot.org/show_bug.cgi?id=716 Summary: OpenSSH 3.7.1p2: sshd doesn't start at reboot (Tru64 UNIX) Product: Portable OpenSSH Version: -current Platform: Alpha OS/Version: OSF/1 Status: NEW Severity: major Priority: P2 Component: sshd AssignedTo: openssh-bugs
2009 Aug 13
3
OT: hardware newbie p9115-505
Hi guys, Sorry for the OT. I've posted it in some IBM related forums but no reply yet. We've got an IBM pSeries p9115-505 machine from warehouse. I notice that it doesn't have any port for the monitor. Where do we plug the monitor? >From Google it says something about HMC (Hardware Management Center). Any hints is really2 appreciated. Thank you.
2005 Mar 04
3
PXE(bis) boot Centos 4.0 problems
"AS" == Alan Sparks <asparks@quris.com> "MH" == Martin Hamant <mh@accelance.fr> AS> Has anyone yet tried PXE booting the vmlinuz/initrd.img AS> set from Centos 4.0beta2? AS> Anyone had luck? Any changes for PXE boots known for 4.0? AS> Thanks in advance. MH> No luck. this is exactly the same issue i''m in front of.
2004 Jan 03
3
AW: AW: Snom 200 with two extns defined anyone?
Please forgive me if this is a silly question. I've been following this thread in the hope that I could put my * server and snom 200 into full-time service very soon. I need to find out how to have the lines configured so that it does not return a busy reply when only one call instances is engaged. Am I supposed to create multiple extensions on my asterisk dialplan to reflect the 5 call