search for: siz

Displaying 20 results from an estimated 50 matches for "siz".

Did you mean: size
2011 Sep 15
1
Colour code y-axis labels on a dot plot
...ear R helpers I would like to be able to colour code the y-axis labels on a complex dot plot by a variable known as company (of which there are only two). The code is below and data attached. Thanks MarkM library("lattice") library(latticeExtra) # for mergedTrellisLegendGrob() # set size of the window windows(height=10, width=7,rescale=c("fixed")) ##read the data to a variable #---------------------------------------------------------------------------------------- Cal_dat <- read.table("Calibration2.dat",header = TRUE,sep = "\t",) ## set up plo...
2011 Sep 10
0
Mutiple vertical reference lines with a dotplot
...;,"yellow") # Circles squares and diamond symbols for the years sym.pat<-c(19,20,21) ##set up the plot key #---------------------------------------------------------------------------------------- # key for commodities # defaults bord.col<-"grey90" trans.fac<-0.5 sym.siz<-1.8 key1 <- draw.key(list(text=list(levels(Cal_dat$Commodity)), title="Ore type", border = bord.col, background = bord.col, alpha.background=trans.fac, just=1, points=list(pch=22, cex=sym.siz, fill=col.pat, col...
2006 Dec 30
0
[809] trunk/wxsugar/lib/wx_sugar/layout.rb: Fix default sizers to arrange_vertically, add padding on specified sides
...t;!-- #msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } #msg dt { float: left; width: 6em; font-weight: bold; } #msg dt:after { content:'':'';} #msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } #msg dl a { font-weight: bold} #msg dl a:link { color:#fc3; } #msg dl a:active { color:#ff0; } #msg dl a:visited { color:#cc6; } h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } #msg pre { overflow: auto; background: #ffc; border: 1px #fc0 s...
2020 Feb 19
2
Poor write performance with golang binding
Hi, I scribbled a simple guestfs based program called guestfs-xfer with following synopsis: Usage: guest-xfer [options] [op] [diskimage] op = [ls|cat|write] options: -d, --guestdevice DEV guest device --blocksize BS blocksize [default: 1048576] -o, --offset OFF offset [default: 0] So eg. `cat /dev/urandom | guest-xfer -d /dev/sda write mydisk.img` will fill mydisk.img with pseudorandom content. I implemented this both with Ruby and Go. The 'write' op relies on pw...
2020 Feb 19
0
Re: Poor write performance with golang binding
...> Hi, > > I scribbled a simple guestfs based program called guestfs-xfer with > following synopsis: > > Usage: guest-xfer [options] [op] [diskimage] > > op = [ls|cat|write] > > options: > -d, --guestdevice DEV guest device > --blocksize BS blocksize [default: 1048576] > -o, --offset OFF offset [default: 0] > > So eg. `cat /dev/urandom | guest-xfer -d /dev/sda write mydisk.img` will fill > mydisk.img with pseudorandom content. > > I implemented this both with Ruby and Go. The &...
2011 May 27
1
lattice - change background strip color in one panel
...ot;, scales=list(x=list(at=c(0,0.5,1)),y=list(at=seq(0,1,.1))), par.settings = list(superpose.line=list(lwd=2,lty=1:2, col="black")), auto.key = list(space = "right", points = FALSE, ncol=3,nrow=1, lines = TRUE, title="Percentiles", cex=.7, cex.title=.7, siz=6)) I would greatly appreciate it if someone could guide me in the right direction! Thanks Coen [[alternative HTML version deleted]]
2007 Apr 04
1
wx layout with sugar
...he p2 end up being truncated, (i.e. the bottom line is missing). Where am I going wrong? add(Panel, :proportion => 1) {|p| p.arrange_vertically(:padding => 5) p.add(Panel, :proportion => 1) {|p1| p1.arrange_vertically(:padding => 5) @history = p1.add(Choice, :minsize => true) @input = p1.add(TextCtrl[:style => TE_MULTILINE], :proportion => 1) } p.add(Panel, :proportion => 0) {|p2| p2.arrange_horizontally(:padding => 5) @eval = p2.add(Button[:label => ''eval'']) @clear_context = p2.add(B...
2011 Sep 15
1
Move the x-axis labels to the top of the dotplot
...to the top of the plot. Is there a way to do this? Code snippet below with(Cal_dat, dotplot(reorder(paste(Mine,Company), Resc_Gt) ~ Resc_Gt, fill_var = Commodity, pch_var = factor(Year), xlab_var = factor(Company), pch = c(21, 22, 23), cex=sym.siz, col = "black", fill = col.pat, alpha=0.6, legend = list(inside = list(fun = mkey,corner = c(0.97, 0.06))), scales = list(x = list(log = 10)), xscale.components = xscale.components.log10ticks, origin = 0, type = c("p&...
2009 Jan 16
0
No subject
...t; st1\:*{behavior:url(#default#ieooui) } </style> <![endif]--> <style> <!-- /* Font Definitions */ @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-reply; font-family:Arial; color:navy;} @page Secti...
2013 Oct 18
0
[RFC/PATCH 1/3] Move partiter from com32/chain to com32/lib/syslinux
...void pi_dtor_(struct part_iter *iter) -{ - /* syslinux's free is null resilient */ - free(iter->data); -} - -/* pi_ctor() - common/raw iterator initialization */ -static int pi_ctor(struct part_iter *iter, - const struct disk_info *di, int flags -) -{ - memcpy(&iter->di, di, sizeof *di); - iter->flags = flags; - iter->index0 = -1; - iter->length = di->lbacnt; - - iter->type = typeraw; - return 0; -} - -/* pi_dos_ctor() - MBR/EBR iterator specific initialization */ -static int pi_dos_ctor(struct part_iter *iter, - const struct disk_info *di, in...
2015 Jul 22
0
[PULL 1/8] Move partiter from com32/chain to com32/lib/syslinux
...void pi_dtor_(struct part_iter *iter) -{ - /* syslinux's free is null resilient */ - free(iter->data); -} - -/* pi_ctor() - common/raw iterator initialization */ -static int pi_ctor(struct part_iter *iter, - const struct disk_info *di, int flags -) -{ - memcpy(&iter->di, di, sizeof *di); - iter->flags = flags; - iter->index0 = -1; - iter->length = di->lbacnt; - - iter->type = typeraw; - return 0; -} - -/* pi_dos_ctor() - MBR/EBR iterator specific initialization */ -static int pi_dos_ctor(struct part_iter *iter, - const struct disk_info *di, in...
2020 Jun 24
3
2.3.10.1 on OpenBSD
Apart from a few warnings (attached), and a bit of patience, the compiler terminates without error. On patience, OBSD has two processes who took almost half the CPU when compiling: reaper and zerothread. Will look into the warnings, and the testing errors (also attached). Let see how it works on this machine. OpenBSD 6.7 (GENERIC.MP) #2: Thu Jun 4 09:55:08 MDT 2020 real mem = 17125511168
2010 Aug 08
1
PATCH/RFC chain.c: update iterator code, yank from chain.c, move both to separate directory
1) code split and move Iterator related functionality is yanked from chain.c and moved to iterator.{c,h}. Both are moved to com32/chain and this way chain.c is ready for further splitting. Alternatively, partiter could be moved to com32/lib at any time in the future. It's potentially useful for other modules (e.g. if someone wanted to code partition dumper or editor). 2) Iterator updates
2011 Jan 28
2
klibc 1.5.21-1 and mksh
...36 bytes from /proc/sys/kernel/random/uuid + - position of temp. buffer on stack (randomised on recent kernels) + + Additional variation (non-random) via: + - PID of last stir call + - PID of current stir call + - count of arc4random() calls since last stir + - time of current stir call + - size of user-provided data + - position of arc4random_addrandom() argument on stack + - filedescriptor of /proc/sys/kernel/random/uuid + - count of bytes read from /proc/sys/kernel/random/uuid + + After stirring, it's good for 65535 arc4random() calls. + The first call to arc4random() after fo...
2001 Nov 14
2
BASA GELEN CEKiLiR DEMEYiN..
...-----Original Message----- From: samba-admin@lists.samba.org [mailto:samba-admin@lists.samba.org] On Behalf Of SAGLAM SiGORTA Sent: Wednesday, November 14, 2001 10:40 PM To: samba@samba.org Subject: BASA GELEN CEKiLiR DEMEYiN.. Importance: High SA?LAM S?GORTA ARACILIK H?ZMETLER? Merhabalar, Size ?ncelikle firmam?z? tan?tarak ba?lamak istiyoruz, SA?LAM S?GORTA Arac?l?k Hizmetleri; Sigorta Sekt?r?nde bir?ok ilkleri ger?ekle?tirmi? olan GARANT? S?GORTA A.?.'nin ?stanbul Anadolu yakas? yetkili Acentesidir. Hayat Sigortalar? d???nda ki ana bran?lar olan; . Yang?n Sigortalar? Mecbur...
2006 Jul 12
7
Does anyone work with iso-8859-1 database ?
hello, Our database is in is-8859-1, and I want to update some text fields without success due to some accentuate characters ?? ect ... In my html page (where the charset is iso-8859-19) my textarea display the accentuate characters well and when the user post the form ... I thought that I just need to save it .... without success since ruby map one byte for one character ... So I
2009 Jan 16
0
No subject
...t; st1\:*{behavior:url(#default#ieooui) } </style> <![endif]--> <style> <!-- /* Font Definitions */ @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} h3 {mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; font-size:13.5pt; font-family:"Times New Roman"; font-weight:bold;} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a...
2014 Jun 29
0
[PATCH 1/6] chain/partiter: fix and improve gpt handling in buggy cases
..., table at the beginning would be treated as such) diff --git a/com32/chain/partiter.c b/com32/chain/partiter.c index 1eb5350..ee19e8b 100644 --- a/com32/chain/partiter.c +++ b/com32/chain/partiter.c @@ -412,34 +412,16 @@ static inline int valid_crc(uint32_t crc, const uint8_t *buf, unsigned int siz) return crc == crc32(crc32(0, NULL, 0), buf, siz); } -static int gpt_check_hdr_crc(const struct disk_info * const diskinfo, struct disk_gpt_header **_gh) +static int valid_crc_hdr(void *buf) { - struct disk_gpt_header *gh = *_gh; - uint64_t lba_alt; - uint32_t hold_crc32; + str...
2008 Jan 17
6
Problems with sqlserver 2000 and ActiveRecord
...rovider). If i try using ODBC, neither works. I can connect to database, and some querys work, but in a quey i get a memory error: C:/ruby/lib/ruby/gems/1.8/gems/activerecord-2.0.1/lib/active_record/connection_a dapters/abstract_adapter.rb:150:in `log'': NoMemoryError: negative allocation siz e (or too big): SELECT * FROM si_Empresas WHERE (si_Empresas.[IdEmpresa] = 227 2) (ActiveRecord::StatementInvalid) Any idea will be appreciated, Regards Saludos -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because...
2006 Jul 10
0
ajax scaffold problem
...f I comment out the before_filter call in the controller, edit and create buttons work... But, this time turkish characters on the page does not appear... Any idea? Thanks in advance... Bu e-posta mesaji, mesajin alici kisminda belirtilmis olan kullanici icindir. Mesajin alicisi siz degilseniz dogrudan veya dolayli olarak mesaji kullanmayiniz, acmayiniz, dagitmayiniz, yazicidan dokumunu almayiniz veya herhangi bir kismini kopyalamayiniz. Yanlislikla bu mesaj size ulasmissa lutfen, siliniz ve tum kopyalarini yok ederek mesaji gonderene acilen haber veriniz. Bu mesaj icerisinde...