search for: tag_index

Displaying 3 results from an estimated 3 matches for "tag_index".

Did you mean: page_index
2010 Mar 31
0
Rails3 parameters in routes
In Rails 2 I was able to specify extra parameters within a route, like this: map.login "login", :controller => "user_sessions", :action => "new", :tag_index => true The tag_index would be available in the controller via params[:tag_index]. I''ve searched to find a simular solution within Rails 3, but I''m still unable to find it. Does anybody know a solution? HJ -- Posted via http://www.ruby-forum.com/. -- You received this mess...
2012 Apr 20
1
[PATCH] multiqueue: a hodge podge of things
...typedef int (bsg_job_fn) (struct bsg_job *); enum blk_eh_timer_return { BLK_EH_NOT_HANDLED, BLK_EH_HANDLED, BLK_EH_RESET_TIMER, }; typedef enum blk_eh_timer_return (rq_timed_out_fn)(struct request *); enum blk_queue_state { Queue_down, Queue_up, }; struct blk_queue_tag { struct request **tag_index; /* map of busy tags */ unsigned long *tag_map; /* bit map of free/busy tags */ int busy; /* current depth */ int max_depth; /* what we will send to device */ int real_max_depth; /* what the array can hold */ atomic_t refcnt; /* map can be shared */ }; #define BLK_SCSI_MAX_CMDS (256) #...
2012 Apr 20
1
[PATCH] multiqueue: a hodge podge of things
...typedef int (bsg_job_fn) (struct bsg_job *); enum blk_eh_timer_return { BLK_EH_NOT_HANDLED, BLK_EH_HANDLED, BLK_EH_RESET_TIMER, }; typedef enum blk_eh_timer_return (rq_timed_out_fn)(struct request *); enum blk_queue_state { Queue_down, Queue_up, }; struct blk_queue_tag { struct request **tag_index; /* map of busy tags */ unsigned long *tag_map; /* bit map of free/busy tags */ int busy; /* current depth */ int max_depth; /* what we will send to device */ int real_max_depth; /* what the array can hold */ atomic_t refcnt; /* map can be shared */ }; #define BLK_SCSI_MAX_CMDS (256) #...