search for: setoption

Displaying 20 results from an estimated 85 matches for "setoption".

Did you mean: getoption
2013 Nov 06
3
[OSSTest PATCH 0/2] MegaRAID SAS support and RebootTimeExtra documentation
Hi Ian-s, Two small patches for OSSTest. The first one turns on compiling the Linux modules for MegaRAID SAS, needed for the ultralisk machine in the Cambridge lab. The second adds an entry in the README file about the RebootTimeExtra host property, which I also needed to use for ulttralisk, as scrubbing 368GB of RAM really takes a lot! git://xenbits.xen.org/people/dariof/osstest.git misc Let
2005 Dec 22
9
truncating aggregation output only
Hello dtrace-discuss, Sometimes I want to run a script for some time and every n second output N top entries. trunc() isn''t suitable here as it also removed keys/values. I want it ''coz over time if I use sum() entries which are normally truncated can actually get to top over a time. Maybe printa() extension, something like: printa(@b[10]) - to output top 10? --
2015 Apr 10
0
yum-config-manager, does --save/--setopt work?
What is the point of --save in yum-config-manager. I cannot figure out how to use --setopt= $ yum-config-manager --save --setopt="exclude=samba*" updates Seems evident what that should do, but it doesn't do anything. The documentation for --save says "save the current options (useful with --setopt)" I would like to script/automate some YUM configuration. -- Adam
2004 Jul 05
1
passing char's from C to Fortran (mac os x)
Hello All, In some package I use a c-routine which calls a fortran routine which expects a char-string as input. As per the writing R-extensions manual, the Fortran routine is declared in C as: void F77_NAME (setoptions) (char **option); and then it is calles as follows: char **option; option = new char*[1]; option[0] = new char[256]; option[0] = strcpy(option[0],"Iteration Limit = 100"); Rprintf(option[0]); F77_CALL (setoptions) (option); Unfortunately this does not work, ie the f...
2009 Dec 01
2
problem with RWeka Weka_control RandomForest
...es.RandomForest"))) I get the following error: Exception in thread "main" java.lang.Exception: Illegal options: -B weka.classifiers.trees.RandomForest at weka.core.Utils.checkForRemainingOptions(Unknown Source) at weka.filters.supervised.attribute.AttributeSelection.setOptions(Unknown Source) I tryied specifying more parameters and got the same error: I do: datbin<- nombi(gene ~., data=X1X2X3X4W, control =Weka_control( S=list("weka.attributeSelection.GeneticSearch"), E=list("weka.attributeSelection.WrapperSubsetEval"),B = list("weka.c...
2005 Sep 15
10
Can I use printa() for printing multiple agg regations?
Hi Bryan, > Does that sit well with everyone? Seems fine to me. Just revisiting one of Dragan''s points, though (sorry if I missed the answer) - is there a reason for making this global (via a #pragma) rather than, say, simply providing two functions which print in the different orders? e.g. printa() for sort by sample, printak() for sort by key. My reason for wanting to do both in
2015 Oct 24
0
Building R for AIX in 32-bit mode - as preparation for building in 64-bit mode (changed subject!) - INFO/FEEDBACK - do not read as a bug report!
I have determined why there are many "WARNING: Duplicate symbol:" messages. *** My apologies for the length *** There is a lot of detail - but I hope the detail will help R - and others - setup correct options for shared libraries. *** As I press send, I have not stopped testing (my final trial here might not even work) - but! *** the message is that shared libraries do not need to have
2015 Oct 18
2
Building R for AIX in 32-bit mode - as preparation for building in 64-bit mode (changed subject!) - INFO/FEEDBACK - do not read as a bug report!
On 2015-10-15 15:02, Prof Brian Ripley wrote: > On 15/10/2015 13:32, Michael Felt wrote: >> Hi. >> >> Just wanted to let you know I am getting close to packaging R for AIX in rephrase - would like to be active in keeping R binaries current for AIX. My interest in not in R per se (rather a colleague who has a project that uses R, so I hope to assist him, and others like him).
2008 May 07
2
Inserting authenticity token into AJAX request params
Hi all. I am trying to find a way to insert an authenticity_token into the params of an Ajax request before it gets sent. I''ve got this much: Ajax.Responders.register({ onLoading: function(req){ if ((req.options.method == ''post'') && ! Object.keys(req.options.parameters).include(''authenticity_token'')){ ---->
2006 Aug 08
2
Javascript - multiple select selectboxes
...end, rails wont read all of the selected values. Here is an example of the javascript working, but when you submit the array is not passed across for the codes. Anyone work with this sort of thing before? <html> <head> <SCRIPT language="JavaScript"> function setOptions(chosen) { var selectBox = document.addCodes.codes; selectBox.options.length = 0; var len = data[chosen].length; for(i=0; i<len; i++) { selectBox.options[selectBox.options.length] = new Option(data[chosen][i], data[chosen][i]); } } d...
2008 Nov 04
1
How to get Bugzilla working on CentOS 5.2 with SELinux turned on?
Hi. Has anyone figured out how to get Bugzilla working on CentOS 5.2 WITHOUT TURNING OFF SELINUX? I've run chcon -R --reference=/var/www/html /path/to/bugzilla and added the following module (generated by audit2allow), but am still getting errors in my Web browser tryinig to use Bugzilla: Software error: Can't connect to the database. Error: could not connect to server:
2005 Oct 31
11
Aggregation elements
Howdy, Is there a method to get the number of elements in an aggregation? Are the results stored in an aggregation guaranteed to be in any type of order? Thanks for any insight, - Ryan -- UNIX Administrator http://daemons.net/~matty
2015 Nov 05
1
synthesizing yum transactions
Ok, I'm trying way too hard to shovel myself out of a hole. We have a bunch of remote CentOS 6 servers, that were configured with kickstart. They've subsequently had additional RPMs installed/updated via the 'rpm' utility. We have reason to occasionally rewind the state of the server back to it's original set of RPMs. Of late, we've found that 'yum' handles this
2020 Nov 12
3
run firefox via an ssh tunnel
On 11/12/20 7:50 AM, Jonathan Billings wrote: > On Thu, Nov 12, 2020 at 12:56:15PM +0000, Bernstein, Noam CIV USN NRL (6393) Washington DC (USA) via CentOS wrote: >> If the point is to access a specific web site only the remote >> machine can get to, you can also do it with port forwarding: >> ssh -L 8000:ip_of_web_site_to_access_from_remote:443 remote_machine >> and
2009 Sep 21
0
r34 committed - removed deprecated method draggable, all controls off when first creat...
...- // TODO: Add provider code + var map = this.maps[this.api]; + var myOptions = []; + if (this.options.enableDragging) { + myOptions.draggable = true; + } + if (this.options.enableScrollWheelZoom){ + myOptions.scrollwheel = true; + } + map.setOptions(myOptions); }, resizeTo: function(width, height){ @@ -50,11 +62,20 @@ this.addSmallControls(); } } + if (args.scale){ + var myOptions = { + scaleControl:true, + scaleControlOptions: {styl...
2019 Oct 16
3
Crashed a CentOS 8 installation.
Hi, Note: Please do this on a test VM. My issue: I took the output of the following command $ yum list installed | xargs -n3 | column -t | tail -n +3 |cut -d' ' -f1 > packages.list from a CentOS 7.7 Installation. and did $ dnf install $(cat packages.list) --setopt=strict=0 on Freshly installed Minimal CentOS 8 VM. When I reboot I get Failed to switch root: Specified switch
2020 Sep 27
1
JFS for CentOS 7
On 09/25/2020 05:42 PM, Akemi Yagi wrote: > On Fri, Sep 25, 2020 at 11:51 AM H <agents at meddatainc.com> wrote: >> On 09/15/2020 08:07 PM, Akemi Yagi wrote: >>> On Tue, Sep 15, 2020 at 3:54 PM H <agents at meddatainc.com> wrote: >>>> I had installed kmod-jfs in an earlier version of CentOS 7, 7.4 if I remember correctly. I now have a machine running the
2020 Sep 25
2
JFS for CentOS 7
On 09/15/2020 08:07 PM, Akemi Yagi wrote: > On Tue, Sep 15, 2020 at 3:54 PM H <agents at meddatainc.com> wrote: >> I had installed kmod-jfs in an earlier version of CentOS 7, 7.4 if I remember correctly. I now have a machine running the latest version of jfs module but kmod-jfs does not seem to be available. >> >> Is anyone running it on the current version of CentOS?
2009 Sep 20
0
r30 committed - jslint now passing for google and googlev3
...ap = this.maps[this.api]; var myOptions = { navigationControl:true, - navigationControlOptions: {style:google.maps.NavigationControlStyle.DEFAULT}, + navigationControlOptions: {style:google.maps.NavigationControlStyle.DEFAULT} }; map.setOptions(myOptions); this.addControlsArgs.pan = true; @@ -77,7 +79,7 @@ var map = this.maps[this.api]; var myOptions = { mapTypeControl: true, - mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DEFAULT}, + ma...
2001 May 15
2
hung SSH on Solaris when starting Oracle
Another instance of OpenSSH 2.9p1 hanging on exit. This occurs when connecting to a Solaris 8 box (both from other Solaris 8 hosts and from Linux hosts, all using OpenSSH 2.9p1). This problem doesn't appear to involve active background jobs; it is not fixed by either the bash fix listed in the FAQ or by zsh's "setopt HUP". I do not see the hang-on-exit behavior with the