similar to: include lists

Displaying 20 results from an estimated 7000 matches similar to: "include lists"

2006 Jan 16
3
Max Number of #include statements
What's the maximum number of #include statments I can have in extensions.conf? I'm getting an error at the 11th one. I tried breaking twelve #include's into 2 different contexts, and still got the same error. These aren't nested includes... they're only one level deep. Thanks, Doug.
2003 Apr 19
1
Hidden voicemail feature - send message to pager
Hi, Browsing app_voicemail.c for something else I noticed that you can add a pager email address to the voicemail box configuration like 1000 => 1234,Ask Bjoern Hansen,ask@develooper.com, 1235551234@example.com to get a short notice about the new voicemail sent to 1235551234@example.com. Very neat. Feature request: It would be mighty cool to get the voicemails stored as mp3s; at least
2003 Apr 07
1
Mbox spool; dovecot rewriting and rewriting and rewriting
Hi, jaldhar recommended dovecot to me - http://www.askbjoernhansen.com/archives/2003/04/07/000286.html ... and so far it seems much nicer than the other imapds. yay. I use the OS X Mail.app client. I tested it with a test account with no problems, but trying to use it with my usual mail folders (~1.3GB; 120MB in the inbox) it's not working at all. It seems like dovecot keeps copying the
2011 Feb 23
1
Weighted Mean By Factor Using "BY"
Hello R folks, Reproducible code below - I'm trying to do a weighted mean by a factor and can't figure it out. Thanks in advance for your assistance. Mike data<-data.frame(c(5,5,1,1,1), c(10,8,9,5,3), c("A","A","A","B","B"))
2011 Mar 09
2
SQLDF - Submitting Queries with R Objects as Columns
Fellow R programmers, I'd like to submit SQLDF statements with R objects as column names. For example, I want to assign "X" to "var1" (var1<-"X") and then refer to "var1" in the SQLDF statement. SQLDF needs to understand that when I reference "var1", it should look for "X" in the dataframe. This is necessary because my SQLDF
2019 Jan 15
2
Function - replaceAllUsesWith
What does that mean for my code and the idea? I'm a really unexperienced LLVM user... -----Original Message----- From: Tim Northover <t.p.northover at gmail.com> Sent: Dienstag, 15. Januar 2019 15:19 To: Gaier, Bjoern <Bjoern.Gaier at horiba.com> Cc: Stefan Gränitz <stefan.graenitz at gmail.com>; Mehdi AMINI <joker.eph at gmail.com>; llvm-dev <llvm-dev at
2019 Jan 15
2
Function - replaceAllUsesWith
I could actually track down the cause of the problem: mainModue->getFunction("puts")->replaceAllUsesWith( llvm::ConstantExpr::getPointerCast( llvm::ConstantInt::get(llvm::IntegerType::get(context, 64), 0xF), mainModue->getFunction("puts")->getType() ) ); The problem is the line where I receive the type of the function "puts", it will crash the application
2006 Jul 13
4
Compiling the latest SVN checkout
Hello, I just checked out the latest version of speex and I want to compile it. The INSTALL file says that's easy: bjoern@deimos:~/studium/beleg/resources/svn/speex$ cat INSTALL Installing Speex is as easy as: % ./configure [--prefix=<install-path>] % make % make install Note that if you are using the code from SVN, you will need to run "autogen.sh" instead of
2006 Jul 13
0
Compiling the latest SVN checkout
How about installing the libtool development stuff? Otherwise, it may have something to do with automake 1.9 (I'm using 1.8). Jan-Marc Le jeudi 13 juillet 2006 ? 15:26 +0200, Bj?rn Thalheim a ?crit : > Hello, > > I just checked out the latest version of speex and I want to compile it. > The INSTALL file says that's easy: > >
2020 Aug 25
2
ORC JIT - Incorrect support for COFF files?
Hey Lang, That is really cool :D Is the creation of that table a Windows thingy or is this the way the LLVM handles it? Also… since it is COFF related – the never ending story of “finding my global constructors” first of all: Yes! I tried using the “initialize” function of LLVMJIT – however this only worked when I was loading a Module. When I added the object file (from the same source) the
2020 Aug 18
2
Get all symbols stored(?)in llvm::orc::ExecutionSession
Hi Bjoern, I’m a bit worried about taking symbols from modules, because some of the > symbols might change later when the code was compiled with the JIT Symbol names shouldn't change from the moment they're added to the JIT (i.e. after being fully mangled). Consistency of symbol names is a requirement for ORC to work. You could try hooking into the orc::Platform API for this:
2006 Apr 26
1
problems getting dovecot-LDA to work
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I've setup a test machine and have been playing with dovecot-1.0beta7 and dovecot-lda in preparation for a migration from 0.99.x series. (hopefully with the ability to support imap-quotas) anyways, i've got it all compiled fine (as far as I can tell) and following the directions on the wiki for setting up dovecot LDA with sendmail. (I've
2020 Nov 11
0
[cfe-dev] Running LLVMHello Pass from Clang(-cl)
Björn, Can you try adding -fno-integrated-cc1 to the command-line, see if you get more infos? De : cfe-dev <cfe-dev-bounces at lists.llvm.org> De la part de Eric Astor via cfe-dev Envoyé : November 11, 2020 8:39 AM À : Gaier, Bjoern <Bjoern.Gaier at horiba.com> Cc : Clang Dev <cfe-dev at lists.llvm.org> Objet : Re: [cfe-dev] Running LLVMHello Pass from Clang(-cl) The
2006 Jul 17
2
patch for compilation under MACOSX
I just compiled speex under my new intel iMac with MacOSX and get a compilation issue with the malloc.h header not being found. Here is a patch that avoid inclusion of malloc.h under MACOSX. (I'm using osx version 10.4 - Tiger) --- libspeex/kiss_fft.h 26 Jun 2006 02:22:34 -0000 1.1.1.1 +++ libspeex/kiss_fft.h 17 Jul 2006 15:15:53 -0000 @@ -5,7 +5,9 @@ #include <stdio.h>
2019 Jan 15
2
Function - replaceAllUsesWith
Hey Tim, Sadly I have currently only a release build of LLVM7 with no assertions turned on... So I just know that the line of code I posted is crashing. No output, no anything....just...Crash... Kind greetings Björn -----Original Message----- From: Tim Northover <t.p.northover at gmail.com> Sent: Dienstag, 15. Januar 2019 13:28 To: Gaier, Bjoern <Bjoern.Gaier at horiba.com> Cc:
2018 Aug 29
2
JIT client - late cross references
Hello Alex, This is an interesting approach! Thank you for that! I understand the basic idea but sadly... My skills in handling the IR are not very high, so I can't imagine where and when to replace the calls to b() with the trampoline. The only thing I can handle would be creating that trampoline variable. Also will this approach be a problem for really time critical tasks? Since I replace
2011 Feb 25
0
e1071's Naive Bayes with Weighted Data
Hello fellow R programmers, I'm trying to use package e1071's naiveBayes function to create a model with weighted data. See example below, variable "d" is a count variable that provides the # of records for the given observation combination. Is anyone aware of a "weight" argument to this method? I've been unsuccessful in my research. Thanks, Mike
2011 Feb 08
1
Naive Bayes Issue - Can't Predict - Error is "Error in log(sapply(attribs...)
Hey guys, I can't get my Naive Bayes model to predict. Forgive me if its simple... I've tried about everything and can't get it to work. Reproduceable code below. Thank you, Mike -- Michael Schumacher Manager Data & Analytics - ValueClick mike.schumacher@gmail.com * Functional Example Code from UCLA:
2019 Jun 27
2
Questions about moving from MCJIT to Orc JIT
Nice! Let me try to answer some questions, Before that I have to mention this is ORC version 2 APIs and this is where the project is moving forward. JITDylib is the symbol table, basically for a JIT Symbol it have an associated materializers, (you can think of it like an entity that generate the address for that symbol), Example: compiler are materializers. So to add symbols to your own JIT you
2005 Oct 11
1
jitter.c How to
Hello Jean-Marc, Hello speex-dev-people, Jean-Marc Valin wrote: > All I can suggest is having a look at my simple client at: > http://people.xiph.org/~jm/speexclient/ Unfortunately, this does not compile: <<<<< snip >>>>> bjoern@phobos:~/beleg/speex/speexclient-0.0-dev$ ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether