Displaying 20 results from an estimated 3000 matches similar to: "Best way to sync Samba AD 4 LDAP with OpenLDAP"
2016 Jan 27
1
Best way to sync Samba AD 4 LDAP with OpenLDAP
Hello Rowland,
Thanks for your reactions. We will internally discuss it how to implement an AD solution.
Kind regards, Paul
----- Original Message -----
From: "Rowland penny" <rpenny at samba.org>
To: "sambalist" <samba at lists.samba.org>
Sent: Monday, 25 January, 2016 10:46:21
Subject: Re: [Samba] Best way to sync Samba AD 4 LDAP with OpenLDAP
On 25/01/16
2016 Jan 25
0
Best way to sync Samba AD 4 LDAP with OpenLDAP
On 25/01/16 08:03, Paul Reemeijer wrote:
> Goodmorning Rowland,
>
> Thank you for your reaction.
>
> Our OpenLDAP setup is maintained by a lot of people and in-house made tools; so that is why my first solution that I want to present for a new Samba solution to use OpenLDAP as our place to manage users. We also have everyting (services, workplaces and servers) make use of our ldap
2012 Apr 30
3
R2 in multilevel modelling
Goodmorning everybody,
i'm an italian statistician and i'm using R for research.
Could someone tell me some indices to see the goodness of fit in multilevel
modelling?
I'm using the lmer function, and I want to know if my model fit well my
data.
I actually want to justify the use of multilevel model instead the classical
one.
Hope someone can help me.
Thank you.
Greetings
2018 Oct 13
2
Icecast 2.4.3
Goodmorning,
I already send the same messages 4 weeks ago about crash of Icecast
2.4.3 on CentOS 7.5 64bit. We use ssl, IPv6, IPv4.
Only on the system log we see:
kernel: traps: icecast[5425] general protection ip:7ff3b209cc19
sp:7ffc63b5a910 error:0 in libssl.so.1.0.2k[7ff3b2070000+67000]
It runs for many weeks good and than is crash, there was no big load
before. Anyone know what to do or
2007 Jul 13
2
R file via SSH
Goodmorning everybody,
I need to run an R program via SSH. Usually I open R, I run the
program and I stay logged-in, waiting for the output. As a matter of
fact, if I close the connection with SSH I loose the calculations and
the output of my R program. What command I have to use in order to
preseve the calculations and the output without staying logged-in a SSH
connection?
thanks in advance
2009 Feb 12
0
[LLVMdev] Eliminate PHI for non-copyable registers
On Feb 12, 2009, at 1:41 AM, [Alex] wrote:
> They "should" be non-allocatable if the hardware implements the same
> number
> of these i32 registers as the "specification". The input language
> (which is
> converted to LLVM IR) may use up to 4 registers but the hardware
> only has 2.
> So they must be allocatable, right?
To be allocatable, the code
2009 Dec 17
6
Feature Request: GotoIfTimeWithOffset
Hi,
When I was testing an IVR, I realized I miss a function I would call
GotoIfTimeWithOffset.
Today, this IVR is using function AEL GotoIfTime in several places.
The problem is if it's 11pm at the moment I'm testing this IVR, I can't
nicely test the 9am or 2pm branch.
GotoIfTimeWithOffset would get 2 incoming arguments :
- the first is a time range (just like GotoIfTime),
- the
2009 Feb 12
2
[LLVMdev] Eliminate PHI for non-copyable registers
Chris Lattner-2 wrote:
>
>
> On Feb 11, 2009, at 4:07 AM, Alex wrote:
>
>> In my hardware there are two special registers cannot be copied but
>> can only be assigned and referenced (read) in the other instruction.
>> They are allocatable also.
>>
>> br i1 %if_cond, label %then, label %else
>> then:
>> %x1 = fptosi float %y1 to i32
2011 Jul 26
3
[LLVMdev] Linking opaque types
On Jul 25, 2011, at 10:58 PM, Talin wrote:
> To handle the fact that types do not (and can not, at least as long as we intend to support obscure languages like "C" :) have linkage, the the linker uses a "best effort" approach. It attempts to merge types and rewrite IR to use the merged types where it can, but it doesn't make any guarantees.
>
> I want to add an
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
2018 Jan 24
2
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
Hey Ben,
This change broke some clangd code (no failing test, mea culpa), because it
changed the move semantics.
Previously: a moved-from llvm::Optional was None (for all types).
Now: a moved-from llvm::Optional is None (for non-trivial types), and has
the old value (for trivial types).
FWIW, a moved-from std::optional is *not* nullopt, and contains the
moved-from value.
This seems sad to me,
2011 Feb 02
2
Help me apply mapply
Hello all I would like to ask your help use mapply.
I have a function called findCell that takes two arguments(x,sr)
where x is a vector of size two (e.g x<-c(2,3) and sr is a matrix.
I would like to call many times the findCell function (thus I need mapply) for different x inputs but always for the same sr.
as x is a vector of size two (two cells) I want to pass inside inside the following
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
2018 Jan 24
0
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
That's an unintentional change. However, the reason for this change
was to make optional of trivially copyable types trivially copyable,
adding a user-provided move ctor would break that again :(
I'm leaning towards making the non-trivial version of llvm::Optional
more like std::optional. In the long term std::optional is going to
replace llvm::Optional. How bad would that be for your use
2006 Jun 21
1
Plugin Panic! - no accessing a model''s class methods?
Hi plugin-authors.
So this is a little bit of take two on this question, but why can''t I
access a singleton on the model calling my plugin? The crux of the full
plugin below is:
#logger.info self.class.to_s
new_copy = self.class.new( @copyable_attributes )
the logger spits out "Datatype", but I get an error from rails saying:
undefined method `datatype'' for
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
2018 Jan 24
1
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
On Wed, Jan 24, 2018 at 11:47 PM, Benjamin Kramer <benny.kra at gmail.com>
wrote:
> That's an unintentional change. However, the reason for this change
> was to make optional of trivially copyable types trivially copyable,
> adding a user-provided move ctor would break that again :(
>
> I'm leaning towards making the non-trivial version of llvm::Optional
> more
2005 Jun 16
4
Out of memory problems - some interesting log file entries
This is a newly installed server running CentOS 4 with all current updates.
It's been cruising nicely since installation a week ago until this morning.
Then everyting started timing out and the attached messages appeared in the
log (this is a short and sanitized extract). Load went sky high.
Had to reboot to restore service and all looks happy again now, but if anyone
can provide some
2015 Mar 10
2
[LLVMdev] LLVM 3.6: problems building on Windows using MSVC 2013
> > So… my question is: why?! More importantly: what do I need to do to be
> > able to export/import a class such as clang::driver::Compilation?
>
> It looks like MSVC is trying to synthesize and export the copy assignment
> operator and copy constructur. This is interesting, as I thought it wouldn't do
> that if the class turns out not to be non-copyable.
>
>
2016 Feb 23
2
[RFC] Error handling in LLVM libraries.
Hi Michael, Rafael, Pawel,
Apologies for the delayed reply - I was out on vacation last week.
> In fact I would actually support outright
> replacing ErrorOr with this if it can be done safely, as I find the
> name TypedErrorOr a bit long.
I find the name awkward too. I'll leave these classes as TypedError and
TypedErrorOr<T> when I submit the initial patch to llvm-commits,
2008 Nov 14
1
how to plot a variable's histogram in the levels of a second variable(1)
Goodmorning to everyone,
I am trying to create a clustered
barplot for the following 2 variables who have more cases but as an
example i am giving you 10 items:
sex聽 socio-economic status
1聽聽聽聽 1
2聽聽聽聽 2
2聽聽聽聽 2
2聽聽聽聽 3
2聽聽聽聽 2
1聽聽聽聽 4
1聽聽聽聽 1
1聽聽聽聽 1
2聽聽聽聽 3
2聽聽聽聽 1
where sex: 1:man, 2:woman
聽聽聽聽聽聽聽聽聽聽 socio-economic status:1:Low, 2:Medium, 3:High, 4:Very High
Does anybody came across with a
2018 Oct 17
1
Icecast 2.4.3
Good afternoon,
On Wed, 2018-10-17 at 10:55 +0200, Michel van Dop wrote:
> Hello,
>
> Any suggestions are welcome!
> I hope with these reports that a better version is made for everyone in
> the future.
Have you tried upgrading OpenSSL yet? Which version of OpenSSL do you
run?
Is there a ticket for this open already?:
https://gitlab.xiph.org/xiph/icecast-server/issues
With
2009 Feb 12
0
[LLVMdev] Eliminate PHI for non-copyable registers
On Feb 11, 2009, at 4:07 AM, Alex wrote:
> In my hardware there are two special registers cannot be copied but
> can only be assigned and referenced (read) in the other instruction.
> They are allocatable also.
>
> br i1 %if_cond, label %then, label %else
> then:
> %x1 = fptosi float %y1 to i32
> br label %endif
> else:
> %x2 = fptosi float %y2 to i32
>