- Sort Score
- Num 10 results
- Language All
Results 2061 - 2070 of 2,275 for inf1 (0.05 seconds)
-
docs/ko/docs/virtual-environments.md
Python 프로젝트를 작업할 때는 **가상 환경**(또는 이와 유사한 메커니즘)을 사용해 각 프로젝트마다 설치하는 패키지를 분리하는 것이 좋습니다. /// info 이미 가상 환경에 대해 알고 있고, 어떻게 생성하고 사용하는지도 알고 있다면, 이 섹션은 건너뛰어도 괜찮습니다. 🤓 /// /// tip **가상 환경**은 **환경 변수**와 다릅니다. **환경 변수**는 시스템에 존재하며, 프로그램이 사용할 수 있는 변수입니다. **가상 환경**은 몇몇 파일로 구성된 하나의 디렉터리입니다. /// /// info 이 페이지에서는 **가상 환경**을 사용하는 방법과 작동 방식을 알려드립니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 24.8K bytes - Click Count (0) -
docs/ja/docs/tutorial/query-params-str-validations.md
そのために、まずは以下をインポートします: * `fastapi` から `Query` * `typing` から `Annotated` {* ../../docs_src/query_params_str_validations/tutorial002_an_py310.py hl[1,3] *} /// info | 情報 FastAPI はバージョン 0.95.0 で `Annotated` のサポートを追加し(推奨し始め)ました。 古いバージョンの場合、`Annotated` を使おうとするとエラーになります。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 20.3K bytes - Click Count (0) -
docs/pt/docs/deployment/docker.md
<div class="termy"> ```console $ pip install -r requirements.txt ---> 100% Successfully installed fastapi pydantic ``` </div> /// info | Informação Há outros formatos e ferramentas para definir e instalar dependências de pacotes. /// ### Crie o código do **FastAPI** { #create-the-fastapi-code } * Crie um diretório `app` e entre nele.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 30.9K bytes - Click Count (0) -
docs/zh-hant/docs/features.md
my_user: User = User(id=3, name="John Doe", joined="2018-07-19") second_user_data = { "id": 4, "name": "Mary", "joined": "2018-11-30", } my_second_user: User = User(**second_user_data) ``` /// info `**second_user_data` 意思是: 將 `second_user_data` 字典直接作為 key-value 引數傳遞,等同於:`User(id=4, name="Mary", joined="2018-11-30")` /// ### 多種編輯器支援 { #editor-support }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
* * @param client The LLM client to register */ public void register(final LlmClient client) { if (logger.isInfoEnabled()) { logger.info("Loaded LlmClient: {}", client.getClass().getSimpleName()); } clientList.add(client); } /** * Performs a chat completion request using the configured LLM client. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 11:10:51 GMT 2026 - 17.4K bytes - Click Count (0) -
docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md
opt Tasks operation -->> tasks: Send background tasks end opt Raise other exception tasks -->> tasks: Handle exceptions in the background task code end ``` /// info | Дополнительная информация Клиенту будет отправлен только **один ответ**. Это может быть один из ответов об ошибке или ответ от *операции пути*. После отправки одного из этих ответов никакой другой ответ отправить нельзя.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 19.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java
final FessAdminAction action = createAction(); System.setProperty("fess.webapp.path", webappDir.toString()); final File testFile = new File(webappDir.toFile(), "WEB-INF/view/test.jsp"); testFile.getParentFile().mkdirs(); testFile.createNewFile(); // Should not throw action.validateFilePath(testFile.getAbsolutePath()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 22.7K bytes - Click Count (0) -
docs/es/docs/deployment/docker.md
<div class="termy"> ```console $ pip install -r requirements.txt ---> 100% Successfully installed fastapi pydantic ``` </div> /// info | Información Existen otros formatos y herramientas para definir e instalar dependencias de paquetes. /// ### Crear el Código de **FastAPI** { #create-the-fastapi-code }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 30.8K bytes - Click Count (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt
val encoded = CertificateAdapters.certificate.toDer(decoded) assertThat(encoded).isEqualTo(certificateByteString) } @Test fun `private key info`() { val privateKeyInfoByteString = ( "MIICdQIBADANBgkqhkiG9w0BAQEFAASCAl8wggJbAgEAAoGBAICkUeG2stqf" + "byr6gyiVm5pN9YEDRXlowi+rfYGyWhC7ouW9fXAnhgShQKMOU862mG3tcttSYGdsjM3z1crhQlUzpKqncrzwqbzP" +
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 43.9K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
import jcifs.internal.smb1.com.SmbComWriteResponse; import jcifs.internal.smb1.trans2.Trans2SetFileInformation; import jcifs.internal.smb1.trans2.Trans2SetFileInformationResponse; import jcifs.internal.smb2.info.Smb2SetInfoRequest; import jcifs.internal.smb2.io.Smb2ReadRequest; import jcifs.internal.smb2.io.Smb2ReadResponse; import jcifs.internal.smb2.io.Smb2WriteRequest; import jcifs.internal.smb2.io.Smb2WriteResponse;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 18.8K bytes - Click Count (0)