search for: md5b

Displaying 2 results from an estimated 2 matches for "md5b".

Did you mean: md5
2013 Apr 04
2
R 3.0.0: wrong MD5 checksums for Windows?
Hello dear R-devel, When installing R 3.0.0 on Windows 7, and then running: require(tools) checkMD5sums(dir=R.home()) I get the following massage: files ‘etc/Rconsole’, ‘etc/Rprofile.site’ have the wrong MD5 checksums [1] FALSE This happens when using the 32 and the 64 bit version of R. And was also reported by 2 other users on other machines, as can be seen in the comments to this post:
2008 Feb 27
2
Unix-like touch to update modification timestamp of file?
...stamp print(file.info(pathname)$mtime) ## [1] "2008-02-26 21:41:23 Pacific Standard Time" # 3. Update time stamp Sys.sleep(1.2); touchFile(pathname) print(file.info(pathname)$mtime) ## [1] "2008-02-26 21:41:24 Pacific Standard Time" # 4. Verify that the contents did not change md5b <- digest::digest(pathname, file=TRUE); stopifnot(identical(md5a, md5b)) /Henrik