interrupt vector - перевод на немецкий
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

interrupt vector - перевод на немецкий

DATA STRUCTURE
Interrupt vector; Interrupt Vector; Interrupt vetor
  • thumb

interrupt vector         
Unterbrechungs-Vektor (Computerspeicher in dem die Standarddaten festgehalten werden während der Nicht-Inbetriebnahme)
vector graphics         
  • Example showing comparison of vector graphics and [[raster graphics]] upon [[magnification]]
  • vectorization]]
  • Detail can be added to or removed from vector art.
  • Asteroids]]''-like video game played on a [[vector monitor]]
  • This vector-based (SVG format) image of a round four-color swirl displays several unique features of vector graphics versus raster graphics: there is no [[aliasing]] along the rounded edge (which would result in [[digital artifacts]] in a raster graphic), the [[color gradient]]s are all smooth, and the user can resize the image infinitely without losing any quality.
COMPUTER GRAPHICS IMAGES DEFINED BY POINTS, LINES AND CURVES
Vector art; Vector Art; X-Y monitor; Xy monitor; Vector Graphics; Vector image; Vector drawing; Vector images; Object-oriented graphics; Object-Oriented Graphics; Vector version; Vector software; Vectorgraphic; Vector drawings; Vector graphic; Vector illustration; Vector image format; Conversion of vector graphics file formats; Vector artwork; Vector format
Vektorgrafik, eine Grafik die mit Hilfe von mathematischen Formeln erstellt wurde
unit vector         
  • Examples of two 3D direction vectors
  • "200px"
  • "200px"
  • "200px"
  • "200px"
VECTOR OF LENGTH ONE
Normalized vector; Unit vectors; Vector normalization; Unit normal vector; Unit length; K^; Unity vector; Normalize (linear algebra); Unit-norm vector; Unit pseudovector; Versor (physics); Unit Vector; Right versor; Direction vector
Einheitsvektor (gerade Linie, die die Größe einer Einheit darstellt)

Определение

interrupt handler
<software> A routine which is executed when an interrupt occurs. Interrupt handlers typically deal with low-level events in the hardware of a computer system such as a character arriving at a serial port or a tick of a real-time clock. Special care is required when writing an interrupt handler to ensure that either the interrupt which triggered the handler's execution is masked out (inhibitted) until the handler exits, or the handler is re-entrant so that multiple concurrent invocations will not interfere with each other. If interrupts are masked then the handler must execute as quickly as possible so that important events are not missed. This is often arranged by splitting the processing associated with the event into "upper" and "lower" halves. The lower part is the interrupt handler which masks out further interrupts as required, checks that the appropriate event has occurred (this may be necessary if several events share the same interrupt), services the interrupt, e.g. by reading a character from a UART and writing it to a queue, and re-enabling interrupts. The upper half executes as part of a user process. It waits until the interrupt handler has run. Normally the {operating system} is responsible for reactivating a process which is waiting for some low-level event. It detects this by a shared flag or by inspecting a shared queue or by some other synchronisation mechanism. It is important that the upper and lower halves do not interfere if an interrupt occurs during the execution of upper half code. This is usually ensured by disabling interrupts during critical sections of code such as removing a character from a queue. (2002-07-24)

Википедия

Interrupt vector table

An interrupt vector table (IVT) is a data structure that associates a list of interrupt handlers with a list of interrupt requests in a table of interrupt vectors. Each entry of the interrupt vector table, called an interrupt vector, is the address of an interrupt handler. While the concept is common across processor architectures, IVTs may be implemented in architecture-specific fashions. For example, a dispatch table is one method of implementing an interrupt vector table.