Sponsored Content
Full Discussion: Vanilla Mode Development
Top Forums Shell Programming and Scripting Vanilla Mode Development Post 42832 by google on Wednesday 5th of November 2003 05:47:07 AM
Old 11-05-2003
The title of this thread caught my eye. Still havent found a suitable answer as to what Vanilla Mode Development is. I have found that there are "Vanilla Modes" in the language GAUSS which is a matrix manipulation language (heavy math stuff). Also, there is a "Vanilla Mode" for project Condor which seems to be really cool stuff. A short description: Condor Project

Designed at UW in Madison, Condor is a software package that allows users to make use of unused computer cycles in a networked environment. It is designed with the basic premise that most computer usage is inefficient and generally wasteful.
...
So what it boils down to is that the computer is either overused or underused. Condor changes this model by requiring all jobs to go through a submission process. A centralized manager receives the requests, determines which machine would be best suited to run it, and then sends the process off to that machine.

But wait, there's more! Not only does Condor determine which machine to send jobs to, but will monitor the state of a machine and either kill the job, suspend it, or move it to another machine if certain conditions are met! Condor uses a set of very customizeable rules which determine whether or not jobs should continue if people are on console, the load average is too high, it's raining on a Tuesday, etc.
....
Vanilla mode allows Condor to suspend or kill jobs on machines that are no longer suitable for Condor, and the jobs can then be automatically restarted on other machines.
 

7 More Discussions You Might Find Interesting

1. SuSE

Convet Linux OS from text mode to graphic mode

Hi All, I used to have my suse linux(VM) server in graphic mode but not anymore since morning. I cant rolback since i loose somuch work. Any idea how to it back to normal. Thanks (6 Replies)
Discussion started by: s_linux
6 Replies

2. HP-UX

how to distinguish standard system mode or trust system mode

I think that if the directory /tcb exists, HP-UX is in trusted mode and the passwd data is somewhere in /tcb/files/auth. But that's all I remember. Also I think recent versions of HP-UX can have a /etc/shadow file. (0 Replies)
Discussion started by: Perderabo
0 Replies

3. Shell Programming and Scripting

Debug mode

When I run a lengthy script in debug mode i need to capture all the steps which are executed. e.g ksh -x script.ksh + test -f /proc/mounts + /bin/ls -l /proc/21326/exe + is=ksh + test ksh = ksh + test -s /etc/ksh.kshrc + . /etc/ksh.kshrc + trap 1 2 3 + who am i + awk {print $1} +... (2 Replies)
Discussion started by: zooby
2 Replies

4. UNIX for Advanced & Expert Users

What is the difference between single line mode and multiline mode in Regular expressions?

Hi All, Can please let me know what is the difference between the single line mode and multi line mode in regular expresions? Thanks, Chidhambaram B (3 Replies)
Discussion started by: chidhu.anu
3 Replies

5. Solaris

DNS service is in maintenance mode. How to bring it back to online mode?

:confused: when i tried to look the status of DNS-client, it is in maintenance mode..... Please tell me how to bring it back to online mode...PLEASE TELL ME STEP BY STEP.... PLEASE... :wall: (2 Replies)
Discussion started by: vamshigvk475
2 Replies

6. UNIX for Dummies Questions & Answers

What is the modern vanilla UNIX?

Before you bark "Google" or some other reference, I have tried to get my head around this for the past 8 months. I want to know, who makes a vanilla UNIX. Not a flavour of UNIX. .....vanilla, plain, boring, original current UNIX. I understand that all these different companies make... (3 Replies)
Discussion started by: danijeljames
3 Replies

7. HP-UX

From a C++ application how to find if a hpux host is in standard mode or trusted mode

is there a way for my C++ application to find out which mode the hpux OS is running in? standard mode or trusted mode. (3 Replies)
Discussion started by: einsteinBrain
3 Replies
lh_stats(3)							      OpenSSL							       lh_stats(3)

NAME
lh_stats, lh_node_stats, lh_node_usage_stats, lh_stats_bio, lh_node_stats_bio, lh_node_usage_stats_bio - LHASH statistics SYNOPSIS
#include <openssl/lhash.h> void lh_stats(LHASH *table, FILE *out); void lh_node_stats(LHASH *table, FILE *out); void lh_node_usage_stats(LHASH *table, FILE *out); void lh_stats_bio(LHASH *table, BIO *out); void lh_node_stats_bio(LHASH *table, BIO *out); void lh_node_usage_stats_bio(LHASH *table, BIO *out); DESCRIPTION
The LHASH structure records statistics about most aspects of accessing the hash table. This is mostly a legacy of Eric Young writing this library for the reasons of implementing what looked like a nice algorithm rather than for a particular software product. lh_stats() prints out statistics on the size of the hash table, how many entries are in it, and the number and result of calls to the routines in this library. lh_node_stats() prints the number of entries for each 'bucket' in the hash table. lh_node_usage_stats() prints out a short summary of the state of the hash table. It prints the 'load' and the 'actual load'. The load is the average number of data items per 'bucket' in the hash table. The 'actual load' is the average number of items per 'bucket', but only for buckets which contain entries. So the 'actual load' is the average number of searches that will need to find an item in the hash table, while the 'load' is the average number that will be done to record a miss. lh_stats_bio(), lh_node_stats_bio() and lh_node_usage_stats_bio() are the same as the above, except that the output goes to a BIO. RETURN VALUES
These functions do not return values. SEE ALSO
bio(3), lhash(3) HISTORY
These functions are available in all versions of SSLeay and OpenSSL. This manpage is derived from the SSLeay documentation. 50 2013-03-05 lh_stats(3)
All times are GMT -4. The time now is 09:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy