search for: srcpath

Displaying 15 results from an estimated 15 matches for "srcpath".

Did you mean: src_path
2008 Feb 14
2
Rsync problems with some files & timestamp
...hen the problem does not occurs. Another thing is that the timestamp is not correct on the destination server, but only for some files! These file are one hour less in the destination server. Here is the parameters I use with rsync : rsync -v -t --delete --exclude=$EXCLUDE -e --ignore-errors $SRCPATH $DSTPATH >> mail.txt Tanks in advance! -- View this message in context: http://www.nabble.com/Rsync-problems-with-some-files---timestamp-tp15476237p15476237.html Sent from the Samba - rsync mailing list archive at Nabble.com.
2016 Mar 28
2
-H option causes unneccessary transfers
Greetings, when the daily system backup with rsync is performed, thousands of files (e.g. from /usr directory), which are not modified are uselessly transferrred to the backup storage every day. The rsync command is the following: rsync --update -DHAErlptgo --relative --atimes --delete-during ${SRCPATH} ${BACKUPDIR} Quick investigation shown, that these files are hard links, and the command option related to this behaviour is -H: without it the unmodified files are not copied. Seemingly this situation is described in the rsync manual: "If incremental recursion is active (see --recursive...
2019 Aug 09
0
[PATCH] Switch to utimensat for newer POSIX versions
...RY */ #else #include <sys/types.h> /* some flavors of BSD (like OS X) require this to get time_t */ -#include <utime.h> /* for utime() */ #endif #if defined __EMX__ #include <io.h> /* for setmode(), O_BINARY */ @@ -53,11 +52,17 @@ void grabbag__file_copy_metadata(const char *srcpath, const char *destpath) { struct flac_stat_s srcstat; - struct utimbuf srctime; if(0 == flac_stat(srcpath, &srcstat)) { +#if _POSIX_C_SOURCE >= 200809L + struct timespec srctime[2] = {}; + srctime[0].tv_sec = srcstat.st_atime; + srctime[1].tv_sec = srcstat.st_mtime; +#else + struct...
2008 May 23
1
[LLVMdev] DebugInfoBuilder?
...ert debugging information. /// Also defines the debug info types for the module and creates the initial anchors. void SetModule(Module * m); /// Emit a compile unit descriptor. GlobalVariable * CreateCompileUnitDescriptor( unsigned langId, const sys::Path & srcPath, const std::string & producer); /// Emit a subprogram descriptor. GlobalVariable * CreateSubProgramDescriptor( GlobalVariable * compileUnit, /// Compile unit in which it is defined GlobalVariable * context, /// Context in which it is defined...
2016 Mar 28
2
-H option causes unneccessary transfers
...formed, thousands of > > files (e.g. from /usr directory), which are not modified are > > uselessly transferrred to the backup storage every day. The rsync > > command is the following: > > > > rsync --update -DHAErlptgo --relative --atimes --delete-during > > ${SRCPATH} ${BACKUPDIR} > > > > Quick investigation shown, that these files are hard links, and the > > command option related to this behaviour is -H: without it the > > unmodified files are not copied. Seemingly this situation is > > described in the rsync manual: > >...
2006 Jan 08
3
IO Timeout Error in file less than 3 MB
...binary takes to execute..so i cant go for the latest rsync version because of the space constraint. I have mentioned the rsync commmand line options used and the error thrown by rsync below for your reference. Rsync Command: rsync -aI --stats --copy-links --temp-dir=/tmp/ --timeout=55 srcIp::srcPath/srcFile destPath/destFile Error Given: io timeout after 55 second - exiting Can any bode help me or pointer me as to how can this problem of timeout be avoided ? That would be really thankful. Thanks and Regards, Vijay Ram.C -------------- next part -------------- HTML attachment scrubbed and...
2004 Aug 10
2
out of memory in receive_file_entry rsync-2.6.2
...Anyways, i'll take the function out of my script and paste it here but it may not work right taken out of context. YMMV. <snip> function DC { # "Divide and Conquer" # evil hack to get around rsync's 3mil file limit # Accepts two arguments as the srcpath and dstpath. Will not work # if srcpath is local. srchost=`echo $1 | awk -F: '{ print $1 }'` srcdir=`echo $1 | awk -F: '{ print $2 }'` num_files=`ssh root@$srchost "find $srcdir | wc -l"` if [ $((num_files)) -gt 2000000 ] then...
2010 Nov 07
3
[LLVMdev] Next round of DWARF issues/questions
..._size 0 *** DWARF CHECK: DW_AT_decl_file: does not point to valid file info *** DW_AT_decl_file 65 DW_AT_decl_line 6 However, I've double- and triple-checked my code. The code that generates a DIFile looks like this: DASSERT(srcPath.isAbsolute()); DASSERT(dbgCompileUnit_.Verify()); file = dbgFactory_.CreateFile( srcPath.getLast(), srcPath.getDirname(), dbgCompileUnit_); And you can see in the earlier example that I'm passing the generated DIFile to CreateComplexTypeEx. -- -- Talin -------------- next part -...
2016 Mar 28
0
-H option causes unneccessary transfers
...ystem backup with rsync is performed, thousands of > files (e.g. from /usr directory), which are not modified are > uselessly transferrred to the backup storage every day. The rsync > command is the following: > > rsync --update -DHAErlptgo --relative --atimes --delete-during > ${SRCPATH} ${BACKUPDIR} > > Quick investigation shown, that these files are hard links, and the > command option related to this behaviour is -H: without it the > unmodified files are not copied. Seemingly this situation is > described in the rsync manual: > > "If incremental rec...
2008 May 21
2
[LLVMdev] DebugInfoBuilder?
Are there any utility classes, similar to IRBuilder, for creating source level debugging info? -- Talin
2008 May 21
0
[LLVMdev] DebugInfoBuilder?
I don't think so. Contribution welcome! :-) LLVM debugging support isn't anywhere near where it needs to be. Evan On May 20, 2008, at 9:53 PM, Talin wrote: > Are there any utility classes, similar to IRBuilder, for creating > source > level debugging info? > > -- Talin > > _______________________________________________ > LLVM Developers mailing list >
2016 Mar 28
0
-H option causes unneccessary transfers
...gt;>> of files (e.g. from /usr directory), which are not modified >>> are uselessly transferrred to the backup storage every day. The >>> rsync command is the following: >>> >>> rsync --update -DHAErlptgo --relative --atimes --delete-during >>> ${SRCPATH} ${BACKUPDIR} >>> >>> Quick investigation shown, that these files are hard links, and >>> the command option related to this behaviour is -H: without it >>> the unmodified files are not copied. Seemingly this situation >>> is described in the rsync manu...
2013 Jun 28
0
Wine release 1.6-rc4
...manpage. Ken Thomases (2): winemac: Dispatch key events directly to window to be sure to get key-up events. winemac: Fix ordering of windows owned by same owner when on inactive desktop space. Marcus Meissner (8): dbghelp: Free root in error case (Coverity). dbghelp: Free srcpath in stabs handling (Coverity). gdi32: Close handle in error path (Coverity). gdi32: Close handle in mfdrv (Coverity). msvf32: Fixed incorrect sizeof (Coverity). ole32: LeaveCriticalSection in one exit case (Coverity). ole32: Fixed bad sizeof()s in composite moniker (Cov...
2001 Mar 13
5
is this null block OK?
...rec_info *rec, struct presto_file_set *fset, struct dentry *src, struct dentry *tgt, struct presto_version *tgt_dir_ver, struct presto_version *new_link_ver) { int opcode = PRESTO_OP_LINK; char *buffer, *srcbuffer; char *path, *srcpath; __u32 pathlen, srcpathlen; int size; char *logrecord; char record[292]; struct dentry *root; int error; ENTRY; if ( presto_no_journal(fset) ) { EXIT; ވ logrecord = journal_log_suffix(logrecord, record,...
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...value srcdirv, value destdirv) +{ + CAMLparam3 (fsv, srcdirv, destdirv); + const char *srcdir = String_val (srcdirv); + const char *destdir = String_val (destdirv); + size_t srclen = strlen (srcdir); + ext2_filsys fs; + char *paths[2]; + FTS *fts; + FTSENT *entry; + const char *srcpath; + char *destpath; + size_t n; + int r; + + fs = Ext2fs_val (fsv); + if (fs == NULL) + ext2_handle_closed (); + + paths[0] = (char *) srcdir; + paths[1] = NULL; + fts = fts_open (paths, FTS_COMFOLLOW|FTS_PHYSICAL, NULL); + if (fts == NULL) + unix_error (errno, (char *) "fts_open...