search for: exterm

Displaying 20 results from an estimated 20 matches for "exterm".

Did you mean: extern
2003 Jul 21
2
Mozilla port.
I have a very strange problem with Mozilla since I updated it to the latest stable. The font used on the menus are rendered extermly badly such as lots of white spaces between the letters, large blocky font. The font option does not seem to change any of those fonts which makes me think it maybe something to do with X11. However, none of the other things I use have any font issues... Any idea what's wrong? -- yann@kier...
2010 Aug 08
2
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
...SNodes.cpp: #ifndef NDEBUG const SUnit *Addr = 0; if (!SUnits.empty()) Addr = &SUnits[0]; #endif SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); assert((Addr == 0 || Addr == &SUnits[0]) && Not only this code does not compile with NDEBUG set but it could trigger an extermely reliable assertion failure in some cases. One could think that this is too rare to happen but it does happen with my scheduler and I'm not quite embarassed because I can't do anything apart from hacking llvm source code. I feel that triggering an assertion failure just because the user m...
2006 Jul 09
1
Can''t find where to put non-index methods for appController
I have a couple of methods that I would like to not be available to the world as actions in my ApplicationController, but need to be visible to the methods in my ApplicationController. This is a dumb question yes, and I know the answer is extermely simple. Can I stuff them in another class somewhere? If so, what rails directory do I put it in? Thanks, -Jon -- Posted via http://www.ruby-forum.com/.
2010 Aug 08
2
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
...) > > Addr = &SUnits[0]; > > #endif > > SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); > > assert((Addr == 0 || Addr == &SUnits[0]) && > > > > Not only this code does not compile with NDEBUG set but it could trigger > an > > extermely reliable assertion failure in some cases. One could think that > > this is too rare to happen but it does happen with my scheduler and I'm > not > > quite embarassed because I can't do anything apart from hacking llvm > source > > code. I feel that triggering an a...
2010 Aug 08
0
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
...it *Addr = 0; >   if (!SUnits.empty()) >     Addr = &SUnits[0]; > #endif >   SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); >   assert((Addr == 0 || Addr == &SUnits[0]) && > > Not only this code does not compile with NDEBUG set but it could trigger an > extermely reliable assertion failure in some cases. One could think that > this is too rare to happen but it does happen with my scheduler and I'm not > quite embarassed because I can't do anything apart from hacking llvm source > code. I feel that triggering an assertion failure just bec...
2010 Aug 08
0
[LLVMdev] Usage of pointers to elements of a std::vector that might be reallocated
...s[0]; >> > #endif >> >   SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); >> >   assert((Addr == 0 || Addr == &SUnits[0]) && >> > >> > Not only this code does not compile with NDEBUG set but it could trigger >> > an >> > extermely reliable assertion failure in some cases. One could think that >> > this is too rare to happen but it does happen with my scheduler and I'm >> > not >> > quite embarassed because I can't do anything apart from hacking llvm >> > source >> > cod...
2007 Sep 27
5
Which Asterisk version to use?
...filling the same need - a one-step easy installation of Asterisk on a brand new PC. Am I missing something? Both have GUIs, but TriBox seems to be more complete with more features. Is this not correct? Thanks so much for any information to help set me on the right path. As you can see, I am extermely confused and lost in the maze of Asterisk docs and struggling to find a little headway here. Eric
2007 Dec 11
1
501 Syntax: HELO hostname - Mail problem
Hello... I am encountering a problem sending emails from Windows using an extermal smtp server. When attempting to send out the email, the following error is returned: 501 Syntax: HELO hostname I have checked the format of the emails, and they are ok. It seems it''s choking right at the begging of the connection to the smtp server, when my computer needs to identify...
2004 May 19
0
example of mulity company extension.conf needed.
...the one they came from. In other word sent to another company's menu. If it happens to be the first company it work fine. I do not have a defaultcontext= setup due to I want each company to have there own context. But I am using standard_macro for all the extensions. My extension.conf file is extermly large so it is not a good idea to post it here. ----------------------------------------------------------------- \ \____\_ Ariel Batista / / / Avionica, Inc. ------------------------------------------------------------------ abatista@avionica.com Ph: 786-544-...
2005 Apr 26
0
(no subject)
...l Ip eth2 | ---------- -------------------------- i want to put web and ftp traffic to eth2 and all other traffic to eth0 is it possible can anybody help me to do that here is my config iptables -t nat -A POSTROUTING -o eth2 -s 192.168.0.0/0 -d ! 192.168.0.0/16 -p tcp --dport 80 -j SNAT --Extermal IP on Eth2 iptables -t nat -A POSTROUTING -o eth0 -s 192.168.0.0/0 -d ! 192.168.0.0/16 -j SNAT --External IP on Eth0 213.32.208.248 0.0.0.0 255.255.255.248 U 0 0 0 eth0 213.32.208.248 0.0.0.0 255.255.255.248 U 0 0 0 ipsec0 192.168.5.0...
2005 Apr 26
1
2 internet connection problem :(
...al Ip eth2 | ---------- -------------------------- i want to put web and ftp traffic to eth2 and all other traffic to eth0 is it possible can anybody help me to do that here is my config iptables -t nat -A POSTROUTING -o eth2 -s 192.168.0.0/0 -d ! 192.168.0.0/16 -p tcp --dport 80 -j SNAT --Extermal IP on Eth2 iptables -t nat -A POSTROUTING -o eth0 -s 192.168.0.0/0 -d ! 192.168.0.0/16 -j SNAT --External IP on Eth0 213.32.208.248 0.0.0.0 255.255.255.248 U 0 0 0 eth0 213.32.208.248 0.0.0.0 255.255.255.248 U 0 0 0 ipsec0 192.168.5.0...
2007 Nov 29
0
[LLVMdev] LLVM and OpenMP
Devang Patel wrote: > Right now, one big missing piece in this puzzle is - dependence > analysis. Right. I was only trying to say that it shouldn't be very difficult to find these for/do loops which are interesting from the parallelization perspective (in general, not all for/do loops can be reconstructed). As for the dependence analysis, I need this piece for my project, and I am
2006 Mar 13
1
Failed installing zaptel
...fw ztmonitor ztspeed zttool zttest fxotune rm -f *.o ztcfg tzdriver sethdlc sethdlc-new rm -f zonedata.lo tonezone.lo libtonezone.so *.lo rm -f *.ko *.mod.c .*o.cmd rm -rf .tmp_versions rm -f gendigits tones.h rm -f libtonezone* rm -f tor2ee rm -f fxotune rm -f core rm -f ztcfg-shared fxstest [root@exterm-dayton zaptel]# make cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA -DZAPTEL_CONFIG=\"/etc/zaptel.conf\" -c -o gendigits.o gendigits.c cc -o gendigits gendigits.o -lm ./gendigits cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA -DZAPTEL_CONFIG=\"/etc/z...
2007 Nov 29
3
[LLVMdev] LLVM and OpenMP
On Nov 29, 2007, at 11:11 AM, Wojciech Matyjewicz wrote: > As you have noticed, loops aren't represented directly in the LLVM IR. > However, there are analysis passes which may be helpful to > "reconstruct" > them. For example: LoopInfo pass detects natural loops (as sets of > basic > blocks) and ScalarEvolution pass finds loop induction variables (and >
2006 Mar 13
1
Spam? Re: Failed installing zaptel
...zttool zttest fxotune rm -f *.o ztcfg tzdriver >sethdlc sethdlc-new rm -f zonedata.lo tonezone.lo libtonezone.so *.lo >rm -f *.ko *.mod.c .*o.cmd rm -rf .tmp_versions rm -f gendigits tones.h >rm -f libtonezone* rm -f tor2ee rm -f fxotune rm -f core rm -f >ztcfg-shared fxstest [root@exterm-dayton zaptel]# make >cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA >-DZAPTEL_CONFIG=\"/etc/zaptel.conf\" -c -o gendigits.o gendigits.c >cc -o gendigits gendigits.o -lm >./gendigits >cc -I. -O4 -g -Wall -DBUILDING_TONEZONE -DSTANDALONE_ZAPATA >-DZAP...
2006 Mar 13
2
Unknown signalling method 'pri_cpe'
...]: chan_zap.c:10223 setup_zap: Signalling must be specified before any channels are. Mar 13 20:44:26 WARNING[10829]: loader.c:414 __load_resource: chan_zap.so: load_module failed, returning -1 Mar 13 20:44:26 WARNING[10829]: loader.c:554 load_modules: Loading module chan_zap.so failed! [root@dayton-exterm etc]#
2008 Jun 24
11
Numeric Keyboard does not work Wine 1.0 + Putty 0.60
I have searched for this problem and found this link that says this problem was fixed (for WoW) in Wine 0.9.32 : http://bugs.winehq.org/show_bug.cgi?id=6323 Is anyone else having problems with the numeric keypad not showing numbers under Wine 1.0 ? I have everything working for putty except this crippling problem. I don't feel I can offer a terminal emulator solution where you cannot use
2018 Mar 14
2
truncation/rounding bug with write.csv
I don't see the issue here. It would be helpful if people would report their sessionInfo() when reporting whether or not they see this issue. Mine is > sessionInfo() R version 3.4.3 (2017-11-30) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Arch Linux Matrix products: default BLAS/LAPACK: /usr/lib/libopenblas_haswellp-r0.2.20.so locale: [1] LC_CTYPE=en_US.UTF-8
2010 Jan 13
65
ntpd under Xen Dom0 exhibits extremely high jitter/noise? runs stable/quiet under non-xen kernel.
On a selection of boxes, ntpd running in Xen Dom0 reproducibly exhibits extermely high noise/jitter. Switching back to -default, non-xen kernel ntpd runs with very low jitter/noise. Question -- how can I ''tame'' ntpd noise & jitter when running in Dom0? Is the problem a config issue, or a bug? Already reported this downstream; everybody''s &quo...
2010 Jan 13
65
ntpd under Xen Dom0 exhibits extremely high jitter/noise? runs stable/quiet under non-xen kernel.
On a selection of boxes, ntpd running in Xen Dom0 reproducibly exhibits extermely high noise/jitter. Switching back to -default, non-xen kernel ntpd runs with very low jitter/noise. Question -- how can I ''tame'' ntpd noise & jitter when running in Dom0? Is the problem a config issue, or a bug? Already reported this downstream; everybody''s &quo...