search for: boo

Displaying 20 results from an estimated 182 matches for "boo".

Did you mean: boot
2001 Feb 17
1
More comments on R-1.2.1 builds (PR#852)
...ype shall be compatible with an integer type; the >> choice of type is implementation-defined. >> ... In particular, if an enum is treated as char, short, long, or long long, then it does not match the requirement of section 3.5.2.1. To test this further, I made an experiment: % cat boo.c #if 1 typedef enum { apple = 0, pear } Fruit; #else typedef int Fruit; #endif typedef struct boo { Fruit x : 1; } S_Fruit; S_Fruit y; On Sun Solaris 2.7: % c89 -Xa -c boo.c % c89 -Xt -c boo.c % c89 -Xc -c boo.c "boo.c", line 9: warning: nonportable bit-field type...
2003 Jan 24
3
LDAP Filter Problem
...bian Woody box. I am using OpenLDAP 2.0.27-3 and the unsable packaged Samba version 2.999+3.0 and am using the samba.schema for my LDAP database. Whenever I try to join the network using either W2K or smbclient the LDAP debug log shows that the following filter is being used: .... Jan 24 12:32:01 boo slapd[14586]: filter: (&(objectClass=posixAccount)(uid=ELUCIDATION\5CROOT)) .... So the problem is that the domain name is being prefixed to the userid but my LDAP database only wants a userid. I thought the "ldap filter" parm in smb.conf might allow me to change this, but it doe...
2009 Aug 14
1
Embed R, and provide a function to user scripts
Hello, I'm not sure how to go about this. Suppose I have a function SEXP boo(SEXP x){ //do something } Also, I have an executable which embeds R in itself. I would like to provide a R function to user code to call that calls 'boo' e.g ##user supplied expression that is given to me x<-1 boo(x) One way is to create a library with function boo that performs .Cal...
2017 Oct 25
1
Finding the entry point function in a LLVM IR
Thank You David and Mats for the reply, The reason I need to know that main is the entry point is as follows : I have a dead code elimination pass that removes the function call for boo. boo was initially called from the main function , but since the return in the main function has no dependency on boo, boo function call is removed. Now I want to remove the function definition of the functions that are not called. Notice that boo and main , both do not have any function calls to...
2008 May 29
2
creating library
Hi, I'm able to create a library with R CMD INSTALL cmd, etc... I'm just wondering.. is it possible that when the user says library(boo), it runs some initialization code? I have a dumb R file that is: print(2) boo <- function(x){} when I R CMD INSTALL the library, I'm able to see 2 in my unix console.. but when I do library(boo) in R afterwards.. I don't see the 2, but the boo function is there. Is there an...
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 "...
2002 Dec 05
1
writing to gzfile: segmentation fault (PR#2347)
...t 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")) > con <- gzfile("foo.gz", open="w"); cat("goo\n", file=con); close(con) con <- gzfile("foo.gz", open="...
2018 Feb 06
3
What does a dead register mean?
...er the next instruction, CALL64pcrel32 has an implicit use of %rsp. This would be a use of %rsp as defined in ADJCALLSTACKDOWN64 making that non-dead. So I guess my understanding of dead is incorrect. Could you please explain what dead means? For reference: Source file(a.c): void foo(void); void boo(){ foo(); } Commands: clang -S -emit-llvm -Xclang -disable-O0-optnone a.c llc -print-after="stack-slot-coloring" a.ll -- Regards Bhatu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180206/22946...
2007 Feb 13
2
Matrix manipulation
Hi, let's say I have this A = matrix(c(1, 2, 4), nrow=1) colnames(A)=c("YOO1", "YOO2", "YOO3") # ie # YOO1 YOO2 YOO3 #[1,] 1 2 4 HELLO <- NULL HELLO$YOO1="BOO" HELLO$YOO2="BOO" HELLO$YOO3="HOO" and I want a matrix that will sum my categorization.. how can I do it efficiently without any loop? #ie BOO HOO #[1,] 3 4 Thanks a lot! -- View this message in context: http://www.nabble.com/Matrix-manipulation-tf3223616.h...
2017 Oct 23
2
Finding the entry point function in a LLVM IR
...isnall via llvm-dev < llvm-dev at lists.llvm.org> wrote: > On 21 Oct 2017, at 12:51, mohie pokhriyal via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > > > I want to be able to find out that main is the entry point function of > the program. > > main and boo both do not have any predecessors or successors , such that > I can make a cfg to figure out who’s calling whom ? > > > > Is there a way I can achieve this ? > > The fact that main is the entry point is not known to LLVM (except in a > couple of places that special-case main...
2010 Jan 11
1
Problem with S4 generic function print
First, if I have an S4 class boo should I define S3 method for printing print.boo(..) or should I define S4 method print(..). I mainly need to define print function only because some user might call it and then I would like to dispatch the call to right function instead. Second, it seems that by defining S4 generic function p...
2011 Aug 28
3
rspec-rails render_views doesn't render layouts? / how to check flash isn't rendered
...''ve tried writing this controller spec, but it appears that response.body only renders the template, not its layouts? describe "so that static caching can be used" do render_views specify "flash notices are not rendered" do flash[:notice] = "flash boo" flash[:error] = "flash boo" flash[:alert] = "flash boo" get :show, :page => ''privacy_policy'' response.body.should have_content(''flash boo'') end end class StaticPagesController < ApplicationController...
2008 Mar 18
1
Merb and Javascript template system
...t code in various erb templates that have 90% of identical code. - I can''t use more than 1 js file. - If isn''t a way to do this like erb can do in html, what''s the best way to "include" a file in another using Merb? -- from Brazil, Dirceu Pauka a ninja of the boo-box team http://boo-box.com Please don''t print this e-mail Evite imprimir este e-mail -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/merb-devel/attachments/20080318/3f905db5/attachment.html
2008 Oct 16
1
apply, t-test and p-values
R 2.7.2 Windows XP I am using apply to compute a series of Student's t-test from two matrices, sample1 and sample2. boo<-apply(sample1,1,t.test,sample2) I want to pick of the p-values from the tests, but can't seem to get it to work. I have tried several methods to get the values including: boo<-apply(sample1,1,t.test$t.test,sample2) boo<-apply(sample1,1,t.test,sample2)$t.test any suggestions? Thank...
2006 Aug 03
6
create or update -
..., 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 code. Rails is making me lazy. Anyway, anyone who can suggest something nicer & sho...
2007 May 01
7
RFC: Changing variable override
It seems like a very common expectation that the following code would work: class boo { $me = "/something" file { $me: ensure => present } } class yay inherits boo { $me = "/something/else" } Yet, as many have found to their chagrin, it does not work. Should it? I believe I know how I could make this work: Create a single variable namespace for...
2012 Aug 23
3
System will not boot - faulty fstab?
I believe that I made a boo boo recently when recovering some unused disk space. Without going into painfully embarrassing detail I need to delete an entry in fstab for a now non-existent logical volume. The system reports that the there is a bad superblock for said logical volume. Mainly I expect because there isn't o...
2007 Apr 18
0
BOO write: Today's prognosis...
Glad to see you, gentlemen. I think all of you have already seen the results of the last market day. And today we give you the best stock at the best price for today. The Company has released news on friday. Here it is (read full version on your favorite news site) - Marshall Holdings International, Inc. Announces Subsidiary 3rd Quarter Results Over 1.5 Million, an Increase of 147% Marshall
2002 Mar 18
1
Syslinux & DiskonChip 2000 boo error.
Good afternoon. I am trying to make a 32M DiskonChip2000 boot Linux (kernel version 2.2.20) but I'm having difficulty. It begins fine, loading most of the kernel, but halts immediately after the "Freeing unused kernel memory: 52K freed." step. The implication seems to be that my ramdisk is not being mounted/executed properly. My syslinux.cfg...
2007 Apr 18
0
BOO write: Today's prognosis...
Glad to see you, gentlemen. I think all of you have already seen the results of the last market day. And today we give you the best stock at the best price for today. The Company has released news on friday. Here it is (read full version on your favorite news site) - Marshall Holdings International, Inc. Announces Subsidiary 3rd Quarter Results Over 1.5 Million, an Increase of 147% Marshall