search for: bli

Displaying 20 results from an estimated 41 matches for "bli".

Did you mean: bi
2010 Sep 01
3
[LLVMdev] Assertion failure in tablegen: rationale ?
Hello, I was fiddling with TableGen (for a use that has nothing to do with a compiler but it's doesn't matter) and TableGen triggers an assertion failure on this code (I reduced the case to the minimum, it's a parsing bug): class Bli<string _t> { string t = _t; } class Bla<list<Bli> _bli> : Bli<!car(_bli).t> { } #0 0x00007ffff6ebda75 in *__GI_raise (sig=<value optimized out>) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 #1 0x00007ffff6ec15c0 in *__GI_abort () at abort.c:92 #2 0x00007ffff6...
2010 Sep 01
0
[LLVMdev] Assertion failure in tablegen: rationale ?
...(for a use that has nothing to do with a compiler but it's doesn't matter) and TableGen triggers an assertion failure on this code (I reduced the case to the minimum, it's a parsing bug): David, can you take a look? This is related to your lisp interpreter :) -Chris > > class Bli<string _t> > { > string t = _t; > } > > class Bla<list<Bli> _bli> > : Bli<!car(_bli).t> > { > } > > #0 0x00007ffff6ebda75 in *__GI_raise (sig=<value optimized out>) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 > #1 0x00007ffff6...
2010 Sep 01
1
[LLVMdev] Assertion failure in tablegen: rationale ?
While I'm at it, I noticed a behaviour which is not exactly related but similar. To put it simply, you can 't do T.V.W, you need to do !cast<Bla>(T.V).W Example: class Bla<string t> { string blu = t; } class Bli<Bla t> { Bla bla = t; } def a : Bli<Bla<"">>; def b : Bla<!cast<Bla>(a.bla).blu>; // works def b : Bla<a.bla.blu>; // doesn't work: Cannot access field 'blu' of value 'a.bla' Although these issue are not the same, there are sim...
2006 Jan 16
5
A function that return a link_to, Possible ?
Hello, I try this : in application_helper.rb ----------------------- def lnk bla return link_to bla, { :controller => bli , :action => "blo" , :id => "blu" } end in file.rhtml ----------- <%= lnk "yo!" %> This return an error. There is a way to do this or something similar, or this is completly impossible ? Thanks
2011 Sep 01
2
Removing special chars in strings?
Hi all, How can I replace those "\" in the str? Thanks in advance. func <- function(str) { print(gsub("\\","",str)) } func("bla\ble\bli")
2018 Jan 29
0
no logon server on trusted domain
...MAC Address = 00-00-00-00-00-00 [root at lumad samba]# wbinfo -g domain admins domain computers summer postgrads generic domain users domain guests ... getent passwd and wbinfo -u will display the users... but not on the Windows AD. alu:*:111132:513:alu:/home/alu: bdu:*:105297:513:bdu:/home/bdu: bli:*:111143:513:bli:/home/bli: ....
2006 Feb 24
4
Rails Newbie Forum?
Hi all. I''m a new convert (or at least I want to be a convert) to Rails. I''ve got the book, have read it, done bits and pieces of the demo, and tried to apply it to a rather complicated DB I''ve got here. I''ve got a ton of questions, and before I bore everyone here, is there a dedicated forum for Rails newbies to get help? Yak -- Posted via
2006 Jan 28
6
Check if user is in right group
What is the best way of checking this? I have 3 tables: groups users group_members class GroupMember < ActiveRecord::Base belongs_to :group belongs_to :user validates_uniqueness_of :user_id, :scope => "group_id" Then I want a method here that checks if a given user is a member of a given group. What is the right way of doing that? def
2008 Sep 09
6
plotting group means
...ere other plotting functions in R, which can do the same? Erich ________________________________________________ Erich Studerus Lic. Phil. Klinische Psychologie Psychiatric University Hospital Zurich Division of Clinical Research Lenggstr. 31 CH-8008 Zurich Switzerland Mail: erich.studerus@bli.uzh.ch Office: +41 44 384 26 66 Mobile: +41 76 563 31 54 ________________________________________________ [[alternative HTML version deleted]]
2006 Feb 27
5
Localization: word wrap in tables?
I am a Rails noob, working on bringing a legacy db system into the 21st century. I want to localize the UI for two languages (EN/JA). Since I am already using the salted user system, I have been playing around with T. Fuchs'' localization module. Nice and simple, already up and working. But here''s the problem: Japanese text is wrapping weirdly in table cells. I could set
2005 Jun 14
2
api_pipe_bind_req: unknown auth type 9 requested.
I encountered this error/warning (I don't know) and I saw in http://lists.samba.org/archive/samba/2005-May/105124.html that jerry was aware of the problem. Should I worry about it or ignore this message ? Thanks.
2013 Feb 13
1
Error Message During ANOVA
...my four different shark-types and their entrance behavior towards an apparatus. To do this, my coding was: df1=read.table("lemonentrance.txt", header=TRUE); df1 c(t(as.matrix(df1))) r = c(t(as.matrix(df1))) # response data r f=c("Con","Bro","OEy","Bli") k=4 n=6 tm=gl(k,1,n*k,factor(f)) tm av=aov(r~tm) Error in model.frame.default(formula = r ~ tm, drop.unused.levels = TRUE) : variable lengths differ (found for 'tm') summary(av) Error in summary(av) : object 'av' not found As you can see, I receive two error messag...
2003 May 16
1
--csum-length ?!
>From the manpage: --csum-length=LENGTH By default the primary checksum used in rsync is a very strong 16 byte MD4 checksum. In most cases you will find that a trun- cated version of this checksum is quite efficient, and this will decrease the size of the checksum data sent over the link, mak- ing things faster. You can choose the
2009 Feb 27
2
Adjusting confidence intervals for paired t-tests of multiple endpoints
Dear R-users, In a randomized placebo-controlled within-subject design, subjects recieved a psycho-active drug and placebo. Subjects filled out a questionnaire containing 15 scales on four different time points after drug administration. In order to detect drug effects on each time point, I compared scale values between placebo and drug for all time conditions and scales, which sums up to
2006 Feb 25
7
Help with DRY: too much code in my view
I''m a newbie to rails, and really to the whole DRY and MVC thing as well, except where I accidentally fell into things doing it my own way in the past. I''ve got a fairly complex DB structure I want to create an interface for using Rails. Getting simple tables to display, edit, save, not too much problem there. But where I''m having trouble is figuring out where to
2008 Sep 19
1
getting line breaks with xtable
Sorry, for asking the same question again, but I got no reactions the last time. Maybe it was just overseen by the experts. I'm using the xtable function with Sweave and Lyx and I would like to know how to get automatic line breaks for long strings in a column of the table. I've learned from the Lyx wiki that the Latex command \linebreak produces table cells with multiple lines. I tried to
2008 Dec 19
1
diagonal lines in legends of ggplot2
Hi, I have the following problem with ggplot2: When I specify black contours for bars in a barplot, ggplot automatically shows diagonal lines in the legend boxes. Is there a way, to remove these diagonal lines? Here's a simple example: library(ggplot2) df<-data.frame(x=gl(6,1),y=rnorm(6,100,50)) ggplot(df,aes(y=y,x=x,fill=x))+geom_bar(aes(group=x),colour='black',size=1)+
2004 Jul 30
0
reply start with a kiss, then move on to...
ibuae~kundgebungrequestinfo computergphone' am-,er''ica d`r`^ugs & 0v^ernig~'ht d'e_,liver~ optimgdasyatidae http://www.morning-meds.com At this announcement Rob began to quiver with excitement, and sat staring eagerly at the Demon, while the latter increased in stature and sparkled and glowed more brilliantly than ever -----Original Message----- From: Mica
2006 Feb 28
2
AJAX: do render but show element in same click?
I''m a rails newbie. I''ve got a link_to_remote that puts a partial render into a div ("note1", "note2", etc.). As part of the display that comes up, I put in a hide note link (element.toggle). Click that, the div goes away, everything''s great... except now I can''t get it back. How can I call the remote AND make the div show at the same
2004 Mar 26
1
lookup.xport in foreign ignoring some datasets (PR#6701)
...t" has 51 empty datasets. lookup.xport reads only 37 first datasets. (In non-empty data lookup.xport ignored datasets in the middle (not in the end) ) > look <- lookup.xport("emptySasData3.xpt") > names(look) [1] "AE" "BII" "BIO" "BLI" "BP" "C" "D" "DEA" "DEM" "DHT" [11] "DIS" "DP" "E" "EC" "EL" "G" "HS" "HU" "IN" "IP" [21] "L&qu...