search for: a_time

Displaying 8 results from an estimated 8 matches for "a_time".

Did you mean: ae_time
2006 Mar 29
2
distance_of_time_in_words and Time classes
There is <%= distance_of_time_in_words(Time.now, @a_time) %> before xzy.<BR /> <!-- ^ this gives 2279 days --> This does not work because when @a_time is stored, even though it is a Time field and the class is Time, it includes a date. The Date isn''t even that days date its the year 2000, hence the 2279 days ago. So how do I...
1999 Apr 08
0
Keep-timestamp-in-`get'-patch for smbclient in samba-2.0.3
...elevant service. This patch adds a NEW command `timestamp' to toggle the `timestamp' flag between `keep' and `new' (I don't know if these mnemonics are quite right in English context or not). If the flag `timestamp' is `keep' (BOOL:True), Windows file's timestamp (a_time and m_time) will be kept in corresponding UNIX file copied by `get' and `mget' command (`m*get' work like as in ncftp). # The copied a_time (access time) make sense for NT4.0 and samba-2.0.3 # server, but may be a garbage if the server is Windows98. If the flag `timestamp' is `n...
2008 Apr 28
0
(no subject)
Hi R users Here is an example of my data (only a small part) Year Season A_Time R_Time O_Time All_Time AandR_Time A_number R_number O_number AandR_number all_number 1999 Winter 9.590741 35.312963 42.759524 23.228431 18.164815 18 9 7 27 34 2000 Winter 9.899537 47.945000 59.744444 20.301333 18.170290 36 10...
2008 Apr 28
0
Two graphs on one using barchart
> Hi R users > Here is an example of my data (only a small part) > > Year Season A_Time R_Time O_Time All_Time AandR_Time > A_number R_number O_number AandR_number all_number > 1999 Winter 9.590741 35.312963 42.759524 23.228431 18.164815 > 18 9 7 27 > 34 > 2000 Winter 9.899537 47.945000 59.744444 20.301333...
2014 May 29
0
[PATCH 2/2] core/fs: Add support for Unix File system 1/2.
...ufs_inode_pvt)))) + return NULL; + + /* UFS1 doesn't support neither creation nor deletion times */ + inode->refcnt = ufs_inode->link_count; + inode->mode = IFTODT(ufs_inode->file_mode); + inode->size = ufs_inode->size; + inode->atime = ufs_inode->a_time; + inode->mtime = ufs_inode->m_time; + inode->blocks = ufs_inode->blocks_held; + inode->flags = ufs_inode->flags; + + /* + * Copy and extend blk pointers to 64 bits, so avoid + * having two structures for inode private. + */ + dest = (uint64_t *) in...
2013 Jul 12
1
[PATCH 001/001] core/fs: Add support to Unix File system 1/2.
...ufs_inode_pvt)))) + return NULL; + + /* UFS1 doesn't support neither creation nor deletion times */ + inode->refcnt = ufs_inode->link_count; + inode->mode = IFTODT(ufs_inode->file_mode); + inode->size = ufs_inode->size; + inode->atime = ufs_inode->a_time; + inode->mtime = ufs_inode->m_time; + inode->blocks = ufs_inode->blocks_held; + inode->flags = ufs_inode->flags; + + /* + * Copy and extend blk pointers to 64 bits, so avoid + * having two structures for inode private. + */ + dest = (uint64_t *) in...
2014 May 29
3
[PATCH 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com> Wrote the documentation below. I think it would be good to push the doc to the wiki as soon as the UFS support gets merged. Unix Fast File System (UFS/FFS) 1/2 on Syslinux - (usage/install) ----- There is a confusion about the name of this file system, then I decided to contact the author who replied: "The name has always been
2014 May 29
3
[PATCH v2 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com> Change since v1: * Fix bug on dentry structure (thank you specification; btw, sarcasm), and consequently a bug on ufs_readdir. * Add readlink support (applied tests for symlinks whose destionation path were stored in blk pointers and the file itself). * Several improvements. Wrote the documentation below. I think it would be good to