Displaying 20 results from an estimated 849 matches for "parkers".
Did you mean:
markers
2006 Aug 10
4
FW: HELP -- Problem with access list on samba 3.0.23b but not on 3.0.20c PDC
-----Original Message-----
From: M. D. Parker [mailto:mike.parker@ga.com]
Sent: Thursday, August 10, 2006 9:02 AM
To: 'samba@lists.samba.org'
Subject: HELP -- Problem with access list on samba 3.0.23b but not on
3.0.20c PDC
I am using samba with NO windbind and a configuration file that has worked
for years stopped working at 3.0.23b. The affect was that my [netlogon]
area was not being
2020 Mar 27
2
Passing inormation from pass to lowering
Hi Sam,
I think an intrinsic would be ideal, but I couldn't figure out how to replace calls with an arbitrary number of arguments with a call to an intrinsic. In particular, I would like to call a trampoline instead of the original function. The trampoline performs certain actions and then jumps to the original callee. Would I have to call the intrinsic with the original arguments and then
2014 Aug 31
2
[LLVMdev] understanding DAG: node creation
Hi,
Yes, that's what I would do. If you want LLVM and the register allocator to also know that the instruction explicitly defines the register, I would designate the register into it's own register class and have your instruction write to that class (and there will be only a single option for RA).
cheers,
Sam
Sam Parker
Research Student
Electronic Systems Design Group
Loughborough
2014 Sep 01
3
[LLVMdev] understanding DAG: node creation
Hi,
I'm not sure. But in your lowered DAG the chain nodes are the first
operands for you custom nodes, however for the other nodes the chain is
the last operand. I seem to remember that during targetlowering the
chain is the first operand and then it seems to switch over after
ISelDAG, this confused me and may have something to do with the issue
that you are seeing. I really don't
2020 Mar 16
2
Redundant copies
Yep, exactly that. We see quite a lot of them, most of them get cleaned up, but not always...
Cheers.
________________________________
From: Roger Ferrer Ibáñez <rofirrim at gmail.com>
Sent: 16 March 2020 08:53
To: Sjoerd Meijer <Sjoerd.Meijer at arm.com>
Cc: LLVM-Dev <llvm-dev at lists.llvm.org>; Sam Parker <Sam.Parker at arm.com>
Subject: Re: [llvm-dev] Redundant copies
2007 Apr 26
6
example sources
Hello all,
Very new to Theora so apologies if this sounds elementary ;-)
I'm trying to integrate a simple theora video player in my engine.
All I need is simple load/unload and play/stop functionality.
I'd also like to be able to stream from disk or mem.
Other than the API reference I haven't found any example code,
e.g. the sources for theora_player_example. Are these available
2006 Feb 07
3
in place edit, save on blur
I thought I''d seen some discussion on this, but can''t find it. I have
a text area that I''d like to save on blur unless the user clicks
cancel. Anyone got a nice example of this? It''s non-obvious to me
how I force the submit via javascript. Thanks,
pt.
--
Parker Thompson
http://www.parkert.com/
510.541.0125
2013 Apr 20
4
warning: dl() [function.dl]: xapian: Unable to initialize module Module compiled with module API=20050922
I installed xapian core on Centos system. On execution, I get this error message:
"warning: dl() [function.dl]: xapian: Unable to initialize module Module compiled with module API=20050922, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=0 These options need to match in /usr/share/php/xapian.php on line 22."
PHP 5.2.16 (cli) (built: Dec 17 2010
2005 Mar 16
5
Asterisk Capabilities
I am new to Asterisk and currently work mainly with Cisco Callmanager.
With Callmanager I can setup partitions and call search spaces to
determine where a given phone can and can't dial. Does Asterisk offer
this type of functionality, and if so how?
Blake Parker
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2003 Jan 16
1
RE: ext3fs still uses sequential search of file names in director ies?
Didn't hear back from anyone regarding if there is a way to determine if I
am running the ext3fs with htree. Is there a way I can do it without
checking the src code since I am running the precompired redhat kernel with
8.0? Perhaps an entry under /proc somewhere?
Pj
-----Original Message-----
From: Parker Johnson
Sent: Tuesday, January 14, 2003 3:34 PM
To: 'Andreas Dilger';
2003 Jan 16
0
RE: ext3fs still uses sequential search of file names in director
I'm NOT the authority here, but AFAIK, Htree is presently
available only as a patch for 2.4 kernels (which includes
RH8). I think that Htree was still beta code at the time
RH8 was frozen (and may still be, from RedHat's perspective).
I do not have the impression that the Htree patch has been
applied in any standard RedHat kernels or kernel updates.
I hope I am wrong, and that
2006 Jul 12
0
FW: Problem using 3.0.23 client in a domain with a Samba 3.0.20c PDC. -- REVISED I am using V3.x.x
Ah....sorry for the last note I meant 3.0.23 NOT 2.0.23
==========================================
M. D. Parker
Systems Administrator
General Atomics / Electromagnetic Systems
+1 858 455 2877
mike.parker@ga.com
-----Original Message-----
From: M. D. Parker [mailto:mike.parker@ga.com]
Sent: Tuesday, July 11, 2006 4:07 PM
To: 'samba@lists.samba.org'
Subject: Problem using 3.0.23
2006 Jul 12
3
Problem using 2.0.23 client in a domain with a Samba 2.0.20c PDC.
I have a samba PDC running 2.0.20c
I installed Samba 2.0.23 on a client joined to the domain.
With this combination, when I attempt to connect to a share on this client
from any host even the localhost results in the following:
$ smbclient //localhost/atest -U auser
Password:
Domain=[DOMAIN] OS=[Unix] Server=[Samba 3.0.23-SerNet-RedHat]
tree connect failed: NT_STATUS_ACCESS_DENIED
Windows
2018 Jun 26
2
Android NUT client?
I've been looking around but haven't been able to find even a mention of a
client on Android. Does one exist?
-Parker Reed
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/nut-upsuser/attachments/20180626/4b7c026e/attachment.html>
2014 Aug 31
2
[LLVMdev] understanding DAG: node creation
Hi Dmitri,
If you have such a simple intrinsic which operates on a single register, just lower the intrinsic to a target specific node which is only implemented by a single instruction. Like you were doing before and by using a chain operand. Hard code the instruction to use and define the global register and only pass the instruction the actual variable argument.
Hope that helps,
Sam
Sam
2018 Apr 09
3
InductiveRangeCheckElimination and BranchProbabilityInfo
Hi,
extractRangeChecksFromBranch uses BranchProbabilityInfo to decide whether its worth trying the InductiveRangeCheckElimination transformation. For the following example:
void split() {
for (int i = 0; i < 100; ++i) {
if (i < 99)
do_something()
else
do_something_else()
}
}
But the reported BPI is reported as 50/50 to whether do_something will be called, but we
2004 Aug 23
6
Asterisk Install on Kernel 2.6.x
i know asterisk itself will install on a linux kernel 2.6.x, but i've
seen places say that the zaptel drivers wont? is this still true? is
it possible to build asterisk/zaptel on a linux 2.6.x kernel?
--
Shawn Parker
Network Administrator
Cumulus Broadcasting, LLC.
Columbia-Jefferson City, Missouri
1.573.449.4141
shawn.parker@cumulus.com
2012 Aug 22
2
Fwd: Need help
Dear colleagues.
I wonder if anybody knows about a procedure in R to calculate the
Berger-Parker index and the Brillouin Diversity index.
I searched the net but did not find anything good about it.
Thanks a lot for any help
Mayo, Elvira.
[[alternative HTML version deleted]]
2006 Aug 27
1
AMD64 bug (was Re: [theora-dev] AMD64 bug (fwd))
jean-marc, speexies,
know if this bug is fixed in speex svn?
kfish.
----- Forwarded message from Tristan Wibberley <maihem@maihem.org> -----
Date: Fri, 25 Aug 2006 18:49:17 +0100
From: Tristan Wibberley <maihem@maihem.org>
To: Conrad Parker <conrad@metadecks.org>
CC: theora-dev@xiph.org
Subject: Re: [theora-dev] AMD64 bug
Conrad Parker wrote:
>applied, thanks.
>
2008 May 02
2
expand.grid using a repeated vector as a parameter
Hello.
I'm trying to do this (not necessarily 0:1) :
expand.grid ( 0:1, 0:1, 0:1, 0:1, 0:1)
etc..etc.
but I want to have control over how many 0:1 are included.
Any ideas please ?
Thankyou.
Simon Parker
Imperial College
---------------------------------
A Smarter Email.
[[alternative HTML version deleted]]