- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 383 for queues (0.16 sec)
-
docs/es/docs/advanced/response-headers.md
# Response Headers ## Usa un parámetro `Response` Puedes declarar un parámetro de tipo `Response` en tu *función de path operation* (como puedes hacer para cookies). Y luego puedes establecer headers en ese objeto de response *temporal*. {* ../../docs_src/response_headers/tutorial002.py hl[1, 7:8] *} Y luego puedes devolver cualquier objeto que necesites, como harías normalmente (un `dict`, un modelo de base de datos, etc).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 2.4K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/OpenJdk6QueueTests.java
import static java.util.Arrays.asList; import java.lang.reflect.Method; import java.util.Collection; import java.util.List; import java.util.Queue; import junit.framework.Test; /** * Tests the {@link Queue} implementations of {@link java.util}, suppressing tests that trip known * OpenJDK 6 bugs. * * @author Kevin Bourrillion */ @AndroidIncompatible // test-suite builders
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 25 16:19:30 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
private final Queue<AuditEntry> auditEntryPool = new ConcurrentLinkedQueue<>(); private final Queue<StringBuilder> stringBuilderPool = new ConcurrentLinkedQueue<>(); private final Queue<HashMap<String, Object>> mapPool = new ConcurrentLinkedQueue<>(); // Asynchronous logging private final BlockingQueue<AuditEntry> logQueue = new LinkedBlockingQueue<>(10000); // Bounded queue
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
docs/es/docs/tutorial/request-files.md
Como todos estos métodos son métodos `async`, necesitas "await" para ellos. Por ejemplo, dentro de una *path operation function* `async` puedes obtener los contenidos con: ```Python contents = await myfile.read() ``` Si estás dentro de una *path operation function* normal `def`, puedes acceder al `UploadFile.file` directamente, por ejemplo: ```Python contents = myfile.file.read() ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Maximum size of the thumbnail generation task queue. */ protected int thumbnailTaskQueueSize = 10000; /** * Number of tasks to process in bulk operations. */ protected int thumbnailTaskBulkSize = 100; /** * Timeout in milliseconds for thumbnail task queue operations. */ protected long thumbnailTaskQueueTimeout = 10 * 1000L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
} /** * Creates and returns a new instance of {@link ArrayBlockingQueue}. * * @param <E> the element type of {@link ArrayBlockingQueue} * @param capacity the queue capacity * @param fair whether the queue is fair * @return a new instance of {@link ArrayBlockingQueue} * @see ArrayBlockingQueue#ArrayBlockingQueue(int, boolean) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt
*/ @Throws(SSLPeerUnverifiedException::class) override fun clean( chain: List<Certificate>, hostname: String, ): List<Certificate> { val queue: Deque<Certificate> = ArrayDeque(chain) val result = mutableListOf<Certificate>() result.add(queue.removeFirst()) var foundTrustedCertificate = false followIssuerChain@ for (c in 0 until MAX_SIGNERS) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.8K bytes - Viewed (0) -
cmd/metrics-v3-ilm.go
var ( ilmExpiryPendingTasksMD = NewGaugeMD(expiryPendingTasks, "Number of pending ILM expiry tasks in the queue") ilmTransitionActiveTasksMD = NewGaugeMD(transitionActiveTasks, "Number of active ILM transition tasks") ilmTransitionPendingTasksMD = NewGaugeMD(transitionPendingTasks, "Number of pending ILM transition tasks in the queue")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Jun 06 09:36:25 UTC 2024 - 2.3K bytes - Viewed (0) -
cmd/mrf.go
// but not written in all disks (having quorum) type PartialOperation struct { Bucket string Object string VersionID string Versions []byte SetIndex, PoolIndex int Queued time.Time BitrotScan bool } // mrfState sncapsulates all the information // related to the global background MRF. type mrfState struct { opCh chan PartialOperation closed int32
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 6.5K bytes - Viewed (0) -
docs/es/docs/tutorial/metadata.md
## URLs de Docs Puedes configurar las dos interfaces de usuario de documentación incluidas: * **Swagger UI**: servida en `/docs`. * Puedes establecer su URL con el parámetro `docs_url`. * Puedes deshabilitarla estableciendo `docs_url=None`. * **ReDoc**: servida en `/redoc`. * Puedes establecer su URL con el parámetro `redoc_url`. * Puedes deshabilitarla estableciendo `redoc_url=None`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 6.1K bytes - Viewed (0)