Displaying 20 results from an estimated 36 matches for "plum".
Did you mean:
plug
2009 Apr 02
4
[LLVMdev] advice on default options for building LLVM-GCC on Ubuntu Linux
...s that by default some Apple configuration is assumed, since
a simple make complains
GNUmakefile:16: /CoreOS/Standard/Standard.make: No such file or
directory
We started with a subversion checkout, in case it matters.
--------------------------------------------------------------------+
Thomas Plum, Plum Hall Inc, 3 Waihona Box 44610, Kamuela HI 96743 USA
tplum at plumhall.com .......... TEL +1-808-882-1255 FAX +1-808-882-1556
http://www.PlumHall.com .... TOLLFREE +1-800-PLUM-HALL (800-758-6425)
2013 Oct 11
1
Centos 6.4 - doesnt power off with shutdown/poweroff cmd
...I have tested the machine using Fedora 19 and Ubuntu 12 Live CD's and both
power down without issues.
I added acpi.debug_level=1 to the grub boot as it was suggested to see more
info about ACPI in the logs
I found the following ACPI Errors in the /var/log/messages
Oct 11 11:51:36 plum kernel: ACPI Error (psargs-0359): [ECEN] Namespace
lookup failure, AE_NOT_FOUND
Oct 11 11:51:36 plum kernel: ACPI Error (psparse-0537): Method
parse/execution failed [\] (Node ffffffff81fdbeb0), AE_NOT_FOUND
Oct 11 11:51:36 plum kernel: ACPI: resource piix4_smbus [io 0x0b00-0x0b07]
conflicts...
2005 Apr 22
1
buggy? error reporting on remote symlinks
Is this considered a bug?
$ /usr/local/rsync-cvs/bin/rsync -ve ssh plum:tmp/other ~/tmp/other
skipping non-regular file "/Users/nick/tmp/other"
sent 16 bytes received 40 bytes 7.47 bytes/sec
total size is 4 speedup is 0.07
$ ls -l /Users/nick/tmp/other
-rw-r--r-- 1 nick nick 0 22 Apr 11:22 /Users/nick/tmp/other
Looks pretty regular to me...
The true...
2007 Mar 04
5
div & span support
> [John Fraser:] Being able to wrap Markdown text in divs and spans ...
I find div and span tags quite useful. Here is an example of the syntax I'm presently using.
[[ {#orchard}
Contents of div here. And ~this{.plum}~ is how I do spans.
]]
becomes
<div id="orchard">
<p>Contents of div here. And <span class="plum">this</span> is how I do spans.</p>
</div>
Whatever characters one chooses to use (I imagine some resistance to ~), I think div and span suppo...
2005 Jul 11
1
indexing into and modifying dendrograms
...ute in "edgetext"
## following example in dendrogram documentation
## would really rather associate with the node than the edge
## but current plotting function has no notion of nodetext
addE <- function(n) {
if(!is.leaf(n)) {
attr(n, "edgePar") <- list(p.col="plum")
attr(n, "edgetext") <- attr(n,"cNum")
}
n
}
dend2 <- dendrapply(dend1, addE)
## overlays the cNum ("cluster number") attribute on dendrogram
plot(dend2, main = "dend2")
## why does no plum polygon appear around the '4' for the...
2006 Sep 01
1
Reading many files at once
...file names
should be columns.
ex;
hsa-1 hsa-2 hsa-3 hsa-4 hsa-5
apple 0.003 0.01 0.002 0.002 0.002
orange 0.003 0.01 0.002 0.002 0.002
kiwi 0.003 0.01 0.002 0.002 0.002
peach 0.003 0.01 0.002 0.002 0.002
banana 0.003 0.01 0.008 0.002 0.001
plum 0.003 0.01 0.009 0.002 0.005
mango 0.003 0.001 0.002 0.002 0.008
could any one help me please.
thank you.
2006 Jun 30
5
Reading the api docs help
...igging through it again .. But I am now
missing a key piece to the clues is the api.
I found http://www.gotapi.com/index.html as a great search tool. But I
can''t make heads or tails of it besides a basic search for exactly what
I am looking for by word. But if I dont know the word I am plum out of
luck..
Is there some structure I shold know about that helps in searching
through the documents there ?
--
Posted via http://www.ruby-forum.com/.
2010 Oct 25
2
extracting characteristics of datasets from data()
...of objects
that I get from data()
Example:
> DS <- data(package="vcdExtra")
> DS$results[,c("Item", "Title")]
Item Title
[1,] "Abortion" "Abortion Opinion Data"
[2,] "Bartlett" "Bartlett data on plum root cuttings"
[3,] "Caesar" "Risk Factors for Infection in Caesarian Births"
[4,] "Cancer" "Survival of Breast Cancer Patients"
[5,] "Detergent" "Detergent preference data"
[6,] "Dyke" "Sourc...
2001 Oct 21
5
Scheduled Ogg streams for testing
...y
being streamed. For scheduled stuff, only things we're given
permission to do by producers can go on there, so don't get too excited
just yet. I'll make sure to update the page tho if/when there are any
more.
..ciaran
--
Ciaran Anscomb, BBC Internet Services
"Pokey these are plums! I wanted oranges!" "That is the price of love"
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-request@xiph.org'
containing only the word 'unsubscribe&...
2012 Jan 10
5
Puppet proxies
...ppet proxy through some external-service
control mechanism, such as fog. The question is: where does the proxy
run? I assume a puppet agent needs to run somewhere. Where do you put
that agent, how do you configure it, and how do you identify it as a
puppet node? I''m having visions of sugar plum fairies at the thought
of using Puppet to do what CloudFormation does (automate the
configuration of an entire AWS environment). But it''s not clear to me
how to wire it together.
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group....
2007 Jun 13
2
Formatted Data File Question for Clustering -Quickie Project
...22, bg= c("light blue",
"pink"),
lab.cex = 0.75, lab.col = "tomato")
plot(d3, nodePar= nP, edgePar = list(col="gray", lwd=2), horiz = TRUE)
addE <- function(n) {
if(!is.leaf(n)) {
attr(n, "edgePar") <- list(p.col="plum")
attr(n, "edgetext") <- paste(attr(n,"members"),"members")
}
n
}
d3e <- dendrapply(d3, addE)
plot(d3e, nodePar= nP)
plot(d3e, nodePar= nP, leaflab = "textlike")
--------------------------------------------------------
This i...
2015 Jun 19
1
setting quota through IMAP
Am 19.06.2015 um 16:16 schrieb Steffen Kaiser:
> On Fri, 19 Jun 2015, Daniel Tr?der wrote:
>
>> I'd like to set the quota of a user through the IMAP protocol. I use
>> Pythons imaplib:
>
>> imap.setquota("test1m at uni.dtr", "(storage 8192)")
>> ('NO', ['Quota can be changed only by admin.'])
>
>> So... which user
2020 Jul 07
0
Outlook vs Thunderbird
...cause the software was no longer supported and I pointed out they were sending more money paying me to try to fix it than it would cost them to pay for Office 365 (small business, obviously).
--
Silence filled the University in the same way that air fills a hole.
Night spread across the Disk like plum jam, or possibly
blackberry preserve. But there would be a morning. There would
always be another morning. --Sourcery
1999 Jun 04
0
Red Hat Linux/Intel 6.0 RPMS for R
...add-on package.
Don't install both R-base and R-base-gnome.
PGP
---
This is a good opportunity to tell you, if you haven't noticed already,
that the RPM packages are PGP signed. You can pick up my public key
from
http://developer.redhat.com/rhcn/browse/conventional/memberinfo.php3?member=plum
mer at iarc.fr
Thank you for your patience.
Martyn
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-announce mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "bod...
2008 Nov 06
0
Virtualization Product Engineer
...line in the lifecycle development process. Driver Development experience - in particular USB a huge plus.
The job must be performed in Syracuse, NY. It is initially a 9 month contract with the option to extend or go perm
Susan L. Duenkel
Sr. Technical Recruiting Manager
Ajilon Consulting
507 Plum Street
Syracuse, NY 13204
315-422-2480 X 223
1-800-298-5242 X 223
Fax: 315-478-5214
www.ajilonconsulting.com <http://www.ajilonconsulting.com/>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2007 Jan 01
0
autofill for a tkentry field
...autofill <- function(){
cat("I was here!")
entry <- tclvalue(f1)
ind <- grep(entry, fruitList)
if (length(ind)>0){f1 <- tclVar(fruitList[ind[1]])}
}
fruitList <<- c("Apple", "Banana", "Peach", "Pear", "Plum", "Mango")
tkdestroy(tt)
tt <- tktoplevel()
pw <- tkframe(tt)
ppw <- tk2labelframe(pw, text="Fruits:")
f1 <<- tclVar("")
entry1.f <- tkentry(ppw, width=30, textvariable=f1, validate="key",
validateco...
2011 Feb 03
0
Select just numeric values from rows
Terry
Any good?
list <-"A B C N1 N2 N3 N4 N5 N6 N7 N8 N9 N10
Apples Bananas Peaches 1 2 3 4 5 6 7 8 9 10
Oranges Kumquats Plums 1 1 3 5 5 5 7 6 6 12
Pears Kiwis Grapes 2 4 6 8 5 6 7 6 9 1"
d = read.table(textConnection(list), header=TRUE)
Nrowsums = apply(d[,sapply(d,is.numeric)],1,sum)
HTH
Pete
--
View this message in context: http://r.789695.n4.nabble.com/Select-just-numeric-values-from-ro...
2001 Dec 03
1
Printing & Samba 2.0.7
...mb.conf to 'client code page
= 437', which is what the windows clients are using. However this did
not fix the problem.
Im running debian 2.2 with samba 2.0.7 & PDC support.
Any assistance appreciated!
Regards,
SHANE MACHON
Network Administrator
Technical Project Manager
Two Purple Plums Pty Ltd.
TPP Internet Development
(NetNames Australasia)
PO Box 334, Manly
NSW, 1655, Australia
Tel. +61 2 9970 5242
Fax. +61 2 9970 8262
Eml. shane@twoplums.com.au
2016 Apr 17
0
use hjust or vjust with dendextend
...t;% set("branches_lwd", rep(1,4)) %>%
set("branches_lty", rep(1,6)) %>% set("labels_colors") %>%
set("labels_cex", c(1.0,1.0)) %>% set("nodes_pch", 19) %>%
set("nodes_col", c("orange", "black", "plum", NA))
ggd2 <- as.ggdend(dend2)
ggplot(ggd2, horiz = TRUE, theme = NULL)
My problem is that the labels overlap the dendogram leafs and I have no
idea on how parameter hjust or vjust may be used to create space between
label and leaf.
Thanks for any help,
Sergio
[[alternative HTML versio...
2011 Jan 28
2
[LLVMdev] Non-standard byte sizes
On 28/01/11 14:14, Ken Dyck wrote:
[...]
> I've developed an LLVM back end for a DSP with 24-bit word-addressable
> memory, basically by defining the alignment of i8 to be the word size
> of the machine. So it _is_ possible.
I think I might have an easier job of it, as I don't want to use any of
the standard C sizes at all --- my char will be ~64 bits wide (in fact,
my