search for: ety

Displaying 20 results from an estimated 62 matches for "ety".

Did you mean: etc
2010 Dec 21
4
labels and barchart
Hello, I'm wondering how to set a value of mar ( par( mar=c(.......)) ) in order to allow labels to be visible in barplot. Is there any relation between the number of characters in a label and the second value of mar? Look at my example. x <- seq(20, 100, by=15) ety <- rep( "Effect on treatment group", times=length(x)) barplot(x, names.arg=ety, las=1, horiz=TRUE) Labels are not visible. But trial and error method with the second mar argument I get what I want. par(mar=c(3,12,2,1), cex=0.8) barplot(x, names.arg=ety, las=1, horiz=TRUE) I would li...
2004 Oct 12
3
[LLVMdev] set_intersect and Visual C compiler
...ve started to work on fixing some of the problems. One thing that the compiler absolutely does not understand is the definition of set_intersect in include/llvm/ADT/SetOperations.h, and I am having a hard time understanding it myself. template <template<class S1ElTy> class S1Ty, class ETy, class S2Ty> void set_intersect(S1Ty<ETy> &S1, const S2Ty &S2) { for (typename S1Ty<ETy>::iterator I = S1.begin(); I != S1.end();) { const ETy &E = *I; ++I; if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 } } it's only used in two...
2004 Oct 12
0
[LLVMdev] set_intersect and Visual C compiler
...working together on this! :) > One thing that the compiler absolutely does not understand is the > definition of set_intersect in include/llvm/ADT/SetOperations.h, and I > am having a hard time understanding it myself. > > template <template<class S1ElTy> class S1Ty, class ETy, class S2Ty> > void set_intersect(S1Ty<ETy> &S1, const S2Ty &S2) { > for (typename S1Ty<ETy>::iterator I = S1.begin(); I != S1.end();) { > const ETy &E = *I; > ++I; > if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 > }...
2006 Jun 12
1
running BrilliantPhoto - installed fine
I was able to install Brilliant Photo, but when I try to run it I get this: dotancohen@ety:~/.wine/drive_c/Program Files/Brilliant Labs/BrilliantPhoto$ wine BrilliantPhoto.exe fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "IDT", bias=-180 and dst=1 to an entry in TZ_INFO. Please add appropriate entry to TZ_INFO and submit as patch to wine-patches fixme:ntdll...
2010 Mar 20
2
vtund error
Hello, I have two hosts with a tunnel closed by vtun, when I reboot a host, the other show the error bellow. unregister_netdevice: waiting for tun0 to become free. Usage count = 6 OS version: CentOS 5.4 Vtund version: vtun-3.0.2-1 some idea about? Thanks -- Daniel Bruno http://danielbruno.eti.br danielbruno at projetofedora.org
2020 Nov 11
1
Question about LLVM Rel10 llvm/IR/AsmWriter.cpp
...r (unsigned i = 1, e = CA->getNumElements(); i != e; ++i) { What happens when CA->getNumElements() is zero ? Infinite loop???? Wouldn't the following be better. i.e. safer: for (unsigned i = 1; i < CA->getNumElements(); i++) { Kind Regards James At about line 1429: Type *ETy = CA->getType()->getElementType(); Out << '['; TypePrinter.print(ETy, Out); Out << ' '; WriteAsOperandInternal(Out, CA->getElementAsConstant(0), &TypePrinter, Machine, Context); for (u...
2009 Sep 26
1
Warning in update
Hi, Recently I updated my CentOS 4.8 and while the updates has installed, yum show me this error some times: /sbin/ldconfig: file /usr/lib/libtcl8.4.so;48c8dd6a is truncated /sbin/ldconfig: File /usr/lib/libtcl8.4.so;48c78993 is empty, not checked. /sbin/ldconfig: File /usr/lib/libstdc++.so.6.0.3;48ccd312 is empty, not checked. thanks, -- Daniel Bruno http://danielbruno.eti.br
2004 Oct 12
5
[LLVMdev] set_intersect and Visual C compiler
...> > > One thing that the compiler absolutely does not understand is the > > definition of set_intersect in include/llvm/ADT/SetOperations.h, and I > > am having a hard time understanding it myself. > > > > template <template<class S1ElTy> class S1Ty, class ETy, class S2Ty> > > void set_intersect(S1Ty<ETy> &S1, const S2Ty &S2) { > > for (typename S1Ty<ETy>::iterator I = S1.begin(); I != S1.end();) { > > const ETy &E = *I; > > ++I; > > if (!S2.count(E)) S1.erase(E); // Erase eleme...
2012 Nov 09
2
[LLVMdev] [NVPTX] llc -march=nvptx64 -mcpu=sm_20 generates invalid zero align for device function params
...issue mentioned above. It > simply makes the same check seen in the same file for global > variables: > > emitPTXAddressSpace(PTy->getAddressSpace(), O); > if (GVar->getAlignment() == 0) > O << " .align " << (int) TD->getPrefTypeAlignment(ETy); > else > O << " .align " << GVar->getAlignment(); it's not quite the same because your patch uses the ABI alignment, while in this snippet it is the preferred alignment (which is usually the same as the ABI alignment, but may be bigger). > Could you...
2007 Feb 05
1
strange error in "robust" package
Hi everybody, I am using quite frequently the "robust" package and until now i never had any problems. Actually last time i used it was last Friday very successfully. Anyway, today anytime i want to use the function "fit.models" i get the following error even if i use the example form the help file: data(woodmod.dat) woodmod.fm <- fit.models(list(Robust =
2009 Sep 10
1
undefined method `protect_against_forgery?'
When I use plugin ''railstree'' (http://www.hashcode.eti.br/?p=91) as following code: node = Node.new :label => menu_item.name, :link_to_remote => { :base => self, :update => "container", :url => {
2005 Jul 11
1
Snom 360 NOTIFY syntax
I'm rolling out an installation with snom 360s in the near future. Simple SOHO configuration, 3 FXOs hanging off a TDM400B, 4 snom 360s, a snom 200, some variant of IAX softphone, and an IAXy or Sipura 2002. I have the 360's set up to subscribe and notify for the line use lights, which works like a charm for interoffice calling (between the 360's, anyway. The IAXy, 200 and,
2012 Nov 09
0
[LLVMdev] [NVPTX] llc -march=nvptx64 -mcpu=sm_20 generates invalid zero align for device function params
...t; >> simply makes the same check seen in the same file for global >> variables: >> >> emitPTXAddressSpace(PTy->getAddressSpace(), O); >> if (GVar->getAlignment() == 0) >> O << " .align " << (int) TD->getPrefTypeAlignment(ETy); >> else >> O << " .align " << GVar->getAlignment(); > > > it's not quite the same because your patch uses the ABI alignment, while > in this snippet it is the preferred alignment (which is usually the same > as the ABI alignment, but...
2004 Sep 12
2
Multiple MD 3200 (Intel 537) cards on a single system.
Has anyone been able to sucessfully use 2-4 X101P clones with Asterisk on a single system ? I'm using one Encore MD 3200 modem sucessfully, alongside a TDM400P (3 FXS, 1 FXO) and would like to be able to use up to 4 X101P on a single system. In most cases I'll have 2 or 3 instead. I understand all the issues with interrupt sharing and PC motherboard quality. Just need to know if any
2012 Nov 09
3
[LLVMdev] [NVPTX] llc -march=nvptx64 -mcpu=sm_20 generates invalid zero align for device function params
...s the same check seen in the same file for global >>> variables: >>> >>> emitPTXAddressSpace(PTy->getAddressSpace(), O); >>> if (GVar->getAlignment() == 0) >>> O << " .align " << (int) TD->getPrefTypeAlignment(ETy); >>> else >>> O << " .align " << GVar->getAlignment(); >> >> >> it's not quite the same because your patch uses the ABI alignment, while >> in this snippet it is the preferred alignment (which is usually the same >...
2009 Jan 26
2
Shell Script - Compare packages. rpm.
Hi, I need a script which makes the package compa??o rpm's through two text files ... Since a file is the output of the command *rpm-qa > pkg.out * And the second file is a list of several packages rpm's, multiple versions and architectures. My idea is to compare a package *x* file pkg.out with several packages *y* of the file update.out and know
2013 Jul 11
5
About NAS versus Samba
Hi there, Has anyone tried to configure a NAS server to authenticate users using a Samba PDC, or even a Samba4 DC (AD-compatible) or an IPA server? I'm evaluating replacing some Linux file server for a NAS product, but all them make me nervous when the vendor talks about "Active Directory support" and nothing else. In theory, many NASes are Linux boxes running samba, so there
2006 Jul 20
11
3 columns
Hi all, Not really sure what to put in the title so hope people still open this! What I want to do is produce something like this Col1 Col2 Col3 data1 data2 data3 data4 data5 data6 data7 data8 data9 data.. data.. data.. data.. data.. data.. data-n data-n+1 data-n+2 I can get the data back from my db
2012 Nov 09
0
[LLVMdev] [NVPTX] llc -march=nvptx64 -mcpu=sm_20 generates invalid zero align for device function params
...in the same file for global >>>> variables: >>>> >>>> emitPTXAddressSpace(PTy->**getAddressSpace(), O); >>>> if (GVar->getAlignment() == 0) >>>> O << " .align " << (int) TD->getPrefTypeAlignment(ETy); >>>> else >>>> O << " .align " << GVar->getAlignment(); >>>> >>> >>> >>> it's not quite the same because your patch uses the ABI alignment, while >>> in this snippet it is the preferred...
2012 Nov 09
0
[LLVMdev] [NVPTX] llc -march=nvptx64 -mcpu=sm_20 generates invalid zero align for device function params
...hing a patch that should fix the issue mentioned above. It simply makes the same check seen in the same file for global variables: emitPTXAddressSpace(PTy->getAddressSpace(), O); if (GVar->getAlignment() == 0) O << " .align " << (int) TD->getPrefTypeAlignment(ETy); else O << " .align " << GVar->getAlignment(); Could you please review and commit? Do you think it needs a test case? Thanks, - D. dmikushin at hp2:~/forge/align0> llc -march=nvptx64 -mcpu=sm_20 align0.ll -o - // // Generated by LLVM NVPTX Back-End // .version...