Alias

1. имя существительное вымышленное имя, прозвище, кличка Например: to travel (by) an alias — путешествовать под вымышленным именем the thief had several aliases — у этого вора было несколько кличек Синоним(ы): pseudonym 2. наречие иначе, другими словами Например: Brown alias Smith — Браун, он же Смит

Большой англо-русский словарь

Alias

псевдоним, альтернативное [дополнительное] имя а) имя, используемое для ссылки на кого-то или что-то, в частности, совокупность имён и электронных адресов, под которыми пользователь известен системе Смотри также: aliasing 2), canonical name б) в Интернете хосты с длинными именами могут иметь один или несколько псевдонимов (альтернативных имён) в) в САПР - псевдоним (дополнительное имя) цепи, шины или компонента г) в микропроцессорах с механизмом переименования регистров (смотри register renaming) - временный идентификатор, хранящийся во внутренней таблице и позволяющий отслеживать содержимое регистров

Англо-русский словарь компьютерных терминов

Alias

теория планирования экспериментов смешивание эффектов; совместные эффекты

Англо-русский научно-технический словарь

Alias

1) помеха дискретизации, побочная низкочастотная составляющая (в спектре дискретизированного сигнала), ложная частота 2) альтернативная точка входа (в подпрограмму) 3) [вычислительная техника] псевдоним

Англо-русский политехнический словарь

Alias

I. adverb Etymology: Latin, otherwise, from alius other — more at else otherwise called; otherwise known as II. noun an assumed or additional name

Merriam-Webster's Collegiate Dictionary

Alias

ALgorIthmic ASsembly language

Free Online Dictionary of Computing

Alias

1. A name, usually short and easy to remember and type, that is translated into another name or string, usually long and difficult to remember or type. Most command interpreters (e.g. Unix's csh) allow the user to define aliases for commands, e.g. "alias l ls -al". These are loaded into memory when the interpreter starts and are expanded without needing to refer to any file. 2. One of several alternative hostnames with the same Internet address. E.g. in the Unix hosts database (/etc/hosts or NIS map) the first field on a line is the Internet address, the next is the official hostname (the "canonical name" or "CNAME"), and any others are aliases. Hostname aliases often indicate that the host with that alias provides a particular network service such as archie, finger, FTP, or web. The assignment of services to computers can then be changed simply by moving an alias (e.g. www.doc.ic.ac.uk) from one Internet address to another, without the clients needing to be aware of the change. 3. The name used by Apple computer, Inc. for symbolic links when they added them to the System 7 operating system in 1991. 4. Two names (identifiers), usually of local or global variables, that refer to the same resource (memory location) are said to be aliased. Although names introduced in programming languages are typically mapped to different memory locations, aliasing can be introduced by the use of address arithmetic and pointers or language-specific features, like C++ references. Statically deciding (e.g. via a program analysis executed by a sophisticated compiler) which locations of a program will be aliased at run time is an undecidable problem.

Free Online Dictionary of Computing