search for: file1

Displaying 20 results from an estimated 657 matches for "file1".

Did you mean: file
2007 Sep 07
2
R first.id last.id function error
Hi R users, I have a test dataframe ("file1," shown below) for which I am trying to create a flag for the first and last ID record (equivalent to SAS first.id and last.id variables. Dump of file1: > file1 id rx week dv1 1 1 1 1 1 2 1 1 2 1 3 1 1 3 2 4 2 1 1 3 5 2 1 2 4 6 2 1 3...
2009 Feb 08
0
Modifying forestplot function in rmeta
...oundaries or the OR. I am a reasonable programer (other than with R), but have not been able to decipher what I should be modifying. Any suggestions will be appreciated. Thanks, Gerard Smits At 02:32 PM 9/7/2007, Gerard Smits wrote: >Hi R users, > >I have a test dataframe ("file1," shown below) for which I am trying >to create a flag for the first and last ID record (equivalent to SAS >first.id and last.id variables. > >Dump of file1: > > > file1 > id rx week dv1 >1 1 1 1 1 >2 1 1 2 1 >3 1 1 3 2 >4 2 1...
2015 Sep 03
1
Doubts on incremental backup and command repetition
Hi, I am trying to use rsync for incremental backup and I am facing some issues. I would like to ask your help to understand what is going on and have the proper command line. 1) my goal is I the following folders: ./dest: file3.txt ./orig: file1.txt   file10.txt  file2.txt   file20.txt And I would like to have as incremental backup ./dest: backup      file1.txt     file2.txt  file3.txt ./dest/backup:file1.txt   file10.txt  file2.txt   file20.txt ./orig: file1.txt   file10.txt  file2.txt   file20.txt However, I got the following. Also,...
2010 Mar 14
3
range and intersection
Hi: I have a two large files (over 300K lines). file 1: Name X UK 199 UK 230 UK 139 ...... UAE 194 UAE 94 File 2: Name X Y UK 140 180 UK 195 240 UK 304 340 .... I want to select X of File 1 and search if it falls in range of X and Y of File 2 and Print only those lines of File 1 that are in range of File 2 X and Y How can it be done it
2004 Jul 14
12
HP-UX 11i and largefiles on rsync 2.6.2
...worked to transfer the files being tested. I have also tried rsync'ing between two local filesystems (both with largefiles supported) with the same result. The rsync transfers always fail at the 2GB mark. The rsync output is as follows: server1 # /tmp/rsync --rsync-path=/tmp/rsync --stats file1.db server2:/archive1 rsync: writefd_unbuffered failed to write 32768 bytes: phase "unknown": Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(836) There seem to be some similar questions in the list archives, however the solutions don't seem to be the...
2008 Dec 16
2
Syncing file with reference to another one
I have the following situation: file2 on remote host and file1 on localhost. file1 and file2 are mostly the same. Simply running rsync remotehost:file2 file2 will actually transfer the entire file. But I would like to use the factt that I have local file1 that is mostly similar to file2. I.e. how can I make rsync to use file1 as a reference while transferring...
2008 Mar 02
2
DO NOT REPLY [Bug 5298] New: xattrs and acls do not work well together along with fake-super, even worse on XFS
...rsync-qa@samba.org I may suspect there is a problem with the options: fake-super, xattrs and acls. Let me present an example. (create a test directory and enter it as root, configure rsyncd with the test module too) rm -rf source mkdir source echo data2 > source/file2 echo data1 > source/file1 chown 1000:1000 source/file1 setfattr -n user.DOSATTRIB -v "0x30783031" source/file1 setfacl -m g:wheel:rw- source/file1 rsync $OPTS -av source/ backup::test/dest1 rsync $OPTS -av --link-dest ../dest1 source/ backup::test/dest2 ------------------------------------------- For OPTS="...
2002 Sep 24
2
rsync to a symlink directory
Here is the structure of my servers : Source : /home/test1/link_dir sub_dir1 file1 file2 ... sub_dir2 ... Destination: /home/test2/real_dir sub_dir1 file1 file2 ... subdir2 ... /home/t...
2008 Apr 23
3
[LLVMdev] Compile units in debugging intrinsics / globals
...appropriate Dwarf compile units. To do that I can look at the (llvm) compile unit records but this only works when all are defined in the same source file. If data or a function is defined in an included file then they appear to be in a different compile unit. Suppose I have the following source: file1: #include "file2" #include "file3" int fn1(void) ... file2: int a; file3: int fn2(void) ... then fn1, along with all the base types etc appear to be in compile unit "file1", the variable a appears to be in compile unit "file2" (and there are no...
2008 Apr 24
0
[LLVMdev] Compile units in debugging intrinsics / globals
Hi, > Suppose I have the following source: > > file1: > #include "file2" > #include "file3" > int fn1(void) ... > > file2: > int a; > > file3: > int fn2(void) ... > > then fn1, along with all the base types etc appear to be in compile unit > "file1", the variable a appea...
2017 Dec 20
1
utils::unzip ignores overwrite argument, effectively
...nyway. Reproducible example below. This is R 3.4.3, but it does not seem to be fixed in R-devel: https://github.com/wch/r-source/blob/4a9ca3e5ac6b19d7faa7c9290374f7604bf0ef64/src/main/dounzip.c#L171-L174 FYI, G?bor dir.create(tmp <- tempfile()) setwd(tmp) cat("old1\n", file = "file1") cat("old2\n", file = "file2") utils::zip("files.zip", c("file1", "file2")) #> adding: file1 (stored 0%) #> adding: file2 (stored 0%) unlink("file2") cat("new1\n", file = "file1") readLines("file1...
2002 May 20
1
Numeric ids
...s numeric id and gid. I have a user which resides on 2 remote sites, having the same user names, but different uid and gid on both sites. I'm transferring the files as a root user. site A site B ----------------------------------------------- usr_A usr_A uid = 100 uid = 200 file1(usr_A) However from the diagram above, I would like transfer file1 from site A to site B to usr_A, and file1 does not exists for usr_A in site B. However, when copying file1 from A to B, I would like to have usr_A's numeric id in site A to be copied to usr_A's numeric id in site B....
2009 Sep 15
2
Building R package with .c sub-routine files
Lets say I have two source files file1.c and file2.c The latter just contains sub-routines to be used by the first. i.e. in file1.c I have the line #include "file2.c" Let's say "R CMD SHLIB file1.c" runs perfectly and I want to include the code in a package, "R CMD build" also runs fine but R CMD ch...
2012 Mar 16
1
R merge two dataframes with different row?
Hi everyone, I have a question for R code to merge. Say I have two dataframes: File1 is: V1 V2 V3 V4 1 100 101 name1 2 200 201 name2 2 300 301 name3 3 400 401 name4 3 500 501 name5 4 600 601 name6 4 700 701 name7 File2 is: V1 V2 V3 V4 1 50 55 p1 3 402 449 p2 4 550 650 p3 4...
2016 Jun 09
1
for loop example
> From: Indunil Jayasooriya <indunil75 at gmail.com> > > > > > > [root at centos67 loop]# cat file1 > > > firstname1 > > > firstname2 > > > > > > [root at centos67 loop]# cat file2 > > > lastname1 > > > lastname2 > > > > > > I need a OUTPUT like this > > > > > > > > > *firstname1 lastname1firstname2...
2010 Jul 27
2
[LLVMdev] inline callsites whose function definitions are in different file?
...uot; attribute. >> >> They are both subclasses of Inline.cpp that assumes the function's >> definition (body) is in the same Module (file) as its callsites (that >> will be inlined). >> >> >> I am now having a situation that the functions are defined in file1.c >> (Module1) but all callsites are spread in file2, file3, ...fileN. Would >> LLVM be able to inline such callsites at compile time? >> >> I think the right approach is to conduct inlining at link time (via the >> LTO), but still wonder if it is possible to do it at...
2004 Jun 21
2
problems with --read-batch and --write-batch with --files-from
Hello, I want to use the --read/write-batch options, but i have problems to do so. The shell script [1] leads to the following error: [sender] expand file_list to 131072 bytes, did move delta-transmission disabled for local transfer or --whole-file file1 rsync: writefd_unbuffered failed to write 64 bytes: phase "unknown": Daten?bergabe unterbrochen (broken pipe) rsync error: error in rsync protocol data stream (code 12) at io.c(836) --[1]-- #!/bin/bash DIR="testdir-$(date '+%Y%m%d%H%M%S')" mkdir "$DIR" &&...
2012 Jan 20
2
rbind()
Hello there, Much thanks in advance for any help. I have a few questions: 1) Why do I keep getting the following error: File1 <- read.csv("../RawData/File1.csv",as.is=TRUE,row.names=1) Error in file(file, "rt") : cannot open the connection In addition: Warning message: In file(file, "rt") : cannot open file '../RawData/File1.csv': No such file or directory ? More specifically,...
2007 Apr 25
1
Symbolic links on Mac OSX
I have noticed an anomaly with symbolic links. umask 027 mkdir folder1 echo 'hello world' > folder1/file1 cd folder1 ln -s file1 softfile1 rsync -a ../folder1/ ../folder2/ ls -lF ../folder* ../folder1: total 16 -rw-r----- 1 alan alan 12 Apr 26 00:00 file1 lrwxr-x--- 1 alan alan 5 Apr 26 00:02 softfile1@ -> file1 ../folder2: total 16 -rw-r----- 1 alan alan 12 Apr 26 00:00 file1 lrwxrwx...
2009 Nov 01
1
need help on daylight saving time issue.
Hi, I am in Australian. Now it is daylight saving time in Australian. I have daysaving time issue on samba client as below. On AIX server, I get the following two files's modified time via command istat. /zytest/file1 (Modified time: Fri Sep 18 12:07:37 EST 2009) /zytest/file1 (Modified time: Sun Nov 1 13:42:16 EDT 2009) On samba client Windows machine, the modified time is as follows Name Size Type Date Modified file1...