- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 278 for chrome (0.05 sec)
-
android/guava/src/com/google/common/math/Quantiles.java
*/ private static int chooseNextSelection( int[] allRequired, int requiredFrom, int requiredTo, int from, int to) { if (requiredFrom == requiredTo) { return requiredFrom; // only one thing to choose, so choose it } // Find the center and round down. The true center is either centerFloor or halfway between // centerFloor and centerFloor + 1. int centerFloor = (from + to) >>> 1;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 30.1K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
First, create a directory for your project. What I normally do is that I create a directory named `code` inside my home/user directory. And inside of that I create one directory per project. <div class="termy"> ```console // Go to the home directory $ cd // Create a directory for all your code projects $ mkdir code // Enter into that code directory $ cd code
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
docs/fr/docs/tutorial/first-steps.md
### OpenAPI **FastAPI** génère un "schéma" contenant toute votre API dans le standard de définition d'API **OpenAPI**. #### "Schéma" Un "schéma" est une définition ou une description de quelque chose. Pas le code qui l'implémente, uniquement une description abstraite. #### "Schéma" d'API
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 10.1K bytes - Viewed (0) -
docs/en/docs/advanced/response-cookies.md
**FastAPI** provides the same `starlette.responses` as `fastapi.responses` just as a convenience for you, the developer. But most of the available responses come directly from Starlette. And as the `Response` can be used frequently to set headers and cookies, **FastAPI** also provides it at `fastapi.Response`. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.2K bytes - Viewed (0) -
docs/fr/docs/tutorial/index.md
``` pip install fastapi ``` Installez également `uvicorn` pour qu'il fonctionne comme serveur : ``` pip install uvicorn ``` Et la même chose pour chacune des dépendances facultatives que vous voulez utiliser. /// ## Guide utilisateur avancé
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileInputStreamTest.java
ArgumentCaptor<jcifs.internal.smb1.com.SmbComReadAndX> cap = ArgumentCaptor.forClass(jcifs.internal.smb1.com.SmbComReadAndX.class); // Act: choose len so upper/lower 16-bit parts are exercised byte[] buf = new byte[0x30000]; try { in.readDirect(buf, 0, 0x12345); fail("Expected IOException due to short-circuit");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java
/** * Returns an iterable whose iterator returns the given elements in order. The elements are copied * out of the source collection at the time this method is called. */ @SuppressWarnings("unchecked") // Es come in, Es go out public static <E extends @Nullable Object> MinimalIterable<E> from(Collection<E> elements) { return (MinimalIterable) of(elements.toArray()); } private @Nullable Iterator<E> iterator;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallHandshakeTest.kt
TlsVersion.TLS_1_2, reversed, ) makeRequest(client) val expectedConnectionCipherSuites = expectedConnectionCipherSuites(client) // Will choose a poor cipher suite but not plaintext. // assertThat(handshake.cipherSuite).isEqualTo("TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256") assertThat(handshakeEnabledCipherSuites).containsExactly(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 11.2K bytes - Viewed (0) -
docs/ja/docs/help-fastapi.md
「Releases only」ではなく「Watching」を選択すると、新たなissueが立てられた際に通知されます。 そして、issueを解決し他の人を助けることができます。 ## issuesを立てる GitHubレポジトリで<a href="https://github.com/fastapi/fastapi/issues/new/choose" class="external-link" target="_blank">新たなissueを立てられます</a>。例えば: * 質問、または、問題の報告 * 新機能の提案 **Note**: issueを立てた人は、他の人の手助けもお願いします。😉 ## プルリクエストをする
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 5.9K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
Após ativar o ambiente virtual, a variável `PATH` ficaria mais ou menos assim: //// tab | Linux, macOS ```plaintext /home/user/code/awesome-project/.venv/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` Isso significa que o sistema agora começará a procurar primeiro por programas em: ```plaintext /home/user/code/awesome-project/.venv/bin ``` antes de procurar nos outros diretórios.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 22.6K bytes - Viewed (0)