search for: abe

Displaying 20 results from an estimated 204 matches for "abe".

Did you mean: able
2016 Aug 04
4
help please: how to sort the contents of a "SymbolTableListTraits<GlobalVariable>"?
....e. compiler-inserted] copy ctor would have been wrong. I hope the one _I_ wrote is _right_. ;-) > I assume you can reproduce this in a unit test? Well, it doesn`t take a long program-under-compilation to make this fail. As before, I will paste something in after my sign-off. Regards, Abe ----- added near the end of "OptimizeGlobalVars" in "llvm/lib/Transforms/IPO/GlobalOpt.cpp", amongst many other things I added to that routine ----- struct GV_alignment_comparator { bool operator()(const GlobalVariable& L, const GlobalVariable& R) { retu...
2016 Jul 27
2
help please: how to sort the contents of a "SymbolTableListTraits<GlobalVariable>"?
...[so "std::move(...)" was not usable to solve the problem]. BTW: I am [and was] doing this in the context of "OptimizeGlobalVars" which is in "llvm/lib/Transforms/IPO/GlobalOpt.cpp". If anybody reading this can provide some assistance, I`d be much obliged. Regards, Abe struct GV_alignment_comparator { bool operator()(const GlobalVariable& L, const GlobalVariable& R) { return L.getAlignment() < R.getAlignment(); } }; // 'M' is a "Module &" /* this crashes BADLY... :-( M.getGlobalList().sort(...
2008 Mar 11
2
Problems mountine lustre thru an ib2ip gateway
Hello, I am trying to mount a lustre filesystem thru an ib2ip gateway. The MDS''s have infiniband connections. The client nodes are tcp/ip connections. I am able to route between the client nodes and the MDS''s. I have the following in /etc/fstab: abe-mds1 at o2ib0,abe-mds2 at o2ib0:/home/client /abehome lustre _netdev,flock 0 0 I get the following when trying to mount: [root at t3honest5 lustre]# mount -v /abehome verbose: 1 arg[0] = /sbin/mount.lustre arg[1] = abe-mds1 at o2ib0,abe-mds2 at o2ib0:/home/client arg[2] = /abehome arg...
2008 Mar 01
1
"callpark" feature in ABE?
Hi All - Anyone know if the "callpark" feature is in ABE? Is there a comprehensive list of the differences between ABE and the open source version? I've only seen a bullet-point chart which has no real detail. Thanks, Noah
2007 Dec 02
0
Dictaphone Freedom interface to Asterisk ABE
Hello list, I am trying to find a solution for interfacing a Dictaphone Freedom recorder. Currently, 4 POTS lines interface to the recorder, and the future will have the 4 lines coming into an ABE server on PRI. The Freedom system is using a standard amphinol connector to a punch down block, where the 4 lines, shared with a Nortel Meridian system, are located. The lines are analog, and per NICE, the Freedom system is a passive resident recording any traffic on the lines. I need to interf...
2016 Jul 25
7
grouping global variables by alignment: safe to do at LLVM level, or only at Clang level?
Dear all, Howdy! ;-) This is Abe of the Samsung Austin R&D Center`s compilers team. As an early part of a project that should help performance on some CPUs, I would like to cause global variables [at least from C and C++ programs] to be grouped together according to their alignment needs, which should help to slightly reduc...
2015 May 31
3
Installing TMAP in R Studio on Linux Mint
...s-unstable PPA: E: Unable to locate package libgeos-dev So I'm a little stuck at the moment. I'm trying to install TMAP on R-Studio, which requires a number of packages all of which rely on the libgeos-dev being in place, and I can't seem to find it. Many thanks again and in advance, Abed On 31 May 2015 at 16:20, Dirk Eddelbuettel <edd at debian.org> wrote: > > On 31 May 2015 at 09:48, Abed W. Ayyad wrote: > | Copied and sent from another address: > | > | > | On 31 May 2015 at 09:43, Abed W. Ayyad <imraualkays at gmail.com> wrote: > | > | >...
2010 Jul 08
2
How to regenerate passdb.tdb
...ailing attempt to store user with non-uid based user RID. Importing account for some_user...failed pdbedit -L -v does not really give me any information on "user RID", so I am confused how it can be fixed. Does the procedure make sense, or is there anything I am missing? Thanks, Abe
2009 Sep 02
0
Problem with Cisco 7911G and ABE 2.1.2C - randomly cannot DIAL
Guys, I assure you this is probably the most interesting and weird problem you have encountered (or definitely up there). I'm using ABE 2.1.2C and roughly 500 or so Cisco 7911G Phones. The following is what happens: When trying to dial a number from the cisco 7911G phone it may randomly get stuck on 'Dialing'. The SIP history on the asterisk end goes like this: 1. Cisco -> INVITE -> Asterisk 2. Asterisk -> Prox...
2009 Mar 25
3
anonymous dtrace?
...experts, I heard that there is something called anonymous dtrace that would still be running when I do a reboot. Basically, I have the following problem: The /boot/solaris/bootenv.rc file in my alternate boot environment is getting modified when I reboot the machine after doing luactivate <ABE>. It happens only on init 6, doesn''t happen when I do a simple reboot. The set bootpath property in this file is getting changed after the machine boots up for the first time in the newly created BE resulting in kernel panic (gives error: cannot mount root path /pci at 0,0/pci-ide at...
2005 May 29
4
Re: Digium Website Update: Asterisk Business Edition
Browsing through the new website... * Q - Does Asterisk Business Edition contain any additional features, fixes, or enhancements not found in the open source versions of Asterisk? * A - Digium remains committed to the open source model, and has based Asterisk Business Edition entirely on the open source tree. However, no single release of the Open Source version corresponds
2015 May 31
2
Installing TMAP in R Studio on Linux Mint
Copied and sent from another address: On 31 May 2015 at 09:43, Abed W. Ayyad <imraualkays at gmail.com> wrote: > To the R-Sig-Debian list: > > Hello, this is my first post to the list and I hope that making it short > and swift does not make it come across as abrupt or rude. > > I'm having trouble installing the TMAP package on R-Studi...
2007 Oct 26
1
ABE, Sangoma, T-1 no recognizing calls
Hello All, I have a setup of ABE on rPath linux,Sangoma A101D, and a T-1 line (Not PRI) which is all happily coexisting and all lights are green. The T-1 comes in from the world into a "Shark Box" which splits the T into 384K data and 6 channels voice. The data side is working great. The voice side, not so great....
2016 Aug 04
3
help please: how to sort the contents of a "SymbolTableListTraits<GlobalVariable>"?
...d exist only in the heap. Trying to sort a container of such objects doesn`t require me to contradict that advice. The code I have added only uses "GlobalVariable" via pointers and references, with the possible exception of the newly-added copy ctor. Thanks for your reply. Regards, Abe
2010 Jan 09
0
Activity after LU with ZFS/Zone working
Hy all, recently I upgraded to S10U8 a T5120 using LU. The system had a zones configured and at time of upgrade procedure the zones was still alive and worked fine. The LU procedure was ended successfully. Zones on the system was installed in a ZFS filesystem. Here the result at the end of LU (ABE-from: s10Aug2007, ABE-to: s10Set2009): # zfs list NAME USED AVAIL REFER MOUNTPOINT tank/zones/zone01 69.8M 52.9G 268M /opt/zones/zone01 tank/zones/zone01-s10Aug2007 5.74G 52.9G 5.74G /opt/zones/zone01-s10Aug2007 tank/zones/zone01-s10Aug2007 at s10Set2009...
2009 Dec 01
2
Issue with T38 fax Calls
Hi all.. Im using ABE C3.2.1 version and here Im having the following issue with respect to T38 fax calls. Somehow asterisk when it receives Session modification request with the T38 Codec, is not forwarding the request to the other end. Also asterisk is responding with 200 Ok to this RE INVITE with an audio line rath...
2008 Oct 17
2
interline and vstretch
Could someone tell me why -interline is required to run Oddworld: Abe's Oddysee? How does one turn off -vstretch? For someone to fix this, where would one look in Wine's source code? -- David Griffith dgriffi at cs.csubak.edu A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What...
2012 May 16
1
Evaluation without using the parent frame
I've been tracking down a survival problem from R-help today. A short version of the primary issue is reconstructed by the following simple example: library(survival) attach(lung) fit <- coxph(Surv(time, status) ~ log(age)) predict(fit, newdata=data.frame(abe=45)) Note the typo in the last line of "abe" instead of "age". Instead of an error message, this returns predictions for all the subjects since model.frame matches "age" by searching more widely. I'd prefer the error. I suspect this is hard -- I'd like it...
2016 Sep 29
2
[cfe-dev] improving test-suite`s FP subtests to be able to compare both exact-match outputs and more-optimized builds that may have different outputs due to FP optimizations
----- Original Message ----- > From: "Matthias Braun via cfe-dev" <cfe-dev at lists.llvm.org> > To: "Abe Skolnik" <a.skolnik at samsung.com> > Cc: "llvm-dev" <llvm-dev at lists.llvm.org>, "cfe-dev" <cfe-dev at lists.llvm.org> > Sent: Thursday, September 29, 2016 6:20:09 PM > Subject: Re: [cfe-dev] [llvm-dev] improving test-suite`s FP subtests to be a...
2016 Sep 29
2
[cfe-dev] improving test-suite`s FP subtests to be able to compare both exact-match outputs and more-optimized builds that may have different outputs due to FP optimizations
Dear all, I would like some help, please, with implementing Hal`s excellent suggestion, which I have reworded as below. Hal has confirmed a previous version of my rewording as a correct interpretation. [I made minor changes since then, e.g. for grammar.] [Abe wrote:] >> I think you [Hal] are suggesting something like this: >> 1) compile the program with FP fusion off, >> run the program, capture the output and save it, >> hash it and compare it against the reference hash. >> 2) if comparison against the...