Displaying 20 results from an estimated 186 matches for "lap".
Did you mean:
ap
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-tech...
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
...Hardware: x86 (IA32)
Status: NEW
Version: 7.6 (2010.12)
Component: Driver/nouveau
Product: xorg
I've added the following options drm.debug=14 log_buf_len=16M to grub config
and each time resume causes hang in logs appears:
ov 14 23:21:27 karolszk-lap kernel: [ 613.414575] Call Trace:
Nov 14 23:21:27 karolszk-lap kernel: [ 613.414648] [<f8f34394>]
nv50_i2c_getscl+0x24/0x30 [nouveau]
Nov 14 23:21:27 karolszk-lap kernel: [ 613.414656] [<f84fb052>]
sclhi+0x42/0x70 [i2c_algo_bit]
Nov 14 23:21:27 karolszk-lap kernel: [ 613.414663]...
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 Behal...
2023 Nov 04
2
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
...("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 )
# label a factor
myDf$GF <- factor(myDf$gender, labels= c("Male"=65, "Female"=58))
# do the maths
myDf$LAP <- (myDf$WC - as.numeric(myDf$GF))* myDf$TG
#show results
head(myDf)
gender WC TG GF LAP
1 Male 70 0.9 58 61.2
2 Female 60 1.1 65 64.9
3 Male 75 1.2 58 87.6
4 Female 65 1.0 65 64.0
(Reality: I'd have probably used case_when in tidy to create a new numeric
column)
The equation...
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...
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."
>>>>&g...
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...
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 equations
below.
LAP for male = (WC-65)*TG
LAP for female = (WC-58)*TG
My question is 'how can I calculate the LAP and create a single new column?
Your cooperation will be highly appreciated.
Tha...
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.c...
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
...OR(drm, "failed to initialise sync subsystem, %d\n", ret);
but the result is that after the GUI login screen (gdm) which works fine, I get
a complete hang when GNOME starts up using compiz (cannot even switch to a text
vt any more) and lots of the following output:
Dec 15 23:23:05 aloew-lap kernel: nouveau E[ PFIFO][0000:01:00.0] CACHE_ERROR
- ch 4 [compiz[4637]] subc 0 mthd 0x0018 data 0x00000002
Dec 15 23:23:05 aloew-lap kernel: nouveau E[ PFB][0000:01:00.0] trapped
write at 0x0000000114 on channel 0x0000f949 [unknown]
PFIFO/PFIFO_READ/SEMAPHORE reason: PT_NOT_PRESENT
Dec 15 2...
2023 Nov 05
1
I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
...quot;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 )
# label a factor
myDf$GF <- factor(myDf$gender, labels= c("Male"=65, "Female"=58))
# do the maths
myDf$LAP <- (myDf$WC - as.numeric(myDf$GF))* myDf$TG
#show results
head(myDf)
gender WC TG GF LAP
1 Male 70 0.9 58 61.2
2 Female 60 1.1 65 64.9
3 Male 75 1.2 58 87.6
4 Female 65 1.0 65 64.0
(Reality: I'd have probably used case_when in tidy to create a new numeric column)
The eq...
2008 May 05
2
Character entry mismatch in the console window
...talled 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 <-
read.table(?C:\\Ranalysis\\SouthAfrica\\Lap.oreogena\\lap.long.distance.txt?,
header = TRUE);
I get the error:
Error: unexpected input in "lap.long.dist <- read.table(?"
Note that (at least on my screen now) the two " (quotation marks) at the
end of the error...
2023 Nov 03
1
[EXTERNAL] RE: I need to create new variables based on two numeric variables and one dichotomize conditional category variables.
...elp at r-project.org <r-help at r-project.org>, mkzaman.m at gmail.com <mkzaman.m at gmail.com>
Subject: [EXTERNAL] RE: [R] 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 Behal...
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...
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).
>>
>&g...
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 &quo...