-
1 nested loops
-
2 nested loops
вложенные (кратные) циклы вложенные циклыБольшой англо-русский и русско-английский словарь > nested loops
-
3 nested loops
Техника: вложенные циклы, кратные циклы -
4 nested loops
English-Russian dictionary of computer science and programming > nested loops
-
5 nested loops
-
6 nested loops join
объединение с помощью вложенных циклов
—
[Л.Г.Суменко. Англо-русский словарь по информационным технологиям. М.: ГП ЦНИИС, 2003.]Тематики
EN
Англо-русский словарь нормативно-технической терминологии > nested loops join
-
7 nested-loops join
Вычислительная техника: объединение с помощью вложенных циклов -
8 nested-loops join
-
9 multiply nested loops
-
10 multiply nested loops
Большой англо-русский и русско-английский словарь > multiply nested loops
-
11 multiply nested loops
Вычислительная техника: многократно вложенные циклы -
12 multiply nested loops
English-Russian dictionary of computer science and programming > multiply nested loops
-
13 multiply nested loops
English-Russian information technology > multiply nested loops
-
14 nested
a мат. вложенныйnested iteration — вложенный цикл; цикл в цикле
-
15 nested
вложенный; вложил; вкладываться -
16 nested
вложенный; вложилnested iteration — вложенный цикл; цикл в цикле
-
17 nested [nesting] loops
Англо-русский словарь технических терминов > nested [nesting] loops
-
18 nesting loops
-
19 вложенные циклы
Большой англо-русский и русско-английский словарь > вложенные циклы
-
20 loop
1) цикл2) петля4) контур; (замкнутая) цепь5) шлейф6) кольцевой регистр ( в ЗУ на ЦМД)•- get caught in an endless loop- basic loop
- B-H loop
- busy-wait loop
- central scanning loop
- closed loop
- control loop
- current loop
- cutting the loop
- DC hysteresis loop
- delay loop
- DO loop
- dynamic loop
- endless loop
- feedback loop
- full hysteresis loop
- getting into a loop
- home loop
- hysteresis loop
- infinite computational loop
- inner loop
- iteration loop
- iterative loop
- local loop
- loop of N
- magnetic-tape loop
- main control loop
- main loop
- major hysteresis loop
- major loop
- minor hysteresis loop
- minor loop
- multiply nested loops
- nested loops
- nesting loops
- open loop
- operation loop
- optically isolated current loop
- outer loop
- outside loop
- paper-tape loop
- pickup loop
- pipelined loop
- program loop
- recirculating loop
- rectangular hysteresis loop
- saturated hysteresis loop
- self-checking loop
- self-resetting loop
- single-diode transfer loop
- single-diode loop
- split-winding transfer loop
- split-winding loop
- square hysteresis loop
- static hysteresis loop
- stop loop
- storage loop
- storage-core hysteresis loop
- subscriber loop
- superconducting loop
- switch-core-hysteresis loop
- tape loop
- timed loop
- timing loop
- transfer loop
- transfer-core loop
- unclocked feedback loop
- wait loop
- waiting loopEnglish-Russian dictionary of computer science and programming > loop
- 1
- 2
См. также в других словарях:
Nested loop join — A nested loop join is a naive algorithm that joins two relations R and S by making two nested loops: For each tuple r in R do For each tuple s in S do If r and s satisfy the join condition Then output the tuple <r,s> This algorithm will… … Wikipedia
Nested function — definitions can be compared to how a Matryoshka doll nests within larger versions of itself, in several levels. In computer programming, a nested function (or nested procedure/subroutine) is a function which is lexically (textually) encapsulated… … Wikipedia
Control flow — Not to be confused with Flow control. In computer science, control flow (or alternatively, flow of control) refers to the order in which the individual statements, instructions, or function calls of an imperative or a declarative program are… … 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
Frameworks supporting the polyhedral model — Use of the polyhedral model within a compiler requires software to represent the objects of this framework (sets of integer valued points in regions of various spaces) and perform operations upon them (e.g., testing whether the set is empty). Two … Wikipedia
Mason's rule — Mason s gain formula (MGF) is a method for finding the transfer function of a linear signal flow graph (SFG). The formula was derived by Samuel Jefferson Mason[1] and is named after its discoverer. MGF is an alternate method to finding the… … Wikipedia
For loop — In computer science a for loop is a programming language statement which allows code to be repeatedly executed. A for loop is classified as an iteration statement.Unlike many other kinds of loops, such as the while loop, the for loop is often… … Wikipedia
Perl control structures — The basic control structures of Perl are similar to those used in C and Java, but they have been extended in several ways.LoopsIn the following, label is an optional identifier terminated by a colon, and block is a sequence of one of more Perl… … Wikipedia
Query optimizer — The query optimizer is the component of a database management system that attempts to determine the most efficient way to execute a query. The optimizer considers the possible query plans for a given input query, and attempts to determine which… … Wikipedia
List comprehension — A list comprehension is a syntactic construct available in some programming languages for creating a list based on existing lists. It follows the form of the mathematical set builder notation (set comprehension) as distinct from the use of map… … Wikipedia
Query plan — A query plan (or query execution plan) is a set of steps used to access or modify information in a SQL relational database management system. This is a specific case of the relational model concept of access plans.Since SQL is declarative, there… … Wikipedia