search for: adpater

Displaying 20 results from an estimated 34 matches for "adpater".

Did you mean: adapter
2007 Mar 28
7
wireless desktop phones
I am looking for completly wireless desktop phones. Until I realized we needed wireless i was going to use polycom soundpoint 501's. Any suggestions on a comparable wireless phone? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070328/88e22671/attachment.htm
2005 Jun 15
1
CellPhone BlueTooth adapater with Wireless Profile ??
All Any body know of a generic bluetooth adpater for the universal 2.5mm headset jack on a cell phone that supports the wireless profile *NOT* the headset profile I know jabra has the A210 http://www.jabra.com/JabraCMS/NA/EN/MainMenu/Products/Accessories/JabraA210/ JabraA210 but it only support the headset profile .. I am trying to shoe horn my...
2013 Jul 16
0
[LLVMdev] [Proposal] Parallelize post-IPO stage.
I have actually came up the 3 approaches to build the post-ipo object independently. The "3rd approach" here is the 1st solution in my original proposal. Almost all coworkers call it sucks:-) Now I accept it because the it has no way to be adaptive. Consider the scenario we compile the llvm compiler. We use "make -j16" for computer with 8 processor, each make-thread invoke
2015 Apr 20
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...but does not fix the memory or runtime issues. Small as they may be, why have them at a fundemental data structure? I was thinking about going further avoiding all duplication with a templated class derived with its own internal buffer storage. Rafael suggested a more modular approach, a derived adpater class adapter to a *simple* buffer (or nullptr for fully-dynamic operation) which also won't duplicate any information the buffer is dumb and has no state. That solution sounds simple, efficient and safe to use. The implementation would be actually simpler then raw_svector_ostream since all th...
2005 Apr 25
0
my samba configuration walktrought for Active directory
after many mind storming, I finally release this walktrought for configure samba in an active directory (W2k3) environement. I hope that it will be usefull for someone. This procedure can be followed in any debian woody system, I think that it can be used in user systems, but I don"t test it. The attached configuration files are site specific for me but if you read the samba doc, you can
2005 Apr 25
0
my samba configuration walktrought for Active directory (w/ conf files ; )
after many mind storming, I finally release this walktrought for configure samba in an active directory (W2k3) environement. I hope that it will be usefull for someone. This procedure can be followed in any debian woody system, I think that it can be used in user systems, but I don"t test it. The attached configuration files are site specific for me but if you read the samba doc, you can
2005 Feb 26
2
FRS & *: an actual business use
I've noticed a growing number of stores using FRS radios. It would make sense to interface (via soundcard/console driver, with the nessacary electrical conversion) a VOX FRS radio to asterisk to allow someone in the office to page/talk with people on the floor or warehouse. You could throw that call (ie, all the radios) into a meetme conference. Then, you could have people in the office
2005 Mar 07
0
compact flash, fat, reduced knoppix and syslinux
...I'm wanting to put a smaller version of knoppix on here. I came across miniknoppix here: http://www.inittab.org and decided to have a play around with that. So far I have opened up the ISO image and copied all the files out. I have put a boot sector onto the CF by putting the CF into the IDER adpater then booting the nachine off a win98 floppy. I did an 'fdisk /mbr' to but a boot sector on there and it seemed to go on without any complaints. Next, I copied the files I extracted from the ISO to the CF. Now the ISO uses isolinux but from what I understand I need to use syslinux (or can...
2013 Jul 16
0
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...s IPO compilation, > and the supports are embodied by two set of APIs/interfaces. > > o. Interface 1, those stuff named lto_xxxx(). > o. GNU gold interface, > The compiler interact with GNU gold via the adapter implemented > in tools/gold/gold-plugin.cpp. > > This adpater calls the interface-1 to control the IPO process. > It dose not have to call the interface APIs, I think it is definitely > ok it call internal functions. > > The compiler used to generate a single object file from the merged > IR, now it will generate multiple of them, one f...
2015 Apr 30
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...l as they may be, why have them at a >> fundemental data structure? >> >> I was thinking about going further avoiding all duplication with a >> templated class derived with its own internal buffer storage. >> >> Rafael suggested a more modular approach, a derived adpater class adapter >> to a *simple* buffer (or nullptr for fully-dynamic operation) which also >> won't duplicate any information the buffer is dumb and has no state. >> >> That solution sounds simple, efficient and safe to use. The implementation >> would be actually s...
2005 Mar 11
0
Sipura 2100 and Asterisk and Fax
...w test faxes to my eFax account went out fine even though I routed them through my Sixtel trunk. For the most part, when I try to fax out through Sixtel I get a microsecond chirp and then silence. At least, yesterday morning everything was working fine and I thought..."hey, must be the new adpater!" But no. By the afternoon it was back to the chirp and then silence. I switched to testing inbound via Voicepulse. Now that failed too! This had been working time and time again with a hitch with the old adapter? What the?????? Must be somewhere in the eight million and growing poorly do...
2013 Jul 16
2
[LLVMdev] [Proposal] Parallelize post-IPO stage.
A third approach is to decouple the backend compilation and parallelism strategy from the partitioning. The partitioning can spits out partition BC files and some action records in some standard format. All of this can be fed into some driver tools that converts the compilation action file into make/build file of the underlying build system of your choice: 1) it can simply a compiler driver that
2015 May 02
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...fundemental data structure? >> >> >> >> I was thinking about going further avoiding all duplication with a >> >> templated class derived with its own internal buffer storage. >> >> >> >> Rafael suggested a more modular approach, a derived adpater class >> adapter >> >> to a *simple* buffer (or nullptr for fully-dynamic operation) which >> also >> >> won't duplicate any information the buffer is dumb and has no state. >> >> >> >> That solution sounds simple, efficient and safe t...
2013 Jul 16
1
[LLVMdev] [Proposal] Parallelize post-IPO stage.
On Tue, Jul 16, 2013 at 1:49 PM, Shuxin Yang <shuxin.llvm at gmail.com> wrote: > I have actually came up the 3 approaches to build the post-ipo object > independently. > > The "3rd approach" here is the 1st solution in my original proposal. Almost > all coworkers call it sucks:-) > Now I accept it because the it has no way to be adaptive. > > Consider the
2015 Aug 12
2
SmallString + raw_svector_ostream combination should be more efficient
...as thinking about going further avoiding all duplication with > a > >>>>>> >> templated class derived with its own internal buffer storage. > >>>>>> >> > >>>>>> >> Rafael suggested a more modular approach, a derived adpater class > >>>>>> >> adapter > >>>>>> >> to a *simple* buffer (or nullptr for fully-dynamic operation) > which > >>>>>> >> also > >>>>>> >> won't duplicate any information the buffer is d...
2009 Apr 12
30
good progress on pci vga passthrough in xen-3.4-rc1
Platform : Nehalem, official Intel x58 with Core i7 920 (dx58so) Main (Console): Nvidia 9500 GT PCI Express Secondary: Nvidia 8800 GTS PCI Express Yes, I binned the ASUS P6T due to bad VT-d support in the BIOS. With the latest BIOS from Intel, the dx58so has enable/disable for VT-d, ICH FLR and Interrupt Mapping! Helped a lot with getting this working ... Dom0: 2.6.18-xen0 (built from
2015 May 22
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...gt;>>>> >> I was thinking about going further avoiding all duplication with a >>>>> >> templated class derived with its own internal buffer storage. >>>>> >> >>>>> >> Rafael suggested a more modular approach, a derived adpater class >>>>> adapter >>>>> >> to a *simple* buffer (or nullptr for fully-dynamic operation) which >>>>> also >>>>> >> won't duplicate any information the buffer is dumb and has no state. >>>>> >> >&gt...
2011 Aug 05
11
[Bug 39866] New: Incorrectly detects Analog outputs as TV out on Apple Cards
https://bugs.freedesktop.org/show_bug.cgi?id=39866 Summary: Incorrectly detects Analog outputs as TV out on Apple Cards Product: xorg Version: git Platform: PowerPC OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at
2015 May 02
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...ructure? >>> >> >>> >> I was thinking about going further avoiding all duplication with a >>> >> templated class derived with its own internal buffer storage. >>> >> >>> >> Rafael suggested a more modular approach, a derived adpater class >>> adapter >>> >> to a *simple* buffer (or nullptr for fully-dynamic operation) which >>> also >>> >> won't duplicate any information the buffer is dumb and has no state. >>> >> >>> >> That solution sounds simp...
2013 Jul 16
0
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...t; compilation, > and the supports are embodied by two set of APIs/interfaces. > > o. Interface 1, those stuff named lto_xxxx(). > o. GNU gold interface, > The compiler interact with GNU gold via the adapter implemented > in tools/gold/gold-plugin.cpp. > > This adpater calls the interface-1 to control the IPO process. > It dose not have to call the interface APIs, I think it is definitely > ok it call internal functions. > > The compiler used to generate a single object file from the merged > IR, now it will generate multiple of them, one...