- test loop
-
1) испытательная петля (ядерного реактора)2) ж.-д. испытательное кольцо3) тестовый цикл, цикл проверки
Англо-русский словарь технических терминов. 2005.
Англо-русский словарь технических терминов. 2005.
Loop unwinding — Loop unwinding, also known as loop unrolling, is a loop transformation technique that attempts optimize a program s execution speed at the expense of its size.The goal of loop unwinding is to increase the programs speed by reducing (or… … Wikipedia
Loop (instruction) — Structure de contrôle En programmation impérative, une structure de contrôle est une commande qui contrôle l ordre dans lequel les différentes instructions d un algorithme ou d un programme informatique sont exécutées. On appelle aussi cet… … Wikipédia en Français
Loop around — A Loop line or Loop Around is a telephone company test circuit. The circuit did not connect to a specific place, and required two numbers dedicated to it. When one side of the loop was called (Side A), the caller got an approximately 1000 Hz tone … Wikipedia
Loop dependence analysis — In compiler theory, loop dependence analysis is the task of determining whether statements within a loop body form a dependence, almost always with respect to array access and modification. For a normalized loop: for i1 from l1 to u1 do for i2… … Wikipedia
Loop optimization — In compiler theory, loop optimization plays an important role in improving cache performance, making effective use of parallel processing capabilities, and reducing overheads associated with executing loops. Most execution time of a scientific… … Wikipedia
Loop quantum gravity — Not to be confused with the path integral formulation of LQG, see spin foam. This article is about LQG in its Canonical formulation.. Beyond the Standard Model … Wikipedia
Loop invariant — In computer science, a loop invariant is an invariant used to prove properties of loops.Specifically in Floyd Hoare logic, the partial correctness of a while loop is governed by the following rule of inference::frac{{Cland I};mathrm{body};{I… … Wikipedia
Test-and-set — In computer science, the test and set instruction is an instruction used to both test and (conditionally) write to a memory location as part of a single atomic (i.e. non interruptible) operation. This means setting a value, but first performing… … Wikipedia
Loop Maintenance Operations System — The Loop Management Operations System (LMOS) is a telephone company trouble ticketing system that plays an essential part in the act of repairing local loops (telephone lines). When a problem is reported to the Centralized Repair Service… … Wikipedia
Loop (education) — Looping is a process used in education in some elementary schools. When a class loops, this means that the class has the same teacher in two or more consecutive years. For example, a teacher who teaches a third grade class in one year could teach … Wikipedia
While loop — In most computer programming languages, a while loop is a control flow statement that allows code to be executed repeatedly based on a given boolean condition. The while loop can be thought of as a repeating if statement.The while construct… … Wikipedia