search for: goo

Displaying 20 results from an estimated 494 matches for "goo".

Did you mean: go
2002 May 06
3
Using Object's Name in Function
Hi, Suppose I have a function: myfunc <- function(x, y) { ... } And within the function I want to print out the name of the x, y vectors. For example, if I do: > myfunc(foo, goo) [1] "foo" "goo" It shall return "foo", "goo" (with or without quotes is fine), where foo and goo are two vectors with numbers. I know this sounds strange, but I'd like to use it for debugging purposes. Cheers, Kevin ---------------------------------...
2017 Mar 26
3
[Euro LLVM] Unofficial beer before the conference
Hi, I've heard some people are in Saarbrucken and would like to go for a dinner together. I've found some places that should be good for groups: Old Murphys https://goo.gl/maps/aPXjfwJGSgS2 Tante Maja https://goo.gl/maps/yF9Gij5qPoN2 Vapiano https://goo.gl/maps/knK9edHPE1y Is someone interested in meeting this evening (probably after 5:30)? Piotr -------------- next part -------------- An HTML attachment was scrubbed... UR...
2017 Mar 26
5
[Euro LLVM] Unofficial beer before the conference
...Min-Yih Hsu > > Piotr Padlewski via llvm-dev <llvm-dev at lists.llvm.org> 於 2017年3月26日 下午3:58 寫道: > > > > Hi, > > > > I've heard some people are in Saarbrucken and would like to go for a dinner together. > > I've found some places that should be good for groups: > > > > Old Murphys > > https://goo.gl/maps/aPXjfwJGSgS2 <https://goo.gl/maps/aPXjfwJGSgS2> > > > > Tante Maja > > https://goo.gl/maps/yF9Gij5qPoN2 <https://goo.gl/maps/yF9Gij5qPoN2> > > > > Vapiano > > https://goo.gl...
2017 Mar 26
3
[Euro LLVM] Unofficial beer before the conference
...ski via llvm-dev <llvm-dev at lists.llvm.org> 於 2017年3月26日 下午3:58 寫道: >>>> >>>> Hi, >>>> >>>> I've heard some people are in Saarbrucken and would like to go for a dinner together. >>>> I've found some places that should be good for groups: >>>> >>>> Old Murphys >>>> https://goo.gl/maps/aPXjfwJGSgS2 <https://goo.gl/maps/aPXjfwJGSgS2> >>>> >>>> Tante Maja >>>> https://goo.gl/maps/yF9Gij5qPoN2 <https://goo.gl/maps/yF9Gij5qPoN2> >>&gt...
2008 Dec 01
2
How to refer to a list member by variable
...you can help me with the following R problem. I'm trying to refer to a member of a list by variable. However, this seems not to work: foo=list(first=c(1:10),second=c(11:20)) > foo$first [1] 1 2 3 4 5 6 7 8 9 10 > foo$"first" [1] 1 2 3 4 5 6 7 8 9 10 > goo=c("first") > foo$goo NULL > foo$goo[1] NULL I'm sure I'm missing something quite elementary. Perhaps you can help? RR
2005 Oct 20
1
Cross-correlation function
Hello All, I'm having trouble with the ccf() function. I am trying to do cross-correlation between two time-series, but I keep getting an error message I don't know what to do with. This what I type and the error message I get: > ccf(ts(mod[,1]),ts(mod[,2]),na.action='na.exclude',type='cor') Error in "colnames<-"(`*tmp*`, value = c("ts(mod[,
2002 Dec 05
1
writing to gzfile: segmentation fault (PR#2347)
...ubmission from: (NULL) (209.99.241.1) The following sequence of commands crashes my R session. The first weirdness happens after the second command that appears not to change the "foo.gz" file, no error generated. > con <- gzfile("foo.gz", open="w"); cat("goo\n", file=con); close(con) con <- gzfile("foo.gz", open="w"); cat("goo\n", file=con); close(con) > cat("boo\n", file=gzfile("foo.gz")) # this doesn't change "foo.gz" cat("boo\n", file=gzfile("foo.gz")) &gt...
2017 Mar 26
2
[Euro LLVM] Unofficial beer before the conference
...t; > 下午3:58 寫道: > > >>>> > > >>>> Hi, > > >>>> > > >>>> I've heard some people are in Saarbrucken and would like to go for a > > dinner together. > > >>>> I've found some places that should be good for groups: > > >>>> > > >>>> Old Murphys > > >>>> https://goo.gl/maps/aPXjfwJGSgS2 <https://goo.gl/maps/aPXjfwJGSgS2> > > >>>> > > >>>> Tante Maja > > >>>> https://goo.gl/maps/yF9Gij5...
2016 Dec 28
2
certificates keys on pkcs11 devices
Hi, I have not found any way to use a Certificate with ssh-agent when my Key is stored on a pkcs11 device. I can add my key with ssh-add -s /usr/local/lib/opensc-pkcs11.so but ssh-add -s /usr/local/lib/opensc-pkcs11.so ~/.ssh/mykey-cert.pub does not add the certificate to my agent. As far as I undestand, in ssh-add.c line 580 if (pkcs11provider != NULL) { if (update_card(agent_fd,
2009 Jun 08
3
[LLVMdev] debug information for functions
Suppose I have fun.h as: static void fun() { int a =10; } Now I have two files foo.c and goo.c as foo.c : #include "fun.h" void foo() { fun(); } goo.c: #include "fun.h" void goo() { fun(); } I get .bc files for foo.c and foo.bc through clang. Now I run llvm-ld with -disable-opt for foo.bc and goo.bc. In the resulting .bc files, one of the two fu...
2016 Jul 04
2
LLVM Cauldron 2016 (Sep 8th, Hebden Bridge, UK) registration and call for papers now open
...lcome proposals for: * technical presentations (25 minutes) * lightning talks (5 minutes) * birds of a feather sessions (~30 minutes) * tutorials (60 minutes) Please register to attend and consider submitting a talk. Links: * More information http://llvm.org/devmtg/2016-09/ * Registration http://goo.gl/forms/IqKzBtIYJIgEZf3G2 * Talk submission http://goo.gl/forms/iFEPwjjLhNHeFeru2 Best wishes, The LLVM Cauldron 2016 team
2001 May 23
4
Matrix manipulation
Hi, Suppose I have a matrix with, say 12 columns. I would like to extract out column 2 ~ 8 and 11 ~ 12 then combine them together. I tried with success to extract out the columns by doing: foo <- test[,2:8] goo <- test[,11:12] However then I am having trouble combining foo and goo. Helps are appreciated! Cheers, Kevin ----------------------------------- Ko-Kang Kevin Wang Statistical Analysis Division Leader Software Developers' Klub (SDK) University of Auckland New Zealand -.-.-.-.-.-.-.-.-....
2008 Nov 13
1
World Of Goo freeze the pc!
Hi, i'm a new user.. I write to you to solve this strange problem.. I use Ubuntu 8.10, and a few days ago i installed World of Goo (native for windows) through wine..the game go well, but when i enter in the multiplayer zone, or when there is a game connection with the web, the pc freeze..i can't move the mouse and also the keyboard not obtain results..it's still possible hear the music of the game, but every other act...
2007 Apr 03
3
[Repost] Problem with url searching..
.../tmp/ferret_test'' if File.exists?(''/tmp/ferret_test'') File.mkpath(''/tmp/ferret_test'') INDEX = Ferret::I.new(:path => ''/tmp/ferret_test'', :analyzer => TestAnalyzer.new) INDEX << {:type => :url, :url => ''http://google.fr''} INDEX << {:type => :url, :url => ''http://ferret.davebalmain.com''} INDEX << {:type => :url, :url => ''http://www.unixaumonde.com''} INDEX << {:type => :url, :url => ''http://www.rift.fr''} ['&...
2013 Dec 12
4
[PATCH 1/2] golang: Fix for out-of-tree builds
....go 2>&AS_MESSAGE_LOG_FD],[ AC_MSG_RESULT([yes]) # Substitute some golang environment. diff --git a/golang/Makefile.am b/golang/Makefile.am index a7dd1b2..a60c9ba 100644 --- a/golang/Makefile.am +++ b/golang/Makefile.am @@ -44,6 +44,7 @@ golangpkg_DATA = \ pkg/$(GOOS)_$(GOARCH)/$(pkg).a pkg/$(GOOS)_$(GOARCH)/$(pkg).a: src/$(pkg)/guestfs.go + -[ $(srcdir) != $(builddir) ] && cp -rsu $(abs_srcdir)/src $(builddir)/src $(top_builddir)/run $(GOLANG) install $(pkg) golangsrc_DATA = $(source_files) @@ -57,4 +58,5 @@ endif CLEANFILES = *~ src/$(pkg)/*...
2015 Jul 09
4
Contributing to the CentOS wiki
Hello all, I'd like to contribute to the CentOS wiki. Per these docs[0], I should email this list with the following information. Username: DanielFarrell Contribution subject: Update CBS Koji Poodle patch docs Contribution location: http://goo.gl/7Oe9QO (CBS HOWTO#Quickstart) I'd like to make the docs related to patching Koji for the Poodle exploit[1] generally more clear. For example, it's worth noting the commit (5b5b7d95) that will need to be included in a release for the patch step to become unnecessary. I'd also note th...
2011 Mar 11
2
rpm 9.7.3 for epel-6 and centos 5.5
hello centos list I recompile the source rpm fedora core 14 on my centos 5.5. I wrote a post on my blog to explain how I did. goo.gl/p0sqF I also recompile the rpm via koji to epel 6 and the result is possitive goo.gl/OQwIX package is on it safe sincerely -- gpg --keyserver pgp.mit.edu --recv-key 092164A7 http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x092164A7 -------------- next part -------------- A non-text a...
2013 Mar 11
1
/etc/sysconfig/network-scripts/ifcfg-xxx for CHAP PPPoE
...p password 0 s0meStr0ngP4sswd [...] As a fallback solution, I would like to setup a CentOS Dual NIC 1U unit. I dont want to use NetworkManager, I'd rather use the bare interface configuration tools. I'm running CentOS 6.3 I looked for the right way to configure the internface: - http://goo.gl/UaNBe: officiel doc, found no indication. - http://goo.gl/DQ5Gk: using rp-pppoe, is it the right way? - http://goo.gl/PTaes: seem to be right, but which package is it from? -- RMA.
2009 Jun 22
2
negation in grep
Does anybody know how to negate a string in a grep command, i.e., what I need is to return only strings that do NOT contain a second string anywhere in the entire string. for txt <- c("boo","goo","doob","foo","boofoo") I need a grep command that returns strings with "oo" except when "b" is present anywhere. I know that grep("[^b]oo" would work to exclude "boo" and "boofoo" but not "doob" So,...
2016 Jul 27
2
Remove zext-unfolding from InstCombine
Hi Sanjay, thank you a lot for your answer. I understand that in your examples it is desirable that `foo` and `goo` are canonicalized to the same IR, i.e., something like `@goo`. However, I still have a few open questions, but please correct me in case I'm thinking in the wrong direction. > Am 21.07.2016 um 18:51 schrieb Sanjay Patel <spatel at rotateright.com>: > > I've been fixing sim...