Displaying 4 results from an estimated 4 matches for "firstlett".
Did you mean:
firstlast
2002 Feb 12
3
Strict Mode for Client?
Is there a way to specify "strict modes = false" on the client side?
I'm having trouble getting the client to accept the password file on Windows
2000, since rsync doesn't want the file to be other-readable, but this
concept doesn't map too well to Windows.
Alternatively, if I could simply set the proper permissions on the passfile,
that would suit me fine, but it seems
2007 May 13
1
Migrating to Maildir -> path
Hello,
I'm in the process of migrating to Maildir, and I wondered what would be an
acceptable path.
I want to do virtual-accounts only, so $HOME/Maildir/ is not an option.
I was thinking of /some/path/username at domain.tld/Maildir/
and later perhaps /some/path/(firstletter)/username at domain.tld/Maildir/
but perhaps Maildir/ is a bit too redundant here....
Anyone who could advice ?
Many thanks,
Wouter
2012 Jun 28
0
[LLVMdev] Counting instructions in MCJIT
...TedCode.html.
1 int compute_factorial(int n)
2 {
3 if (n <= 1)
4 return 1;
5
6 int f = n;
7 while (--n > 1)
8 f *= n;
9 return f;
10 }
11
12
13 int main(int argc, char** argv)
14 {
15 if (argc < 2)
16 return -1;
17 char firstletter = argv[1][0];
18 int result = compute_factorial(firstletter - '0');
19
20 // Returned result is clipped at 255...
21 return result;
22 }
The result from mcjit is
===-------------------------------------------------------------------------===
....
2012 Jun 27
3
[LLVMdev] Counting instructions in MCJIT
Hi there,
I wondered whether anyone could give me any advice about counting
assembly instructions when using MCJIT?
For performance regression testing I would like to be able to count the
number of instructions generated during the jit compilation of a given
module.
The Statistic class, as far as I understand, cannot collect this data
per-module (per-ExecutionEngine/per-MCJIT), and there is