similar to: Audit CRUD from objects in Active Directory

Displaying 20 results from an estimated 30000 matches similar to: "Audit CRUD from objects in Active Directory"

2019 Jun 17
3
RPC Server Unavailable - Error
Hi, We were running Samba-AD - Version 4.7.6 for over 2 years without any errors. We have 4 Domain Controllers in our setup and DNS is BIND_DLZ (BIND 9.9.4). Off late (since 8th June 2019) we upgraded the Samba-AD version to 4.10.4 and all of sudden we started receiving the error "RPC Server not available" when we are trying to join the new PCs to domain. After multiple attempts
2005 May 25
2
Career Opportunity
I saw your information on the internet and I have multiple opportunities available for QA Analysts. The opportunities are available in the Chicago area. A description of the opportunities can be viewed at www.parallelpartners.com. If you or someone you know is interested, please email me a copy of your resume. Thank you Raul Garcia Administrative Manager Parallel Partners 20 N. Wacker
2014 Jan 27
2
[LLVMdev] Removing ReadOnly from math intrinsics
I would be perfectly fine with Raul & Chandler's proposal, provide that clear documentation is added. The strong distinction between standard library calls and intrinsics is an important point for front end authors. The deliberate ignorance of floating point environment flags is entirely defensible, but needs to be documented clearly. We should also document which rounding mode
2014 Dec 15
3
Making iconv portable?
Hello, All: What would it take to make ?iconv? portable? I ask, because I want to convert accented characters to vanilla ASCII, thereby converting, e.g., ?Ra?l? to ?Raul?, and Milan Bouchet-Valet suggested on R-help that I use 'iconv(x, ?", "ASCII//TRANSLIT?)?. This worked under Windows but failed on Linux and Mac. It?s part of the ?subNonStandardCharacters? function
2014 Dec 15
2
Making iconv portable?
> On Dec 15, 2014, at 12:21 PM, Kurt Hornik <Kurt.Hornik at wu.ac.at> wrote: > >>>>>> Spencer Graves writes: > >> Hello, All: >> What would it take to make ?iconv? portable? > > >> I ask, because I want to convert accented characters to >> vanilla ASCII, thereby converting, e.g., ?Ra?l? to ?Raul?, and >> Milan
2008 Feb 05
2
[LLVMdev] Counting instructions
Hi, I need to instrument the code in order to generate an event (call a certain function) whenever X instructions have been executed. I'm using MachineFunctionPass to get machine-dependent representation of each LLVM function in the program. However, such pass doesn't allow to modify such functions. Is there any other class so I can modify MachineFunctions? Thanks in advance, Raul. --
2017 Nov 17
1
High CPU While Loading RSAT Active Directory Users and Computers
Hello, I'm trying to figure out a problem with our AD DC with the FSMO roles, name DC1. When starting the Windows RSAT Active Directory Users and Computers program against DC1 it takes about 90 seconds to load. A samba process on the server is at 100% CPU while waiting for it to load. Once loaded the CPU goes back to normal. When connecting the Active Directory Users and Computers program
2013 Sep 03
0
[LLVMdev] AttributeSet from Modules
On Sep 3, 2013, at 9:04 AM, Raul Fernandes Herbster <raulherbster at gmail.com> wrote: > Hello! > > clang defines some AttributeSet, for example: > > attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf"="true"
2017 Jun 02
5
Cannot change passwords on Active Directory Samba from clients
Hi list, We are working on getting Samba version 4.5.8-debian (on Stretch) with Active Directory running, and we are running into a major road block. Clients (Windows 7 Pro, Windows 10 Pro and Educational) cannot change their passwords on their own. We can force the user to reset the password for their next login (works), or reset the password with ADUC RSAT as the Domain Admin. If the user tries
2016 Jun 27
0
How to traverse llvm DAG for analysis
Dear Raul, Instruction selection and instruction scheduling is, to the best of my knowledge, done at the MachineInstr (MI) IR level. The documentation you've read is on the target independent LLVM IR. You will probably need to read the documentation on LLVM's code generator. The documents on Writing an LLVM Backend, the LLVM Target Independent Code Generator, and Machine IR Format
2014 Jan 25
2
[LLVMdev] Removing ReadOnly from math intrinsics
On Fri, Jan 24, 2014 at 4:17 PM, Philip Reames <listmail at philipreames.com>wrote: > On 1/24/14 3:52 PM, Raul Silvera wrote: > > In include/llvm/IR/Intrinsics.td there is code to mark sqrt and several > other math intrinsics as "ReadOnly", even though they do not read memory. > > According to the comments this was done as an attempt to model changes > to
2013 Sep 03
2
[LLVMdev] AttributeSet from Modules
Hello! clang defines some AttributeSet, for example: attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false"
2014 Dec 15
1
Making iconv portable?
On Dec 15, 2014, at 1:37 PM, Spencer Graves <spencer.graves at prodsyse.com> wrote: > > >> On Dec 15, 2014, at 10:13 AM, Simon Urbanek <simon.urbanek at r-project.org> wrote: >> >>> >>> On Dec 15, 2014, at 12:21 PM, Kurt Hornik <Kurt.Hornik at wu.ac.at> wrote: >>> >>>>>>>> Spencer Graves writes:
2008 Feb 05
0
[LLVMdev] Counting instructions
On Tue, 5 Feb 2008, Raul Fernandes Herbster wrote: > I need to instrument the code in order to generate an event (call a certain > function) whenever X instructions have been executed. I'm using > MachineFunctionPass to get machine-dependent representation of each LLVM > function in the program. However, such pass doesn't allow to modify such > functions. Is there any other
2001 Oct 01
2
winehq's wine vs Corel wine
Some times I read people claimming that some applications run well (or installs well) with Corel's wine but not with winehq's wine. As Corel is dead for almost a year (IIRC), is there something in Corel's wine that it is not on the official wine? If it is, what is it? why isn't it in winehq's wine? license? design? Or the people who make this kind of claim are (no
2006 Feb 21
4
[Prototype] implementation of bind()?
http://dev.rubyonrails.org/browser/spinoffs/prototype/src/base.js contains this definition: Function.prototype.bind = function() { var __method = this, args = $A(arguments), object = args.shift(); return function() { return __method.apply(object, args.concat($A(arguments))); } } In other words, if a bound function is given the arguments (This,A,B,C) the underlying
2016 Oct 28
2
Basic block execution over time
Hello All, How can I keep track of the different basic blocks of a program executed over time? Or in other words, how can I annotate the block name (block_a) and the time/cycle at which that blocs (block_a) was executed, and do this for all the blocks on a reasonable simple program? Regards, Raul. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2016 Jun 27
2
How to traverse llvm DAG for analysis
Hello All, I would like your help to learn how to traverse an LLVM DAG and perform some analysis. I know that llc can be used to view a DAG, but I would like to manipulate them. In particular I'm interested in the instruction selection and the scheduling DAGs. I have read the documentation about writing an analysis pass and I know how to traverse a basic block on a LLVM IR assembly file, but
2018 Sep 12
2
Cannot set Windows ACL security permissions Ubuntu 18.04 LXD privileged container
I'm tying to set up a member server for serving files following the instructions at: https://wiki.samba.org/index.php/Setting_up_a_Share_Using_Windows_ACLs. Since I'm not an expert with log files or debugging, I need help troubleshooting the following: When I get to the part where I connect to the member server from the Windows Computer Management tool, I get a long message starting with
2012 Nov 15
4
[LLVMdev] Unit tests - ARM
Hello, is there any option to run LLVM unit tests on ARM from your desktop? I mean, the code is properly cross-compiled on your desktop and you want to run the unit tests automatically on an ARM board. Chrood might work, but I am looking for some option like <runremote.sh --host XXX --user ....>. I have seen something related to it in projects/test-suite/Makefile.programs (REMOTE_HOST,