search for: bello

Displaying 20 results from an estimated 31 matches for "bello".

Did you mean: hello
2013 Aug 29
3
[LLVMdev] COFF.h and windows.h conflict
...wondering if it might not be easier to just avoid this clash at all by avoiding it in LLVM. Alternatively I could #undef everything right after including Windows.h. On Thu, Aug 29, 2013 at 11:08 AM, Nick Kledzik <kledzik at apple.com> wrote: > > On Aug 28, 2013, at 7:05 PM, Virgile Bello <virgile.bello at gmail.com> > wrote: > > Right now, we have: > In COFF.h: > class COFF { enum MachineTypes { IMAGE_FILE_MACHINE_UNKNOWN = 0x0, > ... }; }; > In windows.h: > #define IMAGE_FILE_MACHINE_UNKNOWN 0 > > * If you first include COFF.h and then...
2013 Aug 29
2
[LLVMdev] COFF.h and windows.h conflict
...rocessed into COFF:0. * If you first include Windows.h and then COFF.h, COFF.h won't work because it's enum will become: enum MachinTypes { 0 = 0x0 }; On Thu, Aug 29, 2013 at 6:03 AM, Nick Kledzik <kledzik at apple.com> wrote: > > On Aug 27, 2013, at 5:56 PM, Virgile Bello <virgile.bello at gmail.com> > wrote: > > Yes of course I understand it was done on purpose. > It's just that it makes it impossible to include COFF.h and Windows.h side > by side (which probably wasn't necessary until now). > > > I too am in the camp that it i...
2013 Aug 29
0
[LLVMdev] COFF.h and windows.h conflict
On Aug 28, 2013, at 7:05 PM, Virgile Bello <virgile.bello at gmail.com> wrote: > Right now, we have: > In COFF.h: > class COFF { enum MachineTypes { IMAGE_FILE_MACHINE_UNKNOWN = 0x0, ... }; }; > In windows.h: > #define IMAGE_FILE_MACHINE_UNKNOWN 0 > > * If you first include COFF.h and then windows.h, &g...
2013 Aug 29
0
[LLVMdev] COFF.h and windows.h conflict
...excluded. Alternately, could you include the lower level windows headers rather than the top level windows.h (e.g #include <winbase.h> but not <windows.h>) [I've never done Windows development, so I'm just stabbing in the dark here] -Nick On Aug 28, 2013, at 7:19 PM, Virgile Bello wrote: > It was happening in a few files using COFF.h in LLDB for the windows branch (Windows.h is required for some typedef over Mutex, thread, socket, etc...). > > As said before, I am currently checking if it could be avoided (probably some refactoring will be needed). However I was w...
2011 Jan 27
0
Curso R Gratis (Universidad Andres Bello)
...grupo de usuarios activos de R aquí en Chile.   Actualmente, estamos invitando a personas realmente interesadas relacionadas a la investigación y las ciencias, principalmente investigadores de centros de investigación.     Las pasadas semanas, hemos obtenido un espacio en la Universidad Andrés Bello, ubicada en . Si conoces personas interesadas en conocer acerca de R, por favor invítalos compartiendo esta información con ellos.   El curso de R básico se ha agendado en dos días, se confirmaran los días usando la siguiente dirección Web. También, el programa de curso puedes revisarlo en la sig...
2013 Aug 29
1
[LLVMdev] COFF.h and windows.h conflict
...uld you include the lower level windows headers rather than the top level windows.h (e.g #include<winbase.h> but not<windows.h>) > > [I've never done Windows development, so I'm just stabbing in the dark here] > > -Nick > > On Aug 28, 2013, at 7:19 PM, Virgile Bello wrote: > > >> It was happening in a few files using COFF.h in LLDB for the windows branch (Windows.h is required for some typedef over Mutex, thread, socket, etc...). >> >> As said before, I am currently checking if it could be avoided (probably some refactoring will be...
2011 Jan 28
0
Free R Course Chile / Curso Gratis R (Universidad Andres Bello)
...grupo de usuarios activos de R aquí en Chile.   Actualmente, estamos invitando a personas realmente interesadas relacionadas a la investigación y las ciencias, principalmente investigadores de centros de investigación.     Las pasadas semanas, hemos obtenido un espacio en la Universidad Andrés Bello, ubicada en Av.Republica 440, Santiago. Si conoces personas interesadas en conocer acerca de R, por favor invítalos compartiendo esta información con ellos.   El curso de R básico se ha agendado en dos días, se confirmaran los días usando la siguiente dirección Web. También, el programa de curso...
2013 Aug 28
2
[LLVMdev] COFF.h and windows.h conflict
...k at google.com> wrote: > IMO the fact that it uses the standard names from the COFF documentation > is a feature, not a bug. > > The elf and macho headers in the same directory use the standard > enumeration names, correct? > > > On Tue, Aug 27, 2013 at 5:41 PM, Virgile Bello <virgile.bello at gmail.com>wrote: > >> Hello, >> >> I noticed that if include\llvm\Support is included alongside Windows.h, >> there will be many define conflict leading to compilation errors, such as: >> >> COFF.h (enum): enum MachineTypes { IMAGE_FILE...
2009 Sep 07
7
How can I have the tests for my Rails app to be executed in a random order?
...executed in a random order? Is there a simple solution using rake? I already posted my question to stackoverflow (http:// stackoverflow.com/questions/1376267/ruby-executing-tests-in-a-random- order-with-rake) but the few responses I got were not able to solve the problem. Thanks a lot! Pietro Di Bello
2013 Aug 28
0
[LLVMdev] COFF.h and windows.h conflict
On Aug 27, 2013, at 5:56 PM, Virgile Bello <virgile.bello at gmail.com> wrote: > Yes of course I understand it was done on purpose. > It's just that it makes it impossible to include COFF.h and Windows.h side by side (which probably wasn't necessary until now). I too am in the camp that it is a feature to use the stand...
2013 Feb 08
1
vegdist Error en double(N * (N - 1)/2) : tama?o del vector especificado es muy grande
---------- Forwarded message ---------- From: <r-help-owner@r-project.org> Date: 2013/2/8 Subject: vegdist Error en double(N * (N - 1)/2) : tama?o del vector especificado es muy grande To: caro.bello58@gmail.com Message rejected by filter rule match ---------- Mensaje reenviado ---------- From: caro bello <caro.bello58@gmail.com> To: r-help@r-project.org Cc: Date: Fri, 8 Feb 2013 15:18:40 -0800 (PST) Subject: vegdist Error en double(N * (N - 1)/2) : tamaño del vector especificado es...
2013 Aug 28
0
[LLVMdev] COFF.h and windows.h conflict
IMO the fact that it uses the standard names from the COFF documentation is a feature, not a bug. The elf and macho headers in the same directory use the standard enumeration names, correct? On Tue, Aug 27, 2013 at 5:41 PM, Virgile Bello <virgile.bello at gmail.com>wrote: > Hello, > > I noticed that if include\llvm\Support is included alongside Windows.h, > there will be many define conflict leading to compilation errors, such as: > > COFF.h (enum): enum MachineTypes { IMAGE_FILE_MACHINE_UNKNOWN = 0x0, .....
2013 Aug 28
3
[LLVMdev] COFF.h and windows.h conflict
Hello, I noticed that if include\llvm\Support is included alongside Windows.h, there will be many define conflict leading to compilation errors, such as: COFF.h (enum): enum MachineTypes { IMAGE_FILE_MACHINE_UNKNOWN = 0x0, ... }; and winnt.h (same but define): #define IMAGE_FILE_MACHINE_UNKNOWN 0 Of course I could try to avoid to include both (but it's rather difficult and would require
2008 Apr 04
8
Grant tables
Hi, I need to use the grant table mechanism, but I can''t find any example regarding how to do it. Could you please provide some examples? Thanks Carlo -- È molto più bello sapere qualcosa di tutto, che sapere tutto di una cosa. Blaise Pascal _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2014 Dec 31
3
[LLVMdev] First class aggregates of small size: split when used in function call
Hello, In my LLVM frontend (CLR/MSIL), I am currently using first-class aggregates to represent loaded value types on the "CLR stack". However, I noticed that when calling external method taking those aggregate by value, they were not passed as I expected: %COLORREF = type { i8, i8, i8, i8 } declare i32 @SetLayeredWindowAttributes(i8*, %COLORREF, i8, i32) I call this function with
2010 Oct 21
2
[LLVMdev] mapping virtual registers
Hello, How can I map llvm variables (virtual registers) to their runtime locations (register/stack location)? Thank you. Regards, Abbey. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101021/1440ee33/attachment.html>
2005 Mar 01
0
[www.tuttinudi.it] Linsey
Amo le curve femminili, senza avere una particolare predilezione per questo o quel tipo di curva. Per intenderci, il seno mi piace sia che sia piccolo, sia che sia grande. La sensazione al tatto poi ? sempre diversa e foriera di una straordinaria variet? di emozioni. Di quelli piccoli ? bello disegnare il profilo con un dito (solitamente s'inturgidisce subito... mhhh) di quelli grandi mi piace la possibilit? d'impastare e dare forma. Lo stesso vale per il sedere. Mia sorella ama unicamente quelli all'ins?. Anche a me piacciono molto, ci? non toglie che non apprezzi un bel cu...
2011 Feb 28
0
R course in Santiago, Chile/ Curso de R en Santiago, Chile (Confirmado)
(English Below)Estimados,  Acabamos de confirmar el lugar y la fecha del primer curso de R en Santiago, Chile. El curso se realizará el día Miércoles 9 y Jueves 10 de Marzo en las dependencias de la Facultad de Recursos Naturales de la Universidad Andres Bello, ubicada en República 440 (Metro República) El proceso de inscripción del curso se realizará on-line en el link que les adjunto. Además, esta pagina web funcionará momentáneamente como el lugar de intercambio de materiales. Es decir, tendremos una sección especial para descargar libros en PDF con...
2006 Jun 20
2
about fw classifier
Hi all! On http://lartc.org/howto/lartc.adv-filter.html I read that a classifiers available bases the decision on how the firewall has marked the packet and on http://lartc.org/howto/lartc.qdisc.filters.html the following example: "tc filter add dev eth1 protocol ip parent 1:0 prio 1 handle 6 fw flowid 1:1" "iptables -A PREROUTING -t mangle -i eth0 -j MARK --set-mark 6" My
2019 Sep 24
2
help: boxplot multivariables
Hola Lorena: Lo prometido es deuda. Dije que miraría si iba este asunto: ggplot(data = dLSaa, aes(x = factor(AA), y = AD, colour = factor(AA))) + geom_boxplot() + xlab( "AA" ) + ylab( "AD" ) + labs(colour = "Leyenda") + ggtitle(label = "Comparación de AD frente a AA") Y este es el resultado: [image: