set
adj. fixed, unchanging; arranged, prepared; resolute, firmly resolved; determined in advance v. put, place; determine; fix in place; assign, post, appoint a person for a role; cause to be in a particular condition; arrange, prepare; adjust, align, calibrate to a specific position or setting; insert, inlay n. system; group of items, collection; posture, carriage; series, sequence; receiver, electronic device for receiving radio or television broadcasts; filming location; setting for a drama film or television program; direction; process of hardening SET (Secure Electronic Transaction) (in E-commerce) trademark for a standard protocol for security of financial transactions carried out by Internet credit card | ||||
Search Dictionary:
Set definition was found in categories: Business & Finance(3) Computer & Internet(9) Language, Idioms & Slang(8) Religion & Spirituality(2) Arts & Humanities(4) Science & Technology(5) Society & Culture(1) Sports(7) Entertainment & Music(5) Encyclopedia(1)
Set Definition from Business & Finance Dictionaries & Glossaries
| Campbell R. Harvey's Hypertextual Finance Glossary |
| BTS Transportation Expressions |
Set
Current or eddies that are not flowing in the natural direction. An opposite current or eddy that tends to counteract the forward movement of a tow or vessel. (TNDOT1)
Current or eddies that are not flowing in the natural direction. An opposite current or eddy that tends to counteract the forward movement of a tow or vessel. (TNDOT1)
Set (Of Current)
Deviation from normal current flow, caused by some obstruction such as pier, wall, sandbar, etc. For example, current set above some lock approaches due to flow of water through dam gates. (TNDOT1)
Set (Tow)
A sideways movement of the tow caused by the current or wind. The set of the tow can be very important when the tow meets another tow in close quarters. (TNDOT1)
| NCTS Glossary v.1.0 |
SET
Secure Electronic Transaction
Secure Electronic Transaction
Set Definition from Computer & Internet Dictionaries & Glossaries
| FOLDOC |
SET
1. <security> Secure Electronic Transaction.
2. Single Electron Tunneling.
3. Standard d'Echange et de Transfert.
(1999-03-26)
1. <security> Secure Electronic Transaction.
2.
3.
(1999-03-26)
set
A collection of objects, known as the elements of the set, specified in such a way that we can tell in principle whether or not a given object belongs to it. E.g. the set of all prime numbers, the set of zeros of the cosine function.
For each set there is a predicate (or property) which is true for (posessed by) exectly those objects which are elements of the set. The predicate may be defined by the set or vice versa. Order and repetition of elements within the set are irrelevant so, for example, 1, 2, 3 = 3, 2, 1 = 1, 3, 1, 2, 2.
Some common set of numbers are given the following names:
N = the natural numbers 0, 1, 2, ...
Z = the integers ..., -2, -1, 0, 1, 2, ...
Q = the rational numbers p/q where p, q are in Z and q /= 0.
R = the real numbers
C = the complex numbers.
The empty set is the set with no elements. The intersection of two sets X and Y is the set containing all the elements x such that x is in X and x is in Y. The union of two sets is the set containing all the elements x such that x is in X or x is in Y.
See also set complement.
(1995-01-24)
| Computer Abbreviations v1.5 |
SET
Secure Electronic Transaction + Softwave Engineering Technology
Secure Electronic Transaction + Softwave Engineering Technology
| 9300+ Computer Acronyms |
SET
Softwave Engineering Technology
Softwave Engineering Technology
| Uri's File.*Xten.c.ons* |
SET
Secure Electronic Transaction +
Secure Electronic Transaction +
| Smart Card Terms |
SET
Mastercard and Visa's protocol for sending encrypted credit card numbers over the Internet. The merchant never gets to know the customer's card number, thus limiting fraud.
Mastercard and Visa's protocol for sending encrypted credit card numbers over the Internet. The merchant never gets to know the customer's card number, thus limiting fraud.
| JDK Doc(JAVA) |
Set
- interface java.util..Set
public interface Set extends Collection
public int size ()
A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1 and e2 such that e1.equals(e2), and at most one null element. As implied by its name, this interface models the mathematical abstraction.
- interface java.util..Set
public interface Set extends Collection
public int size ()
A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1 and e2 such that e1.equals(e2), and at most one null element. As implied by its name, this interface models the mathematical abstraction.
set(Object)
- Method in class java.lang.ThreadLocal
public void set (Object value)
Sets the calling thread's instance of this ThreadLocal variable to the given value. This is only used to change the value from the one assigned by the initialValue method, and many applications will have no need for this functionality.Parameters: value - the value to be stored in the calling threads' copy of this ThreadLocal.
set(Object) *2
- Method in interface java.util.ListIterator
public void set (Object o)
Replaces the last element returned by next or previous with the specified element (optional operation). This call can be made only if neither ListIterator.remove nor ListIterator.add have been called after the last call to next or previous.Throws: UnsupportedOperationException - if the set operation is not supported by this list iterator. - if the class of the specified element prevents it from being added to this list.ClassCastException - if the class of the specified element prevents it from being added to this list. - if some aspect of the specified element prevents it from being added to this list.IllegalArgumentException - if some aspect of the specified element prevents it from being added to this list. - if neither nor have been called, or or have been called after the last call to or .IllegalStateException - if neither next nor previous have been called, or remove or add have been called after the last call to next or previous.
set(Object, Object)
- Method in class java.lang.reflect.Field
public void set (Object obj, Object value) throws IllegalArgumentException , IllegalAccessException
Sets the field represented by this Field object on the specified object argument to the specified new value. The new value is automatically unwrapped if the underlying field has a primitive type. The operation proceeds as follows: If the underlying field is static, the obj argument is ignored; it may be null. Otherwise the underlying field is an instance field. If the specified object argument is null, the method throws a NullPointerException. If the specified object argument is not an instance of the class or interface declaring the underlying field, the method throws an IllegalArgumentException. If this Field object enforces Java language access control, and the underlying field is inaccessible, the method throws an IllegalAccessException. If the underlying field is final, the method throws an IllegalAccessException. If the underlying field is of a primitive type, an unwrapping conversion is attempted to convert the new value to a value of a primitive type. If this attempt fails, the method throws an IllegalArgumentException. If, after possible unwrapping, the new value cannot be converted to the type of the underlying field by an identity or widening conversion, the method throws an IllegalArgumentException. If the underlying field is static, the class that declared the field is initialized if it has not already been initialized. The field is set to the possibly unwrapped and widened new value. If the field is hidden in the type of obj, the field's value is set according to the preceding rules.Throws: IllegalAccessException - if the underlying constructor is inaccessible. - if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.IllegalArgumentException - if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails. - if the specified object is null and the field is an instance field.NullPointerException - if the specified object is null and the field is an instance field. - if the initialization provoked by this method fails.ExceptionInInitializerError - if the initialization provoked by this method fails.
set(Object, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (Object obj, int index)
Replaces an Object in the list of parameters. If the index lies beyond the current source list, the list is extended with nulls as needed.
set(Object, int, Object)
- Static method in class java.lang.reflect.Array
public static void set (Object array, int index, Object value) throws IllegalArgumentException , ArrayIndexOutOfBoundsException
Sets the value of the indexed component of the specified array object to the specified new value. The new value is first automatically unwrapped if the array has a primitive component type.Parameters: array - the array - the index into the arrayindex - the index into the array - the new value of the indexed componentvalue - the new value of the indexed componentThrows: NullPointerException - If the specified object argument is null, or if the array component type is primitive and the specified value is null - If the specified object argument is not an array, or if the array component type is primitive and the specified value cannot be converted to the primitive type by a combination of unwrapping and identity or widening conversionsIllegalArgumentException - If the specified object argument is not an array, or if the array component type is primitive and the specified value cannot be converted to the primitive type by a combination of unwrapping and identity or widening conversions - If the specified argument is negative, or if it is greater than or equal to the length of the specified arrayArrayIndexOutOfBoundsException - If the specified index argument is negative, or if it is greater than or equal to the length of the specified array
set(String, String, int, String, String)
- Method in class java.net.URL
protected void set (String protocol, String host, int port, String file, String ref)
Sets the fields of the URL. This is not a public method so that only URLStreamHandlers can modify URL fields. URLs are otherwise constant.Parameters: protocol - the protocol to use - the host name to connecto tohost - the host name to connecto to - the protocol port to connect toport - the protocol port to connect to - the specified file name on that hostfile - the specified file name on that host - the referenceref - the reference
set(byte, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (byte b, int index)
Replaces an Object in the list of parameters with a Byte. If the index lies beyond the current source list, the list is extended with nulls as needed.
set(char, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (char c, int index)
Replaces an Object in the list of parameters with a Character. If the index lies beyond the current source list, the list is extended with nulls as needed.
set(double, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (double d, int index)
Replaces an Object in the list of parameters with a Double. If the index lies beyond the current source list, the list is extended with nulls as needed.
set(float, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (float f, int index)
Replaces an Object in the list of parameters with a Float. If the index lies beyond the current source list, the list is extended with nulls as needed.
set(int)
- Method in class java.util.BitSet
public void set (int bitIndex)
Sets the bit specified by the index to true.Parameters: bitIndex - a bit index.Throws: IndexOutOfBoundsException - if the specified index is negative.Since: JDK1.0
set(int, Object)
- Method in class java.util.AbstractList
public Object set (int index, Object element)
Replaces the element at the specified position in this list with the specified element (optional operation). This implementation always throws an .Specified by: set in interface List Parameters: index - index of element to replace. - element to be stored at the specified position.element - element to be stored at the specified position.Returns: the element previously at the specified position.Throws: UnsupportedOperationException - if the set method is not supported by this List. - if the class of the specified element prevents it from being added to this list.ClassCastException - if the class of the specified element prevents it from being added to this list. - if some aspect of the specified element prevents it from being added to this list.IllegalArgumentException - if some aspect of the specified element prevents it from being added to this list. - if the specified index is out of range ().IndexOutOfBoundsException - if the specified index is out of range (index < 0 || index >= size()).
set(int, Object) *2
- Method in class java.util.AbstractSequentialList
public Object set (int index, Object element)
Replaces the element at the specified position in this list with the specified element. This implementation first gets a list iterator pointing to the indexed element (with ). Then, it gets the current element using and replaces it with . Note that this implementation will throw an UnsupportedOperationException if list iterator does not implement the set operation.Overrides: set in class AbstractList Parameters: index - index of element to replace. - element to be stored at the specified position.element - element to be stored at the specified position.Returns: the element previously at the specified position.Throws: UnsupportedOperationException - set is not supported by this list. - this list does not permit null elements and one of the elements of is null.NullPointerException - this list does not permit null elements and one of the elements of c is null. - class of the specified element prevents it from being added to this list.ClassCastException - class of the specified element prevents it from being added to this list. - some aspect of the specified element prevents it from being added to this list.IllegalArgumentException - some aspect of the specified element prevents it from being added to this list. - index out of range ).IndexOutOfBoundsException - index out of range (index < 0 || index >= size()). - fromIndex > toIndex.IllegalArgumentException - fromIndex > toIndex.
set(int, Object) *3
- Method in class java.util.Vector
public Object set (int index, Object element)
Replaces the element at the specified position in this Vector with the specified element.Specified by: set in interface List Overrides: set in class AbstractList Parameters: index - index of element to replace. - element to be stored at the specified position.element - element to be stored at the specified position.Returns: the element previously at the specified position.Throws: ArrayIndexOutOfBoundsException - index out of range (index < 0 || index >= size()). - fromIndex > toIndex.IllegalArgumentException - fromIndex > toIndex.Since: JDK1.2
set(int, Object) *4
- Method in class java.util.LinkedList
public Object set (int index, Object element)
Replaces the element at the specified position in this list with the specified element.Specified by: set in interface List Overrides: set in class AbstractSequentialList Parameters: index - index of element to replace. - element to be stored at the specified position.element - element to be stored at the specified position.Returns: the element previously at the specified position.Throws: IndexOutOfBoundsException - if the specified index is out of range (index < 0 || index >= size()).
set(int, Object) *5
- Method in interface java.util.List
public Object set (int index, Object element)
Replaces the element at the specified position in this list with the specified element (optional operation).Parameters: index - index of element to replace. - element to be stored at the specified position.element - element to be stored at the specified position.Returns: the element previously at the specified position.Throws: UnsupportedOperationException - if the set method is not supported by this list. - if the class of the specified element prevents it from being added to this list.ClassCastException - if the class of the specified element prevents it from being added to this list. - if some aspect of the specified element prevents it from being added to this list.IllegalArgumentException - if some aspect of the specified element prevents it from being added to this list. - if the index is out of range (index < 0 || index >= size()).IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= size()).
set(int, Object) *6
- Method in class java.util.ArrayList
public Object set (int index, Object element)
Replaces the element at the specified position in this list with the specified element.Specified by: set in interface List Overrides: set in class AbstractList Parameters: index - index of element to replace. - element to be stored at the specified position.element - element to be stored at the specified position.Returns: the element previously at the specified position.Throws: IndexOutOfBoundsException - if index out of range (index < 0 || index >= size()).
set(int, Object) *7
- Method in class javax.swing.DefaultListModel
public Object set (int index, Object element)
Replaces the element at the specified position in this list with the specified element. Throws an if the index is out of range (index < 0 || index >= size()).Parameters: index - index of element to replace. - element to be stored at the specified position.element - element to be stored at the specified position.Returns: the element previously at the specified position.
set(int, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (int i, int index)
Replaces an Object in the list of parameters with an Integer. If the index lies beyond the current source list, the list is extended with nulls as needed.
set(int, int) *2
- Method in class java.util.Calendar
public final void set (int field, int value)
Sets the time field with the given value.Parameters: field - the given time field. - the value to be set for the given time field.value - the value to be set for the given time field.
set(int, int, int)
- Method in class java.util.Calendar
public final void set (int year, int month, int date)
Sets the values for the fields year, month, and date. Previous values of other fields are retained. If this is not desired, call clear first.Parameters: year - the value used to set the YEAR time field. - the value used to set the MONTH time field. Month value is 0-based. e.g., 0 for January.month - the value used to set the MONTH time field. Month value is 0-based. e.g., 0 for January. - the value used to set the DATE time field.date - the value used to set the DATE time field.
set(int, int, int, int, int)
- Method in class java.util.Calendar
public final void set (int year, int month, int date, int hour, int minute)
Sets the values for the fields year, month, date, hour, and minute. Previous values of other fields are retained. If this is not desired, call clear first.Parameters: year - the value used to set the YEAR time field. - the value used to set the MONTH time field. Month value is 0-based. e.g., 0 for January.month - the value used to set the MONTH time field. Month value is 0-based. e.g., 0 for January. - the value used to set the DATE time field.date - the value used to set the DATE time field. - the value used to set the HOUR_OF_DAY time field.hour - the value used to set the HOUR_OF_DAY time field. - the value used to set the MINUTE time field.minute - the value used to set the MINUTE time field.
set(int, int, int, int, int, int)
- Method in class java.util.Calendar
public final void set (int year, int month, int date, int hour, int minute, int second)
Sets the values for the fields year, month, date, hour, minute, and second. Previous values of other fields are retained. If this is not desired, call clear first.Parameters: year - the value used to set the YEAR time field. - the value used to set the MONTH time field. Month value is 0-based. e.g., 0 for January.month - the value used to set the MONTH time field. Month value is 0-based. e.g., 0 for January. - the value used to set the DATE time field.date - the value used to set the DATE time field. - the value used to set the HOUR_OF_DAY time field.hour - the value used to set the HOUR_OF_DAY time field. - the value used to set the MINUTE time field.minute - the value used to set the MINUTE time field. - the value used to set the SECOND time field.second - the value used to set the SECOND time field.
set(long, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (long l, int index)
Replaces an Object in the list of parameters with a Long. If the index lies beyond the current source list, the list is extended with nulls as needed.
set(short, int)
- Method in class java.awt.image.renderable.ParameterBlock
public ParameterBlock set (short s, int index)
Replaces an Object in the list of parameters with a Short. If the index lies beyond the current source list, the list is extended with nulls as needed.
| TCP/IP port numbers |
set
257/tcp Secure Electronic Transaction
257/tcp Secure Electronic Transaction
| TCP/IP Ports Assignments |
257/tcp
{set}
Secure Electronic Transaction.
{set}
Secure Electronic Transaction.
257/udp
{set}
Secure Electronic Transaction.
| TCP/IP Ports Assignments (Intrusive) |
257/tcp
{set}
Secure Electronic Transaction.
{set}
Secure Electronic Transaction.
257/udp
{set}
Secure Electronic Transaction.
Set Definition from Language, Idioms & Slang Dictionaries & Glossaries
| Webster's Revised Unabridged Dictionary (1913) |
Set
(v. i.)
To fit or suit one; to sit; as, the coat sets well.
(v. i.)
To fit music to words.
(v. i.)
To congeal; to concrete; to solidify.
(v. i.)
To begin to move; to go out or forth; to start; -- now followed by out.
(v. i.)
To become fixed or rigid; to be fastened.
(v. i.)
To be fixed for growth; to strike root; to begin to germinate or form; as, cuttings set well; the fruit has set well (i. e., not blasted in the blossom).
(v. i.)
To apply one's self; to undertake earnestly; -- now followed by out.
(n.)
The deflection of a tooth, or of the teeth, of a saw, which causes the the saw to cut a kerf, or make an opening, wider than the blade.
(n.)
The act of setting, as of the sun or other heavenly body; descent; hence, the close; termination.
(n.)
That which is staked; a wager; a venture; a stake; hence, a game at venture.
(n.)
That which is set, placed, or fixed.
(n.)
That dimension of the body of a type called by printers the width.
(n.)
Permanent change of figure in consequence of excessive strain, as from compression, tension, bending, twisting, etc.; as, the set of a spring.
(n.)
In dancing, the number of persons necessary to execute a quadrille; also, the series of figures or movements executed.
(n.)
Direction or course; as, the set of the wind, or of a current.
(n.)
Collectively, the crop of young oysters in any locality.
(n.)
A young plant for growth; as, a set of white thorn.
(n.)
A young oyster when first attached.
(n.)
A short steel spike used for driving the head of a nail below the surface.
(n.)
A series of as many games as may be necessary to enable one side to win six. If at the end of the tenth game the score is a tie, the set is usually called a deuce set, and decided by an application of the rules for playing off deuce in a game. See Deuce.
(n.)
A piece placed temporarily upon the head of a pile when the latter cannot be reached by the weight, or hammer, except by means of such an intervening piece.
(n.)
A number of things of the same kind, ordinarily used or classed together; a collection of articles which naturally complement each other, and usually go together; an assortment; a suit; as, a set of chairs, of china, of surgical or mathematical instruments, of books, etc.
(n.)
A number of persons associated by custom, office, common opinion, quality, or the like; a division; a group; a clique.
(n.)
A kind of punch used for bending, indenting, or giving shape to, metal; as, a saw set.
(imp. & p. p.)
of Set
(a.)
Regular; uniform; formal; as, a set discourse; a set battle.
(a.)
Fixed in position; immovable; rigid; as, a set line; a set countenance.
(a.)
Firm; unchanging; obstinate; as, set opinions or prejudices.
(a.)
Established; prescribed; as, set forms of prayer.
(a.)
Adjusted; arranged; formed; adapted.
(v. t.)
To value; to rate; -- with at.
(v. t.)
To suit; to become; as, it sets him ill.
(v. t.)
To stake at play; to wager; to risk.
(v. t.)
To render stiff or solid; especially, to convert into curd; to curdle; as, to set milk for cheese.
(v. t.)
To reduce from a dislocated or fractured state; to replace; as, to set a broken bone.
(v. t.)
To put into a desired position or condition; to adjust; to regulate; to adapt.
(v. t.)
To put in order in a particular manner; to prepare; as, to set (that is, to hone) a razor; to set a saw.
(v. t.)
To point out the seat or position of, as birds, or other game; -- said of hunting dogs.
(v. t.)
To make to assume specified place, condition, or occupation; to put in a certain condition or state (described by the accompanying words); to cause to be.
(v. t.)
To make to agree with some standard; as, to set a watch or a clock.
(v. t.)
To lower into place and fix solidly, as the blocks of cut stone in a structure.
(v. t.)
To give a pitch to, as a tune; to start by fixing the keynote; as, to set a psalm.
(v. t.)
To fix, as a precious stone, in a border of metal; to place in a setting; hence, to place in or amid something which serves as a setting; as, to set glass in a sash.
(v. t.)
To fix in the ground, as a post or a tree; to plant; as, to set pear trees in an orchard.
(v. t.)
To fix firmly; to make fast, permanent, or stable; to render motionless; to give an unchanging place, form, or condition to.
(v. t.)
To fix beforehand; to determine; hence, to make unyielding or obstinate; to render stiff, unpliant, or rigid; as, to set one's countenance.
(v. t.)
To fit with music; to adapt, as words to notes; to prepare for singing.
(v. t.)
To extend and bring into position; to spread; as, to set the sails of a ship.
(v. t.)
To establish as a rule; to furnish; to prescribe; to assign; as, to set an example; to set lessons to be learned.
(v. t.)
To determine; to appoint; to assign; to fix; as, to set a time for a meeting; to set a price on a horse.
(v. t.)
To compose; to arrange in words, lines, etc.; as, to set type; to set a page.
(v. t.)
To cause to stop or stick; to obstruct; to fasten to a spot; hence, to occasion difficulty to; to embarrass; as, to set a coach in the mud.
(v. t.)
To cause to sit; to make to assume a specified position or attitude; to give site or place to; to place; to put; to fix; as, to set a house on a stone foundation; to set a book on a shelf; to set a dish on a table; to set a chest or trunk on its bottom or on end.
(v. t.)
To adorn with something infixed or affixed; to stud; to variegate with objects placed here and there.
(v. t.)
Hence, to attach or affix (something) to something else, or in or upon a certain place.
(v. i.)
To place plants or shoots in the ground; to plant.
(v. i.)
To pass below the horizon; to go down; to decline; to sink out of sight; to come to an end.
(v. i.)
To indicate the position of game; -- said of a dog; as, the dog sets well; also, to hunt game by the aid of a setter.
(v. i.)
To have a certain direction in motion; to flow; to move on; to tend; as, the current sets to the north; the tide sets to the windward.
(v. i.)
To fit or suit one; to sit; as, the coat sets well.
(v. i.)
To fit music to words.
(v. i.)
To congeal; to concrete; to solidify.
(v. i.)
To begin to move; to go out or forth; to start; -- now followed by out.
(v. i.)
To become fixed or rigid; to be fastened.
(v. i.)
To be fixed for growth; to strike root; to begin to germinate or form; as, cuttings set well; the fruit has set well (i. e., not blasted in the blossom).
(v. i.)
To apply one's self; to undertake earnestly; -- now followed by out.
(n.)
The deflection of a tooth, or of the teeth, of a saw, which causes the the saw to cut a kerf, or make an opening, wider than the blade.
(n.)
The act of setting, as of the sun or other heavenly body; descent; hence, the close; termination.
(n.)
That which is staked; a wager; a venture; a stake; hence, a game at venture.
(n.)
That which is set, placed, or fixed.
(n.)
That dimension of the body of a type called by printers the width.
(n.)
Permanent change of figure in consequence of excessive strain, as from compression, tension, bending, twisting, etc.; as, the set of a spring.
(n.)
In dancing, the number of persons necessary to execute a quadrille; also, the series of figures or movements executed.
(n.)
Direction or course; as, the set of the wind, or of a current.
(n.)
Collectively, the crop of young oysters in any locality.
(n.)
A young plant for growth; as, a set of white thorn.
(n.)
A young oyster when first attached.
(n.)
A short steel spike used for driving the head of a nail below the surface.
(n.)
A series of as many games as may be necessary to enable one side to win six. If at the end of the tenth game the score is a tie, the set is usually called a deuce set, and decided by an application of the rules for playing off deuce in a game. See Deuce.
(n.)
A piece placed temporarily upon the head of a pile when the latter cannot be reached by the weight, or hammer, except by means of such an intervening piece.
(n.)
A number of things of the same kind, ordinarily used or classed together; a collection of articles which naturally complement each other, and usually go together; an assortment; a suit; as, a set of chairs, of china, of surgical or mathematical instruments, of books, etc.
(n.)
A number of persons associated by custom, office, common opinion, quality, or the like; a division; a group; a clique.
(n.)
A kind of punch used for bending, indenting, or giving shape to, metal; as, a saw set.
(imp. & p. p.)
of Set
(a.)
Regular; uniform; formal; as, a set discourse; a set battle.
(a.)
Fixed in position; immovable; rigid; as, a set line; a set countenance.
(a.)
Firm; unchanging; obstinate; as, set opinions or prejudices.
(a.)
Established; prescribed; as, set forms of prayer.
(a.)
Adjusted; arranged; formed; adapted.
(v. t.)
To value; to rate; -- with at.
(v. t.)
To suit; to become; as, it sets him ill.
(v. t.)
To stake at play; to wager; to risk.
(v. t.)
To render stiff or solid; especially, to convert into curd; to curdle; as, to set milk for cheese.
(v. t.)
To reduce from a dislocated or fractured state; to replace; as, to set a broken bone.
(v. t.)
To put into a desired position or condition; to adjust; to regulate; to adapt.
(v. t.)
To put in order in a particular manner; to prepare; as, to set (that is, to hone) a razor; to set a saw.
(v. t.)
To point out the seat or position of, as birds, or other game; -- said of hunting dogs.
(v. t.)
To make to assume specified place, condition, or occupation; to put in a certain condition or state (described by the accompanying words); to cause to be.
(v. t.)
To make to agree with some standard; as, to set a watch or a clock.
(v. t.)
To lower into place and fix solidly, as the blocks of cut stone in a structure.
(v. t.)
To give a pitch to, as a tune; to start by fixing the keynote; as, to set a psalm.
(v. t.)
To fix, as a precious stone, in a border of metal; to place in a setting; hence, to place in or amid something which serves as a setting; as, to set glass in a sash.
(v. t.)
To fix in the ground, as a post or a tree; to plant; as, to set pear trees in an orchard.
(v. t.)
To fix firmly; to make fast, permanent, or stable; to render motionless; to give an unchanging place, form, or condition to.
(v. t.)
To fix beforehand; to determine; hence, to make unyielding or obstinate; to render stiff, unpliant, or rigid; as, to set one's countenance.
(v. t.)
To fit with music; to adapt, as words to notes; to prepare for singing.
(v. t.)
To extend and bring into position; to spread; as, to set the sails of a ship.
(v. t.)
To establish as a rule; to furnish; to prescribe; to assign; as, to set an example; to set lessons to be learned.
(v. t.)
To determine; to appoint; to assign; to fix; as, to set a time for a meeting; to set a price on a horse.
(v. t.)
To compose; to arrange in words, lines, etc.; as, to set type; to set a page.
(v. t.)
To cause to stop or stick; to obstruct; to fasten to a spot; hence, to occasion difficulty to; to embarrass; as, to set a coach in the mud.
(v. t.)
To cause to sit; to make to assume a specified position or attitude; to give site or place to; to place; to put; to fix; as, to set a house on a stone foundation; to set a book on a shelf; to set a dish on a table; to set a chest or trunk on its bottom or on end.
(v. t.)
To adorn with something infixed or affixed; to stud; to variegate with objects placed here and there.
(v. t.)
Hence, to attach or affix (something) to something else, or in or upon a certain place.
(v. i.)
To place plants or shoots in the ground; to plant.
(v. i.)
To pass below the horizon; to go down; to decline; to sink out of sight; to come to an end.
(v. i.)
To indicate the position of game; -- said of a dog; as, the dog sets well; also, to hunt game by the aid of a setter.
(v. i.)
To have a certain direction in motion; to flow; to move on; to tend; as, the current sets to the north; the tide sets to the windward.
| WordNet 2.0 |
Set
Noun
1. evil beast-headed Egyptian god with high square ears and a long snout; brother and murderer of Osiris
(synonym) Seth
(hypernym) Egyptian deity
Noun
1. evil beast-headed Egyptian god with high square ears and a long snout; brother and murderer of Osiris
(synonym) Seth
(hypernym) Egyptian deity
set
Noun
1. a group of things of the same kind that belong together and are so used; "a set of books"; "a set of golf clubs"; "a set of teeth"
(hypernym) collection, aggregation, accumulation, assemblage
(hyponym) dentition, teeth
(member-meronym) volume
2. (mathematics) an abstract collection of numbers or symbols; "the set of prime numbers is infinite"
(hypernym) abstraction
(hyponym) interval
(classification) mathematics, math, maths
3. several exercises intended to be done in series; "he did four sets of the incline bench press"
(synonym) exercise set
(hypernym) exercise, exercising, physical exercise, physical exertion, workout
4. representation consisting of the scenery and other properties used to identify the location of a dramatic production; "the sets were meticulously authentic"
(synonym) stage set
(hypernym) representation
(hyponym) scenery, scene
(part-holonym) mise en scene, stage setting, setting
(part-meronym) set decoration
5. an unofficial association of people or groups; "the smart set goes there"; "they were an angry lot"
(synonym) circle, band, lot
(hypernym) social group
(hyponym) car pool
6. a relatively permanent inclination to react in a particular way; "the set of his mind was obvious"
(synonym) bent
(hypernym) inclination, disposition, tendency
(derivation) specify, determine, fix, limit
7. the act of putting something in position; "he gave a final set to his hat"
(hypernym) placement, location, locating, position, positioning, emplacement
8. a unit of play in tennis or squash; "they played two sets of tennis after dinner"
(hypernym) playing period, period of play, play
9. the process of becoming hard or solid by cooling or drying or crystallization; "the hardening of concrete"; "he tested the set of the glue"
(synonym) hardening, solidifying, solidification, curing
(hypernym) natural process, natural action, action, activity
(hyponym) congealment, congelation
(part-holonym) plastination
(derivation) jell, congeal
10. the descent of a heavenly body below the horizon; "before the set of sun"
(hypernym) descent
11. (psychology) a temporary readiness to respond in a particular way; "the subjects' set led them to solve problems the familiar way and to overlook the simpler solution"; "his instructions deliberately gave them the wrong set"
(synonym) readiness
(hypernym) cognitive state, state of mind
(derivation) set up, lay out
(classification) psychology, psychological science
12. any electronic equipment that receives or transmits radio or tv signals; "the early sets ran on storage batteries"
(hypernym) electronic equipment
(hyponym) receiver, receiving system
(part-holonym) communication system, communication equipment
Verb
1. put into a certain place or abstract location; "Put your things here"; "Set the tray down"; "Set the dogs on the scent of the missing children"; "Place emphasis on a certain point"
(synonym) put, place, pose, position, lay
(hypernym) move, displace
(hyponym) insert, enclose, inclose, stick in, put in, introduce
(see-also) drop, set down, put down, unload, discharge
2. fix conclusively or authoritatively; "set the rules"
(synonym) determine
(hyponym) identify, place
(derivation) bent
3. decide upon or fix definitely; "fix the variables"; "specify the parameters"
(synonym) specify, determine, fix, limit
(hypernym) choose, take, select, pick out
(hyponym) quantify
(derivation) bent
4. establish as the highest level or best performance; "set a record"
(synonym) mark
(hypernym) lay down, establish, make
5. put into a certain state; cause to be in a certain state; "set the house afire"
(hypernym) change, alter, modify
(hyponym) pitch
(see-also) cancel, offset, set off
6. fix in a border; "The goldsmith set the diamond"
(hypernym) arrange, set up
7. make ready or suitable or equip in advance for a particular purpose or for some use, event, etc; "Get the children ready for school!"; "prepare for war"; "I was fixing to leave town after I paid the hotel bill"
(synonym) fix, prepare, set up, ready, gear up
(hypernym) change, alter, modify
(hyponym) socialize, socialise
(derivation) readiness
8. set to a certain position or cause to operate correctly; "set clocks or instruments"
(hypernym) adjust, correct
(hyponym) reset
(see-also) advance, set ahead
(derivation) setting
9. locate; "The film is set in Africa"
(synonym) localize, localise, place
(hypernym) stage, present, represent
10. disappear beyond the horizon; "the sun sets early these days"
(synonym) go down, go under
(antonym) rise, come up, uprise, ascend
(hypernym) descend, fall, go down, come down
(classification) astronomy, uranology
11. adapt for performance in a different way; "set this poem to music"
(synonym) arrange
(hypernym) compose, write
(hyponym) prearrange
(classification) music
12. put or set (seeds or seedlings) into the ground; "Let's plant flowers in the garden"
(synonym) plant
(hypernym) put, place, pose, position, lay
(hyponym) root
13. apply or start; "set fire to a building"
(hypernym) originate, initiate, start
14. become gelatinous; "the liquid jelled after we added the enzyme"
(synonym) jell, congeal
(hypernym) solidify
(derivation) hardening, solidifying, solidification, curing
15. put into a position that will restore a normal state; "set a broken bone"
(hypernym) put, place, pose, position, lay
16. insert (a nail or screw below the surface, as into a countersink)
(synonym) countersink
(hypernym) bury, sink
17. give a fine, sharp edge to a knife or razor
(hypernym) hone
18. urge a dog to attack someone
(synonym) sic
(hypernym) assail, assault, set on, attack
19. estimate; "We put the time of arrival at 8 P.M."
(synonym) place, put
(hypernym) estimate, gauge, approximate, guess, judge
20. equip with sails, masts, etc.; "rig a ship"
(synonym) rig, set up
(hypernym) equip, fit, fit out, outfit
21. get ready for a particular purpose or event; "set up an experiment"; "set the table"; "lay out the tools for the surgery"
(synonym) set up, lay out
(hypernym) fix, prepare, set up, ready, gear up
(derivation) readiness
22. alter or regulate so as to achieve accuracy or conform to a standard; "Adjust the clock, please"; "correct the alignment of the front wheels"
(synonym) adjust, correct
(hypernym) change, alter, modify
(hyponym) proportion
23. bear fruit; "the apple trees fructify"
(synonym) fructify
(hypernym) reproduce, procreate, multiply
24. arrange attractively; "dress my hair for the wedding"
(synonym) dress, arrange, do, coif, coiffe, coiffure
(hypernym) groom, neaten
(hyponym) bob
(verb-group) dress, groom, curry
Adjective
1. (usually followed by `to' or `for') on the point of or strongly disposed; "in no fit state to continue"; "fit to drop"; "laughing fit to burst"; "she was fit to scream"; "primed for a fight"; "we are set to go at any time"
(synonym) fit(p), primed(p), set(p)
(similar) ready
2. fixed and unmoving; "with eyes set in a fixed glassy stare"; "his bearded face already has a set hollow look"- Connor Cruise O'Brien; "a face rigid with pain"
(synonym) fixed, rigid
(similar) nonmoving, unmoving
3. situated in a particular spot or position; "valuable centrally located urban land"; "strategically placed artillery"; "a house set on a hilltop"; "nicely situated on a quiet riverbank"
(synonym) located, placed, situated
(similar) settled
4. set down according to a plan:"a carefully laid table with places set for four people"; "stones laid in a pattern"
(synonym) laid
(similar) arranged, ordered
5. being below the horizon; "the moon is set"
(synonym) set(p)
(similar) down
6. determined or decided upon as by an authority; "date and place are already determined"; "the dictated terms of surrender"; "the time set for the launching"
(synonym) determined, dictated
(similar) settled
7. converted to solid form (as concrete)
(synonym) hardened
(similar) hard
| The Phrase Finder |
Set your teeth on edge
Origin
From Shakespeare's Henry IV.
HOTSPUR: Marry,
And I am glad of it with all my heart:
I had rather be a kitten and cry mew
Than one of these same metre ballad-mongers;
I had rather hear a brazen canstick turn'd,
Or a dry wheel grate on the axle-tree;
And that would set my teeth nothing on edge,
Nothing so much as mincing poetry:
'Tis like the forced gait of a shuffling nag.
Origin
From Shakespeare's Henry IV.
HOTSPUR: Marry,
And I am glad of it with all my heart:
I had rather be a kitten and cry mew
Than one of these same metre ballad-mongers;
I had rather hear a brazen canstick turn'd,
Or a dry wheel grate on the axle-tree;
And that would set my teeth nothing on edge,
Nothing so much as mincing poetry:
'Tis like the forced gait of a shuffling nag.
The sun never sets on the British Empire
Origin
Christopher North, in Noctes Ambrosianae, 'His Majesty's dominions, on which the sun never sets.'
This precious stone set in the silver sea, this sceptered isle
Origin
From Shakespeare's Richard II.
| Australian Slang |
Set
1. (surfing) series of larger than normal waves; 2. (weights) series of weight exercises; 3. having a bet placed: “Make sure I'm set for a tenner”
1. (surfing) series of larger than normal waves; 2. (weights) series of weight exercises; 3. having a bet placed: “Make sure I'm set for a tenner”
Dead set
quite true
Deadset
true, the truth; without a doubt; truthful
Game, set and match
convincing victory; complete triumph
Get set
place a bet (in two-up, horseracing, etc.)
Set-up
1. racket; swindle; 2. trap; ambush
| English Slang Dictionary v1.2 |
set
1. a denomination of one of the larger gangs, a set is not necessarily friendly with other sets in the same gang
2. the group of songs in a concert by a specific performer
1. a denomination of one of the larger gangs, a set is not necessarily friendly with other sets in the same gang
2. the group of songs in a concert by a specific performer
| hEnglish - advanced version |
set
set
\set\ (s&ebreve;t), v. i.
1. to pass below the horizon; to go down; to decline; to sink out of sight; to come to an end. ere the weary sun set in the west. thus this century sets with little mirth, and the next is likely to arise with more mourning.
2. to fit music to words. [obs.]
3. to place plants or shoots in the ground; to plant. "to sow dry, and set wet."
4. to be fixed for growth; to strike root; to begin to germinate or form; as, cuttings set well; the fruit has set well (i. e., not blasted in the blossom).
5. to become fixed or rigid; to be fastened. a gathering and serring of the spirits together to resist, maketh the teeth to set hard one against another.
6. to congeal; to concrete; to solidify. that fluid substance in a few minutes begins to set.
7. to have a certain direction in motion; to flow; to move on; to tend; as, the current sets to the north; the tide sets to the windward.
8. to begin to move; to go out or forth; to start; -- now followed by out. the king is set from london.
9. to indicate the position of game; -- said of a dog; as, the dog sets well; also, to hunt game by the aid of a setter.
10. to apply one's self; to undertake earnestly; -- now followed by out. if he sets industriously and sincerely to perform the commands of christ, he can have no ground of doubting but it shall prove successful to him.
11. to fit or suit one; to sit; as, the coat sets well.
note: [colloquially used, but improperly, for sit.]
note: the use of the verb set for sit in such expressions as, the hen is setting on thirteen eggs; a setting hen, etc., although colloquially common, and sometimes tolerated in serious writing, is not to be approved.
similar words(139)
set back
to set by the compass
neutrosophic set
set nut
to set fire to
livingroom set
to set at naught
to set on fire
to set on
set off
set upon
to set a saw
complex instruction set computing
to set on work
exercise set
to set on foot
set hammer
to set one`s cap for
set up
character set
set theory
reduced instruction set computer
to set eyes on
to set one`s cap
to set one`s teeth
low-set
to set down
working set model
complex instruction set computer
toilet set
totally ordered set
to set one`s self against
put or get or set
to set out
set speech
to set a sail
relative record data set
to set or to set up
tea set
to set at defiance
to set or to set up
set free
set line
instruction set
to make a dead set
to set right
to set over
set forth
zermelo fränkel set theory
Next >>
set
\set\ (s&ebreve;t), v. i.
1. to pass below the horizon; to go down; to decline; to sink out of sight; to come to an end. ere the weary sun set in the west. thus this century sets with little mirth, and the next is likely to arise with more mourning.
2. to fit music to words. [obs.]
3. to place plants or shoots in the ground; to plant. "to sow dry, and set wet."
4. to be fixed for growth; to strike root; to begin to germinate or form; as, cuttings set well; the fruit has set well (i. e., not blasted in the blossom).
5. to become fixed or rigid; to be fastened. a gathering and serring of the spirits together to resist, maketh the teeth to set hard one against another.
6. to congeal; to concrete; to solidify. that fluid substance in a few minutes begins to set.
7. to have a certain direction in motion; to flow; to move on; to tend; as, the current sets to the north; the tide sets to the windward.
8. to begin to move; to go out or forth; to start; -- now followed by out. the king is set from london.
9. to indicate the position of game; -- said of a dog; as, the dog sets well; also, to hunt game by the aid of a setter.
10. to apply one's self; to undertake earnestly; -- now followed by out. if he sets industriously and sincerely to perform the commands of christ, he can have no ground of doubting but it shall prove successful to him.
11. to fit or suit one; to sit; as, the coat sets well.
note: [colloquially used, but improperly, for sit.]
note: the use of the verb set for sit in such expressions as, the hen is setting on thirteen eggs; a setting hen, etc., although colloquially common, and sometimes tolerated in serious writing, is not to be approved.
similar words(139)
set back
to set by the compass
neutrosophic set
set nut
to set fire to
livingroom set
to set at naught
to set on fire
to set on
set off
set upon
to set a saw
complex instruction set computing
to set on work
exercise set
to set on foot
set hammer
to set one`s cap for
set up
character set
set theory
reduced instruction set computer
to set eyes on
to set one`s cap
to set one`s teeth
low-set
to set down
working set model
complex instruction set computer
toilet set
totally ordered set
to set one`s self against
put or get or set
to set out
set speech
to set a sail
relative record data set
to set or to set up
tea set
to set at defiance
to set or to set up
set free
set line
instruction set
to make a dead set
to set right
to set over
set forth
zermelo fränkel set theory
Next >>
@@@set
to set case
lower set
to set in
set of bookshelves
to set milk
reduced instruction set computing
to set off against
well-set
to set off
set on
entry sequenced data set
radio set
to set of
set ahead
tv set
to set abroach
well-ordered set
set about
to set aside
set associative cache
universal character set
deep-set
to set apart
keyed sequential data set
set aside
seam set
to set agoing
television set
set ashore
to set at ease
to set by
axiomatic set theory
to set a
set apart
set phrase
set down
to set
sharp-set
partially ordered set
set complement
set-apart
@@set
to set store by
instruction set processor
to set about
to set steven
to set sail
to set forth
to set at work
tautological set
to set flying
to set the eyes on
set-off
orthogonal instruction set
to set free
to set the hand to
set out
mind-set
to set the fashion
to set the heart upon
telephone set
to set forward
to set light by
to set the heart at rest
to set the palette
coded character set
to set the land
working set
put or set
dead set
to set a sponge
instruction set architecture
to set the teeth on edge
to set before
to set to
to set against
to set the watch
to set to sale
to set to rights
zermelo set theory
to set up the rigging
train set
to set up
to set to work
to set in order
idealized instruction set
chip set
receiving set
register set
set screw
infinite set
Next >>
| Concise English-Irish Dictionary v. 1.1 |
set
collection: tacar
collection: tacar
| JM Welsh <=> English Dictionary |
Cyferbynu
Cyferbynu = v. to set in opposition, to contrast; to counteract
Cyferbynu = v. to set in opposition, to contrast; to counteract
Cymhenu
Cymhenu = v. to set off
Cyrchu
Cyrchu = v. to gravitate, to approach; to set on; to fetch
Dodol
Dodol = a. posited, set, laid
Dyfinio
Dyfinio = v. to set an edge
Dygychwyn
Dygychwyn = v. to set off
Engi
Engi = v. to set at large, to free
Engu
Engu = v. to set at large, to free
Garmio
Garmio = v. to set up a cry
Gemu
Gemu = v. to set with gems
Gosodi
Gosodi = v. to set, to put, to lay
Hwylio
Hwylio = v. to set in course; to butt; to prepare; to sail
Hysian
Hysian = v. to snarl, to set on
Myned
Myned = v. to set out, to go
Oed
Oed = n. process of time; time to come; set time; age
Oedfa
Oedfa = n. a set time; a meeting
Polioni
Polioni = v. to set poles
Rhagosod
Rhagosod = v. to set before
Rhesio
Rhesio = v. to set in a row
Tanio
Tanio = v. to fire, to put on fire, to set fire to
Trybeddu
Trybeddu = v. to set firmly
Ysgilio
Ysgilio = v. to set behind
Set Definition from Religion & Spirituality Dictionaries & Glossaries
| Rakefet |
Set
Set or Seth (Egyptian) According to the Heliopolitan mythology, the son of Seb and Nut, is the brother of Osiris, Isis, and Nephthys; and the father of Anubis by Nephthys. In later times he became associated with Typhon. The attributes of the god underwent several changes: he is described as very closely connected with Aroeris (Heru-ur or Horus the Elder), his chief office being that of helper and friend to the deceased; in this association a twin-god is pictured, having the hawk head of Horus (light) and the Set animal (darkness) upon one human body. Furthermore, Horus was the god of the sky by day, while Set was god of the sky by night: in this sense were they opposite yet identic deities in earliest times, one the shadow of the other.
Later the mythological account describes warlike combats between the two. Horus popularly represented the bright, upward motion of the sun -- resulting in spring and summer; Set represented the downward motion, the mythologic account dwelling upon the fact that Set stole the light from the sun, resulting in autumn and winter. The combats engaged in by Set are rendered in four themes: against Horus, resulting in night coming upon day; against Ra, the sun god; against his brother, Osiris, resulting in the latter's death; and against Horus the Younger who was striving to avenge the death of his father, Osiris.
to be continue "Set2 "
Set or Seth (Egyptian) According to the Heliopolitan mythology, the son of Seb and Nut, is the brother of Osiris, Isis, and Nephthys; and the father of Anubis by Nephthys. In later times he became associated with Typhon. The attributes of the god underwent several changes: he is described as very closely connected with Aroeris (Heru-ur or Horus the Elder), his chief office being that of helper and friend to the deceased; in this association a twin-god is pictured, having the hawk head of Horus (light) and the Set animal (darkness) upon one human body. Furthermore, Horus was the god of the sky by day, while Set was god of the sky by night: in this sense were they opposite yet identic deities in earliest times, one the shadow of the other.
Later the mythological account describes warlike combats between the two. Horus popularly represented the bright, upward motion of the sun -- resulting in spring and summer; Set represented the downward motion, the mythologic account dwelling upon the fact that Set stole the light from the sun, resulting in autumn and winter. The combats engaged in by Set are rendered in four themes: against Horus, resulting in night coming upon day; against Ra, the sun god; against his brother, Osiris, resulting in the latter's death; and against Horus the Younger who was striving to avenge the death of his father, Osiris.
to be continue "Set2 "
| Book of Shadows |
Set
Egyptian
Gods & Godesses
Regarded as the Lord of Lower (Northern) Egypt and was represented by a big-eared imaginary animal resembling a donkey or maybe an aardvark. He was associated with the desert and storms. The Greeks associated Seth with their god, Typhon. When Upper Egypt conquered Lower Egypt, Seth became known as the evil enemy of Horus (deity of Upper Egypt). Seth was the brother of Osiris, Isis as well as Nephthys who was also his wife. Some legends also name him as the father of Anubis. During his battles with Horus, the goddess Neith suggested a compromise by giving Horus the throne, and Seth the Semetic goddesses Astarte and Asat Seth is most famous for the fratricide of his brother Osiris and the attempted murder of his brother's son, Horus. Horus survived though and avenged his father's death by ruling all of Egypt and exiling Seth to the desert for all time. Seth was not completely evil though, he protected the sun barge of Re during its nightly journey through the underworld and he fights the snake-like monster Apep. Also, for a short time during the 19th Dynasty respect grew for Seth as he was seen as a god who restrained the forces of the desert.
Egyptian
Gods & Godesses
Regarded as the Lord of Lower (Northern) Egypt and was represented by a big-eared imaginary animal resembling a donkey or maybe an aardvark. He was associated with the desert and storms. The Greeks associated Seth with their god, Typhon. When Upper Egypt conquered Lower Egypt, Seth became known as the evil enemy of Horus (deity of Upper Egypt). Seth was the brother of Osiris, Isis as well as Nephthys who was also his wife. Some legends also name him as the father of Anubis. During his battles with Horus, the goddess Neith suggested a compromise by giving Horus the throne, and Seth the Semetic goddesses Astarte and Asat Seth is most famous for the fratricide of his brother Osiris and the attempted murder of his brother's son, Horus. Horus survived though and avenged his father's death by ruling all of Egypt and exiling Seth to the desert for all time. Seth was not completely evil though, he protected the sun barge of Re during its nightly journey through the underworld and he fights the snake-like monster Apep. Also, for a short time during the 19th Dynasty respect grew for Seth as he was seen as a god who restrained the forces of the desert.
Set Definition from Arts & Humanities Dictionaries & Glossaries
| Glossary of Technical Theatre Terms |
SET
1) To prepare the stage for action. (verb) 2) The complete stage setting for a scene or act. (noun)
1) To prepare the stage for action. (verb) 2) The complete stage setting for a scene or act. (noun)
| Glossary of Stamp Collecting Terms |
SET
A series of stamps with similarity in design or purpose.
A series of stamps with similarity in design or purpose.
| English-Latin Online Dictionary |
set
constituo, impono
constituo, impono
get ready/ set
paro
set /(milit.) post
pono posui positum
| Glossary of Comedy Nomenclature |
set
a stand-up comedy show of any length.
a stand-up comedy show of any length.
Set Definition from Science & Technology Dictionaries & Glossaries
| ETSI and 3GPP |
SET
Standard Exchange Transfer
Standard Exchange Transfer
| Telecommunication Standard Terms |
set
1. A finite or infinite number of objects, entities, or concepts, that have a given property or properties in common. 2 . To configure all or part of a device into a specified state.
1. A finite or infinite number of objects, entities, or concepts, that have a given property or properties in common. 2 . To configure all or part of a device into a specified state.
| Moxie International's Glossary of Concrete Terms |
Set
A term used to describe the stiffening of cement paste; a condition reached by a concrete, cement paste, or mortar when plasticity is lost to an arbitrary degree, usually measured in terms of resistance to penetration or deformation. (Initial set refers to first stiffening. Final set refers to attainment of significant rigidity.)
A term used to describe the stiffening of cement paste; a condition reached by a concrete, cement paste, or mortar when plasticity is lost to an arbitrary degree, usually measured in terms of resistance to penetration or deformation. (Initial set refers to first stiffening. Final set refers to attainment of significant rigidity.)
| Airline Codes |
SAETA
SAETA (Ecuador)
IATA: EH
ICAO: SET
Web:
Aliances:
FF:
SAETA (Ecuador)
IATA: EH
ICAO: SET
Web:
Aliances:
FF:
| Rubber Glossary |
Set
The degree to which a rubber does not fully recover to its original shape after it has been deformed for a long period of time. Also called "permanent set".
The degree to which a rubber does not fully recover to its original shape after it has been deformed for a long period of time. Also called "permanent set".
Set Definition from Society & Culture Dictionaries & Glossaries
| Lexicon of Tiddlywinks |
set
n the winks and pot
1958 Sports Illustrated 7 Apr. Page M7. Even in apparently uniform sets, sometimes "borrowed from small brothers and sisters for an indefinite period," measurement has often shown one wink is twice as thick as another.
n the winks and pot
1958 Sports Illustrated 7 Apr. Page M7. Even in apparently uniform sets, sometimes "borrowed from small brothers and sisters for an indefinite period," measurement has often shown one wink is twice as thick as another.
Set Definition from Sports Dictionaries & Glossaries
| maritime&shipping&trade |
SET
Direction toward which the current is flowing.
Direction toward which the current is flowing.
| Worldgolf |
set
A full set of golf clubs.
A full set of golf clubs.
| Bodybuilding Jargon |
| Tennis Terms |
Set
A set comprises at least six games. Matches are generally played over three or five sets.
A set comprises at least six games. Matches are generally played over three or five sets.
| Nautical Know How Glossary of Boating Terms |
SET
Direction toward which the current is flowing.
Direction toward which the current is flowing.
| Bowling Termes 1.0 |
Set
Ball holding in the pocket.
Ball holding in the pocket.
| Tennis Glossary |
Points, Games, Sets and Matches
Points make up games, games make up sets, sets make up matches. When a player wins four points by a margin of two, they've won a game. When a player wins six games (with the exception of at 5-all and 6-all) they've won a set. Most matches are best of three tiebreak sets. Someone must win two out of three sets to win the match and a tiebreaker will always be played at 6-all. In many professional tournaments, men will play best of five tiebreak sets. Only at Wimbledon, if the match goes to it's ultimate set, will players continue to play games until someone wins by two.
Points make up games, games make up sets, sets make up matches. When a player wins four points by a margin of two, they've won a game. When a player wins six games (with the exception of at 5-all and 6-all) they've won a set. Most matches are best of three tiebreak sets. Someone must win two out of three sets to win the match and a tiebreaker will always be played at 6-all. In many professional tournaments, men will play best of five tiebreak sets. Only at Wimbledon, if the match goes to it's ultimate set, will players continue to play games until someone wins by two.
Set Definition from Entertainment & Music Dictionaries & Glossaries
| american horse racing dictionary |
set
A group of horses being exercised together.
A group of horses being exercised together.
| English to Federation-Standard Golic Vulcan |
Set (n.)
eku
eku
Set (v.)
tev-tor (as the sun); dvolau (adjust)
| TUPAC SHAKUR Rap Dictionary V.2.0 |
set
1) (n) A denomination of one of the larger gangs, a set is not necessarily friendly with other sets in the same gang. "Baby girl asked me what set am I claiming" - Sir MixaLot (Rapper's Reputation) 2) (n) The group of songs in a concert by a specific performer.
1) (n) A denomination of one of the larger gangs, a set is not necessarily friendly with other sets in the same gang. "Baby girl asked me what set am I claiming" - Sir MixaLot (Rapper's Reputation) 2) (n) The group of songs in a concert by a specific performer.
| gambling |
Set
In pai gow poker, players set their seven cards into two separate hands of two and five cards each.
In pai gow poker, players set their seven cards into two separate hands of two and five cards each.
| Rap-music terminology and bios of artists |
set
1) (n) A denomination of one of the larger gangs, a set is not necessarily friendly with other sets in the same gang. "Baby girl asked me what set am I claiming" - Sir MixaLot (Rapper's Reputation)
2) (n) The group of songs in a concert by a specific performer.
1) (n) A denomination of one of the larger gangs, a set is not necessarily friendly with other sets in the same gang. "Baby girl asked me what set am I claiming" - Sir MixaLot (Rapper's Reputation)
2) (n) The group of songs in a concert by a specific performer.
Set Definition from Encyclopedia Dictionaries & Glossaries
| Wikipedia English - The Free Encyclopedia |
SET
SET may stand for:
- Sanlih Entertainment Television, a television channel in Taiwan
- Secure electronic transaction, a protocol used for credit card processing,
- Similarity Enhanced Transfer, a technology used to speed up download rate of files on file sharing networks
- Simulated Emergency Test, an amateur radio training exercise,
- Single-Electron Transistor, a device to amplify currents in nanoelectronics,
- Society for the Eradication of Television,
- Sony Entertainment Television, a television channel owned by Sony,
- South Eastern Trains now run by Southeastern, a public-owned rail company operating in South East England,
- Stock Exchange of Thailand, a national stock exchange of Thailand,
- SET Index, an index for Stock Exchange of Thailand,
- Study of Exceptional Talent, a program for gifted students with high scores on the SAT in middle school,
- Single-Ended Triode, a type of electronic amplifier,
- Social Entropy Theory, application of entropy concept to maintenace or disorganisation in society,
- School of Engineering Technology,
- Selective Employment Tax, a UK tax on non-productive workers introduced in 1966 and abandoned a few years later,
- Southeast Toyota Distributors, the world's largest privately owned distributor of Toyota vehicles,
- Suzuki SET (Suzuki Exhaust Tuning).
| See more at Wikipedia.org... |
Set
- This article gives a basic introduction to what mathematicians call "intuitive" or "naive" set theory; for a more detailed account see Naive set theory. For a rigorous modern axiomatic treatment of sets, see Axiomatic set theory.
| See more at Wikipedia.org... |
Set (game)
- This article is about the game known as Set. For the term used by the Ophidian 2350 card game for turning a card 90 degrees, see Set (gaming). Set! redirects here. Set! is also a special form in the Scheme programming language.
| See more at Wikipedia.org... |
Seth
- This article is about the Biblical Seth. For the Egyptian god Seth, see Set (mythology); for other meanings, see Seth (disambiguation).
Seth (Hebrew: שֵׁת, Standard Šet, Tiberian ; Arabic: شيث Shith or Shiyth; "Placed; appointed"), in the Book of Genesis of the Hebrew Bible, is the third listed son of Adam and Eve and brother of Cain and Abel and is the only other son mentioned by name. According to Genesis 4:25, Seth was born after the slaying of Abel by Cain, and Eve believed God had appointed him as "replacement" for Abel "because Cain killed him". He is commemorated as one of the Holy Forefathers in the Calendar of Saints of the Armenian Apostolic Church on July 30.
| See more at Wikipedia.org... |
