search for: langauge

Displaying 20 results from an estimated 66 matches for "langauge".

2014 Apr 18
3
Starting the gotour server on CentOS 6
Hey CentOS folks! I have an interesting issue with starting a server on a CentOS 6 KVM guest. The server (service) in particular is gotour, which is a web application created by Google and their Golang developers, intended to teach users the basics of using the Go programming langauge. When starting gotour, the program claims to be binding to port 12049, but the VM doesn't seem to be serving anything on that port. Upon checking the netstat output, I see a process bound to port 12049. It is definitley possible that the problem is with Go itself, but I'd like to rule out...
2008 May 12
2
[LLVMdev] Integer promotion of return node operand
...ve case - it tries to promote (during DAG construction phase - before any combine or legalize phase) the return node operand to i32. I have few doubts here: 1) If C language requires integer promotion of return value argument then should it not be done by the C language frontend. (I think LLVM is langauge independent). This is what happens when we use char in calculations. Clang promotes char in calculations to int and this promotion is visible in the disassembly. However return node operand promotion is not visible in disassembly but LLVM is doing that. 2) Also should the char not be promoted t...
2006 Feb 06
8
change languages from an IVR
A customer of mine wants an IVR where the first 3 choices are 1 English 2 Spanish 3 French I can build the IVR but how do I get the system prompts to then speak the selected langauge. For example, a caller has selected Spanish and so is routed to the Spanish part of the IVR. At some point he breaks out of the IVR to leave a VM. How does the system know to continue offering him Spanish? Thanks Mark -- Mark, G7LTT/KC2ENI Randolph, NJ http://www.g7ltt.com
2006 Jun 06
2
Language 'en_IN' was not recognized, defaulting to 'en_US'.
hey friends, I am using wine 0.9.12 on centos 4.0 kernel version is 2.6.9-34.0.1.EL. Whenever I try to run any application through wine I get the below warning and the application does not run. Langauge settings before were Indian English but later on I changed it to US_English but still I am getting the below error. Warning: Language 'en_IN' was not recognized, defaulting to 'en_US'. Warning: Language 'en_IN' was not recognized, defaulting to 'en_US'. Warning: Lan...
2009 May 30
2
Office 2003 Language Bar
I have just installed Office 2003 in Wine 1.0.1, Ubuntu 8.10 Intrepid 64-bit. Everything seems to be working fine with the install when running the applications; however the Office "Langauge Bar" has popped up on my desktop and I can't get it to go away. In the Windows install, a right click - menu navigation on the bar itself leads to the option to remove. Running in wine the menus display as black boxes. Does anyone know how to de-activate the Language bar in Wine? Thanks
2002 Mar 26
2
Channel coupling
Unfortunately nobody has answered to my question about the channel mapping. :-( Are there any new ideas how save the channel mapping in multichannel vorbis streams? In addition it might be interessting thinking about using channel coupling for storing the same content in different langauges (because many things like background music are supposed to be the same). But there would be the same problem: how to indicate the the channel mapping. Best regards, Tobias --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe f...
2012 Jun 29
3
estimating parameters of a model
...opment of an insect. Here I would like to know is if I could be able to find the parameters of the models what I will use in data analysis with R program. I have found some other softwares that can be used for parameter estimation but liscence would be needed, not open source. So I prefer to use R langauge if it is reliable for my data analysis. Thanks in advance, Myo -- View this message in context: http://r.789695.n4.nabble.com/estimating-parameters-of-a-model-tp4634808.html Sent from the R help mailing list archive at Nabble.com.
2008 May 13
0
[LLVMdev] Integer promotion of return node operand
...ng DAG construction phase - before any combine or legalize phase) > the return node operand to i32. > > I have few doubts here: > 1) If C language requires integer promotion of return value argument > then should it not be done by the C language frontend. (I think LLVM > is > langauge > independent). This is what happens when we use char in calculations. > Clang promotes char in calculations to int and this promotion is > visible > in the disassembly. However return node operand promotion is not > visible > in disassembly but LLVM is doing that. I think al...
2006 Feb 03
2
can asterisk to say chinese like say english
this is not just playback recorded voice. this is let asterisk say chinese. how to do this. there have any ideas? -- Jeffery iaxtel Num: 1-700-576-1311 fwdnet Num: 728150
2019 Aug 07
2
Trouble with ORCv2 Tutorial
Hi folks, I'm working on migrating a JIT compiler from the old ORCv1 JIT APIs to the newer ORCv2 ones and am having some trouble getting the code from chapter 1 of the "Building a JIT" [1] tutorial working properly. I have previously walked through the "My First Langauge" [2] tutorial and that went smoothly using the provided JIT class, but using the one from the JIT tutorial is giving me trouble. Kaleidoscope builds fine using Clang and LLVM version 9, but fails on an expression like this: ready> fun foo(c) c; Read function definition: define double @foo...
2004 Oct 24
0
[LLVMdev] Some question on LLVM design
...ress this in LLVM without an intrinsic. These could be made into LLVM instructions, but would provide no real advantage if we did so. 2. GC intrinsics: These are their own catagory because they require support for the LLVM code generator and GC runtime library to interpret. 3. Extended langauge intrinsics. These include llvm.memcpy and friends. Note that the intrinsics are different (more powerful) than the libc equivalent, because they allow alignment info to be expressed. > But then wouldn't malloc/free be intrinsics? Heh, good question. This is largely historical, but...
2009 Sep 01
1
[LLVMdev] accessing a bitcode library exported from C++ using the JIT
...ithout having to recompile the parser. We want compilation of the parser in order to "freeze" it but only as an option. One goal is to eventually get the macro functions of our language to the point where they are equivalent to the template functions of C++ so we can make a self-hosting langauge. Also, all of the action nodes in our example PEG parser are written in LLVM Assembly rather than only C++ (although they call functions from a C++ library) so I doubt it would work in Spirit2.1 without writing a syntax converter. The syntax converter may come in time but it's only optional....
2009 Nov 19
0
[LLVMdev] fastcc and ExecutionEngine::getPointerToFunction()
...'d later with calls into it from other > bitcode. Hello Kenneth, I'd like to be able to call the generated bitcode from lli as well as opt and then llc. I'm not sure that counts. All of the code would be generated internally to the language my team is going to be working on. Our langauge is extensible so we'll be adding to the syntax more often than to the linked bitcodes but definitely varargs will not be added. The first draft of all of the generated bitcode is translated to LLVM Assembly by LLVM-GCC but we will be hand-tuning the code to make it endian-neutral and hope to m...
2006 Aug 16
1
OGM and GStreamer
Well, actually most OGM files do have a subtitle track, often in multiple langauges. Also, re 2. Keyframe seeking in OGM is generally a bit rough because ogm files can contain almost any codec as the video track, usually xvid or divx. re 1. As a general rule you shouldn't be trying to make any more ogm files :) So chances are the ogg muxer is not accepting the connection,...
2009 Nov 19
2
[LLVMdev] fastcc and ExecutionEngine::getPointerToFunction()
> I agree with you OvermindDL1, > > SInce the language I'm going to be working on doesn't support varargs, it would be nice to be able to ditch the C calling convention for fastcc in all occurrances for an added speed boost.  I also will need to add my own library calling convention on one platform I plan on supporting which will be register-loaded as well. Are you going to be
2007 Jul 18
10
Rails - Mock going out of scope?
...ing queried, it then recursively calles language_name on it''s parent until one of them has the language. Then this gets returned. When I do this with a fixture, it works fine. Ie, a Database call can be made to a language table and I get the language name. In the code attached it has a langauge instance being mocked. I get the same result if I mock Language.should_receive(:find)... It SEEMS like the Mock is going out of scope on the recursive call to parent. The direct spec to the parent to get language name works fine. Any ideas? (the code below is slimmed down to the code needed to...
2009 Nov 19
1
[LLVMdev] fastcc and ExecutionEngine::getPointerToFunction()
...from other >> bitcode. > > Hello Kenneth, > > I'd like to be able to call the generated bitcode from lli as well as opt and then llc.  I'm not sure that counts. > > All of the code would be generated internally to the language my team is going to be working on.  Our langauge is extensible so we'll be adding to the syntax more often than to the linked bitcodes but definitely varargs will not be added.  The first draft of all of the generated bitcode is translated to LLVM Assembly by LLVM-GCC but we will be hand-tuning the code to make it endian-neutral and hope to m...
2010 Dec 21
2
[LLVMdev] complex numbers with LLVM
Hi, I'm working on a project to generate native code for a domain specific langauge where the user defines functions in the complex plane. This implies that I need to support complex numbers as a datatype with LLVM. Its fairly straightforward to create a struct of two floats (or doubles, etc.) and do the simple operations like add, subtract, multiply, divide, etc. However, thin...
2004 Oct 25
1
[LLVMdev] Some question on LLVM design
...>2. Stack and registers > > I'm not sure what you mean. In particular, the alloca instruction is used > to explicitly allocate stack space. Because it is not possible to take > the address of LLVM registers, this the mechanism that we use to allocate > stack space. Certain langauges do not need a stack, and thus do not need > to use alloca, other languages (e.g. C) do. If you clarify your question > I'll be able to give a more satisfactory answer. > So would it be possible to pass a pointer to a structure allocated in the stack to a called function? As to wh...
2019 Aug 08
2
Trouble with ORCv2 Tutorial
...I'm working on migrating a JIT compiler from the old ORCv1 JIT APIs to >> the newer ORCv2 ones and am having some trouble getting the code from >> chapter 1 of the "Building a JIT" [1] tutorial working properly. I >> have previously walked through the "My First Langauge" [2] tutorial >> and that went smoothly using the provided JIT class, but using the one >> from the JIT tutorial is giving me trouble. >> >> Kaleidoscope builds fine using Clang and LLVM version 9, but fails on >> an expression like this: >> >> ready&g...