Displaying 20 results from an estimated 186 matches for "laps".
Did you mean:
labs
2023 Apr 12
2
LAPS support
Op 12-04-2023 om 09:57 schreef Rowland Penny via samba:
>
>
> On 12/04/2023 08:51, Kees van Vloten via samba wrote:
>>
>> Op 12-04-2023 om 09:47 schreef Arnaud FLORENT via samba:
>>> Hello everybody
>>>
>>>
>>> does/will samba AD support t LAPS GPO ?
>>>
>>> https://learn.microsoft.com/en-us/windows-server/identity/laps/laps-overview
>>>
>>>
>>>
>>> As far as I understand, this requires schema extension
>> https://learn.microsoft.com/en-us/windows-server/identity/laps/laps-techn...
2023 Apr 12
1
LAPS support
...wland Penny via samba:
>>
>>
>> On 12/04/2023 08:51, Kees van Vloten via samba wrote:
>>>
>>> Op 12-04-2023 om 09:47 schreef Arnaud FLORENT via samba:
>>>> Hello everybody
>>>>
>>>>
>>>> does/will samba AD support t LAPS GPO ?
>>>>
>>>> https://learn.microsoft.com/en-us/windows-server/identity/laps/laps-overview
>>>>
>>>>
>>>> As far as I understand, this requires schema extension
>>> https://learn.microsoft.com/en-us/windows-server/identity/laps/...
2012 Nov 15
5
[Bug 57151] New: repeatable nouveau driver crashes/hangs during resume on Dell Latitude E6510 when drm.debug=14
https://bugs.freedesktop.org/show_bug.cgi?id=57151
Priority: medium
Bug ID: 57151
Assignee: nouveau at lists.freedesktop.org
Summary: repeatable nouveau driver crashes/hangs during resume
on Dell Latitude E6510 when drm.debug=14
QA Contact: xorg-team at lists.x.org
Severity: critical
Classification: Unclassified
2023 Apr 12
1
LAPS support
Hello everybody
does/will samba AD support t LAPS GPO ?
https://learn.microsoft.com/en-us/windows-server/identity/laps/laps-overview
As far as I understand, this requires schema extension
https://learn.microsoft.com/en-us/windows-server/identity/laps/laps-technical-reference
--
Arnaud FLORENT
IRIS Technologies
2023 Nov 03
2
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Just a minor point in the suggested solution:
df$LAP <- with(df, ifelse(G=='male', (WC-65)*TG, (WC-58)*TG))
since WC and TG are not conditional, would this be a slight improvement?
df$LAP <- with(df, TG*(WC - ifelse(G=='male', 65, 58)))
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of Jorgen Harmse via
R-help
Sent: Friday,
2023 Nov 04
2
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
I might have factored the gender.
I'm not sure it would in any way be quicker. But might be to some extent
easier to develop variations of. And is sort of what factors should be
doing...
# make dummy data
gender <- c("Male", "Female", "Male", "Female")
WC <- c(70,60,75,65)
TG <- c(0.9, 1.1, 1.2, 1.0)
myDf <- data.frame( gender, WC, TG )
#
2018 Nov 22
2
Extending Samba-4 Schema to get Microsoft LAPS working
Hi,
I am trying to get the Microsoft LAPS working in my samba-4 AD
environment. Microsoft LAPS requires us to extend the schema and add two
attributes "ms-Mcs-AdmPwd" (Stores the password in plain text) and
"ms-Mcs-AdmPwdExpirationTime" (Stores the time to reset the password).
I have added the Group Policy part of M...
2023 May 03
1
LAPS support
finally i got LAPS GPO working ( there was errors in my first schema
update ldif files)
i had to set "Enable password encryption" to disabled in LAPS GPO.
after reading wiki
(https://wiki.samba.org/index.php/Samba_AD_schema_extensions), before
install on production, i would like to have some advice...
2023 Apr 28
1
LAPS support
...think i update the schema successfully with the 6 new attributes
>>>>>
>>>>>
>>>>> but unfortunately, the policy is not applied
>>>>>
>>>>> event log on windows 10 client says
>>>>>
>>>>> "LAPS password encryption is required but the Active Directory domain
>>>>> is
>>>>> not yet at 2016 domain functional level. The password was not
>>>>> updated
>>>>> and no changes will be made until this is corrected."
>>>>>...
2023 Nov 03
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
df$LAP <- with(df, ifelse(G=='male', (WC-65)*TG, (WC-58)*TG))
That will do both calculations and merge the two vectors appropriately. It will use extra memory, but it should be much faster than a 'for' loop.
Regards,
Jorgen Harmse.
------------------------------
Message: 8
Date: Fri, 3 Nov 2023 11:10:49 +1030
From: "Md. Kamruzzaman" <mkzaman.m at gmail.com>
2023 Nov 03
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Hello Everyone,
I have three variables: Waist circumference (WC), serum triglyceride (TG)
level and gender. Waist circumference and serum triglyceride is numeric and
gender (male and female) is categorical. From these three variables, I want
to calculate the "Lipid Accumulation Product (LAP) Index". The equation to
calculate LAP is different for male and females. I am giving both
2023 Nov 03
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Well, something like:
LAP <- ifelse(gender =='male', (WC-65)*TG, (WC-58)*TG)
The exact code depends on whether your variables are in a data frame or
list or whatever, which you failed to specify. If so, ?with may be useful.
Cheers,
Bert
On Fri, Nov 3, 2023 at 3:43?AM Md. Kamruzzaman <mkzaman.m at gmail.com> wrote:
> Hello Everyone,
> I have three variables: Waist
2018 Nov 23
4
Extending Samba-4 Schema to get Microsoft LAPS working
Hi,
Thank you very much for your support.
With your ldif, one of the attributes got added to computer container.
Second one is having a trouble. The modification command is reporting it
is not able to find the attribute although it is very much in the
schema. I am checking this part out. Any suggestions to figure out
what's wrong and correct it?
Best regards,
Raghavendra
On 22/11/18
2013 Dec 15
0
[Bug 58378] [NV86] Distorted graphics on NVIDIA GeForce 8400M G after upgrade the kernel to 3.7.0 version
https://bugs.freedesktop.org/show_bug.cgi?id=58378
--- Comment #34 from Andreas Loew <awl1 at gmx.net> ---
Bad news once again...
I applied the following single-line patch to a stock 3.12.4 kernel in order to
switch to the NV50 fence:
diff -Nrpu linux-3.12.4.orig/drivers/gpu/drm/nouveau/nouveau_drm.c
linux-3.12.4/drivers/gpu/drm/nouveau/nouveau_drm.c
---
2023 Nov 05
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
There are many techniques Callum and yours is an interesting twist I had not considered.
Yes, you can specify what integer a factor uses to represent things but not what I meant. Of course your trick does not work for some other forms of data like real numbers in double format. There is a cost to converting a column to a factor that is recouped best if it speeds things up multiple times.
The
2008 May 05
2
Character entry mismatch in the console window
Dear R users,
I have just de-installed my old R 2.4.1 and installed R 2.7.0. I
downloaded this version from the South African mirror, as I am currently
working in South Africa.
When trying to paste any of my old analyses into the console (I keep
them in word-documents), I get an error when I first try to load the
data with the following line (example):
lap.long.dist <-
2023 Nov 03
1
[EXTERNAL] RE: I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
Yes, that will halve the number of multiplications.
If you?re looking for such optimisations then you can also consider ifelse(G=='male', 65L, 58L). That will definitely use less time & memory if WC is integer, but the trade-offs are more complicated if WC is floating point.
Regards,
Jorgen Harmse.
From: avi.e.gross at gmail.com <avi.e.gross at gmail.com>
Date: Friday,
2018 Nov 22
0
Extending Samba-4 Schema to get Microsoft LAPS working
On Thu, 2018-11-22 at 09:58 +0530, Ardos via samba wrote:
> Hi,
>
> I am trying to get the Microsoft LAPS working in my samba-4 AD
> environment. Microsoft LAPS requires us to extend the schema and add two
> attributes "ms-Mcs-AdmPwd" (Stores the password in plain text) and
> "ms-Mcs-AdmPwdExpirationTime" (Stores the time to reset the password).
>
> I have added t...
2018 Nov 22
2
Extending Samba-4 Schema to get Microsoft LAPS working
...Hence looking for help to create the ldif file to add these two
attributes to computer class.
Best regads,
Raghavendra
//
On 22/11/18 10:11 AM, Andrew Bartlett wrote:
> On Thu, 2018-11-22 at 09:58 +0530, Ardos via samba wrote:
>> Hi,
>>
>> I am trying to get the Microsoft LAPS working in my samba-4 AD
>> environment. Microsoft LAPS requires us to extend the schema and add two
>> attributes "ms-Mcs-AdmPwd" (Stores the password in plain text) and
>> "ms-Mcs-AdmPwdExpirationTime" (Stores the time to reset the password).
>>
>>...
2019 Jul 23
2
Extending Samba-4 Schema to get Microsoft LAPS working
...>> Second one is having a trouble. The modification command is reporting it
>> is not able to find the attribute although it is very much in the
>> schema. I am checking this part out. Any suggestions to figure out
>> what's wrong and correct it?
>
> Getting into LAPS now as well, after hours of installing WMF-4.0 onto a
> W2008R2SP1 server (don't ask, it will be replaced soon) ... I get to
> adding the AD attributes.
>
> Could someone share the latest and working ldif, please?
>
> Above report makes me wonder ...
a polite and tiny "...