- Sort Score
- Num 10 results
- Language All
Results 311 - 320 of 573 for backing (0.11 seconds)
-
docs/ja/docs/fastapi-cli.md
```python from main import app ``` もしコード構成が次のような場合: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` `entrypoint` は次のように設定します: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` これは次と同等です: ```python from backend.main import app ``` ### パス指定での `fastapi dev` { #fastapi-dev-with-path }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 6.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java
* Extension methods for SmbFile to support directory leasing functionality. * * This utility class provides static methods that enhance SmbFile operations with * directory leasing capabilities for improved performance through caching when * SMB3 directory leasing is available and enabled. */ public class SmbFileDirectoryLeasingExtension { /** * Private constructor to prevent instantiation of this utility class */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 7.1K bytes - Click Count (0) -
cmd/object-api-datatypes.go
// BackendType - represents different backend types. type BackendType int // Enum for different backend types. const ( Unknown = BackendType(madmin.Unknown) // Filesystem backend. BackendFS = BackendType(madmin.FS) // Multi disk BackendErasure (single, distributed) backend. BackendErasure = BackendType(madmin.Erasure) // Add your own backend. )
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 21.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
"Should handle manual caching flag"); // Test auto caching setPrivateField(response, "shareFlags", Smb2TreeConnectResponse.SMB2_SHAREFLAG_AUTO_CACHING); assertEquals(Smb2TreeConnectResponse.SMB2_SHAREFLAG_AUTO_CACHING, response.getShareFlags(), "Should handle auto caching flag"); // Test VDO caching
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.9K bytes - Click Count (0) -
docs/de/docs/fastapi-cli.md
```python from main import app ``` Wenn Ihr Code so strukturiert wäre: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` Dann würden Sie den `entrypoint` wie folgt setzen: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` was gleichbedeutend wäre mit: ```python from backend.main import app ``` ### `fastapi dev` mit Pfad { #fastapi-dev-with-path }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/en/docs/fastapi-cli.md
```python from main import app ``` If your code was structured like: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` Then you would set the `entrypoint` as: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` which would be equivalent to: ```python from backend.main import app ``` ### `fastapi dev` with path { #fastapi-dev-with-path }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 5.8K bytes - Click Count (0) -
docs/pt/docs/fastapi-cli.md
```python from main import app ``` Se o seu código estivesse estruturado assim: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` Então você definiria o `entrypoint` como: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` o que seria equivalente a: ```python from backend.main import app ``` ### `fastapi dev` com caminho { #fastapi-dev-with-path }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 6.3K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
if (isLoom()) { val backend = TaskRunner.RealBackend(loomThreadFactory()) val taskRunner = TaskRunner(backend) OkHttpClient .Builder() .connectionPool( buildConnectionPool( connectionListener = connectionListener, taskRunner = taskRunner, ), ).dispatcher(Dispatcher(backend.executor)) .taskRunnerInternal(taskRunner)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Nov 04 19:13:52 GMT 2025 - 10.8K bytes - Click Count (0) -
docs/zh/docs/fastapi-cli.md
```python from main import app ``` 如果你的代码结构如下: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` 那么你可以将 `entrypoint` 设置为: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` 这等价于: ```python from backend.main import app ``` ### 带路径的 `fastapi dev` { #fastapi-dev-with-path }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 5.8K bytes - Click Count (0) -
pyproject.toml
[build-system] requires = ["pdm-backend"] build-backend = "pdm.backend" [project] name = "fastapi" dynamic = ["version"] description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" readme = "README.md" license = "MIT" license-files = ["LICENSE"] requires-python = ">=3.10" authors = [ { name = "Sebastián Ramírez", email = "******@****.***" }, ] classifiers = [
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 12:36:49 GMT 2026 - 10.3K bytes - Click Count (0)