search for: yay

Displaying 20 results from an estimated 739 matches for "yay".

Did you mean: may
2010 Apr 18
3
loops and if statements
...itional statements. I am playing with this simple example: a <- c(1:4) b <- c("meep", "foo", "meep", "foo") d <- cbind(a, b) now what I want to do is , each time there is a "meep" in column 2 of d, print "oops", else print "yay". So I wrote: for(i in seq(along=d[,2])) {if (d[i]=="meep") { print("oops")} else { print("yay")} } Result: [1] "yay" [1] "yay" [1] "yay" [1] "yay" What am I doing wrong? Furthermore,...
2013 Aug 20
1
chmod + remote save denied = file wiped?
...ewdc) replicating from a W2K3 DC (olddc). newdc also has a test share. I'm experiencing something strange whereby chmod and then an attempted file save causes a shared file to become zero bytes (despite the save not being blank, and also being denied): At olddc: 1) open \\newdc\testshare\yay.txt At newdc: $ ls -l total 8 -rw-rw-rw-. 1 me me 9 Aug 20 10:59 yay.txt $ cat yay.txt It works!$ chmod 664 yay.txt At olddc: 1) add a space to yay.txt and attempt to save. popup: --------------------------- TextPad --------------------------- Access to \\newdc\testshare\yay.txt was denie...
2007 Jan 08
1
syntax question
I need to know how to do the following in puppet. Say I have three classes, (c1,c2,c3) that are not related. These classes could be considered "attributes" that may or may not apply to an individual host on my network. I need to know how to write a manifest, or series of manifests to allow me trigger a command (call it ''foo'') if all three classes are defined. I also
2002 Mar 18
0
RE: Yay!
...ver or local lmhosts files. That''s for NetBIOS name resolution. For DNS name resolution, you''ll need a DNS server. - Greg -----Original Message----- From: Patrick Dench [mailto:pat@acdisplays.com] Sent: Monday, March 18, 2002 11:11 AM To: lartc@mailman.ds9a.nl Subject: [LARTC] Yay! Looks like my GRE problems were due to ipchains. I went to IP Tables, and it looks like it is working. Next issue: name resolution.. Right now the only way I know my home PC is connected is because I turned it on this morning. Is there anyway to resolve PC names through the VPN? Specifically...
2003 Jul 24
4
filesystem broken / bad entry in directory #248447030
...multiple times). When going trough fs via find, it shows multiple i/o errors. Even file in root of the filesystem displays an i/o error. My idea was that if i could locate the mystical directory #248447030 , i could erase it/recreate it and be happy a) how do i locate b) what do i do now :) -- Yay! I've got a flying machine! (UNIX)
2011 Nov 18
2
Are tildes actually valid in templates or is this a bug?
...Puppet 2.7.6 with Ruby 1.8.7 on CentOS 6.0. Now, I''m using tildes in a template to prevent newlines from appearing but ruby/puppet is choking on them. */tmp/puppet$ cat test.erb* Line 1: Line 2 will exist if running on CentOS. <% if operatingsystem == "CentOS" ~%> Line 2: Yay, we''re running CentOS. <% end ~%> */tmp/puppet$ erb -x -T ''-'' test.erb | ruby -c* -:2: syntax error, unexpected ''~'', expecting kTHEN or '':'' or ''\n'' or '';'' ; if operatingsystem == "CentOS&q...
2015 Mar 16
2
Samba4 AD DC Implementation Report - YAY! And Thanks for the tools!
Just wanted to say that everything is working fine, but I may have some suggestions for better documentation once I am done tweaking... Specifically, my server has docker and bridged networking so I ended up with my DNS being populated with some useless IP addresses. Other than that, everything seems to be hunky dorry! Thanks for the great tools!!! Deven
2002 Oct 20
1
observations/qestions of mbox concurrency ability (Yay!) on current CVS
Hi, all. Just been testing out the latest "CVS" (in quotes because I'm rsyncing the source tree) versions of Dovecot lately. Tested having Pine on the machine on which Dovecot was running, talking IMAP, as well as another Pine instance, this time from my Windows machine over the wire. Things seem to be working wonderfully. Deleted a message using one instance, then refreshed the
2006 Feb 14
7
onFailure fails?
Hi all, I have this code: new Ajax.Request(''non_existant.file'', { onSuccess:function(){alert("yay");}, onFailure:function(){alert("boo");} }); Why does the onFailure alert never get called? It works fine if I use a real file (onSuccess gets called). Thanks, Douglas
2005 Nov 16
3
yay for zfs
This zfs looks great! I really hope this gets put into solaris soon since I don''t think I could live with Solaris express on a production machine. The easy of adding disk and moving directories looks like a life saver, especially for me who deals with trying to store digital media which piles up a couple of gig a day! This message posted from opensolaris.org
2008 Oct 28
1
Dealing with progress codes
...XXXXXXXX,6,Answer() exten => _NXXXXXXXXX,7,Set(CALLERID(num)=${CLR}) exten => _NXXXXXXXXX,8,Set(CALLERID(name)=HiThere) exten => _NXXXXXXXXX,9,NoOp(--out the pri--) ; Primary Dialout exten => _NXXXXXXXXX,10,Dial(Zap/G2/1${EXTEN}) exten => _NXXXXXXXXX,11,GotoIf,($[${HANGUPCAUSE} = 31]?YAY) exten => _NXXXXXXXXX,12,Hangup() ; Call limiter exten => _NXXXXXXXXX,n(BLOCK),Answer() exten => _NXXXXXXXXX,n(BLOCK),Playback(all-circuits-busy-now) exten => _NXXXXXXXXX,n(BLOCK),Playback(pls-try-call-later) exten => _NXXXXXXXXX,n(BLOCK),Hangup() ; 1 tester exten => _NXXXXXXXXX,n...
2007 Apr 07
8
How to get rid of locks
...opened with O_APPEND, writes to Dovecot's transaction log file can be made lockless. I see that this works with Linux and Solaris, but not with OS X. Could you BSD people try if it works there? http://dovecot.org/ tmp/append.c and see if it says "offset = 0" (bad) or non-zero (yay). The O_APPEND at least doesn't work with NFS, so it'll have to be optional anyway. Currently Dovecot always updates dovecot.index file after it has done any changes. This isn't really necessary, because the changes are already in transaction log, so the dovecot.index file can...
2016 May 05
3
Status of new pass manager work
...with one day to spare before he nagged me again. =D I'll keep it very brief and high level. If folks have questions about anything, happy to dig into it. - The core framework is there. It works, and we even have CGSCC passes using both Module and Function analyses with caching and everything. Yay! We also have initial loop pass infrastructure thanks to Justin! Yay! - The biggest missing piece of infrastructure IMO is communicating invalidation information between two parts of the pass manager itself when they are operating over the results of an analysis. Both the loop passes and the CGSCC...
2015 Mar 16
2
Samba4 AD DC Implementation Report - YAY! And Thanks for the tools!
Following the instructions here: https://wiki.samba.org/index.php/Samba_AD_DC_HOWTO In that page there is a link to using Bind as your DNS server, which links to: https://wiki.samba.org/index.php/DNS_Backend_BIND On that page, it instructs you to populate the DNS server with the command: /usr/local/samba/sbin/samba_dnsupdate --verbose --all-names Without the "interfaces" and the
2002 Dec 04
1
DNS
Hi all, I use SAMBA with winbind in a NT-LINUX domain. I also use DNS on another slackware linux machine, DNS is also working fine. But how can i see the computers -configured in DNS- in my network neighborhood on my windoze pc's ? GreetZ Philippe Dhont
2012 Apr 17
7
[LLVMdev] 3.1 Has Branched
Hi all, We branched for the 3.1 release! (Yay!) If there are any fixes which you think should go into the release, please contact the code owners (http://llvm.org/docs/DeveloperPolicy.html#owners) so that they can approve the patches. No patches will be accepted into the 3.1 release without prior approval! This should be a great release! :-)...
2006 Aug 03
6
create or update -
Hi everyone, I''m looking for a shortcut to finding and updating or creating record depending on the results of the find. So, is there a shorter way to do it than this? @stuff = Stuff.find_by_foo_and_bar("yay","hooray") if @stuff: Stuff.update(@stuff.id, {:foo => "boo", :bar => "hoo"}) else Stuff.create({:foo => "boo", :bar => "hoo"}) end By the way, I can''t believe that I want to do this in less than 3.1 lines of co...
2010 Jan 15
5
advice/opinion on "<-" vs "=" in teaching R
Hi R People: I'm teaching a statistical computing class using R starting next week (yay!) and I have an opinion type question, please. I'm old school and use "<-" in an assignment. However, I'm starting to see the "=" in the literature. Which should I use or does it matter, please? Thanks for your input! Sincerely, Erin -- Erin Hodgess Associate P...
2012 Nov 10
5
[LLVMdev] RFC: Owning Bitcode
Hello, Chris's "keynote" at the LLVM Developers' Conference included a call for code owners, and my company has a heavy dependency on Bitcode, I propose taking ownership of: lib/Bitcode/* include/Bitcode/* This means that I'll be committed to documenting (yay) the implementation and responsible for reviewing patches and commits, as well as overall code quality and maintenance. It's a small section of the overall tree, and I realize that it is a critical portion that touches virtually the whole project. If someone else already "owns" this...
2015 Mar 16
4
Samba4 AD DC Implementation Report - YAY! And Thanks for the tools!
In my initial configuration using the provisioning tool I did not set "interfaces" or "bind interfaces only" in the smb.conf, so when I populated the Bind9 DLZ file I ended up with several A records for my DC which were IP address which cannot be accessed by other hosts on the network. Deven On Mon, Mar 16, 2015 at 1:06 PM, Rowland Penny <rowlandpenny at googlemail.com>