search for: gether

Displaying 17 results from an estimated 17 matches for "gether".

Did you mean: gather
2007 Mar 06
2
How to utilise dual cores and multi-processors on WinXP
...swered easily, so let me refine it some more. The type of scripts that I'm dealing with are well suited to parallelisation - often they involve mapping out parameter space by changing a single parameter and then re-running the simulation 10 (or n times), and then brining all the results back to gether at the end for analysis. If I can distribute the runs over all the processors available in my machine, I'm going to roughly halve the run speed. The question is, how to do this? I've looked at many of the packages in this area: rmpi, snow, snowFT, rpvm, and taskPR - these all seem to have...
2014 Oct 01
4
[LLVMdev] New type of smart pointer for LLVM
On Wed, Oct 1, 2014 at 3:14 PM, Anton Yartsev <anton.yartsev at gmail.com> wrote: > Ping! > > Suggested is a wrapper over a raw pointer that is intended for freeing > wrapped memory at the end of wrappers lifetime if ownership of a raw > pointer was not taken away during the lifetime of the wrapper. > The main difference from unique_ptr is an ability to access the wrapped
2014 Oct 02
3
[LLVMdev] New type of smart pointer for LLVM
...n, it was just designed to replace the existing ugly fixes. > I even question whether we need a "maybe owning" smart pointer, or > whether this is just an indication that the underlying data structure > is *wrong*. The idea of "maybe" and "owning" going to gether, in any > sense, seems flat out broken to me from a design perspective, and so > I'm not enthused about providing abstractions that make it easier to > build systems with unclear ownership semantics. -- Anton -------------- next part -------------- An HTML attachment was scrubbed...
2014 Oct 08
2
[LLVMdev] New type of smart pointer for LLVM
...igned to replace the existing ugly fixes. >> >> I even question whether we need a "maybe owning" smart pointer, or >> whether this is just an indication that the underlying data structure is >> *wrong*. The idea of "maybe" and "owning" going to gether, in any sense, >> seems flat out broken to me from a design perspective, and so I'm not >> enthused about providing abstractions that make it easier to build systems >> with unclear ownership semantics. >> >> >> -- >> Anton >> >> > ------...
2014 Nov 13
2
[LLVMdev] New type of smart pointer for LLVM
...ly fixes. >>>> >>>> I even question whether we need a "maybe owning" smart pointer, or >>>> whether this is just an indication that the underlying data structure is >>>> *wrong*. The idea of "maybe" and "owning" going to gether, in any sense, >>>> seems flat out broken to me from a design perspective, and so I'm not >>>> enthused about providing abstractions that make it easier to build systems >>>> with unclear ownership semantics. >>>> >>>> >>>>...
2011 Jul 20
0
Cleveland Dot plots: tick labels and error bars
...has x and y axis tick labels on the bottom and left margins of the whole figure: dotplot(VADeaths, groups = FALSE) When I add scales = list(relation='free') to customize y ranges with ylim=ylimlist, each panel has its own y and x axis tick labels. I would like the figure panels to fit to gether like this simple figure. 2nd issue: I'd like to create standard error bars for each point. The most direct option I've observed is from: http://www.unc.edu/courses/2010fall/ecol/563/001/docs/solutions/assign2.htm It seems to use the following panel function to create 95% conf. intervals:...
2004 Dec 04
0
Problem connecting linux box to linux box in ad
Hi I have a customer running 2 RedHat 7.3 servers. These are running to gether with w2k and w2k3 machines in an Active Directory. I ran samba 2.0.7 and upgraded to 3.0.8 because of that the customer had to use restrict anonymous = 2 in windows, that stops the IPC$ share to be seen by anonymous connections. I configured Kerberos and could connect windows boxes to one of the...
2009 Jul 08
3
Asterisk and Skype
Hello All, can anybody tell me how can i integrate asterisk and skype users so that skype users can dial my asterisk number or dial internal dialplan form skype regars Dhaval -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090708/cccd4587/attachment.htm
2013 Feb 07
4
ATI/AMDs atikmpag.sys BSOD while vga passthrough
...dows then runs on it''s own VGA-Driver (the graphic card is currectly identified and this is an actual ati driver, so I''m not talking about some generic standard vga driver. I don''t know where is driver is coming from). I''ve attached an analysis file i''ve gethered from the bluescreen crash dump. I created it using BluescreenView. This is more for currectly identifieng the different BSODs, I guess. Some Infos: Kernel: 3.7.4 kernel.org kernel without patches Xen: latest xen-unstable (but also tested with xen-4.2-testing) Processor: AMD Phenom 1090T Mainboa...
2005 Aug 07
8
Ajax forms and redirects
Here is an example that seems perfect for Ajax that I have not seen implemented nor can figure out how to do it. I am hoping someone can give me some pointers. On the sign-up page, I would like to do my validations (password length, username uniqueness,etc ) Ajax-style. But if all validates, then redirect to the success page. The combining of redirection to a new page with Ajax is throwing me.
2009 Mar 16
0
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
On Sun, Mar 15, 2009 at 10:52 PM, Aaron Gray < aaronngray.lists at googlemail.com> wrote: > I like the idea of a generic MachineCodeWriter, although I prefer the >> name 'ObjectFileWriter'... >> > > Thats much more descriptive of the functionality. > Sorry, I disagree actually the MachineCodeEmitter or the 'MachineCodeWritter' does not do any file
2009 Mar 16
2
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
...ed to this buy looking at what you say it is > important to get it right. > 'ObjectCodeEmitter' looks like the right description to parallel the MachineCodeEmitter. Its emitting object code to a data stream (which is an object file section) and not direct to a file. I will knock to gether an ObjectCodeEmitter that is call compatible with the MachineCodeEmitter and wtites to a std::vector<byte>, so it could replace the MachineCodeEmitter class generically in usage. This needs alot of thought and to get things right, and provide the right incremental patches to get this accepte...
2014 Nov 13
2
[LLVMdev] [cfe-dev] New type of smart pointer for LLVM
...t;>>> >>>>> I even question whether we need a "maybe owning" smart pointer, or >>>>> whether this is just an indication that the underlying data structure is >>>>> *wrong*. The idea of "maybe" and "owning" going to gether, in any sense, >>>>> seems flat out broken to me from a design perspective, and so I'm not >>>>> enthused about providing abstractions that make it easier to build systems >>>>> with unclear ownership semantics. >>>>> >>>>&...
2009 Mar 15
3
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
>I like the idea of a generic MachineCodeWriter, although I prefer the >name 'ObjectFileWriter'... Thats much more descriptive of the functionality. >I think we need to take a hard look at which bits of the >Writer/Emitter infrastructure are needed for what tasks (Object File >Emittion, JIT, etc.) and make sure that our abstractions are flexible >enough... I would
2010 Dec 12
1
Atcom IP-4B ISDN IP PBX?
Hello For customers who need a small IP PBX to handle up to four ISDN lines (in France, so I guess that means EuroISDN) instead of a PC + Asterisk and an ISDN gateway box, has someone already played with the Atcom IP-4B? www.atcom.cn/IP-BRIM.html Any feedback appreciated.
2004 Sep 18
8
Attacks on ssh port
Hi, Is there a security problem with ssh that I've missed??? Ik keep getting these hords of: Failed password for root from 69.242.5.195 port 39239 ssh2 with all kinds of different source addresses. They have a shot or 15 and then they are of again, but a little later on they're back and keep clogging my logs. Is there a "easy" way of getting these ip-numbers added to
2006 Feb 02
1
Re: Contents of Asterisk-Users digest...
...> > > > To UNSUBSCRIBE or update options visit: > > > > > http://lists.digium.com/mailman/listinfo/asterisk-users > > > > > > > > > > > > > > > > ________________________________ > > > > Bring words and photos to gether (easily) with > > > > PhotoMail - it's free and works with Yahoo! > > > > Mail._______________________________________________ > > > > --Bandwidth and Colocation provided by Easynews.com -- > > > > > > > > Asterisk-Users mailing list &...