search for: rvi

Displaying 20 results from an estimated 23 matches for "rvi".

Did you mean: avi
2025 May 08
2
customizing library locations for R in ubuntu
...b/R/library"????????????"/usr/local/lib/R/site-library" "/usr/lib/R/site-library" I don?t understand the reason why the ubuntu R version has the 2nd and 3rd ?site-library? locations. Can somebody explain? I tried to add a new library location with .libPaths(new="/home/rvi/Rownlib") This did not succeed in adding the new library. I then added the line: .libPaths(c("/home/rvi/Rownlib","/usr/lib/R/library" )) in the Rprofile.site file after running: sudo gedit /usr/lib/R/etc/Rprofile.site Even this made no difference. I noticed then that ubuntu...
2013 Aug 22
9
[PATCH v3 0/4] Nested VMX: APIC-v related bug fixing
...o boot L2 guest on APIC-v available machine. The main problem is that with APIC-v, virtual interrupt inject L1 is totally through APIC-v. But if virtual interrupt is arrived when L2 is running, L1 will detect interrupt through vmexit with reason external interrupt. If this happens, we should update RVI/SVI to make APIC-v working accordingly. Changes from V2: * Rebase on top of Xen upstream * Merge patch 1(Introduce interrupt source supporting) and patch 3(Add interface to update vPPR) into the place where there were used. * Reorder the patch set. Yang Zhang (4): Nested VMX: Check wh...
2025 May 15
1
customizing library locations for R in ubuntu
I did some googling and then ran: > bspm::shadowed_packages() ???? Package???????????????? LibPath Version?????? Shadow.LibPath Shadow.Version Shadow.Newer bspm????bspm /usr/lib/R/site-library?? 0.5.7 /home/ravi/rvi/Rlib??????????0.5.7????????FALSE I have a copy of bspm in the /usr/lib/R/site-library location as well, although that is not the 1st in my list of libPaths. This got included probably in a previous attempt in installing r2u. The package in the /usr/lib/R/site-library location has a lock icon assoc...
2025 May 15
1
customizing library locations for R in ubuntu
...i On Thursday, 15 May 2025 at 12:59:05 CEST, ravi <rv15i at yahoo.se> wrote: I did some googling and then ran: > bspm::shadowed_packages() ???? Package???????????????? LibPath Version?????? Shadow.LibPath Shadow.Version Shadow.Newer bspm????bspm /usr/lib/R/site-library?? 0.5.7 /home/ravi/rvi/Rlib??????????0.5.7????????FALSE I have a copy of bspm in the /usr/lib/R/site-library location as well, although that is not the 1st in my list of libPaths. This got included probably in a previous attempt in installing r2u. The package in the /usr/lib/R/site-library location has a lock icon assoc...
2025 May 09
2
customizing library locations for R in ubuntu
...absent on windows). This perhaps has priority over what > is in Rprofile.site. I see the following in Renviron: > R_LIBS_USER=${R_LIBS_USER:-'%U'} Don't edit the system-wide configuration files to change settings that are valid for your user only. Instead, set R_LIBS_USER=/home/rvi/Rownlib in /home/rvi/.Renviron and make sure that the directory exists. In addition to "R Installation and Administration" (section 6.2), these settings are documented in help(Startup) and help(.libPaths). -- Best regards, Ivan
2003 Jul 24
1
patch to use pipe if socketpair fails
Hi, if socketpair support has been compiled in but the host where rsync is run doesn't support it, you get error pipe failed in do_recv This patch makes rsync use pipe if socketpair fails. Yours, Harri J?rvi CC me if you reply to this thread since I'm not on the mailing list -------------- next part -------------- --- rsync-2.5.5/util.c Wed Mar 20 03:09:49 2002 +++ util.c Thu Jul 24 13:11:45 2003 @@ -71,6 +71,10 @@ #if HAVE_SOCKETPAIR ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd); + if...
2008 Oct 07
1
sieve multi-line parser bug
Dear sirs Thank you and congratulations for creating Dovecot. When a message header is split along several lines, it seems only the first one is parsed by sieve. The following header: From: "=?iso-8859-1?Q?Cotiatododia=20-=20O=20Jornal=20de=20Not=EDcias=20a=20Se?= =?iso-8859-1?Q?rvi=E7o=20de=20Cotia=20e=20Regi=E3o=2E?=" <newsletter at cotiatododia.com.br> was not discarded by the following rule (when it should have been due to "cotiatododia"): if anyof (header :contains ["From", "Reply-To", "To", "Cc"] ["cotia...
2008 Aug 10
2
Multiple Users
I could not find another thread that talked about this but all my searched pulled up manny manny results so I may have overlooked some. The problem I have is that I recently upgraded my ubuntu 7.10 to 8.04 and the new version of wine (1.1.2) has broken my setup. I run a machine with multiple user (5) and to simplify my life all there Microsoft software they needed was installed under wine and
2013 Jan 29
1
[PATCH v4 1/2] Xen: Fix live migration while enabling APICV
...iff --git a/xen/arch/x86/hvm/vmx/intr.c b/xen/arch/x86/hvm/vmx/intr.c index c5c503e..8306237 100644 --- a/xen/arch/x86/hvm/vmx/intr.c +++ b/xen/arch/x86/hvm/vmx/intr.c @@ -290,8 +290,8 @@ void vmx_intr_assist(void) vmx_set_eoi_exit_bitmap(v, pt_vector); /* we need update the RVI field */ - status &= ~(unsigned long)0x0FF; - status |= (unsigned long)0x0FF & + status &= ~(unsigned long)VMX_GUEST_INTR_STATUS_SUBFIELD_BITMASK; + status |= (unsigned long)VMX_GUEST_INTR_STATUS_SUBFIELD_BITMASK & intack.vector;...
2011 Sep 28
8
Getting the page fault count for domU
Hi How do we get the number of page faults done by a guest in a scheduling epoch? Assuming only one VCPU per guest, can I get it from vcpu_info[]? I hope this is not a vey trivial question :) thanks Chintu -- View this message in context: http://xen.1045712.n5.nabble.com/Getting-the-page-fault-count-for-domU-tp4847541p4847541.html Sent from the Xen - Dev mailing list
2012 Sep 14
0
[ PATCH v3 2/3] xen: enable Virtual-interrupt delivery
...manually, which is fully taken care of by the hardware. This needs some special awareness into existing interrupr injection path: For pending interrupt from vLAPIC, instead of direct injection, we may need update architecture specific indicators before resuming to guest. Before returning to guest, RVI should be updated if any pending IRRs EOI exit bitmap controls whether an EOI write should cause VM-Exit. If set, a trap-like induced EOI VM-Exit is triggered. The approach here is to manipulate EOI exit bitmap based on value of TMR. Level triggered irq requires a hook in vLAPIC EOI write, so that...
2009 Sep 18
3
Paravirtualization on VMware's Platform [VMI].
Hi, We ran a few experiments to compare performance of VMware's paravirtualization technique (VMI) and hardware MMU technologies (HWMMU) on VMware's hypervisor. To give some background, VMI is VMware's paravirtualization specification which tries to optimize CPU and MMU operations of the guest operating system. For more information take a look at this http://www.vmware.com/interfaces/paravirtualization.html In most of the benchmarks, EPT/NPT (hwm...
2009 Sep 18
3
Paravirtualization on VMware's Platform [VMI].
Hi, We ran a few experiments to compare performance of VMware's paravirtualization technique (VMI) and hardware MMU technologies (HWMMU) on VMware's hypervisor. To give some background, VMI is VMware's paravirtualization specification which tries to optimize CPU and MMU operations of the guest operating system. For more information take a look at this http://www.vmware.com/interfaces/paravirtualization.html In most of the benchmarks, EPT/NPT (hwm...
2008 May 15
7
PCI Passthrough using GART on AMD CPUs?
...D''s real IOMMU won''t be in chipsets until 2010 and you can''t get features like SLI on Intel''s chipsets. If I can use the GART on a Phenom say, then I can get a nVidia SLI board and have the benefits of the more advanced features already present in the Phenom like RVI. What do you guys think? I really appreciate your work - keep it up! Jeff _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2025 May 13
1
Bug#1105222: Boot loop on Debian 12.10.0 once installing XEN under Nested Virutalization on INTEL CPUs
Package: xen-hypervisor-4.17-amd64 Version: 4.17.5 Once XEN is installed on a Debian 12 Virtual Machine with Nested Virtualization enabled this will create a boot loop. Here is a transcript: * install Debian 12 under VMWare Workstation 17.6.3 (or another Hypervisor) * Host OS : Windows 10 (or Linux) * H...
2006 Oct 13
0
Live CD Build Error
...w another problem with chroot arises . when i chroot chroot $LIVE chroot: cannot run command `/bin/bash': No such file or directory and to display the ls $LIVE/bin/ alsaunmute dd gtar mknod rpm traceroute arch df gunzip mktemp rvi traceroute6 ash dmesg gzip more rview true ash.static dnsdomainname hostname mount sed umount awk doexec igawk mt setfont uname basename domainname ipcalc mv setserial unic...
2001 Nov 13
2
winex-source compiling
I got many errormessages like this: DIRECT_xxxxxxx not defined in gl.h or something very like. I would put the whole thing here, but I already deleted the winex directory. Could anyone help me? I have mandrake 8.1.
2020 Apr 17
4
[RFC] Improving FileCheck
...relocation-n64.s > LLVM :: MC/Mips/relocation.s > LLVM :: MC/RISCV/compressed-relocations.s > LLVM :: MC/RISCV/relocations.s > LLVM :: MC/RISCV/rv32b-aliases-valid.s > LLVM :: MC/RISCV/rv64b-aliases-valid.s > LLVM :: MC/RISCV/rva-aliases-valid.s > LLVM :: MC/RISCV/rvi-aliases-valid.s > LLVM :: Transforms/InstCombine/double-float-shrink-2.ll > LLVM :: Transforms/LoopFusion/cannot_fuse.ll > LLVM :: tools/llvm-objdump/ELF/dynamic-section-machine-specific.test > LLVM :: tools/llvm-readobj/ELF/RISCV/section-types.test > LLVM :: tools/llvm-rea...
2008 Aug 08
1
MGE Ellipse 500 cable config
I have trouble in getting communication work with MGE Ellipse 500. I bought it second hand and I don't have the cable for it. How do I know if it's the Serial or USB model? The serial number of the unit is: 769B16015. I suspect it is the serial version as the label next to the RJ11 stands "com port", but I can't be 100% sure. MGE Ellipse serial cable pinout can be found
2015 Dec 03
3
Function attributes for LibFunc and its impact on GlobalsAA
----- Original Message ----- > From: "James Molloy via llvm-dev" <llvm-dev at lists.llvm.org> > To: "Vaivaswatha Nagaraj" <vn at compilertree.com> > Cc: "LLVM Dev" <llvm-dev at lists.llvm.org> > Sent: Thursday, December 3, 2015 4:41:46 AM > Subject: Re: [llvm-dev] Function attributes for LibFunc and its impact on GlobalsAA > >