Displaying 20 results from an estimated 41 matches for "blies".
Did you mean:
lies
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
2010 Sep 01
0
[LLVMdev] Assertion failure in tablegen: rationale ?
On Sep 1, 2010, at 4:35 AM, Amaury Pouly wrote:
> 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):
David, can you take a look? This is related to your lisp interpreter :)
-Chris
>
> class
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 :
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
Hi,
I'm doing Samba PDC (named as LUMAD, 192.168.2.154 on Fedora 27) using
samba 4.7.4 with Windows 2016 AD (named as SANDBOX, ip 192.168.2.144) as
the trusted domain, but there's some issue with it. I *can't login *using
Windows AD credentials but on the *Samba PDC account works well *on Windows
7 as initial test and it's mimicking with our production server. I used to
classic
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
Hi all,
I want to plot the grouped means of some variables. The dependent variables
and the grouping factor are stored in different columns. I want to draw a
simple line-plot of means, in which the x-axis represents the variables and
y-axis represents the means. The means of the groups should be connected by
lines. So far, the only function that I could find comes closest to what I'm
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
Dear R-Help,
I'm using an ANOVA to determine if there is any variation that exists
between 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
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)
The Details.
In the following version.
> version
_
platform i386-pc-linux-gnu
arch i386
os linux-gnu
system i386, linux-gnu
status
major 1
minor 8.1
year 2003
month 11
day 21
language R
>
lookup.xport ignores some datasets in sas export file.
File "emptySasData3.xpt"
(available at http://biostat.mc.vanderbilt.edu/tmp/emptySasData3.xpt)
is a