Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 255 for vs (0.01 seconds)

  1. fastapi/.agents/skills/fastapi/SKILL.md

    Apply shared dependencies at the router level via `dependencies=[Depends(...)]`.
    
    ## Async vs Sync *path operations*
    
    Use `async` *path operations* only when fully certain that the logic called inside is compatible with async and await (it's called with `await`) or that doesn't block.
    
    ```python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            }
    
            void mergeAll(Collection<V> vs, Remapping<V> remapping) {
                if (map == null) {
                    map = new LinkedHashMap<>(list.size() + vs.size());
                    for (V v : list) {
                        map.put(keyComputer.key(v), v);
                    }
                    list = null;
                }
                if (vs instanceof MergingList mergingList && mergingList.map != null) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
  3. .bazelrc

    # Speed Windows compile times. Available in VS 16.4 (we are on 16.11). See
    # https://groups.google.com/a/tensorflow.org/d/topic/build/SsW98Eo7l3o/discussion
    common:windows --copt=/d2ReducedOptimizeHugeFunctions
    common:windows --host_copt=/d2ReducedOptimizeHugeFunctions
    
    # Before VS 2017 15.8, the member "type" would non-conformingly have an
    # alignment of only alignof(max_align_t). VS 2017 15.8 was fixed to handle this
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Mar 28 04:33:01 GMT 2026
    - 58.9K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/first-steps.md

    ### 搭配路徑使用 `fastapi dev` { #fastapi-dev-with-path }
    
    你也可以把檔案路徑傳給 `fastapi dev` 指令,它會自動猜測要使用的 FastAPI app 物件:
    
    ```console
    $ fastapi dev main.py
    ```
    
    但這樣每次執行 `fastapi` 指令時都要記得傳入正確路徑。
    
    此外,其他工具可能找不到它,例如 [VS Code 擴充套件](../editor-support.md) 或 [FastAPI Cloud](https://fastapicloud.com),因此建議在 `pyproject.toml` 中使用 `entrypoint`。
    
    ### 部署你的應用程式(可選) { #deploy-your-app-optional }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/first-steps.md

    ```console
    $ fastapi dev main.py
    ```
    
    Ancak `fastapi` komutunu her çağırdığınızda doğru path'i geçmeyi hatırlamanız gerekir.
    
    Ayrıca, [VS Code Eklentisi](../editor-support.md) veya [FastAPI Cloud](https://fastapicloud.com) gibi başka araçlar da onu bulamayabilir; bu yüzden `pyproject.toml` içindeki `entrypoint`'i kullanmanız önerilir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  6. docs/uk/docs/tutorial/first-steps.md

    ```console
    $ fastapi dev main.py
    ```
    
    Але вам доведеться щоразу памʼятати передавати правильний шлях під час виклику команди `fastapi`.
    
    Крім того, інші інструменти можуть не знайти його, наприклад [Розширення VS Code](../editor-support.md) або [FastAPI Cloud](https://fastapicloud.com), тому рекомендується використовувати `entrypoint` у `pyproject.toml`.
    
    ### Розгорніть ваш застосунок (необовʼязково) { #deploy-your-app-optional }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  7. src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java

            // Workgroup when no authority
            assertEquals(SmbConstants.TYPE_WORKGROUP, locator("smb:///").getType());
    
            // Server vs Workgroup depends on NetBIOS name type
            Address addr = mock(Address.class);
            NetbiosAddress nb = mock(NetbiosAddress.class);
            when(addr.unwrap(NetbiosAddress.class)).thenReturn(nb);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 17.6K bytes
    - Click Count (0)
  8. docs/ja/docs/tutorial/dependencies/classes-as-dependencies.md

    これで、このクラスを使用して依存関係を宣言することができます。
    
    {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *}
    
    **FastAPI** は`CommonQueryParams`クラスを呼び出します。これにより、そのクラスの「インスタンス」が作成され、インスタンスはパラメータ`commons`として関数に渡されます。
    
    ## 型注釈と`Depends` { #type-annotation-vs-depends }
    
    上のコードでは`CommonQueryParams`を2回書いていることに注目してください:
    
    //// tab | Python 3.10+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 15:24:30 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  9. docs/ru/docs/tutorial/first-steps.md

    ```console
    $ fastapi dev main.py
    ```
    
    Но в этом случае вам придётся каждый раз помнить о передаче корректного пути при вызове команды `fastapi`.
    
    Кроме того, другие инструменты могут его не найти, например [Расширение VS Code](../editor-support.md) или [FastAPI Cloud](https://fastapicloud.com), поэтому рекомендуется использовать `entrypoint` в `pyproject.toml`.
    
    ### Разверните приложение (необязательно) { #deploy-your-app-optional }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  10. cmd/s3-zip-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	getObjectInfo := objectAPI.GetObjectInfo
    
    	// Check for auth type to return S3 compatible error.
    	// type to return the correct error (NoSuchKey vs AccessDenied)
    	if s3Error := checkRequestAuthType(ctx, r, policy.GetObjectAction, bucket, zipPath); s3Error != ErrNone {
    		if getRequestAuthType(r) == authTypeAnonymous {
    			// As per "Permission" section in
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 15.8K bytes
    - Click Count (0)
Back to Top