Definition of Available

Babylon English Dictionary
ready for use; attainable; unoccupied; valid
Search Dictionary
Available Definition from Arts & Humanities Dictionaries & Glossaries
English-Latin Online Dictionary
quicumque
Available Definition from Language, Idioms & Slang Dictionaries & Glossaries
Webster's Revised Unabridged Dictionary (1913)
(a.)
Such as one may avail one's self of; capable of being used for the accomplishment of a purpose; usable; profitable; advantageous; convertible into a resource; as, an available measure; an available candidate.
  
(a.)
Having sufficient power, force, or efficacy, for the object; effectual; valid; as, an available plea.
  
Webster's Revised Unabridged Dictionary (1913), edited by Noah Porter. About
hEnglish - advanced version

available
\a*vail"a*ble\ (&?;), a.
1. having sufficient power, force, or efficacy, for the object; effectual; valid; as, an available plea. [obs.] laws human are available by consent.
2. such as one may avail one's self of; capable of being used for the accomplishment of a purpose; usable; profitable; advantageous; convertible into a resource; as, an available measure; an available candidate. struggling to redeem, as he did, the available months and days out of so many that were unavailable. arlyle. having no available funds with which to pay the calls on new shares. spenser.
available
adj
1. obtainable or accessible and ready for use or service; "kept a fire extinguisher available"; "much information is available through computers"; "available in many colors"; "the list of available candidates is unusually long" [ant: unavailable]
2. not busy; not otherwise committed; "he was not available for comment"; "he was available and willing to accompany her" [syn: uncommitted]


3. convenient for use or disposal; "the house is available after july 1"; "2000 square feet of usable office space" [syn: usable, useable]



Concise English-Irish Dictionary v. 1.1
ar fáil
WordNet 2.0

