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

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

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

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

context switching - перевод на русский

SWITCH BETWEEN PROCESSES OR TASKS ON A COMPUTER
Context switching; Thread switching latency; Process switching latency; Context Switch; Address space switch; Thread switch; Process switch; Address-space switch; Mode switch
Найдено результатов: 207
context switching         

общая лексика

переключение контекста

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

proper grammar         
  • C programming language]] (left), and a derivation of a piece of C code (right) from the nonterminal symbol <math>\langle\text{Stmt}\rangle</math>. Nonterminal symbols are blue and terminal symbols are red.
  • An example parse tree
  • Two different parse trees from the same input
  • 1 + 1 + a}}
  • 1 + 1 + a}}
TYPE OF FORMAL GRAMMAR
Context free grammars; Context free grammar; Context-free grammars; Useless rules; Useless Rules; Proper grammar; Context-free Grammar; Content free grammar; Context free gramar; Rightmost derivation; Leftmost derivation; Left-sentential; Left sentential; Right-sentential; Right sentential; Context Free Grammar; Unreachable symbol; Unproductive symbol; Nonterminal nullability; Ε-production

математика

приведенная грамматика

switching         
WIKIMEDIA DISAMBIGUATION PAGE
Switching Methods; Switching (disambiguation)
switching         
WIKIMEDIA DISAMBIGUATION PAGE
Switching Methods; Switching (disambiguation)
1) переход, переключение
2) трансп. маневровая работа
3) перевозка грузов по железнодорожным веткам от магистралей к портам [к заводам]
4) работа передаточных железных дорог
5) ТМО переход из одной очереди в другую
- asset switching
- interterminal switching
- intraplant switching
- intraterminal switching
- reciprocal switching
switching         
WIKIMEDIA DISAMBIGUATION PAGE
Switching Methods; Switching (disambiguation)

['switʃiŋ]

общая лексика

коммутация

процесс маршрутизации путем переключения промежуточных соединений для установления связи между двумя узлами компьютерной сети

переключение

коммутационный

коммутация соединений

маневры

переключательный

переключающий

железнодорожное дело

маневровый

нефтегазовая промышленность

включение

выключение

существительное

общая лексика

порка

электротехника

коммутирование

переключение

железнодорожное дело

маневровая работа

switching         
WIKIMEDIA DISAMBIGUATION PAGE
Switching Methods; Switching (disambiguation)
1) включение
2) переключение
out of context         
INFORMAL FALLACY IN WHICH A PASSAGE IS REMOVED FROM ITS SURROUNDING MATTER IN SUCH A WAY AS TO DISTORT ITS INTENDED MEANING
Quote mining; Quote-mining; Contextomy; Fallacy of quoting out of context; Quote mine; Quote mines; Out of context; Quote farming; Quote mined; Quotation mining; Selective quote; Quotemining; Quotemine; Quotation out of Context; Quote-mine; Quote out of context
в отрыве от контекста
context-sensitive         
WIKIMEDIA DISAMBIGUATION PAGE
Context sensitive; Context-sensitive (disambiguation)
зависящий от контекста, контекстно-зависимый
context-sensitive         
WIKIMEDIA DISAMBIGUATION PAGE
Context sensitive; Context-sensitive (disambiguation)

общая лексика

контекстно-зависимая

система, действия которой определяются текущим контекстом (состоянием) программной среды. Обычно это относится к системе оперативной помощи (context-sensitive help) и меню

синоним

context-dependent

context-free language         
FORMAL LANGUAGE THAT IS A MEMBER OF THE SET OF LANGUAGES DEFINED BY CONTEXT-FREE GRAMMARS
Context free language; Context-free languages; Context-Free Language; Context Free Languages; Context-Free languages; Non-context-free language

математика

бесконтекстный (контекстно-свободный) язык

Определение

context switch
<operating system> When a multitasking operating system stops running one process and starts running another. Many operating systems implement concurrency by maintaining separate environments or "contexts" for each process. The amount of separation between processes, and the amount of information in a context, depends on the operating system but generally the OS should prevent processes interfering with each other, e.g. by modifying each other's memory. A context switch can be as simple as changing the value of the program counter and stack pointer or it might involve resetting the MMU to make a different set of memory pages available. In order to present the user with an impression of parallism, and to allow processes to respond quickly to external events, many systems will context switch tens or hundreds of times per second. (1996-12-18)

Википедия

Context switch

In computing, a context switch is the process of storing the state of a process or thread, so that it can be restored and resume execution at a later point, and then restoring a different, previously saved, state. This allows multiple processes to share a single central processing unit (CPU), and is an essential feature of a multitasking operating system. In a traditional CPU, each process - a program in execution - utilizes the various CPU registers to store data and hold the current state of the running process. However, in a multitasking operating system, the operating system switches between processes or threads to allow the execution of multiple processes simultaneously. For every switch, the operating system must save the state of the currently running process, followed by loading the next process state, which will run on the CPU. This sequence of operations that stores the state of the running process and the loading of the following running process is called a context switch.

The precise meaning of the phrase "context switch" varies. In a multitasking context, it refers to the process of storing the system state for one task, so that task can be paused and another task resumed. A context switch can also occur as the result of an interrupt, such as when a task needs to access disk storage, freeing up CPU time for other tasks. Some operating systems also require a context switch to move between user mode and kernel mode tasks. The process of context switching can have a negative impact on system performance.: 28 

Как переводится context switching на Русский язык