- Sort Score
- Num 10 results
- Language All
Results 411 - 420 of 581 for ello (0.02 seconds)
-
src/archive/tar/reader_test.go
testRemaining{1, 1}, }, }, { maker: makeReg{"hello", 5}, tests: []testFnc{ testRemaining{5, 5}, testRead{5, "hello", io.EOF}, testRemaining{0, 0}, }, }, { maker: makeReg{"hello, world", 50}, tests: []testFnc{ testRemaining{50, 50}, testRead{7, "hello, ", nil}, testRemaining{43, 43}, testRead{5, "world", nil},Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Dec 30 15:28:53 GMT 2025 - 47.5K bytes - Click Count (0) -
docs/zh/docs/index.md
## 示例 { #example } ### 创建 { #create-it } 创建文件 `main.py`,内容如下: ```Python from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` <details markdown="1">Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 20.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmChatRequestTest.java
} @Test public void test_fluentBuilding() { final LlmChatRequest request = new LlmChatRequest().addSystemMessage("You are a helpful assistant") .addUserMessage("Hello!") .addAssistantMessage("Hi there!") .addUserMessage("How are you?") .setModel("llama3") .setMaxTokens(500) .setTemperature(0.5)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 5.8K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java
package org.apache.maven.samples.sample; public class App { public static void main(String... args) { System.out.println("Hello World!"); } } """; protected Map<String, String> invoke(Path cwd, Path userHome, Collection<String> goals, Collection<String> args) throws Exception {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Oct 21 12:17:55 GMT 2025 - 6.8K bytes - Click Count (0) -
docs/es/docs/advanced/async-tests.md
/// tip | Consejo Nota que la función de test ahora es `async def` en lugar de solo `def` como antes al usar el `TestClient`. /// Luego podemos crear un `AsyncClient` con la app y enviar requests asíncronos a ella, usando `await`. {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[9:12] *} Esto es equivalente a: ```Python response = client.get('/') ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 4K bytes - Click Count (0) -
docs/fr/docs/tutorial/middleware.md
La fonction de middleware reçoit : * La `request`. * Une fonction `call_next` qui recevra la `request` en paramètre. * Cette fonction transmettra la `request` au *chemin d'accès* correspondant. * Puis elle renverra la `response` générée par le *chemin d'accès* correspondant. * Vous pouvez ensuite modifier la `response` avant de la renvoyer. {* ../../docs_src/middleware/tutorial001_py310.py hl[8:9,11,14] *} /// tip | AstuceCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 4.4K bytes - Click Count (0) -
docs/ko/docs/advanced/custom-response.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 12.4K bytes - Click Count (0) -
docs/es/docs/deployment/concepts.md
## Ejecución al Iniciar { #running-on-startup } En la mayoría de los casos, cuando creas una API web, quieres que esté **siempre en ejecución**, ininterrumpida, para que tus clientes puedan acceder a ella en cualquier momento. Esto, por supuesto, a menos que tengas una razón específica para que se ejecute solo en ciertas situaciones, pero la mayoría de las veces quieres que esté constantemente en ejecución y **disponible**.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 20K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/simple-oauth2.md
Mais comme c'est un cas d'usage courant, elle est fournie directement par **FastAPI**, simplement pour vous faciliter la vie. /// ### Utiliser les données du formulaire { #use-the-form-data } /// tip | AstuceCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 11.2K bytes - Click Count (0) -
docs/ru/docs/index.md
### Создание { #create-it } Создайте файл `main.py` со следующим содержимым: ```Python from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` <details markdown="1">Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 30.4K bytes - Click Count (0)