Displaying 20 results from an estimated 2000 matches similar to: "Win and linux shared filesystem with chmod support for linux side?"
2007 May 23
1
Feature request...
This is going to sound kind of oddball but would it be possible to have
options for disabling SSL? :-)
At some point I''m going to want to move my production puppetmaster to a
newer host and the IP and hostname for the puppetmaster will change. I
have tools to go out and force every client to re-register itself with a
newer puppetmaster but I''d like the ablity to, on the fly,
2004 Aug 04
1
Barge in on to agents conversation
Hi,
1. When an agent is active on a call, i need the ablity for a third person
to join the conversation. Basically barge in by a supervisor, participate in
the conversation and then leave.
2. As an extension to the above, while on call, can the agent request a
conference from another agent and later hang him up.
3. Is there any way for a call to be put in the queue destined for a
specific agent
2005 Jul 28
0
IP Phone Advice ??
I'm looking for suggestions for a good IP phone to use with Asterisk which
can display CallerID information on the phone's LCD panel.
I am currently using a Sipura 2000 for all my analog phones and I have
purchased 1 bugdgetone 100 IP phone.
I find the voice quality of the Sipura 2000 to be better than that of the
budgetone. I find myself wanting to use the analog phones instead of the
2017 Aug 02
2
[InstCombine] Simplification sometimes only transforms but doesn't simplify instruction, causing side effect in other pass
On Wed, Aug 2, 2017 at 4:07 PM Matthias Braun via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> On Aug 2, 2017, at 4:00 PM, Wei Mi <wmi at google.com> wrote:
>
> On Wed, Aug 2, 2017 at 3:36 PM, Matthias Braun <mbraun at apple.com> wrote:
>
> So to write this in a more condensed form, you have:
>
> %v0 = ...
> %v1 = and %v0, 255
> %v2 = and %v1, 31
2004 Dec 29
0
Client-side filesystem tree corruption on WinXP
The first symptom of this problem was that when saving a Word document to
a samba share, the document simply disappeared.
After some debugging, I discovered that there was a peculiarity in
navigating to the share point in WinXP. Navigating to the share point
using the file manager, to
C:\Documents and Settings\User Name\Desktop\MyShare
gets me to the remote files, as it should. But if I try to
2011 Jun 15
0
[LLVMdev] Custom allocation orders
The target description .td files are allowed to change the default allocation order on a register class by overriding the allocation_order_begin() and allocation_order_end() methods on TargetRegisterClass.
Previously, this was used all the time to filter out stack and frame pointers and other reserved registers. I was able to remove most of these custom allocation orders in the tree because the
2009 Jul 02
1
[LLVMdev] [Help Needed] tblgen code get a compile error
I am working the AVR backend. It is still in the early stage. I got the
following error:[ 86%] Building CXX object
lib/Target/AVR/CMakeFiles/LLVMAVRCodeGen.dir/AVRISelDAGToDAG.cpp.obj
AVRISelDAGToDAG.cpp
C:\llvm-build\lib\Target\AVR\AVRGenDAGISel.inc(596) : error C2664:
'llvm::SDNode *llvm::SelectionDAG::SelectNodeTo(llvm::SDNode *,unsigned
int,llvm::MVT,llvm::MVT,llvm::MVT,const llvm::SDValue
2014 Jun 11
2
[LLVMdev] Help regarding ad new functionality in Backend
Dear,
I am looking at the Instructions defined in the XXXXInstrInfo.td where I
can see a def record defined like below
def ADD8rr : I8rr<0x0,
(outs GR8:$dst), (ins GR8:$src, GR8:$src2),
"add.b\t{$src2, $dst}",
[(set GR8:$dst, (*add *GR8:$src, GR8:$src2)),
(implicit SRW)]>;
Now here I would like the to
2009 Jun 16
3
[LLVMdev] x86 Intel Syntax and MASM 9.x
I would like to use the LLVM x86 code generator to emit Intel syntax
that is compatible with Microsoft's MASM 9.x. Taking the TOT LLVM, from
last week, I have found a number of changes that are required to make
this work, most of which are straight forward but a couple I wanted to
check with the group to see what people thought was the best thing to
do. In particular, I have made all necessary
2017 Aug 02
3
[InstCombine] Simplification sometimes only transforms but doesn't simplify instruction, causing side effect in other pass
Hi,
We recently found a testcase showing that simplifications in
instcombine sometimes change the instruction without reducing the
instruction cost, but causing problems in TwoAddressInstruction pass.
And it looks like the problem is generic and other simplification may
have the same issue. I want to get some ideas about what is the best
way to fix such kind of problem.
The testcase:
2007 Mar 01
0
[LLVMdev] ISel using an operand as both source and destination
I see in the x86 InstInfo.td the following for the INC instructions:
def INC8r : I<0xFE, MRM0r, (ops GR8 :$dst, GR8 :$src), "inc{b} $dst",
[(set GR8:$dst, (add GR8:$src, 1))]>;
Which seem to have the same restriction that I'm trying to implement,
but I don't understand how this ensures that $src and $dst are the
same register.
--
Christopher Lamb
2007 Mar 01
1
[LLVMdev] ISel using an operand as both source and destination
On Thu, 1 Mar 2007, Christopher Lamb wrote:
> I see in the x86 InstInfo.td the following for the INC instructions:
>
> def INC8r : I<0xFE, MRM0r, (ops GR8 :$dst, GR8 :$src), "inc{b} $dst",
> [(set GR8:$dst, (add GR8:$src, 1))]>;
>
> Which seem to have the same restriction that I'm trying to implement,
> but I don't understand how this
2008 Sep 23
3
[LLVMdev] A question about instruction operands.
I have a question:
In the pattern below from X86
def INC8r : I<0xFE, MRM0r, (outs GR8 :$dst), (ins GR8 :$src),
"inc{b}\tdst",
[(set GR8:$dst, (add GR8:$src, 1))]>;
Since we are emitting only "inc $dst",
What makes sure that the $src and $dst are same register?
- Sanjiv
2008 Sep 23
0
[LLVMdev] A question about instruction operands.
sanjiv gupta wrote:
> I have a question:
> In the pattern below from X86
>
> def INC8r : I<0xFE, MRM0r, (outs GR8 :$dst), (ins GR8 :$src),
> "inc{b}\tdst",
> [(set GR8:$dst, (add GR8:$src, 1))]>;
>
> Since we are emitting only "inc $dst",
> What makes sure that the $src and $dst are same register?
>
> - Sanjiv
It's enclosed
2008 Sep 23
2
[LLVMdev] A question about instruction operands.
On Tue, 2008-09-23 at 13:33 +0100, Richard Osborne wrote:
> sanjiv gupta wrote:
> > I have a question:
> > In the pattern below from X86
> >
> > def INC8r : I<0xFE, MRM0r, (outs GR8 :$dst), (ins GR8 :$src),
> > "inc{b}\tdst",
> > [(set GR8:$dst, (add GR8:$src, 1))]>;
> >
> > Since we are emitting only "inc $dst",
2008 Sep 23
0
[LLVMdev] A question about instruction operands.
sanjiv gupta wrote:
> On Tue, 2008-09-23 at 13:33 +0100, Richard Osborne wrote:
>
>> sanjiv gupta wrote:
>>
>>> I have a question:
>>> In the pattern below from X86
>>>
>>> def INC8r : I<0xFE, MRM0r, (outs GR8 :$dst), (ins GR8 :$src),
>>> "inc{b}\tdst",
>>> [(set GR8:$dst, (add GR8:$src, 1))]>;
2007 Sep 23
1
chmod / chown settings on /var/www/html
I'm setting up a new CentOS 4.4 server to work with Fruity (a frontend
program that operates Nagios). For security purposes, what chmod and chown
settings do you put on the /var/www/html folders?
Also, can anyone recommend any good LAMP hardening guides? While I'm not
planning on putting this into production, I'd like to cover all my bases
before that's an issue.
--------------
2007 Aug 02
1
Chmod Explaination
Howdy list,
I can't seem to find any doc's explaining what's really going on behind
this scenario:
A user home directory had been reset to :
d--- --- --- user group user_dir
As root i tried to :
chmod -R 750 user_dir
got permission denied, my friend tried with as user that owns the directory
to:
chmod -R 750 user_dir and voila it works.
My question is how come did it work,
2006 Jun 11
2
chmod
hi everybody, after some time dealing with file upload finally i have my
scvript working, the problem its that seems that the files are uploaded
with 600 permissions and i need to be 644 to be accesible to everyone.
So i tried to change the permisions of the files inside the folder where
are saved the uploaded files, i have this on the index action of my
controller so at fisrt time change the
2007 Jan 25
1
Link to possible code for symbolic chmod
I''m not sure if this is perfect, but it seems to work well for me so far.
I haven''t tried to integrate it into Puppet because I''m still a bit new to
Ruby.
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/96956
Trevor
_______________________________________________
Puppet-users mailing list
Puppet-users@madstop.com