search for: _options

Displaying 19 results from an estimated 19 matches for "_options".

Did you mean: options
2016 Feb 23
2
[PATCH] *_OPTIONS="help=1" should print to stdout and fit 80 chars width
Hello. I would like to modify printing of help options in order to fix: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69840 I basically split all *_flags.inc options with new lines. Eventually, these string are printed to limit the output to 80 characters: https://www.gnu.org/prep/standards/html_node/Command_002dLine-Interfaces.html That's my first patch request in the project, please advise
2016 Feb 24
1
[PATCH] *_OPTIONS="help=1" should print to stdout and fit 80 chars width
Hi, Martin! You can find pretty nice instructions how to do it via Phabricator here: http://llvm.org/docs/Phabricator.html. -Maxim On 23/02/16 21:30, Xinliang David Li via llvm-dev wrote: > Can you send this patch to llvm-commits ? > > David > > On Tue, Feb 23, 2016 at 1:15 AM, Martin Liška <llvm-dev at lists.llvm.org > <mailto:llvm-dev at lists.llvm.org>> wrote:
2023 Apr 14
1
[libnbd PATCH 1/4] copy: rename (LONG|SHORT)_OPTIONS to (LONG|SHORT)_OPTIONS_OPTION
On 4/14/23 10:11, Richard W.M. Jones wrote: > On Fri, Apr 14, 2023 at 09:59:53AM +0200, Laszlo Ersek wrote: >> Two of the enum constants that denote command line options are >> inconsistently named with the rest: all identifiers should be >> <purpose>_OPTION, but LONG_OPTIONS and SHORT_OPTIONS (which are supposed >> to list the long and short options) don't conform. Rename them. >> >> Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2172516 >> Signed-off-by: Laszlo Ersek <lersek at redhat.com> >> --- >> copy/main.c | 1...
2023 Apr 14
1
[libnbd PATCH 1/4] copy: rename (LONG|SHORT)_OPTIONS to (LONG|SHORT)_OPTIONS_OPTION
Two of the enum constants that denote command line options are inconsistently named with the rest: all identifiers should be <purpose>_OPTION, but LONG_OPTIONS and SHORT_OPTIONS (which are supposed to list the long and short options) don't conform. Rename them. Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2172516 Signed-off-by: Laszlo Ersek <lersek at redhat.com> --- copy/main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 de...
2023 Apr 14
1
[libnbd PATCH 1/4] copy: rename (LONG|SHORT)_OPTIONS to (LONG|SHORT)_OPTIONS_OPTION
On Fri, Apr 14, 2023 at 09:59:53AM +0200, Laszlo Ersek wrote: > Two of the enum constants that denote command line options are > inconsistently named with the rest: all identifiers should be > <purpose>_OPTION, but LONG_OPTIONS and SHORT_OPTIONS (which are supposed > to list the long and short options) don't conform. Rename them. > > Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2172516 > Signed-off-by: Laszlo Ersek <lersek at redhat.com> > --- > copy/main.c | 12 ++++++------ > 1...
2006 Jan 08
2
RoR AJAX select box update?
...t;id", "coordinator_name") %> </select> <select id="budget_project_number" name="budget[project_number]"> </select> #get_projects def get_projects @results = Project.find_all render :partial => ''options'' end # _options.rhtml <% for project in @results do -%> <option value="<%=project.project_id%>"><%=project.project_number%></option> <% end -%> This somehow seem to work in firefox, but not in IE. also the ajax calls returns the whole options tag.. instead of this...
2012 Nov 09
2
[LLVMdev] lld deadstrip atoms
Hi Nick, Dead stripping optimization needs a way to setup the roots which are live. The current code in Resolver does it by 1) setting all the global defined atoms to be the live set when building shared libraries (_options.allGlobalsAreDeadStripRoots) 2) Or, uses a list of names that are dead strip roots (other types) Question:- *********** How are the dead strip root names supposed to be set ? Does each Reader need to set specific information on what are the dead strip roots ? There is a flag in the DefinedAtom...
2002 Dec 19
0
Another Little Patch
...================================== RCS file: /usr/local/cvs/Shorewall/firewall,v retrieving revision 1.146 diff -a -u -r1.146 firewall --- firewall 19 Dec 2002 20:14:10 -0000 1.146 +++ firewall 19 Dec 2002 21:14:14 -0000 @@ -597,7 +597,7 @@ eval ${interface}_zone="$z" eval ${interface}_options=\"$options\" - for option in `separate_list $options`; do + for option in $options; do case $option in dhcp|noping|filterping|routestopped|norfc1918|multi|tcpflags) ;; @@ -2160,8 +2160,8 @@ if [ "$loglevel" = ULOG ]; then run_iptables2 -A...
2002 Dec 20
0
Another Beta Patch
...===== RCS file: /usr/local/cvs/Shorewall/firewall,v retrieving revision 1.148 diff -a -u -r1.148 firewall --- firewall 20 Dec 2002 01:13:41 -0000 1.148 +++ firewall 20 Dec 2002 21:05:59 -0000 @@ -1159,7 +1159,7 @@ for interface in $all_interfaces; do eval options=\$`chain_base ${interface}`_options - list_search $options && \ + list_search $1 $options && \ echo ${interface}:0.0.0.0/0 done } @@ -1679,8 +1679,7 @@ qt ip addr del $external dev $interface fi - if [ -z "$allints" -o "$allints" = "Yes" \ - -o "$allints&qu...
2007 Jul 07
0
Events in view question
...uot;categories", "<option>Team</option><option>Individual</option>" %> </p> <div id="sel_con"></div> <p> <%= submit_tag "Show Sports" %> </p> <%= end_form_tag %> #_options.rhtml: <select id="<%= sptype %>" name="<%= sptype %>"> <% sports.each do |sport| %> <option><%= sport %></option> <% end %> </select> --~--~---------~--~----~------------~-------~--~----~ You received this...
2012 Nov 12
0
[LLVMdev] lld deadstrip atoms
On Nov 9, 2012, at 10:31 AM, Shankar Easwaran wrote: > Hi Nick, > > Dead stripping optimization needs a way to setup the roots which are live. The current code in Resolver does it by > > 1) setting all the global defined atoms to be the live set when building shared libraries (_options.allGlobalsAreDeadStripRoots) > 2) Or, uses a list of names that are dead strip roots (other types) > > Question:- > *********** > How are the dead strip root names supposed to be set ? Does each Reader need to set specific information on what are the dead strip roots ? On darwin th...
2006 Feb 04
4
AJAX rendered select doesn''t get submitted
..._groups = StateGroup.find_all_by_country_id(country.id) @state_groups.each {|g| g.name = ''- '' + g.name + '' -''} render(:partial => ''options'') end _______________________________________________________________________________ _options.rhtml partial that gets rendered: <select name="address[state_province]" id="address_state_province" class="siteText" style="width: 175px;"> <option value="">-- Select State/Province --</option> <%= option_groups_from_c...
2006 May 08
2
have any one tried Snmp extension to Net-SNMP daemon
...src/soap/soapC.c:2153: warning: passing argument 8 of ''soap_id_forward'' makes integer from pointer without a cast src/soap/soapC.c:2153: error: too few arguments to function ''soap_id_forward'' src/soap/soapC.c: In function ''soap_in_ns__get_common _options'': src/soap/soapC.c:2237: warning: passing argument 8 of ''soap_id_forward'' makes integer from pointer without a cast src/soap/soapC.c:2237: error: too few arguments to function ''soap_id_forward'' src/soap/soapC.c: In function ''soap_in_ns__common_o...
2018 Feb 27
2
Failed to get quota limits
...; > > > > >> > > > > > > > > > 0-glusterfsd-mgmt: disconnected from remote-host: localhost >> > > > > > > > > > >> > > > > > > > > > \[2018-02-13 08:16:13.943827\] I \[afr.c:94:fix\_quorum\_options\] >> > > > > > > > > > >> > > > > > > > > > 0-myvolume-replicate-0: reindeer: incoming qtype = none >> > > > > > > > > > >> > > > > > > > > > \[2018-02-13 08:16:13.943...
2018 Feb 24
0
Failed to get quota limits
...; > > > > > > > > > > > > > > > > 0-glusterfsd-mgmt: disconnected from remote-host: localhost > > > > > > > > > > > > > > > > > > > > \[2018-02-13 08:16:13.943827\] I \[afr.c:94:fix\_quorum\_options\] > > > > > > > > > > > > > > > > > > > > 0-myvolume-replicate-0: reindeer: incoming qtype = none > > > > > > > > > > > > > > > > > > > > \[2018-02-13 08:16:13.943857\] I \[afr....
2018 Feb 27
0
Failed to get quota limits
...; > > > > > > > > > > > > 0-glusterfsd-mgmt: disconnected from remote-host: localhost > > > > > > > > > > > > > > > > > > > > > > > > \[2018-02-13 08:16:13.943827\] I \[afr.c:94:fix\_quorum\_options\] > > > > > > > > > > > > > > > > > > > > > > > > 0-myvolume-replicate-0: reindeer: incoming qtype = none > > > > > > > > > > > > > > > > > > > > > > > >...
2023 Apr 14
4
[libnbd PATCH 0/4] copy: wrap source code at 80 characters
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2172516 I figured I'd work on the libnbd line wrapping in shorter waves than how long the nbdkit patch series was. Laszlo Laszlo Ersek (4): copy: rename (LONG|SHORT)_OPTIONS to (LONG|SHORT)_OPTIONS_OPTION copy: rename <purpose>_OPTION to OPT_<purpose> copy: fix layout of "long_options" table copy: rewrap error message about stuck NBD server copy/main.c | 76 ++++++++++---------- copy/nbd-ops.c | 5 +- 2 files changed, 42 insertions(+),...
2014 Oct 01
3
Return on experience with an Emerson/Liebert GXT3
...the faq. However, the drivers/upsdrvctl.c do_upsconf_args function do not handle "user" global declaration (at least in the git repository, i haven't checked the debian patches). So i think that either the manual or the implementation is broken. As a workaround i added an UPSDRVCTL_OPTIONS to the /etc/init.d/nut-server scripts and set UPS*_OPTIONS to "-u nut". Thanks to this hack, the driver and the daemon start. # service nut-server start [ ok ] Starting NUT - power devices information server and drivers:? driver(s). upsd. (5) After those steps, everything "seems&qu...
2018 Feb 23
2
Failed to get quota limits
...ocket >>>>>>>>> [2018-02-13 08:16:09.940519] I [glusterfsd-mgmt.c:2134:mgmt_rpc_notify] >>>>>>>>> 0-glusterfsd-mgmt: disconnected from remote-host: localhost >>>>>>>>> [2018-02-13 08:16:13.943827] I [afr.c:94:fix_quorum_options] >>>>>>>>> 0-myvolume-replicate-0: reindeer: incoming qtype = none >>>>>>>>> [2018-02-13 08:16:13.943857] I [afr.c:116:fix_quorum_options] >>>>>>>>> 0-myvolume-replicate-0: reindeer: quorum_count = 2147483647 >>&...