search for: trente

Displaying 20 results from an estimated 79 matches for "trente".

Did you mean: trenta
2006 Feb 07
2
Better i18n for Asterisk?
...k is very limited and most of the time does not work. For example, take voicemail: "message" "received" "at" "seven" "30" "am" might sound good in English. But: "message" "recu" "a" "sept" "trente" "apres-midi" sounds terrible in French, because you *need* to say "sept heure trente" and not "sept trente". Is there a way to fix this / improve the situation (other than write own voicemail AGI)? Cheers, Jean-Michel. -- Jean-Michel Hiver - http://ykoz.net...
2007 Nov 03
3
ANN: python-markdown2 -- another Python implementation of Markdown
Hello all, I'm announcing python-markdown2 -- another Python implementation of Markdown. (MIT license.) http://code.google.com/p/python-markdown2/ It should be a drop-in replacement for [markdown.py](http://www.freewisdom.org/projects/python-markdown/). It fixes some issues that I ran into with markdown.py [^1]. I believe that it is faster than markdown.py [^2] and on par or a little
2007 Nov 01
2
FLAC downloads available for new album produced by Trent Reznor
Sorry, I'm sure it's terribly offtopic, but thought it was extremely interesting that the new album[1] by Saul Williams, produced by Trent Reznor, is available for download for 5 bucks. It's nice to see FLAC getting some respect! ;) [1] http://en.wikipedia.org/wiki/The_Inevitable_Rise_and_Liberation_of_NiggyTardust! -- avuton -- Anyone who quotes me in their sig is an idiot. --
2015 Apr 19
2
[LLVMdev] function pointer alias analysis
Hi I see when LLVM builds the CallGraph SCCs. a function calling through a function pointer is conservatively assumed to call internal and external functions. Therefore, it has an edges pointing to the externalnode2, ie. the externalnode representing outgoing calls from this module. does LLVM have any function pointer analysis capabilities in the mainline ? Thanks, -Trent
2006 Jun 22
3
Partition results based on field
Hello all I''m using Ferret for a site wide search where I have several kinds of (similar) objects in a central index (using a "type" field containing the class name). This works great, and I can search all objects with one query. What I''d like to do now is to limit the results so that there will be a maximum of 10 (or 5 or whatever) results for each type.. I
2015 Jan 29
2
[LLVMdev] always-inline heuristic
I see that we do not inline a function marked as "always-inline" if it contains indirect branches ? what are the reasons behind this criterion ? Thanks Trent -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150129/92bf577a/attachment.html>
2006 Jul 22
0
Job opportunity for Rails developer in Stoke-on-Trent, UK
Hi, My company ( http://www.codeweavers.net/ ) is trying recruit a developer to produce dynamic data-driven websites. We are after people who understand and can apply: * the latest Web 2.0 technologies, including XHTML, CSS, JavaScript/ Ajax and Web Services * object-oriented programming * relational databases (we use PostgreSQL) * unit testing / test-driven development Most of our existing
2010 Mar 08
4
Shorewall Development Schedule
As Shorewall reaches maturity, it seems unlikely that the pace of development typical of the past 9 years will be sustained. Over that time, major releases have occurred approximately once per year; the last major release (4.4) was in August 2009. I do not currently have an active 4.5 development branch so it is very unlikely that we will see a 4.6 release this year. Going forward, I would
2010 Mar 08
4
Shorewall Development Schedule
As Shorewall reaches maturity, it seems unlikely that the pace of development typical of the past 9 years will be sustained. Over that time, major releases have occurred approximately once per year; the last major release (4.4) was in August 2009. I do not currently have an active 4.5 development branch so it is very unlikely that we will see a 4.6 release this year. Going forward, I would
2015 Apr 09
2
[LLVMdev] TBAA metadata
Hi I do not really understand why frontend generated TBAA metadata is needed for the TBAA pass to work. It seems to me that we can always go up the IR chain and find the base type from which the pointer is derived from. Take the following example. I know %0 = load i32, i32* %a, align 4, !tbaa !1 and store i32 %i.02, i32* %b, align 4, !tbaa !6 do not alias as their metadata !1 = !{!2, !3, i64
2004 Aug 12
4
Help with generating data from a 'not quite' Normal distriburtion
I would be very grateful for any help from members of this list for what might be a simple problem... We are trying to simulate the behaviour of a clinical measurement in a series of computer experiments. This is simple enough to do in R if we assume the measurements to be Gaussian, but their empirical distribution has a much higher peak at the mean and the distribution has much longer tails.
2015 Jan 17
3
[LLVMdev] loop multiversioning
Does LLVM have loop multiversioning ? it seems it does not with clang++ -O3 -mllvm -debug-pass=Arguments program.c -c bash-4.1$ clang++ -O3 -mllvm -debug-pass=Arguments fast_algorithms.c -c clang-3.6: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated Pass Arguments: -datalayout -notti -basictti -x86tti -targetlibinfo -no-aa -tbaa -scoped-noalias
2004 Sep 01
4
Stream File Type?
I'm a newbie. I've just installed Icecast2 and am streaming to it successfully via Nicecast (great app BTW). My problem is that the stream from Icecast2 comes through as an .m3u which does not correctly open on any of the Mac or Windows machines that I've tried. When broadcasting directly from Nicecast the file type is a .pls which both iTunes and WMP seem to deal with just fine
2013 Nov 09
1
What's a sensible log level?
trentbuck at gmail.com (Trent W. Buck) writes: > I had a samba 4.0.9 AD DC (no other DCs), and I'm trying to join Windows > hosts to it. Most either automatically migrated, or worked fine when I > changed them to "workgroup" and back again, as Administrator. > > Three of them aren't, the client side says > > The following error occurred attempting to
2012 Dec 03
2
Different results from random.Forest with test option and using predict function
Hello R Gurus, I am perplexed by the different results I obtained when I ran code like this: set.seed(100) test1<-randomForest(BinaryY~., data=Xvars, trees=51, mtry=5, seed=200) predict(test1, newdata=cbind(NewBinaryY, NewXs), type="response") and this code: set.seed(100) test2<-randomForest(BinaryY~., data=Xvars, trees=51, mtry=5, seed=200, xtest=NewXs, ytest=NewBinarY) The
2015 Apr 10
2
[LLVMdev] LLVM Alias Analysis
Hi Xin, Thank you for your reply! I have tried the 3 alias analyses you have mentioned on LLVM 3.5: 1) $ opt -globalsmodref-aa -aa-eval < xxx.bc > /dev/null (May-alias response 100%) 2) $ opt -tbaa -aa-eval < xxx.bc > /dev/null (May-alias response 100%) 3) $ opt -cfl-aa -aa-eval < xxx.bc> /dev/null (Unknown command line argument '-cfl-aa') It seems that they are not
2017 Mar 18
2
4.0.0 on March 2017 ?
Should not the 4.0.0 release be March _2017_ in the "Release Emails" section on http://llvm.org/ ? -Xin
2004 Sep 01
1
Stream File Type?
>Brett Trent wrote: > >>I'm a newbie. >> >>I've just installed Icecast2 and am streaming to it successfully via >>Nicecast (great app BTW). >> >>My problem is that the stream from Icecast2 comes through as an .m3u >>which does not correctly open on any of the Mac or Windows machines >>that I've tried. When broadcasting directly
2008 Oct 31
2
gPXE failing to compile
I'm compiling syslinux 3.72 as part of a buildroot project and found that the compile fails due to gPXE using printf in a way that throws warnings, while specifying "-Wall -Werror" in the makefile. I'm not sure if this problem is related to the environment I'm compiling in or if it is actually a bug, however the attached patch resolves it for me. -- Regards Nick
2004 Aug 10
1
Help with Normal Range Estimation for repated measures
I would be grateful if members of the list could point me in the direction of any code (preferably in R) that will allow me to estimate 95th percentiles from a set of repeated measurements. For example, we are interested in a clinical measurement where we have 3 measures for 14 subjects and 2 measurements on 24 subjects and single measurement on 36 subjects. We want to combine these to form a