search for: delcar

Displaying 8 results from an estimated 8 matches for "delcar".

Did you mean: delcare
2007 Apr 24
6
Questions about table association while using acts_as_ferret
Hi all, I''m quite new to ferret and acts_as_ferret and what to see if I can implement the following requirement using them. Suppose I have two model classes: Article and Comment. It''s obvious that one article may have many comments, so this is a one-many relationship. If I want to add full text search to these models, I''m supposed to use acts_as_ferret in both of the
2005 Nov 10
2
is this a DNS resolution problem ?
...amed lan_xxx), all nated by a FreeBSD box on the outside (the outside is a private network too, let's name it lan0. The PDC has one interface for each subnets, even for lan0. But isn't there a problem if the PDC announce himself with the same name on all the vlans, as the carbone is only delcared for lan0 ? Should I not use virtual servers with several smb.conf for each vlans, where the PDC could be named by the named it is declared in the DNS for each vlan ? I don't know if you can understand, but it's a difficult thing to explain with a language that is not mine :D I shut of...
2006 Feb 14
3
Master privileges unavailable on UPS
Hello all, I'm having problems with what I'm told should be a straightforward issue. The message in /var/log/daemon is: <quote> Feb 13 10:37:57 lupin upsmon[31324]: Master privileges unavailable on UPS [lupin1500AVR@localhost]
2016 Oct 31
1
[PATCH] D26127: [MemorySSA] Repair AccessList invariants after insertion of new MemoryUseOrDef.
...be possible to do it all in a single iteration, either bottom up or top down. Many of the transforms in this pass > create entirely new memsets, memcpys, and memmoves (among others). After > each > new insertion, I expect to also have to update MSSA since 1) > MemorySSAWrapperPass is delcared preserved to the pass manager, and 2) > subsequent MCO iterations which depend on MSSA need to be able to see, > analyze, > and possibly further transform these newly added meminsts. > Can you give an example of a case where, processing in top-down order, going from defs to uses, it&...
2016 Mar 02
4
Proposal for function vectorization and loop vectorization with function calls
...te group. Note that it may be possible to have several mangled names associated with the same function, which correspond to several desired vectorized versions. Clang FE generates all function attributes for expected vector variants to be generated by the back-end. E.g., #pragma omp delcare simd uniform(a) linear(k) float dowork(float *a, int k) { a[k] = sinf(a[k]) + 9.8f; } define __stdcall f32 @_dowork(f32* %a, i32 %k) #0 ... ... attributes #0 = { nounwind uwtable "_ZGVbM4ul_" "_ZGVbN4ul_" ...} 2. A new vector function generation pass i...
2018 Jun 08
3
C7, encryption, and clevis
John Hodrien wrote: > On Fri, 8 Jun 2018, m.roth at 5-cent.us wrote: > >> We've been required to encrypt h/ds, and so have been rolling that out >> over the last year or so. Thing is, you need to put in a password, of >> course, to boot the system. My manager found a way to allow us to reboot >> without being at the system's keyboard, a package called clevis.
2016 Mar 02
2
Proposal for function vectorization and loop vectorization with function calls
...t it may be possible to have several mangled names associated > with the same function, which correspond to several desired vectorized > versions. Clang FE generates all function attributes for expected vector > variants to be generated by the back-end. E.g., > > #pragma omp delcare simd uniform(a) linear(k) > float dowork(float *a, int k) > { > a[k] = sinf(a[k]) + 9.8f; > } > > define __stdcall f32 @_dowork(f32* %a, i32 %k) #0 > ... ... > attributes #0 = { nounwind uwtable "_ZGVbM4ul_" "_ZGVbN4ul_" ...} > >...
2016 Mar 02
5
RFC: Implementing the Swift calling convention in LLVM and Clang
> On Mar 2, 2016, at 1:33 AM, Renato Golin <renato.golin at linaro.org> wrote: > > On 2 March 2016 at 01:14, John McCall via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Hi, all. >> - We sometimes want to return more values in registers than the convention normally does, and we want to be able to use both integer and floating-point registers. For