queue capacity - définition. Qu'est-ce que queue capacity
DICLIB.COM
Outils linguistiques IA
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:     

Traduction et analyse des mots par intelligence artificielle

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est queue capacity - définition

ABSTRACT DATA TYPE
Bounded queue; Queue (data structure); Real-time queue; Amortized queue

Capacity building         
  • Training at Wynne Farm, a training facility for farmers in [[Kenscoff]], Haiti as part of Watershed Initiative for National Natural Environmental Resources program (a five-year, $126 million dollar project to build Haiti's agricultural infrastructure, capacity, and productivity in a sustainable way (2010).
  • Field training by the U.S. Geological Survey (USGS) team within the scope of "Building Groundwater Management Capacity for Armenia's Ararat Valley" project funded by the USAID (2016)
PROCESS BY WHICH INDIVIDUALS OR ORGANIZATIONS IMPROVE THEIR CAPABILITY TO PRODUCE, PERFORM OR DEPLOY
Capacitation (NGO); Capacity development; Capacity-building; Capacity Development; Capacity Building; Capacity strengthening
Capacity building (or capacity development, capacity strengthening) is the improvement in an individual's or organization's facility (or capability) "to produce, perform or deploy". The terms capacity building and capacity development have often been used interchangeably, although a publication by OECD-DAC stated in 2006 that capacity development was the preferable term.
Client–queue–client         
Client-Queue-Client; Client-queue-client
A client–queue–client or passive queue system is a client–server computer network in which the server is a data queue for the clients. Instead of communicating with each other directly, clients exchange data with one another by storing it in a repository (the queue) on a server.
Seating capacity         
  • An aerial view of the [[Melbourne Cricket Ground]] during the [[2018 AFL Grand Final]], packed with 100,000 people
  • Passenger Capacity of different Transport Modes
NUMBER OF PEOPLE WHO CAN BE SEATED IN A SPECIFIC SPACE
Seating Capacity; Building capacity; Spectator capacity; Spectating capacity; Seat capacity; Spectators capacity
Seating capacity is the number of people who can be seated in a specific space, in terms of both the physical space available, and limitations set by law. Seating capacity can be used in the description of anything ranging from an automobile that seats two to a stadium that seats hundreds of thousands of people.

Wikipédia

Queue (abstract data type)

In computer science, a queue is a collection of entities that are maintained in a sequence and can be modified by the addition of entities at one end of the sequence and the removal of entities from the other end of the sequence. By convention, the end of the sequence at which elements are added is called the back, tail, or rear of the queue, and the end at which elements are removed is called the head or front of the queue, analogously to the words used when people line up to wait for goods or services.

The operation of adding an element to the rear of the queue is known as enqueue, and the operation of removing an element from the front is known as dequeue. Other operations may also be allowed, often including a peek or front operation that returns the value of the next element to be dequeued without dequeuing it.

The operations of a queue make it a first-in-first-out (FIFO) data structure. In a FIFO data structure, the first element added to the queue will be the first one to be removed. This is equivalent to the requirement that once a new element is added, all elements that were added before have to be removed before the new element can be removed. A queue is an example of a linear data structure, or more abstractly a sequential collection. Queues are common in computer programs, where they are implemented as data structures coupled with access routines, as an abstract data structure or in object-oriented languages as classes. Common implementations are circular buffers and linked lists.

Queues provide services in computer science, transport, and operations research where various entities such as data, objects, persons, or events are stored and held to be processed later. In these contexts, the queue performs the function of a buffer. Another usage of queues is in the implementation of breadth-first search.