search for: user_on

Displaying 3 results from an estimated 3 matches for "user_on".

Did you mean: user_dn
2005 Nov 15
0
NTLM & Kerberos.
...comment = DATA repository path = /data read only = No ------------------------------------------------------------------------ I have followings permissions folders setted: /data read permissions to domain users and evryone /user read permissions to domain users /user_one owned by user_one excluded permissions by everyone /user_two owned by user_one excluded permissions by everyone /user_three owned by user_one excluded permissions by everyone Why with Parameter "hide unreadable = Yes" and I'm logged in as user_one I can't see my per...
2011 Nov 23
1
Density over time intervals
...ay I want the probability that the user is online. I have come up with some helper functions that let me find the minute of the day and the duration of the online session: data <- read.table("availability.csv", header=T, sep=",") diff_online <- function(username) { user_on <- strptime(data$online_time[which(data$username==username)], format="%Y-%m-%d %H:%M:%S"); user_off <- strptime(data$offline_time[which(data$username==username)], format="%Y-%m-%d %H:%M:%S"); difftime(user_off, user_on, units="mins"); } min.of.day <...
2016 Dec 01
3
[PATCH v2 1/2] xattrs: Skip security.evm extended attribute
...refore, we can always skip it. --- xattrs.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/xattrs.c b/xattrs.c index b105392..3b72e61 100644 --- a/xattrs.c +++ b/xattrs.c @@ -255,6 +255,9 @@ static int rsync_xal_get(const char *fname, item_list *xalp) if (user_only ? !HAS_PREFIX(name, USER_PREFIX) : HAS_PREFIX(name, SYSTEM_PREFIX)) continue; + + if (!strcmp(name, "security.evm")) + continue; #endif /* No rsync.%FOO attributes are copied w/o 2 -X options. */ @@ -358,6 +361,9 @@ int copy_xattrs(const char *source, const char *...