Displaying 20 results from an estimated 600 matches similar to: "Permissions in printer share"
2009 Aug 21
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Chris Lattner schrieb:
> On Aug 21, 2009, at 3:04 AM, Marc Brünink wrote:
>>> This isn't really possible. The issue is that MemDep doesn't just
>>> "analyze your function". It is designed to be as lazy as possible,
>>> which means that it only does analysis when a query is performed. This
>>> means that if you have
2009 Aug 21
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Chris Lattner schrieb:
>
> On Aug 20, 2009, at 11:44 AM, Marc Brünink wrote:
>
>> Hi,
>>
>> I do have a FunctionPass that does change the code. This FunctionPass
>> requires another FunctionPass which performs all the necessary analyses.
>> This AnalysisPass again requires MemoryDependenceAnalysis.
>>
>> The problem is, that I would like
2009 Aug 21
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Fri, Aug 21, 2009 at 10:48 AM, Marc Brünink<marc at bruenink.de> wrote:
>>> actually my problem is easier. So I still have hope that it is possible:
>>>
>>> MemDep->Pass1->Pass2
>>>
>>> Pass1 uses MemDep. Pass2 only uses Pass1. Eventually, Pass2 changes the
>>> code. Unfortunately, non-local dependencies of MemDep might point to
2009 Aug 21
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Aug 21, 2009, at 3:04 AM, Marc Brünink wrote:
>> This isn't really possible. The issue is that MemDep doesn't just
>> "analyze your function". It is designed to be as lazy as possible,
>> which means that it only does analysis when a query is performed.
>> This
>> means that if you have MemDep->Pass1->Pass2 and Pass2 uses MemDep
2011 May 18
0
[LLVMdev] 2.9 pass manager asserts "Unable to handle Pass that requires lower level Analysis pass"
Hi,
I am trying to write an LLVM project, using LLVM 2.9. My passes are defined
as follows, where the Pass2 requires Pass1.
namespace llvm {
class BaseClass : public ModulePass {
// Name for printing
const char* printname;
protected:
BaseClass(char id, const char* name)
: ModulePass(id),printname(name){
}
};
class Pass1 : public BaseClass {
public:
static char ID;
Pass1() :
2009 Aug 20
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Aug 20, 2009, at 11:44 AM, Marc Brünink wrote:
> Hi,
>
> I do have a FunctionPass that does change the code. This FunctionPass
> requires another FunctionPass which performs all the necessary
> analyses.
> This AnalysisPass again requires MemoryDependenceAnalysis.
>
> The problem is, that I would like MemoryDependenceAnalysis to run on
> the
> unaltered
2009 Aug 20
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Hi,
I do have a FunctionPass that does change the code. This FunctionPass
requires another FunctionPass which performs all the necessary analyses.
This AnalysisPass again requires MemoryDependenceAnalysis.
The problem is, that I would like MemoryDependenceAnalysis to run on the
unaltered module. I do not want to have dependencies to changed code.
What is the cleanest way to do this?
Sounds
2024 Oct 07
1
rpcclient setdriver fails with WERR_ACCESS_DENIED
Dear Samba-experts,
I'm trying to setup automatic printer download with our
samba 4.19.4 fileserver which is a domain member of
our samba 4.18.2 AD.
printer drivers have been installed on the fileserver:
root at serv00:# rpcclient -Uprtadmin%pass1 SERV00 -c enumdrivers
[Windows x64]
Printer Driver Info 1:
Driver Name: [Kyocera TASKalfa 5052ci NAEV]
CUPS-printers have been installed
2007 Dec 17
3
[LLVMdev] Bug 1868: Specifying Pass Orderings
Dear Devang Patel,
In response to your comment on bug 1868, how do I get BottomPass to
requires Pass2 before Pass1? Is it by reversing the order of the calls
to AU.addRequired()?
-- John T.
--
John T. Criswell
jcriswel at bigw.org
"It's today!" said Piglet. "My favorite day," said Pooh.
2012 Jun 26
0
[LLVMdev] Does anaysis group only contain passes?
On 6/25/12 8:55 PM, Thomson wrote:
> Thanks, John.
>
> This sounds reasonable that the analysis group just provides an
> interface to its implementors (pass). Then I have another question, is
> it allowed to specify multiple pass in the same analysis group in the
> command line for opt?
Yes, you can do that. Using multiple analysis passes that belong to the
same group may
2010 Jul 06
0
[LLVMdev] runtime assert failure when trying to obtain analysis pass info within a transformation pass
I am having problems passing analysis results to transformation
passes, so I reduced my testcase into the following bare bone:
Pass1: simple FunctionPass, counting functions
Pass2: transformation pass, for now, just trying to obtain a reference
of Pass1 using AU.getAnalysis<Pass1>() inside its runOnFunction().
When I run it, I get the following runtime error:
opt -load
2012 Jun 26
2
[LLVMdev] Does anaysis group only contain passes?
Thanks, John.
This sounds reasonable that the analysis group just provides an interface
to its implementors (pass). Then I have another question, is it allowed to
specify multiple pass in the same analysis group in the command line for
opt? If yes, which pass will be used for the call of
getAnaysis<AnalysisGroup>()?
-Thomson
On Mon, Jun 25, 2012 at 10:34 PM, John Criswell <criswell at
2007 Dec 17
1
[LLVMdev] Bug 1868: Specifying Pass Orderings
Devang Patel wrote:
>
> On Dec 17, 2007, at 2:01 PM, John Criswell wrote:
>
>> Devang Patel wrote:
>>>
>>> On Dec 17, 2007, at 1:47 PM, John Criswell wrote:
>>>
>>>> Dear Devang Patel,
>>>>
>>>> In response to your comment on bug 1868, how do I get BottomPass to
>>>> requires Pass2 before Pass1? Is it by
2024 Oct 08
1
rpcclient setdriver fails with WERR_ACCESS_DENIED
On Mon, 7 Oct 2024 22:46:36 +0200
Peter Koch via samba <samba at lists.samba.org> wrote:
> Dear Samba-experts,
>
> I'm trying to setup automatic printer download with our
> samba 4.19.4 fileserver which is a domain member of
> our samba 4.18.2 AD.
>
> printer drivers have been installed on the fileserver:
>
> root at serv00:# rpcclient -Uprtadmin%pass1
2010 Oct 17
2
Error with Connecting Two Asterisk BOX with IAX
Hello,
I'm trying to conect two 1.6.2.13 Asterisk server with IAX.
This is my configuration:
Asterisk A:
iax.conf
register => coiax:pass1 at 69.164.207.166
[smiax]
type=friend
host=dynamic
trunk=yes
secret=pass2
context=phones
deny=0.0.0.0/0.0.0.0
permit=69.164.207.166/255.255.255.255
qualify=yes
Console:
iax2 registry
69.164.207.166:4569 N coiax 69.164.197.105:4569
2003 Jun 26
2
Is there something sppecial about pass4 ?
Machine is 4.8-STABLE
smaug# camcontrol devlist
<COMPAQ BD009122BA 3B07> at scbus0 target 0 lun 0 (pass0,da0)
<COMPAQ BD009122C6 B016> at scbus0 target 1 lun 0 (pass1,da1)
<COMPAQ BD009122BA 3B07> at scbus0 target 2 lun 0 (pass2,da2)
<COMPAQ BD00962373 BCJE> at scbus0 target 3 lun 0 (pass3,da3)
<IBM IC35L018UCPR15-0 S70H>
2010 Sep 21
1
Need Help
Dear Sir,
I have been struggling to get bold letters in informix for CentoS 4.8 and I came
across your article on PCL Command Sequences and I felt you could help.
I have the following declarations and print command in my informix-4gl but
things don't seem to get right.
BoldOn CHAR(6),
BoldOff CHAR(6)
----LET BoldOn = ASCII 27, ASCII
2009 Aug 26
1
2 Asterisk boxes : 1 can see the other, not vica versa
Asterisk-server 1 :
register => hostedasterisk:pass1 at domain2.biz
[BOX-YOCAN]
type=user ; incoming from YOCAN...
auth=rsa
inkeys=Key ; pub key of user
secret=XXX ; pass2 of YOCAN
context=from-BOX-YOCAN ; incoming from YOCAN
trunk=yes
transfer=no
qualify=yes
[BOX-YOCAN]
type=peer ; outgoing to YOCAN...
host=dynamic ; registers
auth=rsa
outkey=kEy ; private secret key
2015 Feb 24
2
[LLVMdev] Accessing a custom defined llvm pass
Hello all,
I have written one pass to collect information about specific calls in an
llvm IR file and am not trying to reference the results from the first pass
in a second pass.
What is the correct way to reference an additional custom pass in LLVM? At
the moment the project is set up under the lib/Transforms directory in
source and has the current layout:
Thresholds/
include/
2010 Feb 21
1
[LLVMdev] patch: purdy colours for makefiles
Here is a patch to add colour to build output (make) for LLVM sources.
Feedback and ideas welcome.
The patch replaces $(Echo) usage in some key rules in Makefile.rules
with $(Banner) which invokes a new script utils/make-banner.sh which
is capable of adding appropriate ANSI escape sequences.
step1: apply patch
step2: chmod 755 utils/make-banner.sh
step3: export MAKE_BANNER_ANSI=1
Next, you must