search for: idex

Displaying 14 results from an estimated 14 matches for "idex".

Did you mean: ide
2009 Jun 30
1
How to wrap my (working) code in a loop or function? (loop/function newbie alert)
...aframe). The code is: t0<-match(times$START_DT, data$DATETIME) #MAKE A VECTOR OF START TIMES t1<-match(times$STOP_DT, data$DATETIME) #MAKE A VECTOR OF STOP TIMES indices<-mapply(FUN = ":", t0, t1) #MAKES A LIST, EACH ELEMENT CONTAINS INDICES OF TIMES CORRESPONDING TO ONE WETLAND idex<-times[rep(1:nrow(times), sapply(indices, length)), c("POND_ID","OBS","REP","PID"), drop = FALSE] #MAKES A DATAFRAME tm<-data[unlist(indices), ] #FLATTENS THE LIST OF INDICES INTO A DATAFRAME extracted<-cbind(idex, tm) #BIND IDEX AND TM But now that...
2008 May 01
3
Adding script line give errors Help!
I am trying to add this script <script language="javascript" type="text/javascript" src="http:// www.expedia.com/pubspec/scripts/storefront/expe.sf.vertical.350.asp?pid=&aid="></script> To my idex page and it give me errors, when I delete this line <script src="js/lightbox/prototype.js" type="text/javascript"></script> it works, anybody cane help me to figure this out? This is the page I need to insert it to http://flyawaytrip.com and this one I already ins...
2002 Aug 20
2
feedback/help request
...ng quoting requirements to escape the "=", or blowing the parameter separators (I tried both spaces and commas, and one long quoted string)? Steve Brown sbrown7 at umbc.edu P.S.: The particular parameters that I have tried passing in have been just about all permutations of pci=noprobe, idex=noprobe, hdx=noprobe, and hdx=none (with the proper replacements of "x", of course).
2018 Jun 12
2
[PULL] vhost: cleanups and fixes
...THAT. No crazy "SG IO dma-mapping function crap". Just a plain array of a fixed size, pre-allocated for that virtio instance. - make it obvious that what you do in that sequence is ten instructions and no allocations ("Look ma, I wrote a value to an array and incremented the array idex, and I'M DONE") - then in that workqueue entry that you start *anyway*, you empty the array and do all the crazy virtio stuff. In fact, while at it, just simplify the VM interface too. Instead of traversing a random number of buddy lists, just trraverse *one* - the top-level one. Are yo...
2018 Jun 12
2
[PULL] vhost: cleanups and fixes
...THAT. No crazy "SG IO dma-mapping function crap". Just a plain array of a fixed size, pre-allocated for that virtio instance. - make it obvious that what you do in that sequence is ten instructions and no allocations ("Look ma, I wrote a value to an array and incremented the array idex, and I'M DONE") - then in that workqueue entry that you start *anyway*, you empty the array and do all the crazy virtio stuff. In fact, while at it, just simplify the VM interface too. Instead of traversing a random number of buddy lists, just trraverse *one* - the top-level one. Are yo...
2006 May 30
2
Slow caching
...P server: it just took a full five minutes to cache an attachment (350kb) in an email from [person]. In that time, I couldn't do anything else with mail; it was essentially locked. The user's inbox is in /var/spool/mail (where there are no idexes), there areindex files within his home directory: ./.imap/INBOX: total 1160 -rw------- 1 xyz users 60656 May 30 14:22 dovecot.index -rw------- 1 xyz users 891904 May 30 14:22 dovecot.index.cache -rw------- 1 xyz users 78428 May 30 14:22 dovecot.index.log -rw------- 1 xyz users 131920 May 2...
2018 Jun 15
0
[PULL] vhost: cleanups and fixes
...a plain array of a fixed >>> size, pre-allocated for that virtio instance. >>> >>> - make it obvious that what you do in that sequence is ten >>> instructions and no allocations ("Look ma, I wrote a value to an array >>> and incremented the array idex, and I'M DONE") >>> >>> - then in that workqueue entry that you start *anyway*, you empty the >>> array and do all the crazy virtio stuff. >>> >>> In fact, while at it, just simplify the VM interface too. Instead of >>> traversing a...
2018 Jun 11
2
[PULL] vhost: cleanups and fixes
On Mon, Jun 11, 2018 at 11:32 AM Linus Torvalds <torvalds at linux-foundation.org> wrote: > > So now we apparently do a GFP_KERNEL allocation insider the mm zone > lock, which is broken on just _so_ many levels. Oh, I see the comment about how it doesn't actually do an allocation at all because it's a single-entry. Still too damn ugly to live, and much too fragile. No way
2018 Jun 11
2
[PULL] vhost: cleanups and fixes
On Mon, Jun 11, 2018 at 11:32 AM Linus Torvalds <torvalds at linux-foundation.org> wrote: > > So now we apparently do a GFP_KERNEL allocation insider the mm zone > lock, which is broken on just _so_ many levels. Oh, I see the comment about how it doesn't actually do an allocation at all because it's a single-entry. Still too damn ugly to live, and much too fragile. No way
2006 Nov 28
5
considering dovecot
Hi all. I'm making a case to use Dovecot over Courier and would like some feedback. I've searched the web extensively and have been unable to find any hard information regarding Dovecot's IMAP performance. I've got some pressure to use Courier but my gut tells me that Dovecot should be much faster. In particular, I will have typical users with mailboxes exceeding 10,000
2013 Oct 18
0
[RFC/PATCH 3/3] Wire up MultiFS support.
...n -1; + + do { + if (iter->index == partition) + break; + } while (!pi_next(iter)); + + if (iter->status) { + dprintf("MultiFS: Request disk/partition combination not found.\n"); + goto bail; + } + dprintf("MultiFS: found 0x%llx at idex: %i and partition %i\n", + iter->abs_lba, iter->index, partition); + + *_iter = iter; + return 0; +bail: + pi_del(&iter); + return -1; +} + +/* + * Get a number till the delimiter is found. + * + * @ret: addr to delimiter+1 on success, NULL on failure. + */ +static co...
2017 Apr 11
4
v2v: Implement -i vmx to read VMware vmx files directly (RHBZ#1441197).
https://bugzilla.redhat.com/show_bug.cgi?id=1441197
2015 Jul 22
13
[PULL 0/8] MultiFS suppport for BIOS and EFI
So last week I was wondering if XFS was still working -- even with its last on-disk structure changes -- and it _suprisingly_ worked as expected. Right, now I can finally get rid of GRUB and use Syslinux to boot my Linux on EFI from a rootfs with xfs. Shit, I have two partitions (the first one being the required ESP) so there is no way to access the other partitions since because Syslinux does not
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address