Displaying 20 results from an estimated 3000 matches similar to: "Ldap and secondary PosixGroups"
2004 May 14
2
how add objects to an svm graphic
Dear all,
I'm not able to solve easily the following simple problem.
I really hope someone can give me some hints.
I trained an svm (e1071). Now I'd like to show the results graphically.
I used plot.svm and I'd like to add some other objects to the plot:
points, (coloured) ellipses to indicate some intersting regions, curves,
and so on...
I tried to pass these as additional
2013 Apr 13
4
Problems attaching Windows server as secondary DC.
I have my Samba4 up and running. I was able to get a Windows 2012 server
to join the samba4 domain.
However, I have not been able to get the Windows server to promote itself
to a secondary DC.
I would appreciate any suggestions on debugging this issue.
One the Server 2012 machine, in the "prerequisites check", I see the
following message:
"Verification or prerequisites for
2005 Feb 18
9
Using time series and lm
Hello,
I apologize for this question that may has been asked a lot of times
but I could not go through it.
I create a multivariate time series containing NA values.
I want to compute a linear regression and obtain a time serie for both
residuals and fitted values. I have tried the trick ts.intersect,
without success.
Could you help me out of this?
####
Example:
y<-ts(1:10+rnorm(10))
2013 Jan 13
3
[LLVMdev] Using C++'11 language features in LLVM itself
On Sun, Jan 13, 2013 at 2:10 PM, Matthieu Monrocq
<matthieu.monrocq at gmail.com> wrote:
> gcc 4.5, MSVC 10, clang 3.1
> - decltype v1.0 [1] + late specified return type
> - lambda v1.0 [2]
> - local types as template arguments
> - r-value 2.0 [3]
> - static_assert
> - built-in type traits
This isn't very encouraging. Anecdotally from what I've seen in LLD
2003 Jan 16
1
Second Post: Unable to add user with Samba 2.2.7 - LDAP - PDC
Hello,
I did not have any response of my first mail. Perhaps I did not be enough
clear:
Since I have installed the latest version of samba (2.2.7), I can't see
user of my domain with the Win2K User management console. I have try to
change several attribute in my user ( in particular acctFlags ) but I cannot
manage with making my system works.
Do you have any idea ?
Thanks in advance
2012 Oct 04
3
Name Resolve Order : parameter of smb.conf with testparm
I am writing this letter and I hope that I'll have answers about the
generation of smb.conf by the way of smb.conf.master with testparm command.
Like is described on page 5 of Samba3-HOWTO.pdf.
The situation is:
- The manual of smb.conf says that the default value of the parameter ?name
resolve order? is ?lmhosts host wins bcast?, but when I type the command
like:
# testparm -s
2013 Jul 04
1
Hardware design of an Opus IP
Hi everybody,
I was wondering if there would be interest in having a hardware IP
implementing Opus (hardware as in VHDL/Verilog description)? Does that
make sense?
Several companies that seem to have an interest in Opus (such as Skype,
Mozilla, Broadcom, Orange, Huawei) could thus have a dedicated,
efficient, low-power solution for phones and tablets.
As LTE is being deployed en masse, it
2010 Jan 09
21
[Bug 25966] New: nv25 : rxvt scrolling is very slow
http://bugs.freedesktop.org/show_bug.cgi?id=25966
Summary: nv25 : rxvt scrolling is very slow
Product: xorg
Version: 7.5
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
2013 Jul 01
6
attribute blocks for definition lists
Hello,
As I am using markdown to write documentation, I am often tempted to make
links to terms in definition lists.
Since this is not possible for now (at least in php markdown extra), I was
wondering if this could be a common addition in major implementation
supporting definition lists.
the syntax would be
term {#id}
: definition
This syntax tries to follows current convention and
2012 Aug 25
3
Sysvol Replication in Samba4
Hi,
We installed a samba4 AD controller using Gpo for a small group of users
(5 users), everything is OK.
(Samba4 beta 7 on Ubuntu 12.04)
We installed another Samba4 AD controller as a BDC of the first one with
the command "samba-tool domain join" with succes.
After checking this new installation, we saw that the sysvol share was
not replicated from the PDC and all the Policies are
2011 Aug 23
3
[LLVMdev] git Status
greened at obbligato.org (David A. Greene) writes:
> Actually git pull can sometimes get you into trouble. Probably git
> fetch / git rebase is the better combination for LLVM.
I don't get it.
Doesn't "git pull --rebase" do exactly a fetch followed by a rebase?
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
2012 May 14
2
[LLVMdev] [cfe-dev] [SafeCode] Unable to build the LLVM from trunk
On Mon, May 14, 2012 at 4:39 PM, John Criswell <criswell at illinois.edu>wrote:
> On 5/14/12 4:32 AM, Umesh Kalappa wrote:
>
> Hi All ,
>
> Was trying to build the LLVM src from
> http://llvm.org/svn/llvm-project/llvm/branches/release_30 ,But unable to
> build the same and clang poped up with below error .
>
>
> First, it sounds like you're building LLVM
2013 Oct 11
4
[LLVMdev] Converting a i32 pointer to a vector of i32 ( C array to LLVM vector)
Hi,
I'm creating a small function in LLVM which gets as a parameter an i32*
(this function is called from C code) .
However I know that this pointer is actually a C array of size 10 ( int[10]
).
How can I tell LLVM to consider this i32* as an <10 x i32> (and thus get
the performance improvements thanks to SIMD ..etc..) ?
Thanks,
Matthieu
-------------- next part --------------
An
2013 Nov 05
3
[LLVMdev] LLVM IR vectorized with opt but not through the API
Hi,
I have a simple LLVM code which loop over an array and do a simple
calculation, the bytecode is here : https://gist.github.com/maattd/7322927
This code is correctly vectorized with LLVM opt 3.3, however I can't get it
to vectorize with call through the API.
Is there a way to debug the LLVM vectorizer pass with the API ?
Is there a way to just apply the exact same optimization passes as
2018 Jul 21
2
Registering passes on a module
Hi all,
I'm trying to build passes with the PassBuilder to optimize the result of
MCJIT (I assume, this is a requirement for performance).
So I do this:
llvm::PassBuilder passBuilder;
llvm::ModulePassManager modulePassManager =
passBuilder.buildPerModuleDefaultPipeline(llvm::PassBuilder::OptimizationLevel::O3);
llvm::ModuleAnalysisManager moduleAnalysisManager;
2011 Apr 13
3
R plots pdf() does not allow spotcolors?
Hi
We are about to publish a book, which contains figures made with R
plots. An important detail that we did not take into account is that the
book will not be printed in 4 colors (cmyk mode), but only 2 (black
+"spotcolor"). The spotcolor we use is part of the big Pantone family.
The problem is that both pdf() and postscript() offer either rgb or
cmyk, but no spotcolors such as
2020 Oct 03
6
UpdateHostkeys now enabled by default
Hi,
I just fixed a couple of corner-cases relating to UpdateHostkeys in git
HEAD and have enabled the option by default. IMO this protocol extension
is important because it allows ssh clients to automatically migrate to
the best available signature algorithms available on the server and
supports our goal of deprecating RSA/SHA1 in the future.
We would really appreciate your feedback on this
2020 Oct 04
3
UpdateHostkeys now enabled by default
On Sun, Oct 04, 2020 at 10:50:32PM +1100, Damien Miller wrote:
> On Sun, 4 Oct 2020, Matthieu Herrb wrote:
>
> > On Sun, Oct 04, 2020 at 09:24:12PM +1100, Damien Miller wrote:
> > > On Sun, 4 Oct 2020, Damien Miller wrote:
> > >
> > > > No - I think you've stumbled on a corner case I hadn't anticipated.
> > > > Does your configuration
2013 Jan 14
0
[LLVMdev] Using C++'11 language features in LLVM itself
On Sun, Jan 13, 2013 at 9:59 PM, Sean Silva <silvas at purdue.edu> wrote:
> On Sun, Jan 13, 2013 at 2:10 PM, Matthieu Monrocq
> <matthieu.monrocq at gmail.com> wrote:
> > gcc 4.5, MSVC 10, clang 3.1
> > - decltype v1.0 [1] + late specified return type
> > - lambda v1.0 [2]
> > - local types as template arguments
> > - r-value 2.0 [3]
> > -
2011 Aug 23
0
[LLVMdev] git Status
Matthieu Moy <Matthieu.Moy at grenoble-inp.fr> writes:
> greened at obbligato.org (David A. Greene) writes:
>
>> Actually git pull can sometimes get you into trouble. Probably git
>> fetch / git rebase is the better combination for LLVM.
>
> I don't get it.
>
> Doesn't "git pull --rebase" do exactly a fetch followed by a rebase?
No. It does