search for: alvaro

Displaying 20 results from an estimated 227 matches for "alvaro".

2001 Mar 07
1
lreadline
...novo at friedman R-1.2.2 > make | grep readline <snip> -L/usr/local/lib -lreadline I created symbolic libreadline.so.3 point to libreadline.so.4.1 and re-installed (deleting directory, untaring and ./configure), but it did not help. Other suggestions? Thanks in advance, _____________ Alvaro Novo SuSE 7.1 -=- Kernel 2.4.2-4 9:23pm up 3 days, 5:23, 3 users, load average: 0.01, 0.08, 0.20 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help"...
1999 Oct 19
2
Summary bug?
...x. :438600 ### should read 438649 or, to the point, > summary(hw04.dframe$area) Min. 1st Qu. Median Mean 3rd Qu. Max. 798 1349 1690 6962 2306 438600 ### should be 438649 > max(hw04.dframe$area) [1] 438649 > is.data.frame(hw04.dframe) [1] TRUE Alvaro A. Novo R-0.65.1 Linux SuSE 6.1 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subjec...
2010 May 08
3
Count cases in a list
Hi everybody, I would like to count how many times names in list L, nombreL, apear in list C, nombreC. Can I improve the next program? cuenta <- 0 topL <- length(nombreL) topC <- length(nombreC) for (i in 1:topL) { for (j in 1:topC) { k <- grep(noquote(nombreL[i]),nombreC[j])
2008 Jul 24
2
[LLVMdev] Erlang
Hello, How would you implement an Erlang feature such as the ultra-light processes? Is llvm prepared for similar situations? I would appreciate some insight on this. Thank you very much, .alvaro.castro.castilla.
1998 Nov 28
2
dyn.load and/or add new package (Windows 98)
...ut I believe that I have a package since it contains several files with extensions .s, .r, .q and so on. This quantile regression package was prepared by Prof. Roger Koenker for Windows (he uses Unix). Has this happened to you? Any ideas? I would really appreciate your help. Thanks a zillion, Alvaro Novo -- -- -- -- -- -- -- -- Alvaro A. Novo 2116 S. Orchard St., #304 Urbana, IL 61801 novo at uiuc.edu anovo at ysidro.econ.uiuc.edu http://www.students.uiuc.edu/~novo/Alvaro.htm 217-337-4893 -- -- -- -- -- -- -- -- -.-.-.-.-.-...
2009 Jan 14
6
Solaris 10 with xen 3.2 or previous
Hi, Was anyone able to run Solaris 10 10/08 as guest under a HVM domU Debian Etch (xen 3.0.3-1) or current Debian Lenny (xen 3.2-1)? In my case Solaris installation stops after boot kernel ; I can''t see anyhing after grub screen. I know that it is possible using Xen 3.3 (see [1]) but I don''t know if it possible with a previous Xen version Thanks, Álvaro [1]
2005 Sep 24
2
Send DTMF after call bridge
Hello everyone. Let me first begin by explaining what I'm trying to do... I have a calling card that has an access number and requires a PIN to be entered and then the number you want to dial, like normal calling cards. So what I have done is assign a local DID which when called, initiates a Dial to the access number of the calling card. Now, I'm having a hard time figuring out how to
2023 Apr 16
4
[PATCH net] virtio-net: reject small vring sizes
...s than there are descriptors in the ring. Furthermore, it leads to an immediate bug: The condition: (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) in virtnet_poll_cleantx and virtnet_poll_tx always evaluates to false, so netif_tx_wake_queue is not called, leading to TX timeouts. Signed-off-by: Alvaro Karsz <alvaro.karsz at solid-run.com> --- drivers/net/virtio_net.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 2396c28c012..59676252c5c 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_n...
2007 Jul 17
7
Asterisk 1.4, Unicall and Nextel...
I have a customer that is complaining that any call coming in from Nextel gives a fast busy. We are running Asterisk 1.4.7.1 with Zaptel 1.4.3 and all the MFC/R2 patches and libraries. All other calls go out and come in, just Nextel seems to have this problem. The phone company technician connected a PBX emulator on the line and that one could receive the calls from Nextel. The E1 is provided
2001 Dec 28
1
En: SETEUID
Please, I can`t see my messages. Can anyone confirm if it is reaching to the list? Thnaks! ?lvaro ----- Original Message ----- From: Alvaro Lassance <lassance@sidercom.com.br> To: <samba@lists.samba.org> Sent: Thursday, December 27, 2001 1:39 PM Subject: SETEUID > > > Hello! > > > > Anyone knows how I install the "seteuid method" in a RH 7.0? > > When I try to compile the Samba the Lin...
2008 Jul 24
0
[LLVMdev] Erlang
Hi Álvaro, Your question is too vague to answer with any accuracy. Could you be more specific? -bw On Jul 24, 2008, at 1:08 PM, "Álvaro Castro Castilla" <alvaro.castro.castilla at gmail.co m> wrote: > Hello, > > > How would you implement an Erlang feature such as the ultra-light > processes? > Is llvm prepared for similar situations? > > I would appreciate some insight on this. > > > Thank you very much, > > .a...
2023 Apr 02
2
[PATCH] virtio-vdpa: add VIRTIO_F_NOTIFICATION_DATA feature support
...cked virtqueues. This patch follows a patch [1] by Viktor Prutyanov which adds support for the MMIO, channel I/O and modern PCI transports. This patch needs to be applied on top of Viktor's patch. [1] https://lore.kernel.org/lkml/20230324195029.2410503-1-viktor at daynix.com/ Signed-off-by: Alvaro Karsz <alvaro.karsz at solid-run.com> --- drivers/virtio/virtio_vdpa.c | 20 ++++++++++++++++++-- include/linux/vdpa.h | 6 ++++++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/drivers/virtio/virtio_vdpa.c b/drivers/virtio/virtio_vdpa.c index d7f5af62dda..bdaf30f7f...
2023 May 02
1
[PATCH] vdpa/snet: implement the resume vDPA callback
The callback sends a resume command to the DPU through the control mechanism. Signed-off-by: Alvaro Karsz <alvaro.karsz at solid-run.com> --- drivers/vdpa/solidrun/snet_ctrl.c | 6 ++++++ drivers/vdpa/solidrun/snet_main.c | 15 +++++++++++++++ drivers/vdpa/solidrun/snet_vdpa.h | 1 + 3 files changed, 22 insertions(+) diff --git a/drivers/vdpa/solidrun/snet_ctrl.c b/drivers/vdpa/solidrun...
2010 Apr 30
2
drop last character in a names'vector
Hi, i have a vector filled with names: [1] Alvaro Adela ... [25] Beatriz Berta ... ... [100000] ... I would like to drop last character in every name. I use the next program: for (i in 1:100000) { ? ? ? ? ? ? ? ? ? ? ? ? ? largo <- nchar(names[i]-1) ? ? ? ? ? ? ? ? ? ? ? ? ? names[i] <- substring (names[i],1,largo] ? ? ? ? ? ? ? ? ? ? ? ?...
2023 Mar 05
1
[PATCH net] virtio-net: unify notifications coalescing structs
Unify virtio_net_ctrl_coal_tx and virtio_net_ctrl_coal_rx structs into a single struct, virtio_net_ctrl_coal, as they are identical. This patch follows the VirtIO spec patch: https://lists.oasis-open.org/archives/virtio-comment/202302/msg00431.html Signed-off-by: Alvaro Karsz <alvaro.karsz at solid-run.com> --- drivers/net/virtio_net.c | 15 +++++++-------- include/uapi/linux/virtio_net.h | 24 +++++++----------------- 2 files changed, 14 insertions(+), 25 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index fb5e68ed3e...
2009 Mar 09
1
[LLVMdev] addPassesToEmitFile
When you say 'static libraries' do you mean static libraries or shared objects (.so)... Because if you mean shared objects, then it could very well explain you crash. On Mar 9, 12:16 am, Álvaro Castro Castilla <alvaro.castro.casti... at gmail.com> wrote: > Well, I've been before hours trying this, but soon after I sent the > email I found something. However is quite intriguing. > I just changed the order of and the static libraries that I was linking. > > How can this be possible?? > &gt...
2023 Mar 20
3
[PATCH 0/2] vdpa/snet: support [s/g]et_vq_state and suspend
Add more vDPA callbacks. [s/g]et_vq_state is added in patch 1, including a new control mechanism to read data from the DPU. suspend is added in patch 2. Alvaro Karsz (2): vdpa/snet: support getting and setting VQ state vdpa/snet: support the suspend vDPA callback drivers/vdpa/solidrun/Makefile | 1 + drivers/vdpa/solidrun/snet_ctrl.c | 324 +++++++++++++++++++++++++++++ drivers/vdpa/solidrun/snet_hwmon.c | 2 +- drivers/vdpa/solidrun/snet_m...
2023 Apr 02
2
[PATCH resend 0/2] vdpa/snet: support [s/g]et_vq_state and suspend
Add more vDPA callbacks. [s/g]et_vq_state is added in patch 1, including a new control mechanism to read data from the DPU. suspend is added in patch 2. Alvaro Karsz (2): vdpa/snet: support getting and setting VQ state vdpa/snet: support the suspend vDPA callback drivers/vdpa/solidrun/Makefile | 1 + drivers/vdpa/solidrun/snet_ctrl.c | 324 +++++++++++++++++++++++++++++ drivers/vdpa/solidrun/snet_hwmon.c | 2 +- drivers/vdpa/solidrun/snet_m...
2008 Jan 16
2
redirecto_to within helpers
...posed almost only for formatting the view purposes but it''s the best way I have found to do what I want. If I call the redirect_to action in a helper I get the error: undefined method `redirect_to'' for #<#<Class:0x23aaedc>:0x23aaeb4> any solution for this? Thanks, Alvaro. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gma...
2007 Feb 04
5
Unicall/R2 for Asterisk 1.4 Available for TESTING
Im glad to let you know that finally I invested some time to make work Unicall in Asterisk 1.4, I must say not much testing could be done since I have no hardware available ( cards, servers ), however a friend was able to test it with a couple of calls with success, I need you to test this and report some feedback. The sources are available in: http://moy.ivsol.net/unicall/soft-switch/r1b1/