similar to: Welcoming a new SIG member :)

Displaying 20 results from an estimated 600 matches similar to: "Welcoming a new SIG member :)"

2016 Jan 12
3
hoping to reschedule SIG meetings to Tuesdays 1500 UTC
I can't make it to the current schedule for alternate Tuesday 1400 UTC meetings. I was hoping we could reschedule it to 1500 UTC on the same Tuesdays instead, or any other slot which could work for all. What do other members think? -- Lokesh Freenode: lsm5 GPG: 0xC7C3A0DD -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type:
2016 Mar 01
2
docker 1.10.2 available
On Tue, Mar 01, 2016 at 12:43:32PM -0500, Jason Brooks wrote: > I'm getting this dep error trying to install this: > > Error: Package: 1:docker-1.10.2-5.git0f5ac89.el7.x86_64 (virt7-docker-common-candidate) > Requires: selinux-policy >= 3.13.1-114 > Removing: selinux-policy-3.13.1-60.el7.noarch (@anaconda) > selinux-policy =
2016 Mar 07
2
status for centos-release-docker and docker packages
On Fri, Mar 04, 2016 at 08:33:31PM +0000, Karanbir Singh wrote: > Let me look through the bits and see where we are and get this process > started up. We'd need to get some basic testing done, and then we can > promote it a bit. > > is the docker-1.10 stack completely in-place replacement/upgrade from > the existing distro hosted docker ( 1.8.2 ? ) Not a replacement for
2016 Feb 29
2
docker 1.10.2 available
Docker 1.10.2 has just been built for virt7-docker-common-candidate https://cbs.centos.org/koji/taskinfo?taskID=78901 Please give it a shot and lemme know if I can proceed with releasing it. Thanks, -- Lokesh Freenode: lsm5 GPG: 0xC7C3A0DD -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: not
2016 Jun 10
2
[CentOS-devel] docker and docker-latest packages on CentOS Virt SIG
Moving this discussion to centos-virt@ as it's upto the SIG to decide on how this moves ahead. I'm hoping to have 2 new koji tag sets: virt7-docker-fedora-* (will have fedora rpms rebuilt) virt7-docker-el-* (will have rhel candidate builds before they are released or land in centos extras) The -el-* repos will help to have Virt SIG as sort of an upstream and early QA for both RHEL and
2015 Feb 03
1
docs update suggestions for docker and related packages
On 02/02/2015 11:00 AM, Karanbir Singh wrote: > On 02/02/2015 04:21 PM, Lokesh Mandvekar wrote: >> What's the best place to update the docs/howto for docker and related >> packages on centos? >> >> Could I add to http://wiki.centos.org/Cloud/Docker?highlight=(docker) or >> is this for the rhel-recompiled docker? Also, what about docker-registry? >> Does
2016 Mar 03
2
status for centos-release-docker and docker packages
I have rpm sources for centos-release-docker at https://github.com/CentOS-virt7/centos-release-docker Some updated packages available on centos-docker-common-testing branch are: docker: http://cbs.centos.org/koji/buildinfo?buildID=9932 atomic: http://cbs.centos.org/koji/buildinfo?buildID=10046 docker-distribution: http://cbs.centos.org/koji/buildinfo?buildID=9950 I think I need to have the
2015 Feb 02
2
docs update suggestions for docker and related packages
What's the best place to update the docs/howto for docker and related packages on centos? Could I add to http://wiki.centos.org/Cloud/Docker?highlight=(docker) or is this for the rhel-recompiled docker? Also, what about docker-registry? Does that need a new page? -- Lokesh Freenode, OFTC: lsm5 GPG: 0xC7C3A0DD -------------- next part -------------- A non-text attachment was scrubbed... Name:
2015 Feb 13
1
docker 1.5 in virt7-testing
On Fri, Feb 13, 2015 at 12:15:39PM +0000, Karanbir Singh wrote: > hi guys, > > docker 1.5 is now in virt7-testing repos, please test and feedback so we > can move to release.. > > thanks lokesh! > > - KB > Sure thing KB. Also, docker-registry will be ready for release by tonight (meaning working package and docs etc.) docker HEAD for c7 ------------------ I was
2016 Jun 13
2
[CentOS-devel] docker and docker-latest packages on CentOS Virt SIG
On Mon, Jun 13, 2016 at 6:39 AM, George Dunlap <dunlapg at umich.edu> wrote: > On Fri, Jun 10, 2016 at 9:11 PM, Lokesh Mandvekar > <lsm5 at fedoraproject.org> wrote: >> Moving this discussion to centos-virt@ as it's upto the SIG to decide on >> how this moves ahead. >> >> I'm hoping to have 2 new koji tag sets: >> >>
2014 Sep 09
1
Reminder: Phone meeting today
Just a reminder to everyone that we're having our bi-weekly Virt Sig meeting today at 2pm., and it's a dial-in this week. Please e-mail me if you need the dial-in information -George
2010 Feb 22
3
gsub patterns from vector elements w/out loop?
Dear list, I have two vectors: x <- c("one","two") y <- paste(rep(x,2),"blah") I want to replace all occurrences of each element of x in y with something else, so that y looks like this: y [1] "something else blah" "something else blah" "something else blah" [4] "something else blah" I can do this using a loop: for (
2010 Nov 29
1
cross tabulate variables by subject id
Dear list, I have data like this: dat1 <- data.frame(subject=rep(1:10,2), cond1=rep(c("A","B"),each=5), cond2=rep(c("C","D"),each=10), choice=sample(0:1,10,replace=TRUE)) I would like to compare subjects' "choice" for (cond1=="A" & cond2=="C") vs
2010 Aug 24
1
Index list by other list (w/ logical elements)?
I have two lists of the same shape, like this: x <- list() x[[1]] <- c("one","two") x[[2]] <- c("three","four","five") y <- list() y[[1]] <- c(TRUE,FALSE) y[[2]] <- c(FALSE,TRUE,TRUE) I would like to index x "by" y, that is, the result in this case should be: z [[1]] [1] "one" [[2]] [1] "four"
2011 Feb 02
1
pass nrow(x) to dots in function(x){plot(x,...)}
Dear Rers, I have a function to barplot() a matrix, eg myfun <- function(x, ...) { barplot(x , ... )} (The real function is more complicated, it does things to the matrix first.) So I can do: m1 <- matrix(1:20,4) myfun(m1) myfun(m1, main="My title") I'd like to be able to add the number of rows of the matrix passed to the function to the "..." argument, eg
2008 Oct 05
1
barchart for aggregated (sum) data in lattice?
Hi list, I have data in a dataframe t1, with a column for different amounts spent, a column what it was spent on, and a column with dates, from which I create a new column with months. Example: amount <- rep(c(10,20,30),3) what <- rep(c("food","books","cycling"),3) when <- c(rep("2008-09-05",5),rep("2008-10-07",4)) t1 <-
2009 Sep 02
1
get function to return object "name"?
Dear list, I've written a function that plots subjects. Something like: myplot <- function(subject) { plot(subject) } Subjects are vectors, e.g. ... s1 <- c(200,200,190,180) ... and plotting them works fine, e.g. ... myplot(s1) Now I want to have "s1" etc appear in the plot title, but I don't know how to refer to this generically (the object "name"? I tried
2009 Dec 12
1
read.csv to read output of system()?
Dear list, I have a file that is comma delimited but contains some erroneous non-delimiter commas. I would like to replace these commas with semicolons and then read the correct file into R as a data frame. I want to do this from within R, without changing the original data file. My current idea of how to do this would be to use system("sed ...") and feed the result to read.csv(), but
2009 Oct 03
2
add lines() to 1st plot in layout() after calling 2nd plot()?
Dear R users, I create a graphic with two plots side by side using layout(), like this: layout(matrix(c(1,2),1)) plot(1:10,main="left plot") lines(c(3:7,7:3),col="red") plot(10:1,main="right plot") The lines() obivously get added to the "left plot" plot. Now, I'm trying to write a function that builds up a plot bit by bit to then include it in a
2016 Jan 14
0
hoping to reschedule SIG meetings to Tuesdays 1500 UTC
On Tue, Jan 12, 2016 at 6:00 PM, Lokesh Mandvekar <lsm5 at fedoraproject.org> wrote: > I can't make it to the current schedule for alternate Tuesday 1400 UTC > meetings. > > I was hoping we could reschedule it to 1500 UTC on the same Tuesdays > instead, or > any other slot which could work for all. > > What do other members think? > Ok for me > -- >