Displaying 7 results from an estimated 7 matches for "some_arg".
2017 Aug 02
2
can llvm-lit pass output of one RUN command as an argument to another RUN command
Is there a way to do this with llvm-lit, i.e., use the equivalent of
backticks?
foo takes a single argument, but doesn't read from stdin.
// RUN foo some_arg > %t; FileCheck %s < %t
// RUN foo `cat %t` | FileCheck --check-prefix=INVERSE
// CHECK: {{^[0-9]+$}}
// INVERSE: some_arg
thanks...
don
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170802/7f5f8ee2...
2006 Feb 21
11
helper for models?
Is there such a thing?
I have some duplicate methods in my models, can I place them somewhere
and call them in to my models, thus keeping DRY?
--
Posted via http://www.ruby-forum.com/.
2015 Oct 18
2
Managed Languages BOF @ Dev Meeting
On Oct 16, 2015, at 1:27 PM, Joe Ranieri via llvm-dev <llvm-dev at lists.llvm.org> wrote:
> I'm planning on attending. You've mentioned some of these, but
> specific topics of interest for me include:
> - Dealing with the explosion of basic blocks that come up with
> languages where almost every function call, implicit and explicit, can
> raise exceptions.
I saw this
2007 May 15
6
Behaviour of pool_size setting
...a configuration that requires for example 300 worker executions I can
see that the limit of 30 workers is not kept and a number of about 180
worker processes are filling up my process list.
I start my workers like this:
key = MiddleMan.new_worker(:class => :execution_worker, :args => {...some_args...})
Why do I see so much more than my declared number of 30 workers? Am I
wrong somehow? How do I have to understand the behaviour of pool_size?
What happens when I have 30 workers working and the 31st, 32nd, ...,
300th request to start a worker comes in?
Thanks & Regards!
Christian
-...
2006 Dec 05
1
worker method not running in background
When i call a worker method my browsers hangs until the task is finished.
The same code works nicely in the background when inside the do_work method.
Does this mean i can only start a task in background via the do_work method
?
Or am i doing something wrong here ?
regards tom
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Jul 05
2
How do I access the session in a rails plugin?
I''m trying to access the session in a rails plugin, so as to set it as
below.
1. module Juggernaut
2.
3. def self.set_channels(chan)
4. session[:juggernaut_channels] = chan
5. end
6. end
7.
8. module ActionController
9. class Base
10. include Juggernaut
11. end
12. end
At the moment I get: undefined local variable or method `session'' for
2008 May 04
12
best approach to managing workers and getting status
Hi,
I am using backgroundrb to process audio files from a rails
controller. Currently a new worker gets created every time the method
is called on the worker, using this code:
@job_key = MiddleMan.new_worker(:worker
=> :audio_file_worker, :job_key => Time.now.to_i)
MiddleMan.worker(:audio_file_worker,
@job_key).make_new_audio_file(params[:release_id])
I need to create the new