search for: main_options

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

2006 Mar 31
5
RoR 1.1 RJS problem
...<!-- main_description --> <%= form_remote_tag(:url => { :action => "show_conf_admin" }, :update => "main") %> <div id="main_content"> -no content- </div> <!-- main_content --> <div id="main_options"> Press Begin to start. <div id="main_buttons"> <%= submit_tag("Begin!") %> </div> <!-- main_buttons --> </div> <!-- main_options --> <%= end_form_t...
2011 Sep 15
1
[LLVMdev] LLVM ERROR: Cannot yet select: 0x1fcc5f0: f64 = ConstantFP<0.000000e+00> [ID=4]
1. My configuration: OS: ubuntu11.04, CPU: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz llvm: llvm-2.8 2. My running environment: ~#llvm-gcc -DCOMPDATE="today" -DCFLAGS="" -DHOSTNAME="thishost" -DNeedFunctionPrototypes=1 -DSASR -DPROBES=8 -O3 -emit-llvm /home/qali/Develop/Benchmark/MultipleSource/FreeBench/distray/distray.c -o
2012 Sep 14
1
[PATCH] xenpm: make argument parsing and error handling more consistent
...ret, strerror(ret)); xc_interface_close(xc_handle); - return 0; + return ret; } max_cpu_nr = physinfo.nr_cpus; @@ -1214,14 +1189,18 @@ int main(int argc, char *argv[]) for ( i = 0; i < nr_matches; i++ ) fprintf(stderr, " %s", main_options[matches_main_options[i]].name); fprintf(stderr, "\n"); + ret = EINVAL; } else if ( nr_matches == 1 ) /* dispatch to the corresponding function handler */ main_options[matches_main_options[0]].function(argc - 2, argv + 2); else + {...