Adjective
1. obtainable or accessible and ready for use or service; "kept a fire extinguisher available"; "much information is available through computers"; "available in many colors"; "the list of available candidates is unusually long"
(antonym) unavailable
(similar) accessible
(attribute) handiness, accessibility, availability, availableness
2. not busy; not otherwise committed; "he was not available for comment"; "he was available and willing to accompany her"
(synonym) uncommitted
(similar) free
3. convenient for use or disposal; "the house is available after July 1"; "2000 square feet of usable office space"
(synonym) usable, useable
(similar) disposable
Available Definition from Science & Technology Dictionaries & Glossaries
Abbreviation Airbus A340
Available: Something is working unand ready to be connected, e.g. APU AVAIL.
Available Definition from Computer & Internet Dictionaries & Glossaries
JDK Doc(JAVA)
- Method in interface java.io.ObjectInput 
public int available () throws IOException 
Returns the number of bytes that can be read without blocking.Returns: the number of available bytes.
- Method in class java.io.SequenceInputStream 
public int available () throws IOException 
Returns the number of bytes available on the current stream.Overrides: available in class InputStream Since: JDK1.1
- Method in class java.io.StringBufferInputStream 
public int available ()
Deprecated.  Returns the number of bytes that can be read from the input stream without blocking.Returns the number of bytes that can be read from the input stream without blocking.Overrides: available in class InputStream Returns: the value of count - pos, which is the number of bytes remaining to be read from the input buffer.
- Method in class java.io.ObjectInputStream 
public int available () throws IOException 
Returns the number of bytes that can be read without blocking.Specified by:  available in interface ObjectInput Overrides: available in class InputStream Returns: the number of available bytes.
- Method in class java.net.SocketImpl 
protected abstract int available () throws IOException 
Returns the number of bytes that can be read from this socket without blocking.Returns: the number of bytes that can be read from this socket without blocking.Throws: IOException - if an I/O error occurs when determining the number of bytes available.
- Method in class java.util.zip.InflaterInputStream 
public int available () throws IOException 
Returns 0 after EOF has reached, otherwise always return 1. Programs should not count on this method to return the actual number of bytes that could be read without blocking.Overrides: available in class FilterInputStream Returns: 1 before EOF and 0 after EOF.Throws: IOException - if an I/O error occurs.
- Method in class java.util.zip.ZipInputStream 
public int available () throws IOException 
Returns 0 after EOF has reached for the current entry data, otherwise always return 1. Programs should not count on this method to return the actual number of bytes that could be read without blocking.Overrides: available in class InflaterInputStream Returns: 1 before EOF and 0 after EOF has reached for current entry.Throws: IOException - if an I/O error occurs.
- Method in class java.io.InputStream 
public int available () throws IOException 
Returns the number of bytes that can be read (or skipped over) from this input stream without blocking by the next caller of a method for this input stream. The next caller might be the same thread or or another thread. The available method for class InputStream always returns 0. This method should be overridden by subclasses.Returns: the number of bytes that can be read from this input stream without blocking.Throws: IOException - if an I/O error occurs.
- Method in class java.io.FileInputStream 
public int available () throws IOException 
Returns the number of bytes that can be read from this file input stream without blocking.Overrides: available in class InputStream Returns: the number of bytes that can be read from this file input stream without blocking.Throws: IOException - if an I/O error occurs.
- Method in class java.io.FilterInputStream 
public int available () throws IOException 
Returns the number of bytes that can be read from this input stream without blocking. This method simply performs in.available(n) and returns the result.Overrides: available in class InputStream Returns: the number of bytes that can be read from the input stream without blocking.Throws: IOException - if an I/O error occurs.See Also:  in
- Method in class java.io.ByteArrayInputStream 
public int available ()
Returns the number of bytes that can be read from this input stream without blocking. The value returned is count - pos, which is the number of bytes remaining to be read from the input buffer.Overrides: available in class InputStream Returns: the number of bytes that can be read from the input stream without blocking.
- Method in class java.io.BufferedInputStream 
public int available () throws IOException 
Returns the number of bytes that can be read from this input stream without blocking. The available method of BufferedInputStream returns the sum of the the number of bytes remaining to be read in the buffer (count - pos) and the result of calling the available method of the underlying input stream.Overrides: available in class FilterInputStream Returns: the number of bytes that can be read from this input stream without blocking.Throws: IOException - if an I/O error occurs.See Also:  FilterInputStream.in
- Method in class java.io.PushbackInputStream 
public int available () throws IOException 
Returns the number of bytes that can be read from this input stream without blocking. This method calls the available method of the underlying input stream; it returns that value plus the number of bytes that have been pushed back.Overrides: available in class FilterInputStream Returns: the number of bytes that can be read from the input stream without blocking.Throws: IOException - if an I/O error occurs.See Also:  FilterInputStream.in , InputStream.available()
- Method in class java.io.PipedInputStream 
public int available () throws IOException 
Returns the number of bytes that can be read from this input stream without blocking. This method overrides the available method of the parent class.Overrides: available in class InputStream Returns: the number of bytes that can be read from this input stream without blocking.Throws: IOException - if an I/O error occurs.Since: JDK1.0.2
- Method in class java.io.LineNumberInputStream 
public int available () throws IOException 
Deprecated.  Returns the number of bytes that can be read from this input stream without blocking. Returns the number of bytes that can be read from this input stream without blocking. Note that if the underlying input stream is able to supply input characters without blocking, the LineNumberInputStream can guarantee only to provide /2 characters without blocking, because the characters from the underlyhing input stream might consist of /2 pairs of '\r' and '\n', which are converted to just /2 '\n' characters.Overrides: available in class FilterInputStream Returns: the number of bytes that can be read from this input stream without blocking.Throws: IOException - if an I/O error occurs.See Also:  FilterInputStream.in
Available Definition from Encyclopedia Dictionaries & Glossaries
Wikipedia English - The Free Encyclopedia
In telecommunications and reliability theory, the term availability has the following meanings:
  • The degree to which a system, subsystem, or equipment is in a specified operable and committable state at the start of a mission, when the mission is called for at an unknown, i.e., a random, time. Simply put, availability is the proportion of time a system is in a functioning condition. This is often described as a mission capable rate. Mathematically, this is expressed as 1 minus unavailability.
  • The ratio of (a) the total time a functional unit is capable of being used during a given interval to (b) the length of the interval.

See more at Wikipedia.org...
© This article uses material from Wikipedia® and is licensed under the GNU Free Documentation License and under the Creative Commons Attribution-ShareAlike License
Available Definition from Entertainment & Music Dictionaries & Glossaries
English to Federation-Standard Golic Vulcan
la'ka-yehat
Available Definition from Medicine Dictionaries & Glossaries
Dictionary of Medicine (Shahram)
adjective
which can be got; the drug is available only on prescription; all available ambulances were rushed to the scene of the accident