search for: 28d

Displaying 8 results from an estimated 8 matches for "28d".

Did you mean: 28
2016 Jun 28
2
[Samba as AD] ACLs on LDAP attributes?
Hi all, We are thinking to hide some attribute contents to almost everyone but those we decide they can read it. It is possible with real LDAP servers as OpenLDAP but is it with LDAP server shipped with Samba 4 working as AD? About accessing the whole tree I believe that Samba as AD refuses any unauthenticated query. Is that true? I did tested that but my search could be wrong or perhaps the
2015 Nov 21
2
Recent -Os code size regressions
...a concise before and after case. Before ​: As a reference point, I found OR $0x408 and OR​ $0x810 in close proximity. 278: 81 ca 10 08 00 00 or $0x810,%edx 27e: 89 10 mov %edx,(%eax) 280: f6 c1 40 ​ ​ test $0x40,%cl 283: 74 08 je 28d <t_run_test+0x28d> 285: 81 ca 08 04 00 00 or $0x408,%edx 28b: 89 10 mov %edx,(%eax) 28d: 84 c9 test %cl,%cl 28f: 0f 89 34 01 00 00 jns 3c9 <t_run_test+0x3c9> After ​ r252152:​ Note that the OR $0x408 and OR $0x810 come ​now ​ in...
2016 Jun 28
0
[Samba as AD] ACLs on LDAP attributes?
...; > Best regards, > > mathias Try investigating the 'nTSecurityDescriptor' attribute, which funnily enough is an hidden attribute, this contains the ownership and permissions of an AD object. You will probably need to read this as well: https://msdn.microsoft.com/en-us/library%28d=robot%29/aa379570%28d=robot,l=en-us,v=vs.85%29.aspx Rowland
2012 Aug 31
1
dovecotadm error
When I use the following command: doveadm expunge -A mailbox Junk savedbefore 28d I get: doveadm(root): Error: User listing returned failure In the mail log file it says: dovecot: auth-worker(18549): Error: sql: Iterate query failed: Table 'system.users' doesn't exist (using built-in default iterate_query: SELECT username, domain FROM users) However this is setu...
2015 Nov 21
3
Recent -Os code size regressions
Maybe adjust this to be different for –Os, -Oz than for –O2? Kevin Smith From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of James Molloy via llvm-dev Sent: Friday, November 20, 2015 4:05 PM To: Steve King <steve at metrokings.com>; Renato Golin <renato.golin at linaro.org> Cc: llvm-dev <llvm-dev at lists.llvm.org> Subject: Re: [llvm-dev] Recent -Os code
2010 Sep 28
2
ethtool
We've just moved one a new server from our sever room, where I built it, to the datacenter. We want to force autoneg off, and tell it gigabit and full duplex. Using ethtool, I get no errors setting the speed or duplex. HOWEVER, autoneg on works... and autoneg off utterly refuses to work, and gives: ethtool -s eth0 autoneg off Cannot set new settings: Invalid argument not setting autoneg
2009 May 21
1
Changelog for the survival package
> Several changes in print.survfit, plot.survfit and seemingly in the structure > of ratetabels effect some of my syntax files. > Is there somewhere a documentation of these changes, besides the code itself? I agree, the Changelog.09 file is not as comprehensive as one would like. Specific comments: 1. The ratetables were recently changed to accomodate a new option. I thought
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.