Displaying 2 results from an estimated 2 matches for "reposnse".
Did you mean:
reponse
2004 Jul 20
2
Newbie question: configuration for virtual users
Hi!
I'm looking forward to deploying dovecot as an IMAP server. I did some
research into the various options and it looks like dovecot is the right
daemon for me. I'll be using it with Exim.
I am running a few tens of users on my server, most of them small
numbers of people part of a small company, e.g. example.com.
At present I have exim delivering to mbox in each virtual user's
2008 Apr 10
1
Computing time when calling C functions - why does an extra function call induce such an overhead?
Dear list,
I am a little puzzled by computing time in connection with calling C functions. With the function mysolve1 given below I solve Ax=B, where the actual matrix operation takes place in mysolve2. Doing this 5000 times takes 3.51 secs. However, if I move the actual matrix inversion part into mysolve1 (by uncommenting the two commented lines and skip the call to mysolve2) then the