Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 133 for Biggar (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/pt/docs/tutorial/bigger-applications.md

    # Aplicações Maiores - Múltiplos Arquivos { #bigger-applications-multiple-files }
    
    Se você está construindo uma aplicação ou uma API web, é raro que você possa colocar tudo em um único arquivo.
    
    **FastAPI** oferece uma ferramenta conveniente para estruturar sua aplicação, mantendo toda a flexibilidade.
    
    /// info | Informação
    
    Se você vem do Flask, isso seria o equivalente aos Blueprints do Flask.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  2. docs/zh/docs/tutorial/bigger-applications.md

    # 更大的应用 - 多个文件 { #bigger-applications-multiple-files }
    
    如果你正在开发一个应用程序或 Web API,很少会将所有的内容都放在一个文件中。
    
    **FastAPI** 提供了一个方便的工具,可以在保持所有灵活性的同时构建你的应用程序。
    
    /// info | 信息
    
    如果你来自 Flask,那这将相当于 Flask 的 Blueprints。
    
    ///
    
    ## 一个文件结构示例 { #an-example-file-structure }
    
    假设你的文件结构如下:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    │   │   ├── items.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 19.5K bytes
    - Click Count (0)
  3. docs/ja/docs/tutorial/bigger-applications.md

    # 大規模アプリケーション - 複数ファイル { #bigger-applications-multiple-files }
    
    アプリケーションや Web API を作る場合、すべてを1つのファイルに収められることはほとんどありません。
    
    **FastAPI** は、柔軟性を保ったままアプリケーションを構造化できる便利なツールを提供します。
    
    /// info | 情報
    
    Flask 出身であれば、Flask の Blueprint に相当します。
    
    ///
    
    ## 例のファイル構成 { #an-example-file-structure }
    
    次のようなファイル構成があるとします:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  4. benchmarks/src/main/java/org/elasticsearch/benchmark/search/fetch/subphase/FetchSourcePhaseBenchmark.java

        }
    
        private BytesReference buildBigExample(String extraText) throws IOException {
            String bigger = read300BytesExample().utf8ToString();
            bigger = "{\"huge\": \"" + extraText + "\"," + bigger.substring(1);
            return new BytesArray(bigger);
        }
    
        @Benchmark
        public BytesReference filterObjects() throws IOException {
            SourceLookup lookup = new SourceLookup();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 17:34:14 GMT 2021
    - 5.4K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/io/ReaderInputStream.java

      private static CharBuffer grow(CharBuffer buf) {
        char[] copy = Arrays.copyOf(buf.array(), buf.capacity() * 2);
        CharBuffer bigger = CharBuffer.wrap(copy);
        Java8Compatibility.position(bigger, buf.position());
        Java8Compatibility.limit(bigger, buf.limit());
        return bigger;
      }
    
      /** Handle the case of underflow caused by needing more input characters. */
      private void readMoreChars() throws IOException {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Apr 14 16:36:11 GMT 2025
    - 9.3K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/dependencies/global-dependencies.md

    ## *Path operations* grupları için Dependencies { #dependencies-for-groups-of-path-operations }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.1K bytes
    - Click Count (0)
  7. docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ## Dependencies for a group of *path operations* { #dependencies-for-a-group-of-path-operations }
    
    Later, when reading about how to structure bigger applications ([Bigger Applications - Multiple Files](../../tutorial/bigger-applications.md)), possibly with multiple files, you will learn how to declare a single `dependencies` parameter for a group of *path operations*.
    
    ## Global Dependencies { #global-dependencies }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ## Bir *Path Operation* Grubu İçin Dependency'ler { #dependencies-for-a-group-of-path-operations }
    
    Daha sonra, muhtemelen birden fazla dosya kullanarak daha büyük uygulamaları nasıl yapılandıracağınızı okurken ([Bigger Applications - Multiple Files](../../tutorial/bigger-applications.md)), bir *path operation* grubu için tek bir `dependencies` parametresini nasıl tanımlayacağınızı öğreneceksiniz.
    
    ## Global Dependency'ler { #global-dependencies }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  9. docs_src/bigger_applications/app_an_py310/main.py

        prefix="/admin",
        tags=["admin"],
        dependencies=[Depends(get_token_header)],
        responses={418: {"description": "I'm a teapot"}},
    )
    
    
    @app.get("/")
    async def root():
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 552 bytes
    - Click Count (0)
  10. docs/ru/docs/tutorial/dependencies/global-dependencies.md

    ## Зависимости для групп *операций пути* { #dependencies-for-groups-of-path-operations }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 1.7K bytes
    - Click Count (0)
Back to Top