DictionaryForumContacts

   English
Terms for subject Programming containing up to | all forms | exact matches only | in specified order only
EnglishRussian
A trace of the behaviour of a process is a finite sequence of symbols recording the events in which the process has engaged up to some moment in timeПротоколом поведения процесса называется конечная последовательность символов, фиксирующая события, в которых процесс участвовал до некоторого момента времени (см. Communicating Sequential Processes by C.A.R. Hoare 1985 ssn)
animation to fade into and out of view instead of popping up and abruptly vanishingанимация, чтобы постепенно появляться, а затем постепенно исчезать, вместо того, чтобы внезапно выскакивать и внезапно пропадать (ssn)
apply to cleaning up the design rather than the codeприменяться для улучшения скорее самого проекта, а не кода (ssn)
asynchronous message communication: A form of communication in which a concurrent producer component or task sends a message to a concurrent consumer component or task and does not wait for a response. The message queue could potentially build up between the concurrent components or tasksасинхронный обмен сообщениями: вид межзадачной коммуникации, при котором задача-производитель посылает сообщение задаче-потребителю и не дожидается ответа. Между двумя задачами может существовать очередь сообщений (см. Software Modeling and Design by Hassan Gomaa, а тж. Designing Concurrent, Distributed, and Real-time Applications with UML Object Technology Series by Hassan Gomaa ssn)
back up to the common state during the rerunningвозвращать к исходному состоянию при повторном запуске (Стандартный программёрский термин Konstantin 1966)
be up to the implementationзависеть от реализации (IBM Alex_Odeychuk)
bottom-up testing: An incremental approach to integration testing where the lowest level components are tested first, and then used to facilitate the testing of higher level components. This process is repeated until the component at the top of the hierarchy is testedвосходящее тестирование: последовательный подход к интеграционному тестированию, при котором компоненты нижнего уровня тестируются первыми и затем используются для облегчения тестирования компонентов более высокого уровня. этот процесс повторяется до тех пор, пока компонент на самом верху иерархии не будет протестирован (см. Standard glossary of terms used in Software Testing)
clean up outdated references to branches in the remote repositoryудалять устаревшие ссылки на ветки в удалённом репозитории (Alex_Odeychuk)
disciplined way to clean up codeспособ систематического приведения кода в порядок (ssn)
enable you to come up with an explicit definition of valid statesпозволять в явном виде определить действительные состояния (приложения ssn)
events in which the process has engaged up to some moment in timeсобытия, в которых процесс участвовал до некоторого момента времени (ssn)
finite sequence of symbols recording the events in which the process has engaged up to some moment in timeконечная последовательность символов, фиксирующая события, в которых процесс участвовал до некоторого момента времени (ssn)
if all the above conditions are met except that a thread at the same priority is ready to run, then this thread will give up CPU after its timeslice expires, and the other thread will be given a chance to runесли удовлетворены все вышеизложенные условия, за исключением того, что становится готов к работе другой поток с таким же самым приоритетом, то предыдущий поток освободит процессор после того, как истечёт выделенный ему квант времени – таким образом, другой поток будет иметь шанс на обслуживание (см. "Getting Started with QNX Neutrino 2. A Guide for Realtime Programmers" by Rob Krten 1996 ssn)
if all the above conditions are met except that a thread at the same priority is ready to run, then this thread will give up CPU after its timeslice expires, and the other thread will be given a chance to runесли удовлетворены все вышеизложенные условия, за исключением того, что становится готов к работе другой поток с таким же самым приоритетом, то предыдущий поток освободит процессор после того, как истечёт выделенный ему квант времени – таким образом, другой поток будет иметь шанс на обслуживание (см. "Getting Started with QNX Neutrino 2. A Guide for Realtime Programmers" by Rob Krten 1996 ssn)
in the UP, Implementation means programming and building the system, not deployment. The Environment discipline refers to establishing the tools and customizing the process for the projectв контексте унифицированного процесса "реализация" означает программирование и построение системы, но не её развёртывание. Дисциплина "окружение" предполагает установку необходимых средств и настройку процесса для данного проекта (см. Applying UML and Patterns by Craig Larman 2002)
in this representation, a list is made up of cells, each cell consisting of an element of the list and a pointer to the next cell on the listв этой реализации список состоит из ячеек, каждая из которых содержит элемент списка и указатель на следующую ячейку списка
keep up to dateподдерживать в актуальном состоянии (Microsoft Alex_Odeychuk)
keep your code up to dateподдерживать код в актуальном состоянии (Microsoft Alex_Odeychuk)
merge code from a child branch up to the parent branchвыполнить слияние из дочерней ветки кода в родительскую ветку кода (Alex_Odeychuk)
merge code from a child branch up to the parent branchвыполнять слияние изменений в исходном коде из дочерней ветки в родительскую ветвь кода (в системе контроля версий Alex_Odeychuk)
one common rule of thumb is to plan to specify about 80 percent of the requirements up front, allocate time for additional requirements to be specified later, and then practice systematic change control to accept only the most valuable new requirements as the project progressesОдно популярное практическое правило состоит в том, чтобы заблаговременно определить около 80% требований, предусмотреть время для более позднего определения дополнительных требований и выполнять по мере работы систематичный контроль изменений, принимая только самые важные требования (см. Code Complete / Steve McConnell.-2nd ed. 2004)
set up a controller factory to handle requestsвыполнить установку фабрики контроллеров для обработки запросов (Alex_Odeychuk)
setting up devices to use authenticationустановка узлов для использования аутентификации (ssn)
the great strength of the state machine approach is that it enables you to come up with an explicit definition of valid states for some aspect of your application and enforce proper behaviors as an application moves from one state to anotherМощь подхода, использующего конечный автомат, обусловлена тем, что он позволяет в явном виде определить действительные состояния для некоторого аспекта вашего приложения и задать соответствующие варианты поведения при переходах приложения из одного состояния в другое (см. "Writing Mobile Code Essential Software Engineering for Building Mobile Applications" by Ivo Salmre 2005)
this diagram shows a fragment of the transition logic for a task that controls the movement of a materials handling vehicle. The vehicle moves from one position to another, picking up parts in one position and dropping them off at anotherэта диаграмма показывает фрагмент логики переходов для задачи, которая управляет перемещением тележки погрузочно-разгрузочных операций. Тележка перемещается от одного положения до другого, принимая детали в одном положении и сваливая их в другом (см. Auslander D.M., Ridgely J.R., Ringgenberg J.D. Control Software for Mechanical Systems. Object-Oriented Design in a Real-Time World)
this information is used by the NMT-Master to verify the correct system configuration during each system boot-upэти сведения используются NMT-мастером для верификации правильной конфигурации системы в течение каждого начального запуска системы
this instruction can be set up to read or write a block of dataэта инструкция может определять чтение или запись блока данных
Tooltips created with the FadingTooltip widget use animation to fade into and out of view instead of popping up and abruptly vanishingПодсказки, созданные при помощи виджета FadingTooltip, используют анимацию, чтобы постепенно появляться, а затем постепенно исчезать, вместо того, чтобы внезапно выскакивать и внезапно пропадать (ssn)
up to timeсовременный (ssn)
up-to-date informationтекущая информация (ssn)
up-to-datenessтекущее состояние (ssn)
up-to-datenessоперативные данные (ssn)
up-to-datenessсоответствие современным требованиям (ssn)
up-to-datenessновизна (ssn)
up-to-the-minuteсоответствующий текущему моменту (ssn)
yet another option is a scheme in which the arrival of a message causes a new thread to be created spontaneously in the receiving process' address space. Such a thread is called a pop-up threadещё один вариант заключается в схеме, при которой поступающее сообщение самопроизвольно порождает новый поток в адресном пространстве процесса – получателя сообщения. Он называется всплывающим потоком (см. Modern Operating Systems Third ed. by Tanenbaum A.S. 2009)