search for: 27673

Displaying 6 results from an estimated 6 matches for "27673".

Did you mean: 2763
2019 Sep 09
4
Error join samba 4.10.7 to samba 4.4.5
...esume_ccache' registered GENSEC backend 'http_basic' registered GENSEC backend 'http_ntlm' registered GENSEC backend 'http_negotiate' registered GENSEC backend 'krb5' registered GENSEC backend 'fake_gssapi_krb5' registered INFO 2019-09-09 10:06:11,792 pid:27673 /usr/local/samba/lib/python3.4/site-package s/samba/join.py #104: Finding a writeable DC for domain 'domain-test.com' resolve_lmhosts: Attempting lmhosts lookup for name _ldap._tcp.domain-test.com<0x0> INFO 2019-09-09 10:06:11,813 pid:27673 /usr/local/samba/lib/python3.4/site-package...
2003 Nov 02
2
dies on start-up: Auth process
...through some of the archives and ran into someone who was having the same problem, but for completely different reasons....i think. dovecot: Nov 02 07:58:51 Info: Dovecot starting up dovecot: Nov 02 07:58:52 Error: Auth process died too early - shutting down dovecot: Nov 02 07:58:52 Error: child 27673 (login) killed with signal 11 dovecot: Nov 02 07:58:52 Error: child 27672 (login) killed with signal 11 dovecot: Nov 02 07:58:52 Error: child 27671 (login) killed with signal 11 dovecot: Nov 02 07:58:52 Error: child 27670 (auth) killed with signal 11 So I took the advice posted and ran 'strac...
2011 Jul 01
1
[79030.229547] motion: page allocation failure: order:6, mode:0xd4
...tpath+0x16/0x1b [79030.232058] Mem-Info: [79030.232058] DMA per-cpu: [79030.232058] CPU 0: hi: 0, btch: 1 usd: 0 [79030.232058] DMA32 per-cpu: [79030.232058] CPU 0: hi: 186, btch: 31 usd: 0 [79030.232058] active_anon:255 inactive_anon:755 isolated_anon:0 [79030.232058] active_file:27673 inactive_file:28297 isolated_file:0 [79030.232058] unevictable:0 dirty:7 writeback:0 unstable:0 [79030.232058] free:2965 slab_reclaimable:40398 slab_unreclaimable:4116 [79030.232058] mapped:2942 shmem:6 pagetables:946 bounce:0 [79030.232058] DMA free:2104kB min:84kB low:104kB high:124kB active_a...
2012 Mar 05
0
[LLVMdev] [patch] Enhance of asm macros
> For compability this problems requiring some compiler switch flag. Can you > give me description/example how it's can be done? grep for DwarfRequiresRelocationForSectionOffset. Something like that might do what you want. Cheers, Rafael
2012 Mar 19
1
[LLVMdev] [patch] Enhance of asm macros
...------------ next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120319/bba2d4bb/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: 1.macro-enh.patch Type: text/x-patch Size: 27673 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120319/bba2d4bb/attachment.bin> -------------- next part -------------- A non-text attachment was scrubbed... Name: 2.rept-directive.patch Type: text/x-patch Size: 3658 bytes Desc: not available URL: <ht...
2012 Feb 15
2
[LLVMdev] [patch] Enhance of asm macros
Hello Kevin, I thinking about this, but there are some problems: 1) Differrent interpretation of $[:number:] in macro body: source: .macro test par1 movl $0, %eax .endm test %ebx translated to: original llvm => movl %ebx, %eax with patch => movl $0, %ebx 2) Different parsing of space in macro parameters: source: test2 a + b,c parsed as: original llvm => macro test2 with two