Displaying 8 results from an estimated 8 matches for "31633".
Did you mean:
1633
2004 Aug 13
2
heavy load on port 443
...milar messages:
[13/Aug/2004 23:43:49 66440] [error] SSL handshake failed (server
www.beco.hu:443, client 217.102.90.240) (OpenSSL library error follows)
[13/Aug/2004 23:43:49 66440] [error] OpenSSL: error:1406908F:SSL
routines:GET_CLIENT_FINISHED:connection id is different
[13/Aug/2004 23:43:50 31633] [info] Connection to child 38 established
(server www.beco.hu:443, client 217.102.90.240)
[13/Aug/2004 23:43:50 31633] [info] Seeding PRNG with 1160 bytes of entropy
[13/Aug/2004 23:43:51 31633] [error] SSL handshake failed (server
www.beco.hu:443, client 217.102.90.240) (OpenSSL library error...
2017 May 23
6
[poison] is select-of-select to logic+select allowed?
...not exploited significantly (as you say). Just because there’s no explicit poison in SDAG, just having nsw is sufficient to cause miscompilations when combined with other transformations.
See, for example, this bug report for InstCombine regarding select+nsw: https://bugs.llvm.org/show_bug.cgi?id=31633
Nuno
From: Sanjay Patel [mailto:spatel at rotateright.com]
Sent: 23 de maio de 2017 14:25
To: Nuno Lopes <nuno.lopes at ist.utl.pt>
Cc: John Regehr <regehr at cs.utah.edu>; llvm-dev <llvm-dev at lists.llvm.org>; Matthias Braun <mbraun at apple.com>; Sanjoy Das &l...
2018 Apr 26
2
[BUG] Fail update Samba 4.8.0
...CCESS)
CGroup: /system.slice/samba4.service
├─31621 / usr / local / samba / sbin // samba -D
├─31628 / usr / local / samba / sbin // samba -D
├─31629 / usr / local / samba / sbin // samba -D
├─31631 / usr / local / samba / sbin // samba -D
├─31633 / usr / local / samba / sbin // samba -D
├─31634 / usr / local / samba / sbin // samba -D
├─31635 / usr / local / samba / sbin // samba -D
├─31636 / usr / local / samba / sbin // samba -D
├─31637 / usr / local / samba / sbin // samba -D
├─31638...
2018 May 04
1
[BUG] Fail update Samba 4.8.0
...; > ├─31621 / usr / local / samba / sbin // samba -D
> > ├─31628 / usr / local / samba / sbin // samba -D
> > ├─31629 / usr / local / samba / sbin // samba -D
> > ├─31631 / usr / local / samba / sbin // samba -D
> > ├─31633 / usr / local / samba / sbin // samba -D
> > ├─31634 / usr / local / samba / sbin // samba -D
> > ├─31635 / usr / local / samba / sbin // samba -D
> > ├─31636 / usr / local / samba / sbin // samba -D
> > ├─31637 / usr / local / sam...
2017 May 26
3
Poison/Undef at CodeGen level Was: [poison] is select-of-select to logic+select allowed?
...gt; Just because there’s no explicit poison in SDAG, just having nsw is
>> sufficient to cause miscompilations when combined with other
>> transformations.
>> See, for example, this bug report for InstCombine regarding
>> select+nsw:_https://bugs.llvm.org/show_bug.cgi?id=31633_
>
> Poison/Undef at the CodeGen level is a very interesting discussion! I
> don't think there is any documentation about posion/undef at the
> CodeGen level and I haven't discussed this much with others, so I'd
> like to hear further feedback:
>
> - I think we s...
2018 Apr 26
0
[BUG] Fail update Samba 4.8.0
....slice/samba4.service
> ├─31621 / usr / local / samba / sbin // samba -D
> ├─31628 / usr / local / samba / sbin // samba -D
> ├─31629 / usr / local / samba / sbin // samba -D
> ├─31631 / usr / local / samba / sbin // samba -D
> ├─31633 / usr / local / samba / sbin // samba -D
> ├─31634 / usr / local / samba / sbin // samba -D
> ├─31635 / usr / local / samba / sbin // samba -D
> ├─31636 / usr / local / samba / sbin // samba -D
> ├─31637 / usr / local / samba / sbin // samba -...
2018 Apr 24
2
[BUG] Fail update Samba 4.8.0
After performing the update of samba version 4.7.3 to version 4.8.0, an
error occurred while starting the service.
The samba seems to have trouble finding its way through the db:
Unable to determine the DomainSID, can not enforce uniqueness constraint on
local domainSIDs
Searching for dsServiceName in rootDSE failed: operations error at
../source4/dsdb/samdb/ldb_modules/rootdse.c:516
Failed to
2017 May 23
4
[poison] is select-of-select to logic+select allowed?
Hi,
Let me try to give a bit more context on why select is so tricky.
First thing to consider is which transformations we would like to support:
1) Control-flow -> select (SimplifyCFG)
if (c)
a = x
else
a = y
=>
%a = select %c, %x, %y
2) select -> control-flow; reverse of 1)
Not sure if this is done at IR level, or only later at SDAG.
3) select ->