Displaying 20 results from an estimated 215 matches for "p11".
Did you mean:
11
2018 Sep 13
1
dovecot + centos 7 + internal ca + hostname change
...work any more
and the following errors are seen.
Have created and internal CA for domain and added it to
Sep 13 10:42:04 ip-10-0-40-230 dovecot: master: Dovecot v2.2.33.2
(d6601f4ec) starting up for imap, pop3, lmtp, sieve (core dumps disabled)
Sep 13 10:42:04 ip-10-0-40-230 dovecot: auth: Error: p11-kit:
'attr->pValue != NULL' not true at attrs_build
Sep 13 10:42:04 ip-10-0-40-230 dovecot: auth: Error: p11-kit:
'lexer->tok.field.name && lexer->tok.field.value' not true at p11_lexer_next
Sep 13 10:42:04 ip-10-0-40-230 dovecot: auth: Error: p11-kit: 'attrs !=...
2014 Jan 28
0
CEBA-2014:0098 CentOS 6 p11-kit Update
...Errata and Bugfix Advisory 2014:0098
Upstream details at : https://rhn.redhat.com/errata/RHBA-2014-0098.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
8a59b170119544ddc81c548e78b56fb77d610eb2156a72954fa356b027fd8ecf p11-kit-0.18.5-2.el6_5.2.i686.rpm
151a790f04cae78dc85aead851d70b8633ed38c20f08f76588be330889c05775 p11-kit-devel-0.18.5-2.el6_5.2.i686.rpm
14a9fcb6d4fd540640c404c45b7a53e2514c21a6552b0b1d79b53518e9444512 p11-kit-trust-0.18.5-2.el6_5.2.i686.rpm
x86_64:
8a59b170119544ddc81c548e78b56fb77d610eb2156a7295...
2012 May 13
2
Discrete choice model maximum likelihood estimation
...(P)
}
P2 <- function(b2,b,t) {
P <- exp(b2+b*(t==1))/(1-exp(b2+b*(t==1)))
return(P)
}
P1 <- function(b1,b,t) {
P <- exp(b1+b*(t==1))/(1-exp(b1+b*(t==1)))
return(P)
}
# Likelihood functions for discrete choices for a=3, a=2 and a=1
respectively
L3 <- function(b1,b2,b3,b,t) {
P11 <- P1(b1,b,t)
P22 <- P2(b2,b,t)
P33 <- P3(b3,b,t)
L3l <- (P11=1)*(P22=1)*(P33=1)
return(L3l)
}
L2 <- function(b1,b2,b3,b,t) {
P11 <- P1(b1,b,t)
P22 <- P2(b2,b,t)
P33 <- P3(b3,b,t)
L2l <- (P11=1)*(P22=1)*(P33=0)
return(L2l)
}
L1 <- function(b1,b2,b,t) {
P11 <- P1...
2009 Mar 03
1
R - need more memory, or rejection sampling algorithm doesn't work?
...t; f=matrix(NA,1000)
>while(k<1001){
z11=runif(1,min=0,max=2)
r11=(((log(z11/1-z11)^231)*((1-log(z11/1-z11))^62)*((b12)^170)*((1-b12)^250)*((b13)^217)*((1-b13)^^38))/2*.5)
if(r11<runif(1,min=0,max=1))
{f(k)=z11; k=k+1}
count=count+1
}
THe GIbbs sampler I tried looks as follows:
> p11=matrix(0.5,2000)
for(i in 2000)
{
z=0
while(z==0)
{
u=runif(1,min=0,max=2)
if(
((log(p11[i]/1-p11[i])^231)*((1-log(p11[i]/1-p11[i]))^62)*((b12)^170)*((1-b12)^250)*((b13)^217)*((1-b13)^38))>(2*runif(1,min=0,max=1)*.5))
{p11[i]=u; z=1}
}
}
Ned
--
View this message in context: http://www.nabble...
2014 Jan 28
0
CentOS-announce Digest, Vol 107, Issue 14
...uot;
Today's Topics:
1. CEBA-2014:0096 CentOS 6 irqbalance Update (Johnny Hughes)
2. CESA-2014:0097 Important CentOS 6 java-1.6.0-openjdk Update
(Johnny Hughes)
3. CESA-2014:0097 Important CentOS 5 java-1.6.0-openjdk Update
(Johnny Hughes)
4. CEBA-2014:0098 CentOS 6 p11-kit Update (Johnny Hughes)
----------------------------------------------------------------------
Message: 1
Date: Mon, 27 Jan 2014 18:44:34 +0000
From: Johnny Hughes <johnny at centos.org>
Subject: [CentOS-announce] CEBA-2014:0096 CentOS 6 irqbalance Update
To: centos-announce at centos....
2013 Mar 29
3
if clause in data frame
Hi,
final<-data.frame()
?? for (m1 in 4:10) {
?????? for (n1 in 4:10){?
?????????? for (x1 in 0: m1) {
????????????? for (y1 in 0: n1) {
final<- rbind(final,c(m1,n1,x1,y1))
res}}}}
?final1<-within(final,{flag<-ifelse(x1/m1>y1/n1, 1,0)})
?head(final1)
#? m1 n1 x1 y1 flag
#1? 4? 4? 0? 0??? 0
#2? 4? 4? 0? 1??? 0
#3? 4? 4? 0? 2??? 0
#4? 4? 4? 0? 3??? 0
#5? 4? 4? 0? 4??? 0
#6? 4? 4?
2020 Oct 09
1
Aide pour finaliser ce code
...est ?
5%
l3=0 # initialisation de la valeur permettant calculer le niveau de test ?
10%
# Cr?ation d'une liste n11 qui contient les tailles des differents groupes
n11=list()
for (i in 1:q){
n11[[i]]=rep(as.integer(n/R[i]),R[i])
n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1])
}
# Cr?ation des listes P11 et P12 qui contient les probabilit?s et
# les inverses des probabilites empiriques des differents groupes
respectivement
P11=list()
P12=list()
for (i in 1:q){
P11[[i]]=n11[[i]]/n
P12[[i]]=n/n11[[i]]
}
# cr?ation d'une liste contenant les matrices W
W=list()
for (i in 1:q){
w=matrix(0,n,R[i])...
2018 Aug 08
0
samba 4.7.7 shares on FreeBSD 11.1-p11 started to ignore ACL
...iginal Message -----
From: "samba" <samba at lists.samba.org>
To: "samba" <samba at lists.samba.org>
Cc: "Oleg Cherkasov" <o1e9.cherkasov at yandex.com>
Sent: Wednesday, August 8, 2018 1:45:23 PM
Subject: Re: [Samba] samba 4.7.7 shares on FreeBSD 11.1-p11 started to ignore ACL
On 06. aug. 2018 16:37, Oleg Cherkasov via samba wrote:
> On 06. aug. 2018 15:15, Oleg Cherkasov via samba wrote:
>>
>> This morning three of our FreeBSD-11.1-p11 servers with Samba 4.7.7
>> installations started to ignore ACL settings and reject user ac...
2018 Aug 08
2
samba 4.7.7 shares on FreeBSD 11.1-p11 started to ignore ACL
On 06. aug. 2018 16:37, Oleg Cherkasov via samba wrote:
> On 06. aug. 2018 15:15, Oleg Cherkasov via samba wrote:
>>
>> This morning three of our FreeBSD-11.1-p11 servers with Samba 4.7.7
>> installations started to ignore ACL settings and reject user access to
>> shares. All three servers are members of DC running on Windows Server
>> 2008R2. Everything has been running ok for last few year. I have
>> been upgrading Samba and...
2024 Sep 23
1
[PATCH] sshd: Add pkcs11 support for HostKey.
...e rely on
the following chain:
sshd -> OpenSSL -> OpenSSL Engine -> HSM Having
PKCS#11 support in sshd, would reduce it to:
sshd -> PKCS#11 Library -> HSM
This patch extends sshd so that HostKeys can also be PKCS#11 URIs, as
defined by the RFC 7512[1]. Those URIs are parsed using p11-kit[2], that
is added as an optional dependency to OpenSSH. If that is a
show-stopper, URIs could also be parsed directly in OpenSSH but that
would involve lengthy parsing functions. One can then have a
configuration that looks like:
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey pkcs11:object=ssh_...
2019 Nov 28
3
Instcombine and bitcast of vector. Wrong CHECKs in cast.ll, miscompile in instcombine?
...n8:16:32:64"
[...]
define <3 x i32> @test60(<4 x i32> %call4) {
; CHECK-LABEL: @test60(
; CHECK-NEXT: [[P10:%.*]] = shufflevector <4 x i32> [[CALL4:%.*]],
<4 x i32> undef, <3 x i32> <i32 0, i32 1, i32 2>
; CHECK-NEXT: ret <3 x i32> [[P10]]
;
%p11 = bitcast <4 x i32> %call4 to i128
%p9 = trunc i128 %p11 to i96
%p10 = bitcast i96 %p9 to <3 x i32>
ret <3 x i32> %p10
}
If we assume the input vector is e.g. <1, 2, 3, 4> then I assume %p11
would be the (hex) value 1234, %p9 would be the 234 and %p10 would then
be t...
2018 Aug 09
1
samba 4.7.7 shares on FreeBSD 11.1-p11 started to ignore ACL
On 08. aug. 2018 22:30, Dante Colo wrote:
>
> If you add to vfs module to a share you also have to explicit add acl_xattr , that's what i do when i want to add another module and keep acl_xattr on the same share, if i'm not doing right way someone correct me .
>
I am already have 'vfs objects = zfsacl' set for my ZFS shares so
acl_xattr does not help at all.
2020 Oct 10
3
Please need help to finalize my code
...5%.
43 l3=0 # initialization of the value to calculate the test level at 10%.
44 # Creation of an n11 list containing the sizes of the different groups
45 n11=list()
46 for (i in 1:q){
47 n11[[i]]=rep(as.integer(n/R[i]),R[i])
48 n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1])
49 }
50 # Creation of lists P11 and P12 which contain the probabilities and
51 # the inverses of the empirical probabilities of the different groups
respectively
52 P11=list()
53 P12=list()
54 for (i in 1:q){
55 P11[[i]]=n11[[i]]/n
56 P12[[i]]=n/n11[[i]
57 }
58 # creation of a list containing the W matrices
59 W=list()
60 for...
2018 Dec 19
2
RFE: OpenSSH Support for PKCS11 Funneling to PAM for Kerberos/PKINIT
Alon,
On 12/18/2018 06:52 PM, Alon Bar-Lev wrote:
> OK... So you have an issue...
>
> First, you need to delegate your smartcard to remote machine, probably
> using unix socket redirection managed by openssh. This can be done in
> many levels...
> 1. Delegate USB device, this will enable only exclusive usage of the
> smartcard by remote machine.
> 2. Delegate PC/SC, this
2020 Oct 13
1
Please need help to finalize my code
...late the test level at 10%.
>
> 44 # Creation of an n11 list containing the sizes of the different groups
> 45 n11=list()
> 46 for (i in 1:q){
> 47 n11[[i]]=rep(as.integer(n/R[i]),R[i])
> 48 n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1])
> 49 }
>
>
> 50 # Creation of lists P11 and P12 which contain the probabilities and
> 51 # the inverses of the empirical probabilities of the different groups
> respectively
>
> 52 P11=list()
> 53 P12=list()
> 54 for (i in 1:q){
> 55 P11[[i]]=n11[[i]]/n
> 56 P12[[i]]=n/n11[[i]
>
> 57 }
>
> 58 # crea...
2007 Nov 15
1
problem with png()
Hi,
I am runing R2.6.0 (2007-10-03) on WindowsXP.
If I use png() to save a plot I lose the main title.
An example:
##########################
outfile <- "outfile.png"
p11 <- histogram( ~ height | voice.part, data = singer, xlab="Height",
main="Ingo's title")
p2 <- histogram( ~ height, data = singer, xlab = "Height")
png(outfile, width=800, height=800)
print(p11, split=c(1,1,1,2), more=TRUE)
print(p2, split=c(1,2,1,2))
dev.of...
2016 Jan 31
2
Dovecot 2.2.21 - segfault
dovecot --version
2.2.21 (5345f22)
FreeBSD 10.2-RELEASE-p11 FreeBSD 10.2-RELEASE-p11 #0 r294908M: amd64
Core was generated by `dovecot'.
Program terminated with signal 11, Segmentation fault.
Reading symbols from /usr/local/lib/dovecot/libdovecot.so.0...done.
Loaded symbols for /usr/local/lib/dovecot/libdovecot.so.0
Reading symbols from /lib/libc.so....
2007 Jul 03
3
generating correlated Bernoulli random variables
Hi all,
I was wondering how to generate samples for two RVs X1 and X2.
X1 ~ Bernoulli (p1)
X2 ~ Bernoulli (p2)
Also, X1 and X2 are correlated with correlation \rho.
Regards,
Vineet
[[alternative HTML version deleted]]
2020 Oct 13
0
Please need help to finalize my code
...44 # Creation of an n11 list containing the sizes of the different groups
> > 45 n11=list()
> > 46 for (i in 1:q){
> > 47 n11[[i]]=rep(as.integer(n/R[i]),R[i])
> > 48 n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1])
> > 49 }
> >
> >
> > 50 # Creation of lists P11 and P12 which contain the probabilities and
> > 51 # the inverses of the empirical probabilities of the different groups
> > respectively
> >
> > 52 P11=list()
> > 53 P12=list()
> > 54 for (i in 1:q){
> > 55 P11[[i]]=n11[[i]]/n
> > 56 P12[[i]]=n/n11[[...
2013 Dec 27
1
CentOS6 CR repo - depsolving problem
...tips and assistance.
~]# yum deplist ca-certificates
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
<...snipped...>
Finding dependencies:
package: ca-certificates.noarch 2013.1.95-65.1.el6_5
dependency: /bin/bash
Unsatisfied dependency
dependency: p11-kit-trust >= 0.18.4-2
Unsatisfied dependency
dependency: /bin/sh
Unsatisfied dependency
dependency: p11-kit >= 0.18.4-2
Unsatisfied dependency
~]# yum repolist enabled
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
<...snipped...>
repo...