search for: shrunk

Displaying 20 results from an estimated 232 matches for "shrunk".

Did you mean: shrink
2008 May 26
2
SNV82: Not enough memory is available, and dom0 cannot be shrunk any further
...i All, I am running nevada 79 BFU''ed to 82. The machine is a Ultra 20 with 4GB memory. I have several Windows XP domU''s configured and registered. When ever I try to start the fourth domain I get an out of memory exception: Not enough memory is available, and dom0 cannot be shrunk any further Each of my domains only uses 256 so I thought there would be sufficient memory for 4 :-/ I am also using ZFS (maybe this is causing problems?) and have tried using the kernel flag: dom0_mem=2048M Any ideas? Thanks, Christian
2007 Dec 19
1
Error: Not enough memory is available, and dom0 cannot be shrunk any further
Hi, I compiled the xen-3.2 unstableand have booted successfully into dom0. When I try to start a domU, it gives me an error: [root@xx xx]# xm create -c /etc/xen/fedora.fc6.cse Using config file "/etc/xen/fedora.fc6.cse" Error: Not enough memory is available, and dom0 cannot be shrunk any further xm list gives: Name ID Mem VCPUs State Time(s) Domain-0 0 932 1 r----- 94.2 /etc/xen/fedora.fc6.cse: kernel = "/boot/vmlinuz-2.6.21-6.fc7xen" ramdisk = "/boot/initrd-2.6.21-6.f...
2007 Oct 28
5
v1.0.6 released
http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz.sig * IDLE: Interval between mailbox change notifies is now 1 second, because some clients keep a long-running IDLE connection and use other connections to actually read the mails. * SORT: If Date: header is missing or broken, fallback to using INTERNALDATE (as the SORT draft
2007 Oct 28
5
v1.0.6 released
http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz.sig * IDLE: Interval between mailbox change notifies is now 1 second, because some clients keep a long-running IDLE connection and use other connections to actually read the mails. * SORT: If Date: header is missing or broken, fallback to using INTERNALDATE (as the SORT draft
2013 Jun 24
2
Nomogram (rms) for model with shrunk coefficients
Dear R-users, I have used the nomogram function from the rms package for a logistic regresison model made with lrm(). Everything works perfectly (r version 2.15.1 on a mac). My question is this: if my final model is not the one created by lrm, but I internally validated the model and 'shrunk' the regression coefficients and computed a new intercept, how can I build a nomogram using that object? Please see the simplified code for details: library(rms) x1<-rnorm(100,1,1) x2<-rnorm(100,1,1) y<-rbinom(100,1,0.5) d<-data.frame(x1,x2,y) attach(d) ddist<-datadist(d) op...
2018 Mar 19
1
trivial typo in man/pretty.Rd
...d (revision 74426) +++ pretty.Rd (working copy) @@ -21,8 +21,8 @@ \item{min.n}{nonnegative integer giving the \emph{minimal} number of intervals. If \code{min.n == 0}, \code{pretty(.)} may return a single value.} - \item{shrink.sml}{positive numeric - by a which a default scale is shrunk in the case when + \item{shrink.sml}{positive numeric factor + by which a default scale is shrunk in the case when \code{range(x)} is very small (usually 0).} \item{high.u.bias}{non-negative numeric, typically \eqn{> 1}. The interval unit is determined as \{1,2,5,10\} times \cod...
2007 Nov 21
3
shrink a dataframe for plotting
...d of feeding plot() the original millions of rows, I'd rather shrink the original dataframe, using some kind of the following interpolation: -- split dataframe into chunks of N rows each, e.g. 1000 rows each -- compute average for each column -- issue one new row of those averages into the shrunk result Is there any existing package to do that in R? Otherwise, which R idioms are most effective to achieve that? Cheers, Alexy
2011 Aug 07
1
Using volumes during fix-layout after add/remove-brick
...t would be very useful to know if files can actually be safely written to a volume in this situation. This weekend I had to shrink a volume using "remove-brick", and I am currently waiting for "fix-layout" to complete before copying the files from the removed brick into the shrunk volume. The problem is that there are 2.5TB of data to copy, but fix-layout is still going after two days. I was banking on completing the shrinking operation over the weekend and making the volume available for use again on Monday morning. Therefore I would really like to know if I can star...
2006 Jan 04
17
Scriptaculous + Prototype shrunk to < 50Kb
Maybe I''m anal but I like fat-free JS, so I pulled the Proptotype and core Scriptaculous files into one single JS file at 49Kb. It''s "packed" so if you care about that kind of thing, it''s also "obfuscated". Download from my personal site at www.alistercameron.com. - Alister PS. Of course this is the current version as posted on the
2020 Feb 06
6
[PATCH RFC] virtio_balloon: conservative balloon page shrinking
...inker, "conservatively shrink balloon pages"); + enum virtio_balloon_vq { VIRTIO_BALLOON_VQ_INFLATE, VIRTIO_BALLOON_VQ_DEFLATE, @@ -796,6 +800,10 @@ static unsigned long shrink_balloon_pages(struct virtio_balloon *vb, { unsigned long pages_freed = 0; + /* Balloon pages only gets shrunk when the pagecache depleted */ + if (conservative_shrinker && global_node_page_state(NR_FILE_PAGES)) + return 0; + /* * One invocation of leak_balloon can deflate at most * VIRTIO_BALLOON_ARRAY_PFNS_MAX balloon pages, so we call it @@ -837,7 +845,11 @@ static unsigned long virtio_b...
2020 Feb 06
6
[PATCH RFC] virtio_balloon: conservative balloon page shrinking
...inker, "conservatively shrink balloon pages"); + enum virtio_balloon_vq { VIRTIO_BALLOON_VQ_INFLATE, VIRTIO_BALLOON_VQ_DEFLATE, @@ -796,6 +800,10 @@ static unsigned long shrink_balloon_pages(struct virtio_balloon *vb, { unsigned long pages_freed = 0; + /* Balloon pages only gets shrunk when the pagecache depleted */ + if (conservative_shrinker && global_node_page_state(NR_FILE_PAGES)) + return 0; + /* * One invocation of leak_balloon can deflate at most * VIRTIO_BALLOON_ARRAY_PFNS_MAX balloon pages, so we call it @@ -837,7 +845,11 @@ static unsigned long virtio_b...
2003 Jul 28
3
data manipulation: getting mean value every 5 rows
........ I would like to create a dataframe where I get the mean values, 5 rows at a time, of columns "number", while keeping the value in the other columns fixed to the vaules found in the first of the 5 rows (or whatever, it's the same for the 5 rows) so that the above would be "shrunk" to: temp line cage number 18 18 1 8153.2246 18 18 1 8463.3698 18 18 1 7666.0164 18 18 2 7891.2988 Any hints? Regards, Federico Calboli ========================= Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT...
2010 Mar 12
1
[PATCH] ocfs2: Always try for maximum bits with new local alloc windows
What we were doing before was to ask for the current window size as the maximum allocation. This had the effect of limiting the amount of allocation we could get for the local alloc during times when the window size was shrunk due to fragmentation. In some cases, that could actually *increase* fragmentation by artificially limiting the number of bits we can accept. So while we still want to ask for a minimum number of bits equal to window size, there is no reason why we should limit the number of bits the local alloc sho...
2015 Jan 28
3
Re: [PATCH v5 REBASE 0/4] virt-resize: add support for resizing logical
...hrinking > > partitions, and the fix is incuded in this version (patch 2). > > Hi, > > When support to resizing logical partitions is enabled, there is a > problem about resizing the extended partition: whether the extended > partition is automatically resized (expanded or shrunk) by virt-resize > based on the resizing of logical partitions? > > All the cases can be categorized as these two: > > 1. user doesn't explictly resize the extended partition. In this case it > seems reasonable to automatically expand the extended partition as well. >...
2013 Aug 16
4
How btrfs resize should work ?
Hi, I am working on system storage manager (ssm) trying to implement btrfs resize correctly, however I have some troubles with it. # mkfs.btrfs /dev/sda /dev/sdb # mount /dev/sda /mnt/test # btrfs filesystem show failed to open /dev/sr0: No medium found Label: none uuid: 8dce5578-a2bc-416e-96fd-16a2f4f770b7 Total devices 2 FS bytes used 28.00KB devid 2 size 50.00GB used 2.01GB path
2005 May 25
1
[Fwd: Re: [Fwd: Re: Start Windows application from another windows application]]
Hi Rein (and others), I shrunk one of my partitions, crated a new ext3, installed Fedora Core 3, downloaded the wine 20050419 rpm from winehq and installed that too. I then installed ptgui, panotools en autopano. autopano runs flawlessly and creates a good ptgui project file, but murphy hasn't left me. Now ptgui dumps. &...
2005 Oct 27
1
booting FreeBSD
Hi just a little question. Can I boot FreeBSD over network with pxelinux ?
2005 Oct 19
1
Problem using Quicken 2002, Fedora core 3, various Wine versions
...en we open the "Split Transaction Window", the window appears to go into an event loop. We are able to eventually break the loop by clicking on the drop down window menu. Sometimes it will break out with the window correctly sized, sometimes it will break out of the loop with the window shrunk to where it is unusable and it cannot be resized. I upgraded to 20050524 for fedora core 3, and the program hangs on launch. 20050524-fc1 behaves identically to the fc3 rpm package. I reverted to 20050111-fc1 and the program works fine. How have other people solved this problem? Thanks, David...
2006 Jan 06
3
Gianni
|Hi i''m New First Question: to use a script.aculo.us it needs to include prototype.js and scriptaculous.js.... but doesn''t work!!; instead ||using ||scriptaculous.shrunk of Alister Cameron, work; what are the expedient to use to include the ||scriptaculous.js ? Second question: in script.aculo.us |Ajax.Autocompleter <http://wiki.script.aculo.us/scriptaculous/show/Ajax.Autocompleter> : |new Ajax.Autocompleter("autocomplete", "autocomplete_c...
2007 Aug 21
4
Formatting Sweave in R-News
...egraphics[scale=1.0]{/home/arjun/sample.pdf} \newpage However, the r-news style package over-rides everything that I can set (including using the minipage option) to make my included PDF small sized. Part of the problem is that the R-news style specifies a two-column formatting, and so the PDF is shrunk to fit in one column. How can I, for just one page, over-ride the styles to include the PDF? Even if I hard-hack the graphics to be scaled up in size, that does not get rid of the vertical line that in between the two columns, and thus breaking my image. I realise that this is not an R problem, bu...