Displaying 20 results from an estimated 1000 matches similar to: "Ryan Bates' Multi-object Forms and the date_select"
2007 Jul 16
6
RubyToken::AlreadyDefinedToken and Edge Rails Docs
I''m having a wee bit of trouble building documentation for Edge Rails
(rev 7187). When I attempt to run the doc:rails taask (or any doc:*
task), I get the following error:
-- BEGIN --
rake aborted!
uninitialized constant RubyToken::AlreadyDefinedToken
/Users/jherdman/Projects/crosslisting/vendor/rails/activerecord/
lib/../../activesupport/lib/active_support/dependencies.rb:263:in
2007 Dec 12
3
Problem running examples with spec_server
Hello,
Running RSpec without DRB works fine.
However, "spec -X" runs without error but provides no output at all, even
though the DRB spec_server seems to be fine.
Has anyone got some suggestions as to why and how to fix?
RSpec: 1-1-0RC1 build time 20071212145122
RSpec on Rails: Build time 20071212145122
Ruby: 1.8.6
Rails: 2-0-1
Win XP SP 2
Thanks very much,
Dave
-------------- next
2007 Jan 25
4
shadow page code
APIs such as sh_invlpg and sh_update_cr3 take a pointer to the virtual cpu on which it needs to operate as an argument. However, it appears that the call can only operate on the currently executing vcpu.
Regards,
K. Y
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2007 Jul 23
2
Acts_As_Ferret: disable_ferret and Callbacks
Does disable_ferret monkey with callbacks at all? I have a model in my
application that has associated models which perform callbacks after
their validation (they''re all instantiated around the same time). I
recently added a conditional call to disable ferret provided a flag and
I''m finding these callbacks aren''t quite working right.
Here''s a code sample:
2007 Apr 27
2
dovecot + ldap + quota
hi....
i using dovecot 1.0rc26 and i started to configure quota plugin but i think
its not working fine.
i configure like suggested in http://wiki.dovecot.org/Quota
in dovecot.conf:
protocol imap {
mail_plugins = quota imap_quota
}
plugin {
# 10 MB quota limit
quota = maildir:storage=10240
}
in dovecot-ldap.conf:
user_attrs =
2007 Dec 26
1
Typos on prototypejs.org
Guys maintaining prototypejs.org, have a look:
http://dev.rubyonrails.org/ticket/10618
far from top priority tickets but we''re already overburdened by open
tickets that need attention.
MK
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send
2007 Dec 26
1
#10615 : inflection bug that affects classify method
Have a look:
http://dev.rubyonrails.org/ticket/10615
This is actually a singularize method bug:
>> "Business".singularize
=> "Busines"
seems that classify uses singularize internally.
Rick resolved it as invalid but I cannot understand why. Rick, could
you shed some light on your decision?
MK
--~--~---------~--~----~------------~-------~--~----~
You received
2008 Mar 13
1
Merb Projects and Autotest
Hi!
I''m rather new to Merb, but I thought I''d give it a shot. I found that
autotest wasn''t running my specs when my models were changing. Maybe this
is because of how I have set up Merb, but in the even that it''s not just me,
I''ve adapted Autotest''s mappings for Rails and have attached my efforts to
this email. Unfortunately, you need to
2013 Nov 11
2
[LLVMdev] Add a new llvm intrinsic?
Sorry for the delay in getting back to you. I don't know if anything
came out of this, since Xiaoyi never wrote back. What does some of the
affected code look like? My opinion is still that 'restrict' should
mean that no other thread should use a pointer aliasing the restrict
pointer, although if many threads are started after the lifetime of
the restrict pointer starts, and they
2013 Jan 09
5
[LLVMdev] Using C++'11 language features in LLVM itself
On Tue, Jan 8, 2013 at 4:17 PM, Sean Silva <silvas at purdue.edu> wrote:
> On Tue, Jan 8, 2013 at 6:45 PM, Chris Lattner <clattner at apple.com> wrote:
>> some version of GCC and later (linux folks should pick?)
>
> 4.6 is the official compiler on Ubuntu 12.04 (released 04/2012), which
> is the latest Long Term Support release (which come out every 2 years,
> with
2013 Aug 07
2
[LLVMdev] Add a new llvm intrinsic?
Chandler pointed out another interpretation of C11/6.7.3.1, in which
'restrict' only addresses aliasing within a single thread. If that's
the right interpretation, then it's a bug in LLVM that it moves
noalias pointers across memory-ordering operations at all, and you
still don't need a new fence, just a bug fix.
6.7.3.1 says "During each execution of B, ...".
2003 Dec 12
4
Simultaneous incoming calls
Hi,
This is our test setup: 4 phones, 2 logged into the one queue, the other
2 phones are used to dial into the queue.
If there are 2 calls coming into the queue at the same time, we would
like to have the 2 queue phones ringing at the same time (one for each
call). But as it is, the 2nd phone only starts ringing after the first
one was picked up.
Scenario:
One of the non-queue phones dials
2013 Nov 11
0
[LLVMdev] Add a new llvm intrinsic?
Hi Jeff,
It’s not really meaningful to talk about threads being created in the context of an OpenCL kernel. The other threads are always present.
void kernel(int * restrict array, int * restrict array2) {
int value = array[0] + get_thread_id() + 1;
barrier();
array[get_thread_id()] = value;
barrier();
array2[get_thread_id()] = array[0];
}
In this example code, the kernel is well
2007 Aug 26
2
ror app with advanced rspec?
Hi!
Can anybody link to some ror based project what is using rspec, so
nuby as me can learn from it. So it should have updated and practising
advanced rspec.
After reading last threat about "testing behaviour or testing code?",
I just realised that I would definitely learn something from app like
that. Some casual googling didn''t help me this time.
Thanks!
Priit at
2013 Nov 08
0
[LLVMdev] Add a new llvm intrinsic?
Hi Jeff,
Do you know if anything came of this? I understand we may need to seek clarification to get a formal answer, particularly with respect to C, but it seems pretty clear to me that this is a significant QoI issue, both for C and CL. LLVM is effectively hoisting a load above a thread-join. This may or may not technically allowed in C, but it seems generally undesirable, and it’s extremely
2008 Jul 04
4
Routing and Parameters
Greetings. I have a route something like this:
map.calendar ''/tasks/:year/:month'',
:controller => ''tasks'',
:action => ''calendar'',
:year => /\d{4}/,
:month => /\d{2}/
(Ignore the obvious problems of invalid data.)
I''m trying to create a form that will allow my users to navigate from
one month/year to the next.
2002 Sep 20
1
Mounting a ntfs on a w2k server onto a SuSE linux 8 setup at boot time.
Hi,
I am a new Linux user and I need help.
I have a W2K server with a couple of shared folders formated in the NTFS File format. Can I edit the FSTAB file so they can be mounted automatically. I have tried the SMBFS way but it keeps sayoing that i need to be SUID????
Can I use the VFAT command instead as that thw way my WinMe patitions on the same harddisk as Linux is done???
Thanks for any
2008 Apr 22
1
''dependencies'' and RedCloth
Hey gang.
Jed noticed an issue with the ''dependency''/''dependencies'' macro the other
day when working on the Collective wiki. Namely, if you make RedCloth a
dependency Merb gets a little cranky. I think I have this figured out when
doing some mods to Collective today too. However, before I go trying to fix
this in Merb, I wanted to run this by the community.
2020 Jun 24
3
[cfe-dev] Phabricator Maintenance
I understand that keeping this within one company is easiest from an organization perspective, so if Fangrui and Mehdi (and other Googlers) are able to take this on, that’s great. If not, I can raise this internally at Facebook. An estimate of the total costs incurred would be helpful for that, e.g. you mentioned Sendgrid being a couple of hundred dollars a month.
Thanks,
Shoaib
From: llvm-dev
2011 Jul 11
2
Can't get this Rspec test to pass
Hello,
I''m completely new to Rspec testing and I''m finding it very difficult to
mock specific objects.
In this test, I have a before block setup as such:
[code]
before do
setup_controller_for_warden
controller.session[:operation_id] = 1
@operator = Factory :operator
sign_in :operator, @operator
@persist_herd = Herd.new