search for: file_a

Displaying 12 results from an estimated 12 matches for "file_a".

Did you mean: file_t
2008 Nov 10
4
PathFindExtension and wide strings
Hi, What''s happening here? require ''windows/path'' require ''windows/unicode'' include Windows::Path include Windows::Unicode file_a = ''bar.txt'' file_w = multi_to_wide(file_a) p PathFindExtensionA(file_a) # ''.txt'' => OK p PathFindExtensionW(file_w) # ''.'' => WRONG Is Ruby chopping the result because of an embedding null? How do we deal with it? Thanks, Dan This...
2008 May 31
1
rsync 3.0.2 with --fileflags on FreeBSD: cannot rsync hardlinked immutable files
...following scripts will create a simple example for this behaviour: -------------------------------------------------------------- #! /bin/sh # # set -x DIR="/var/tmp/rsync_$(date +%s)/" mkdir "${DIR}/" # Preparing dir_A mkdir "${DIR}/dir_A/" touch "${DIR}/dir_A/file_A" ln "${DIR}/dir_A/file_A" "${DIR}/dir_A/file_B" chflags schg "${DIR}/dir_A/file_A" ls -laio "${DIR}/dir_A/" # Try rsync: will fail because of schg'ed hardlinked file /usr/local/bin/rsync -avHWx --fileflags "${DIR}/dir_A/" "${DIR}/dir_...
2014 Dec 05
1
functionality to rsync from dir to dir(gzip)
Dear all is it possible to rsync in a master-slave scenario saving to slave gzip content? i'm not talking about compression during transfer, i'm talking about -saving- the destination in a compressed format. Example: FROM: -folder_A --file_A --file_B TO: -folder_A --file_A.gz --file_B.gz I know that this won't be a "real" rsync between two folder, but it will be an extremely useful feature to do some remote backup saving space. To check if the file has been changed it will be enough to compare the date of files because...
2010 May 26
3
Simple whole volume copy
I have a volume at 192.168.0.2 on my local network. I'd like to rsync the entire volume to a backup volume, skip all files already present on the backup volume (same name and the same or earlier timestamp), and include all flags, dates, etc. as applicable to Mac OS X 10.6.x. Can someone tell me the proper command to do this.
2005 May 25
2
rsync file sync by priority
Hello All - I'm looking for a switch(es) to ensure rsync indexes the pull of files from remotedir, LIFO (last in first out) and then by .ext type where file basenames are similar. example) file_a.xml ctime of 09:01:07 file_a.jar ctime of 09:01:02 get transfered before file_b.xml ctime of 09:01:45 file_b.jar ctime of 09:01:45 and the .xml of basename $file would always be transferred first. I'm unsure if this is in the detailed docs on the algorithm, but RTFM method was not working...
2012 Mar 08
1
Save/Load function()-result to file in a loop
...) but I am not sure if that is the way I should do it as I don't get the result I desire... ls <- list("A","B","C") for(i in ls){ x <- lm(c(1,2,3)~c(2,5,6)) save(x, file = paste("/path/to/file_",i,sep="")) } A <- load("/path/to/file_A") /Johannes -- Jetzt informieren: http://mobile.1und1.de/?ac=OM.PW.PW003K20328T7073a
2009 Oct 30
2
Unix file ownership for wide open directories
An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20091030/c43a29f5/attachment.html>
2005 Mar 29
7
[Bug 2554] Output overwrite action
https://bugzilla.samba.org/show_bug.cgi?id=2554 ------- Additional Comments From wayned@samba.org 2005-03-29 11:50 ------- (In reply to comment #0) >> If a file will be deleted the line starts with "Delete", but when a > file will be copied or overwritten, nothing is displayed. I assume you mean, "no prefix is displayed" since there is something that is
1999 Dec 08
0
Problem delivering files
...y online then get 3 times receive_smb: length < 0! client_receive_smb failed then stoping communication and Error code 0 closing remote file (0.265384 kb/s) (average 0.265384 kb/s) smb: \hubi\> So, what's happening here ? IMHO, smbd makes a open(file_A), read(file_A) gets 16k and send them to the client, then it is waiting for the next bytes and ... ... I would suggest is: sending 0bytes to the client for what reason ever. But you will know better, and having a solution (I hope) Thanx in advance Hubertus Krogmann PaderLinx Neue Infor...
2012 Mar 30
1
smb_acl_to_posix: ACL is invalid for set (Invalid argument) - in 3.5.6
hi everybody this happens when a Domain Admin adds a user-permission set via properties/security in Windows folder_A was created by a Domain Admin new permission - Modify - was added over the folder_A to the user_A user_A created a file_A.txt in folder_A now Domain Admin goes back to the properties of folder_A wanting to change/modify security entries operation fails on windows: "An error occurred while applying security information to: ..\folder_A\files_A.txt. Access is denied" on samba: as in the subject that could a...
2005 Jul 04
2
[LLVMdev] function inlining threshold ?
I am using llvm for source-to-source inlining. So I did: % llvm-gcc file_a.c file_b.c ... file_n.c -o file % opt -inline -inline-threshold=1000 < file.bc | llc -march=c > outfile.c Can anyone tell me how llvm determines if a function should be inlined, and what roll does "inline-threshold" play ? (Does the example mean that if the function body has fewe...
2005 Jul 05
0
[LLVMdev] function inlining threshold ?
On Mon, Jul 04, 2005 at 03:32:39PM -0500, Long Fei wrote: > I am using llvm for source-to-source inlining. So I did: > > % llvm-gcc file_a.c file_b.c ... file_n.c -o file > % opt -inline -inline-threshold=1000 < file.bc | llc -march=c > outfile.c > > Can anyone tell me how llvm determines if a function should be > inlined, and what roll does "inline-threshold" play ? (Does the > example mean that if the...