search for: nubmers

Displaying 19 results from an estimated 19 matches for "nubmers".

2012 Aug 31
3
how to find the index of points selected from a scatter plot?
...from a scatter plot... This is all fine. But the problem is that the locator only returns the axis values of the selected points. Instead, I would like to get the index of these select points... The axis values are real-values so it's a bit hard for me to directly reverse-engineer the index nubmers.. How to do that? Thank you! [[alternative HTML version deleted]]
2010 Apr 29
2
Split a vector by NA's - is there a better solution then a loop ?
Hi all, I would like to have a function like this: split.vec.by.NA <- function(x) That takes a vector like this: x <- c(2,1,2,NA,1,1,2,NA,4,5,2,3) And returns a list of length of 3, each element of the list is the relevant segmented vector, like this: $`1` [1] 2 1 2 $`2` [1] 1 1 2 $`3` [1] 4 5 2 3 I found how to do it with a loop, but wondered if there is some smarter (vectorized) way
2008 Mar 17
2
FiberChannel, and EMC tutorial?
...6048000038794003753594D333843d0 ONLINE 0 0 0 c0t6006048000038794003753594D333844d0 ONLINE 0 0 0 but cfgadm shows disk names like: c4::5006048dc7dfb170 c5::5006048dc7dfb17e c7::5006048dc7dfb17e How do these numbers break down? I noticed the zpool or /dev/dsk nubmers all have a ''D'' in them, what is represented by the number after the ''D''? What is the number before the ''D'' made up from? I''m guessing at least part of the number befre the ''D'' comes from the WWN of the array? Does p...
2007 Mar 19
2
Wine Directx
Hi, I was starting Steam when I saw the survey of hardware. They didn't detected anything, but It said that I was using Directx 6.1 http://img217.imageshack.us/img217/2111/capturadatelanw3.png . Is this real or Steam is mistaken? Thanks, Eusebio.
2005 Jan 24
1
Nufone and Dialing Out
Good evening, I just signed up with Nufone and I am able to receive calls with no problem via my 800 number. Outgoing calls are not going through though. My extensions.conf is as follows: [nufone-out] exten => _91NXXNXXXXXX,1,SetCallerID(mynumber) exten => _91NXXNXXXXXX,2,Dial(IAX2/user:pass@switch-2.nufone.net/${EXTEN:1}) exten => _91NXXNXXXXXX,3,Congestion Whenever I try to
2007 Jul 10
0
how to register several clients with different number but using single authentication account ?
Hi all, I'm running some performance tests over my Asterisk,to simplify the test,I want to configure Asterisk to allow several clients registered with different nubmers but using single authentication account,so that Asterisk would not check the "to" "from" head when challenging registartion & invitation,.for example,I want Asterisk to allow following registration : ......... To:<sip:1234 at 192.168.1.42> From:<sip:1234 at 192.168...
2012 Jun 27
0
Re: [PATCH 2 of 4] xen, pod: Zero-check recently populated pages (checklast)
> # HG changeset patch > # User George Dunlap <george.dunlap@eu.citrix.com> > # Date 1340815812 -3600 > # Node ID ea827c449088a1017b6e5a9564eb33df70f8a9c6 > # Parent b4e1fec1c98f6cbad666a972f473854518c25500 > xen,pod: Zero-check recently populated pages (checklast) > > When demand-populating pages due to guest accesses, check recently > populated > pages to see
2004 Jun 04
0
slow setup time
...ile things were running fine and then I waited until my windows box didn't show up in findsmb (I have keepalive set to "yes", so I don't see why it times out at all). I then went into "My computer" which was very slow. When I look in ethereal, I see some interesting nubmers in the "SMB Service Resonse Time statistics": 43 Echo 1 1206.498 1206.498 1206.498 115 Session Setup AndX 10 0.00000 1265.183 127.83241 I'm running 3.0.5pre1 with LDAP. Any ideas what might be taking so long? Here's the global section of my smb.conf: [global] wor...
2003 Aug 04
3
Syntax for hiding caller ID but still passing ANI?
I have a question regarding the flags for hiding caller ID presentation: My customer has a requirement that they are able to specify if outbound calls (on a T100P) will have the caller ID displayed or not. This could be easily solved, of course, by not setting a caller ID when creating the outbound call. However, the PRI to which this T100P is connected _must_ see a valid caller ID, and the
2010 Nov 15
2
Zero truncated Poisson distribution & R2WinBUGS
I am using a binomial mixture model to estimate abundance (N) and detection probability (p) using simulated count data: -Each site has a simulated abundance that follow a Poisson distribution with lambda = 5 -There are 200 simulated sampled sites -3 repeated counts at each site - only 50 percent of the animals are counted during each count (i.e, detection probability p =0.5, see codes) We removed
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
Dear all, I am sending a patch for extending pdf device to embed popup text and web links. I implemented this feature by using annotation object, a interactive feature of pdf. You can see a sample code for using this feature in the following, and sample pdf is in
2009 Apr 24
0
Wine release 1.1.20
...Approach page faults on open dialog 15172 File Names with spaces seen as seperate files 15303 dragonshard crashes or presents a corurpted screen 15494 ddraw_test throws an exception when run 15557 GTA Trylogy can't install 15566 GTA 3 doesn't find DVD 15575 Word Pro table nubmers get reformatted 15603 Screen periodically erased in Starfleet Command II 15622 Everquest crashes 15630 Program LaTeXPiX crashes at startup 15764 Homeworld 2 Patch (homeworld2_update_en_10_11.exe) to v1.1: crash during setup 15881 Pharaoh - can't play on fullscreen 16613 A Vamp...
2017 Aug 17
4
unable to emit vectorized code in LLVM IR
I assume compiler knows that your only have 2 input values that you just added together 1000 times. Despite the fact that you stored to a[i] and b[i] here, nothing reads them other than the addition in the same loop iteration. So the compiler easily removed the a and b arrays. Same with 'c', it's not read outside the loop so it doesn't need to exist. So the compiler turned your
2012 Dec 04
3
[PATCH net-next 0/3] Multiqueue support for virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 04
3
[PATCH net-next 0/3] Multiqueue support for virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 05
3
[PATCH net-next v2 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 05
3
[PATCH net-next v2 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 07
6
[PATCH net-next v3 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version (hope the final version) of multiqueue (VIRTIO_NET_F_MQ) support in virtio-net driver. All previous comments were addressed, the work were based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Performance test show the aggregate latency were increased greately but may get some regression
2012 Dec 07
6
[PATCH net-next v3 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version (hope the final version) of multiqueue (VIRTIO_NET_F_MQ) support in virtio-net driver. All previous comments were addressed, the work were based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Performance test show the aggregate latency were increased greately but may get some regression