search for: entiti

Displaying 20 results from an estimated 4482 matches for "entiti".

Did you mean: entity
2006 Jan 31
4
has_one without inverse belongs_to
I have two models called entity and user. The entities table has a column called users_id that contains the user id of the user that created the entity. In entity I have... has_one :user ... as I want to be able to show the user who created the entity from the entity object. But this produces the following error... Mysql::Error: #42S22Unknown...
2008 Jul 26
2
Re: Gnumeric rpm
On Sat, Jul 26, 2008 at 10:13 AM, Iain Lee <menelaus at spartica.net> wrote: > Paul, > > Thanks your contribution, I too miss gnumeric. However, I get these errors > and the installed gnumeric crashes on opening a gnumeric file: > > ============================================================================= > Package Arch Version
2006 Apr 16
8
"Cannot convert String to Integer" after using association
So, I''ve written a partial that does some stuff with a given instance of my class "entity". Entity is ActiveRecord. I''m able to retrieve all sorts of data from an @entity, until I do something like: <% for @attribute in @entity.attributes %> <div id="attribute_<%= @attribute.id %>"> <%= render(:partial =>
2006 Apr 30
16
postgresql duplicate key violates unique constraint
I have a weird problem with creating a new record when using PostgreSQL. From inside script/console ... >> entity = Entity.new >> entity.first_name = "Foo" >> entity.last_name = "bar" >> entity.save Throws an exception due to the following SQL error: duplicate key violates unique constraint. The application was working fine before and suddenly
2006 Jan 15
2
single table inheritance: change object ''type'' after create?
Hey folks, I''m trying to keep track of couple of different kinds of "entities" in my rails app: "people", "organizations", and "committees". I have a single Entities table in the database, and I''m using Single Table Inheritance to keep the different subclasses in the same table, with a field "type". My problem com...
2010 Sep 12
3
reshape matrix entities to columns
Greeting R helpers J I am not familiar with R but I have to use it to analyze data set that I have (30,000 20,000) I want to change the structure of the dataset and I am wondering how that might be possible in R A main data looks like this: some entities are empty Age No. Age No. Age No. Center1 5 2 8 7 Center2 10 7 20 9 4 10 But what I want the data t...
2007 Oct 13
0
5 commits - libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_xml.c test/trace
...nd:quit", ""); diff --git a/test/trace/xml-parse-2.xml b/test/trace/xml-parse-2.xml index 70fa949..f3c2d88 100644 --- a/test/trace/xml-parse-2.xml +++ b/test/trace/xml-parse-2.xml @@ -13,8 +13,8 @@ cruft <?xml version="1.0" encoding="UTF- </normal> <!-- entities --> -<entities entities_attribute="&lt; &gt; &quot; &apos; &amp;"> - &lt; &gt; &quot; &apos; &amp; +<entities entities_attribute="&lt; &gt; &quot; &apos; &amp; &nbsp;"> + &lt; &gt; &qu...
2009 Jan 09
1
Is there a problem with webrat?
webrat (0.3.4) I have this in the view: <div id="list_entity_1"> <tr> <td>Just An Entity</td> <td>000001</td> <td id="show_entity_1"><a href="/entities/1">Show Entity</a></td> <td id="edit_entity_1"><a href="/entities/1/edit">Edit Entity</a></td> <td id="delete_entity_1"> <a href="/entities/1" onclick="if (confirm(''Are you su...
2008 Apr 13
20
uninitialized constant
Hi guys, I''m part way through a RoR application, for some reason whenever I add new controllers (using scaffold) I get an uninitialized constant [name of controller] error. The first few controllers work fine, the only thing I can see that I''ve changed is the layout file (but scaffold creates a new layout for each controller so can''t see that being the problem). You
2023 Aug 11
1
[PATCH drm-misc-next] drm/nouveau: sched: avoid job races between entities
...the particular job to be scheduled, rather than for the job to fully complete. This is due to the GPU scheduler assuming that there is a scheduler instance per ring. However, the current implementation, in order to avoid arbitrary amounts of kthreads, has a single scheduler instance while scheduler entities represent rings. As a workaround, set the DRM_SCHED_FENCE_DONT_PIPELINE for all out-fences in order to force the scheduler to wait for full job completion for dependent jobs from different entities and same scheduler instance. There is some work in progress [1] to address the issues of firmware...
2008 Feb 21
5
Question about entities
1.) What is everyone''s preference on NCRs or character entities? Textile 2 uses decimal NCRs, so a less-than character becomes &#60; whereas RedCloth (3.04 and prior) used &lt;. What is your preference? It gets tough because &#39; (a straight single quote) doesn''t have a character entity equivalent. 2.) How do you feel about e...
2015 Nov 18
3
RFC: Supporting all entities declared in lexical scope in LLVM debug info
Hi, I would like to implement a fix to how LLVM handles/creates debug info for entities declared inside a basic block. Below you will find 5 parts: 1. Motivation for this fix. 2. Background explaining the cases that need to be fixed. 3. An example for each case. 4. Proposal on how to represent each case in dwarf. 5. Secondary (workaround) proposal whic...
2006 Feb 28
1
Wrong id after join!
The Problem ----------- After using a join in my find the id attributes set in my Entity objects are wrong! It is setting the Entity id to the value from Postcode id! The Code -------- entities = Entity.find(:all, :conditions => [...omited...], :joins => "as e inner join postcodes as pc on substring_index(e.postcode,'' '', 1) = pc.outer_part " ) Produces the folowing SQL ------------------------- SELECT * FROM entities as...
2006 Jun 29
7
Mongrel says it works, but it doesn''t
Hello, I came to know of mongrel by pure chance, it interrested me cause webrick never worked and instantrails for rails was very slow. the problem with webrick is/was is that it says just this: >ruby script/server c:/ruby/lib/ruby/site_ruby/1.8/rexml/entity.rb:21: warning: character class has `-'' without escape c:/ruby/lib/ruby/site_ruby/1.8/rexml/entity.rb:21: warning: character
2016 Jan 19
2
RFC: Supporting all entities declared in lexical scope in LLVM debug info
...> > > > *From:* llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] *On Behalf Of *Aboud, > Amjad via llvm-dev > *Sent:* Wednesday, November 18, 2015 16:58 > *To:* llvm-dev at lists.llvm.org > *Cc:* Merritt, Steve; Wyma, Brock > *Subject:* [llvm-dev] RFC: Supporting all entities declared in lexical > scope in LLVM debug info > > > > Hi, > > I would like to implement a fix to how LLVM handles/creates debug info for > entities declared inside a basic block. > > Below you will find 5 parts: > > 1. Motivation for this fix. > > 2...
2006 May 18
2
Utility to translate HTML character entities into text?
Anyone know of a Ruby utility that will translate HTML character entities into text? Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2009 Apr 02
1
Histogram with lattice with two 'conditional' variables
Hello dear R-community, I have been trying to figure out a way to generate histograms of a numeric variable observed in different entities ('individual' below). Each one of this entities is classified as "A" or "B" (according to the pseudo-code below): variable<-sample(rep(1:10,10)) individual<-rep(1:10, length(variable)) group<-rep(LETTERS[1:2],length(variable)/2) mydata<-data.frame(variab...
2010 Sep 12
0
replacing matrix column entities as columns name
I am sending this again as they told me that the data was unreadable, so really hope that this will work...so sorry all note: matrix contains a lot of empty entities Greeting R helpers I am not familiar with R but I have to use it to analyze data set that I have (30,000 20,000) I want to change the structure of the dataset and I am wondering how that might be possible in R > Age No. Age No. Age No. > > Center1 5 2 8 7...
2007 Dec 19
0
Convert all HTML entities within <pre> tags?
Textile 2.0.0: bc. This is within a block of code, so < and > should be *entities*. You can talk about a <p> tag if you wish and it will be properly escaped. <pre> You can''t make something actually <b>bold</b> within. </pre> Output: <pre><code>This is within a block of code, so &lt; and &gt; should be *entitie...
2006 Mar 16
20
help with each
can you please tell me why this is not working? i got the example for how to use each online and copied it to a t (except i added the if). its telling me items.each does not exist. var items = document.getElementsByClassName(''editView''); if (items.length > 0){ items.each(function (result){ thisid = result.id; thiskey = thisid.replace(/se_item_/gi, '''');