0.3572695 Look Inside And Realize That Dream ... 8.830667E-03

2009-03-28 Thread iwantsex
5.414706E-02 Look Inside And Realize That Dream ... 0.4493563 0.3572695 Now Visit http://www.clicklinknow.com/dating/ 8.830667E-03

Re: any framework or tips for multi-tier applications

2009-03-28 Thread Christopher Wright
Qian Xu wrote: Hi All, We are redesigning a system (previously was written in C) using D. We use Boundary-Controll-Entity-Pattern. To wrap db table to entities is a very time consuming work. Is there any framework or tips for multi-tier applications in D? --Qian At times like this, I think of

Re: -profile and threaded code

2009-03-28 Thread downs
BCS wrote: > Hello BCS, > >> I have a program that runs an "easily" parallelizable loop. When I run >> it as a single thread it only takes about 10% longer than 2 threads >> (on a dual-core). I'm trying to track down the lossed time and am >> wondering if turning on -profile is even worth looking

Re: -profile and threaded code

2009-03-28 Thread BCS
Hello BCS, I have a program that runs an "easily" parallelizable loop. When I run it as a single thread it only takes about 10% longer than 2 threads (on a dual-core). I'm trying to track down the lossed time and am wondering if turning on -profile is even worth looking at. The concern is that i

-profile and threaded code

2009-03-28 Thread BCS
I have a program that runs an "easily" parallelizable loop. When I run it as a single thread it only takes about 10% longer than 2 threads (on a dual-core). I'm trying to track down the lossed time and am wondering if turning on -profile is even worth looking at. The concern is that it might not

Re: const argument

2009-03-28 Thread TSalm
Le Sat, 28 Mar 2009 12:21:52 +0100, Jarrett Billingsley a écrit: On Sat, Mar 28, 2009 at 6:12 AM, TSalm wrote: Hello, Is there a way to specifie a constant argument ( I would say an argument for which his value is evaluate at compile time ) For example, something like this : /* --

any framework or tips for multi-tier applications

2009-03-28 Thread Qian Xu
Hi All, We are redesigning a system (previously was written in C) using D. We use Boundary-Controll-Entity-Pattern. To wrap db table to entities is a very time consuming work. Is there any framework or tips for multi-tier applications in D? --Qian

Re: const argument

2009-03-28 Thread Jarrett Billingsley
On Sat, Mar 28, 2009 at 6:12 AM, TSalm wrote: > Hello, > > Is there a way to specifie a constant argument ( I would say an argument for > which his value is evaluate at compile time ) > > For example, something like this : > > /* CODE - */ > import tango.io.Stdout; > > void func(c

const argument

2009-03-28 Thread TSalm
Hello, Is there a way to specifie a constant argument ( I would say an argument for which his value is evaluate at compile time ) For example, something like this : /* CODE - */ import tango.io.Stdout; void func(const bool constArg) { static if (constArg) Stdout