search for: collect

Displaying 20 results from an estimated 14104 matches for "collect".

Did you mean: collect2
2011 Jul 26
3
[LLVMdev] Linking opaque types
On Jul 25, 2011, at 10:58 PM, Talin wrote: > To handle the fact that types do not (and can not, at least as long as we intend to support obscure languages like "C" :) have linkage, the the linker uses a "best effort" approach. It attempts to merge types and rewrite IR to use the merged types where it can, but it doesn't make any guarantees. > > I want to add an
2006 Apr 03
1
:through causes White Screen of Death
i''m trying to get :through associations working per the wiki: http://wiki.rubyonrails.com/rails/pages/ThroughAssociations i follow the instruction to the t, with the exception that i''m trying to use it with a polymorphic association. here are the associations in my models: Collection has_many :collectings Collection has_many :collectables, :through => collectings Collecting belongs_to :collection Collecting belongs_to :collectable, :polymorphic => true Book has_many :collectings, :as => :collectable Book has_many :collections, :through => :collectings i'...
2006 May 18
3
Model Madness: habtm vs through
This has me scratching my head: a Person has many Things a Person has many Collections a Collection has many Things ...Things in a Collection are ordered ...Things in a Collection can be related to (created by) any User ...a collection has additional attributes, such as a name etc I am confused about habtm in rails (especially when using acts_as_habtm_list) vs. going the...
2015 Dec 23
0
CentOS-announce Digest, Vol 130, Issue 11
...HTTP Server 2.4 on CentOS Linux 6 x86_64 SCL Message-ID: <56793977.1060101 at redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed I am pleased to announce the immediate availability of version 2.4 of the Apache HTTP Server on CentOS Linux 6 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: $ sudo yum install centos-release-scl $ sudo yum install httpd24-httpd $ scl enable httpd24 bash At this point you should...
2015 Dec 22
0
CentOS-announce Digest, Vol 130, Issue 10
...cing release for NodeJS 0.10 on CentOS Linux 7 x86_64 SCL Message-ID: <5678229D.8010608 at redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed I am pleased to announce the immediate availability of version 0.10 of the NodeJS on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: $ sudo yum install centos-release-scl $ sudo yum install nodejs010 $ scl enable nodejs010 bash At this point you should...
2018 Dec 12
0
CentOS-announce Digest, Vol 166, Issue 3
...tOS-announce] Announcing release of PHP 7.2 Message-ID: <5f81205f-1311-8186-44f3-12d6e89a284d at redhat.com> Content-Type: text/plain; charset="windows-1252" I am pleased to announce the immediate availability of PHP in version 7.2 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: # 1. Install a package with repository for your system: $ sudo yum install centos-release-scl # 2. Install the collection:...
2017 Nov 29
0
CentOS-announce Digest, Vol 153, Issue 7
...lease of MongoDB 3.4 on CentOS Linux 6 x86_64 Message-ID: <a94452c1-7413-77ef-c148-23ed76b6a79f at redhat.com> Content-Type: text/plain; charset="utf-8" I am pleased to announce the immediate availability of MongoDB in version 3.4 on CentOS Linux 6 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: $ sudo yum install centos-release-scl $ sudo yum install rh-mongodb34 $ scl enable rh-mongodb34 bash At this point yo...
2015 Dec 24
0
CentOS-announce Digest, Vol 130, Issue 12
...ncing release for Developer Toolset 3 on CentOS Linux 6 x86_64 SCL Message-ID: <567A82D5.10705 at redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed I am pleased to announce the immediate availability of Developer Toolset 3 on CentOS Linux 6 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: $ sudo yum install centos-release-scl $ sudo yum install devtoolset-3-toolchain $ scl enable devtoolset-3 bash At this point you...
2018 Jun 13
0
CentOS-announce Digest, Vol 160, Issue 2
...ing release of HAProxy 1.8 on CentOS 7 x86_64 Message-ID: <c2cb0e51-90f7-3c18-5dd1-884a545f2bdb at redhat.com> Content-Type: text/plain; charset="utf-8" I am pleased to announce the immediate availability of HAProxy in version 1.8 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: # 1. Install a package with repository for your system: # On CentOS, install package centos-release-scl available in CentOS...
2016 Jul 19
0
CentOS-announce Digest, Vol 137, Issue 6
...ase of NodeJS 4 on CentOS Linux 7 x86_64 SCL Message-ID: <4c740555-1669-a616-f6a7-7160f09e48eb at redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed I am pleased to announce the immediate availability of NodeJS in version 4 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: $ sudo yum install centos-release-scl $ sudo yum install rh-nodejs4 $ scl enable rh-nodejs4 bash At this point...
2006 Feb 08
1
Save only inserts null instead of actual values
Hi, whenever I try to save my form, rails only enters null values in my database. I''m using sqlite, I thought that sqlite might be the problem, but the problem remains when I switched to mysql. Here is my code: controller: class CollectionController < ApplicationController def new @collection = Collection.new end def create if request.get? redirect_to :action => ''new'' elsif request.post? @collection = Collection.new(params[:collection]) if @collection.save flash[...
2015 Dec 18
0
CentOS-announce Digest, Vol 130, Issue 7
...72B99E.6060600 at redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed I am pleased to announce the immediate availability versions 1.9.3, 2.0.0, and 2.2 of the Ruby, and versions 3.2, 4.0 and 4.1 of the Ruby on Rails, now also on CentOS Linux 6 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). This is an addition for the Ruby collections that are already available for CentOS 7 (https://lists.centos.org/pipermail/centos-announce/2015-November/021501.html). QuickStart ---------- You...
2006 May 26
3
Breakdowns in has_many abstraction
...s_many behavior that I''m struggling to work around. I''m not sure if I''m doing something wrong, or if it''s a legitimate bug, or if it''s an inherent part of Rails that I just have to learn to deal with. It boils down to these two problems: - changes in collection objects (i.e. models that belong_to a container model) don''t propagate to the container object''s collection view until the collection objects are saved and the association reloaded - the collection= method doesn''t do anything when you give it updated objects I encou...
2018 Dec 11
1
Announcing release of PHP 7.2
I am pleased to announce the immediate availability of PHP in version 7.2 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: # 1. Install a package with repository for your system: $ sudo yum install centos-release-scl # 2. Install the collection:...
2018 Dec 11
1
Announcing release of PHP 7.2
I am pleased to announce the immediate availability of PHP in version 7.2 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps: # 1. Install a package with repository for your system: $ sudo yum install centos-release-scl # 2. Install the collection:...
2015 Nov 12
0
Announcing release for Ruby 1.9.3, 2.0.0, 2.2 and Ruby on Rails 3.2, 4.0, 4.1 on CentOS Linux 7 x86_64 SCL
I am pleased to announce the immediate availability of Ruby in versions 1.9.3, 2.0.0, and 2.2, and Ruby on Rails in versions 3.2, 4.0 and 4.1 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps (example of Ruby 2.2 and Ruby on Rails 4.1, for others use particular collection names instead): $ sudo yum install centos-rele...
2015 Dec 17
0
Announcing release for Ruby 1.9.3, 2.0.0, 2.2 and Ruby on Rails 3.2, 4.0, 4.1 on CentOS Linux 6 x86_64 SCL
I am pleased to announce the immediate availability versions 1.9.3, 2.0.0, and 2.2 of the Ruby, and versions 3.2, 4.0 and 4.1 of the Ruby on Rails, now also on CentOS Linux 6 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). This is an addition for the Ruby collections that are already available for CentOS 7 (https://lists.centos.org/pipermail/centos-announce/2015-November/021501.html). QuickStart ---------- You...
2010 Oct 05
1
loess with missing data points
Hello List, I have a longitudinal samples on multiple individuals, for initial analysis, i am doing some plots to see how the variable changes with the age. In some of the individuals one or two data points are missing, IL1Ra Age.at.Sample.Collection Subject.ID 6.575466 2.004106 00709-0 NA 2.162902 00709-0 5.115421 3.312799 00709-0 6.119626 3.515400...
2005 Dec 31
4
saving a collection
Reading the Agile book, I can''t find a single command to save a collection. The save command seems to operate on only individual objects. Lets say I have a collection that I have received from a find_all command. I want to go through and change some attributes in various objects in the collection. Then I want to resave the whole collection back to the database. I do...
2015 Nov 13
0
CentOS-announce Digest, Vol 129, Issue 6
...ssage-ID: <5644CD57.3090401 at redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed I am pleased to announce the immediate availability of Ruby in versions 1.9.3, 2.0.0, and 2.2, and Ruby on Rails in versions 3.2, 4.0 and 4.1 on CentOS Linux 7 x86_64, delivered via a Software Collection (SCL) built by the SCLo Special Interest Group (https://wiki.centos.org/SpecialInterestGroup/SCLo). QuickStart ---------- You can get started in three easy steps (example of Ruby 2.2 and Ruby on Rails 4.1, for others use particular collection names instead): $ sudo yum install centos-rele...