search for: pravi

Displaying 20 results from an estimated 32 matches for "pravi".

Did you mean: ravi
2009 May 29
6
Problems starting Server 2008 x64 after added to samba domain
Hi I have a problem with Windows Server Ent (and Std) 2008 x64 running on IBM Blade Center. I can add it to the Samba domain but when I restart it, it comes to "Applying computer settings..." and if I connect with rdesktop I can see a screen saying "Please wait for the group policy client" and after some minutes it restarts. I can boot it in Safe mode, remove from domain
2006 Nov 21
2
[LLVMdev] EH and C++ intergation
Chris Lattner pravi: > On Tue, 21 Nov 2006, [ISO-8859-2] Žiga Osolin wrote: >> I was going through documentation and source lately, and I decided >> how to >> make llvm bytecode more compatible to C++: >> 1) thiscall sould be introduced, which would take N arguments and the >> first a...
2005 Dec 29
3
centos 4.2 update - help!
Hello I have installed centos 4.2 in dell poweredge 850. but I found that when I launch up2date to do a update action, it always get time out problem. just like error while retrieving package gtk 2-2.14.13-18 the message is time out any one can give some help Thanks and Regards Terry ************************************ E-mail Disclaimer ************************************ This e-mail
2003 Jul 18
2
pf
ei tuka imam edin pf conf obache pravi mnogo nomera, kato se pusne parvoto koeto e dropva paketi, timeoutva po serverite i t.n.. i speed-a e mnogo baven, vijte ako nqkoi moje da otkrie generalna greshka da reply :) vapreki che ne e freebsd-specific :P ne sym go pisal az a i ne sam mnogo mnogo zapoznat s pf zatova ako nqkoi moje da pomog...
2008 Oct 17
4
Vista Ultimate 32-bit install - VNC woes
Hi, I''m running Xen server based on OpenSuSE 11 (Xen version 3.2.1_16881_04-4.2). I have several Linux DomU''s that run perfect. Now I need a temporary Vista install (for testing) so I used ''virt-manager'' to install Vista. I used LVM based setup, Vista got 4GB of memory (at least temporary) and 2 CPU''s. Initially things look good - I get the console
2006 May 29
4
registration at Voipbuster times out
Hi, I am new here on this list, and have a problem of which I hope that somebody here can help me with it. I have a Voipbuster account, with which I would like to make phone calls via my Asterisk PBX. If I let X-Lite register directly at voipbuster.com, everything is OK, but if I let Asterisk register there, it says "registration for XXXXXX@sip.voipbuster.com timed out, trying again",
2006 Feb 21
2
Convertin rows of a matrix to a list
Hello! I would like to convert rows of a matrix to a elements of a list. #For example, if I have mat<-matrix(1:100,ncol=5, nrow=20) #I can do: list<-apply(mat,1,list) list #however this is not quite what I want. To get what I want, I have to do: list<-lapply(list,function(x)x[[1]]) list Is there a faster way? Best regards, Ales Ziberna
2007 Mar 05
1
Serial port problem - again
Hello. I'm new to this list. After days of reading docs and googling I can say that a lot of people is trying to use wine with serial ports, but no success story found? My problem is just like in bug1244 <http://bugs.winehq.org/show_bug.cgi?id=1244> which is almost 4 years old. If I run this app <http://appdb.winehq.org/appview.php?iAppId=4165> with WINEDEBUG=+relay , I
2006 Nov 17
3
gower distance calculation
Hello I have 2 rows in a matrix and I want to calculate the Gower Distance between the 2 , how can I do it? I searched and found nothing that can help me, and my program doesn't know the gdist function and I couldn't find it on the R help site. Can anyone help me plz Thank u all [[alternative HTML version deleted]]
2010 Mar 16
2
Unable to remove interface (5.4)
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 So here is my problem: I'm unable to remove an interface on CentOS 5.4 (/etc/init.d/network restart keeps enabling it again) Background: The system had several interfaces set (eth0 eth0.6 eth0.7 eth0.8) 1.) I added a test interface...eth0.9 2.) but later deleted the /etc/sysconfig/network-scripts/ifcfg-eth0.9 file (since i no longer needed it)
2006 Nov 21
0
[LLVMdev] EH and C++ intergation
On Tue, 21 Nov 2006, [ISO-8859-2] Žiga Osolin wrote: > I was going through documentation and source lately, and I decided how to > make llvm bytecode more compatible to C++: > 1) thiscall sould be introduced, which would take N arguments and the > first argument would always be the C++ "this" argument. This would > abstract llvm compiler dependant C++ code emittion. Sure.
2007 Feb 06
2
windows xp install + fedora core 6
I am trying to install windows xp in xen. The specs: Intel 2 duo E6400, motherboard Asus P5B. I can create a windows xp guest with virt-manager. The guest boots and the install starts. However after the first reboot, i see the bios screen shortly and after that a black screen. I have looked in tons of docs for the problem, but i never see a fix. How has the answer to my problem?
2006 Nov 21
1
[LLVMdev] EH and C++ intergation
Chris Lattner pravi: > On Tue, 21 Nov 2006, [ISO-8859-2] Žiga Osolin wrote: >>> Sure. Anton can give you ideas for this. >>> >> I think it should not be too difficult because you allow custom call >> conversions and this is quite easy to add, we only have to garantee that >> the...
2006 Nov 21
0
[LLVMdev] EH and C++ intergation
On Tue, 21 Nov 2006, [ISO-8859-2] Žiga Osolin wrote: >> Sure. Anton can give you ideas for this. >> > I think it should not be too difficult because you allow custom call > conversions and this is quite easy to add, we only have to garantee that > the backend will emit it. Right. >>> 2) the ret instruction should be able to return structs (as Chris has >>>
2006 Nov 06
0
[LLVMdev] LLVM code emittion and C++ compiler compatibily
On Mon, 6 Nov 2006, [ISO-8859-2] Žiga Osolin wrote: > The problem is this is not possible, because what I would compile to JIT > are actual classes. The integration of C++ and JIT code is very > important; for example we would create our own vtbls with JIT-ed code > addresses as the function call target. Ok. Realize that this ties you to a specific compiler version though. >
2006 Nov 21
2
[LLVMdev] EH and C++ intergation
I was going through documentation and source lately, and I decided how to make llvm bytecode more compatible to C++: 1) thiscall sould be introduced, which would take N arguments and the first argument would always be the C++ "this" argument. This would abstract llvm compiler dependant C++ code emittion. 2) the ret instruction should be able to return structs (as Chris has already
2008 May 16
11
Live migration not permanent?
Hi, I tried to do live migration from machine A to B. After the migration, machine A still had the record of the VM, though the VM was not running any more. Also, if I shut down the VM on machine B, its record on B would be gone --- I could not see it using "xm list" anymore. However, I can still start the VM on machine A using "xm start". Looks like the migration just move
2008 Sep 16
3
xen on openSUSE
Dear developers! I''ve found that recent xen releases cannot be simly run on openSUSE! The script /etc/xen/scripts/xen-network-common.sh makes some incorrect assumptions on the SuSE ifup script. Bridged xen networking only works if the script executes this branch: preiftransfer() { true } ifup() { false } ifdown() { false } Otherwise the xen networking scripts fail to put the
2006 Jan 17
2
clamscan --exclude problems
this is strange to me but maybe not to y'all I use clamscan --exclude in other places but this certain one will not work... let me put up my fstab before I explain k: # This file is edited by fstab-sync - see 'man fstab-sync' for details LABEL=/ / ext3 defaults 1 1 LABEL=/boot1 /boot ext3 defaults 1 2 none
2006 Nov 06
2
[LLVMdev] LLVM code emittion and C++ compiler compatibily
> On Mon, 6 Nov 2006, [ISO-8859-2] Žiga Osolin wrote: >> The other thing are the return types. I don't know (it is probably even >> not documented) how VC++ returns smart pointer (boost::smart_ptr), >> or any other type (other basics types, such as int, float, ... are >> probably returned into EAX as with GCC). Once again, we may >> need specific return values