Search Options

Results per page
Sort
Preferred Languages
Advance

Results 991 - 1000 of 2,040 for inf2 (0.05 sec)

  1. docs/de/docs/how-to/separate-openapi-schemas.md

    In diesem Fall kรถnnen Sie diese Funktion in **FastAPI** mit dem Parameter `separate_input_output_schemas=False` deaktivieren.
    
    /// info | Info
    
    Unterstรผtzung fรผr `separate_input_output_schemas` wurde in FastAPI `0.102.0` hinzugefรผgt. ๐Ÿค“
    
    ///
    
    {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/behind-a-proxy.md

    ```console
    $ ./traefik --configFile=traefik.toml
    
    INFO[0000] Configuration loaded from file: /home/user/awesomeapi/traefik.toml
    ```
    
    </div>
    
    And now start your app, using the `--root-path` option:
    
    <div class="termy">
    
    ```console
    $ fastapi run main.py --forwarded-allow-ips="*" --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/security/simple-oauth2.md

    ๊ฐ "๋ฒ”์œ„"๋Š” ๊ณต๋ฐฑ์ด ์—†๋Š” ๋ฌธ์ž์—ด์ž…๋‹ˆ๋‹ค.
    
    ์ผ๋ฐ˜์ ์œผ๋กœ ํŠน์ • ๋ณด์•ˆ ๊ถŒํ•œ์„ ์„ ์–ธํ•˜๋Š” ๋ฐ ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค. ๋‹ค์Œ์„ ๋ด…์‹œ๋‹ค:
    
    * `users:read` ๋˜๋Š” `users:write`๋Š” ์ผ๋ฐ˜์ ์ธ ์˜ˆ์‹œ์ž…๋‹ˆ๋‹ค.
    * `instagram_basic`์€ ํŽ˜์ด์Šค๋ถ/์ธ์Šคํƒ€๊ทธ๋žจ์—์„œ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค.
    * `https://www.googleapis.com/auth/drive`๋Š” Google์—์„œ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค.
    
    /// info | ์ •๋ณด
    
    OAuth2์—์„œ "๋ฒ”์œ„"๋Š” ํ•„์š”ํ•œ ํŠน์ • ๊ถŒํ•œ์„ ์„ ์–ธํ•˜๋Š” ๋ฌธ์ž์—ด์ž…๋‹ˆ๋‹ค.
    
    `:`๊ณผ ๊ฐ™์€ ๋‹ค๋ฅธ ๋ฌธ์ž๊ฐ€ ์žˆ๋Š”์ง€ ๋˜๋Š” URL์ธ์ง€๋Š” ์ค‘์š”ํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.
    
    ์ด๋Ÿฌํ•œ ์„ธ๋ถ€ ์‚ฌํ•ญ์€ ๊ตฌํ˜„์— ๋”ฐ๋ผ ๋‹ค๋ฆ…๋‹ˆ๋‹ค.
    
    OAuth2์˜ ๊ฒฝ์šฐ ๋ฌธ์ž์—ด์ผ ๋ฟ์ž…๋‹ˆ๋‹ค.
    
    ///
    
    ## `username`๊ณผ `password`๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ์ฝ”๋“œ
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Feb 15 11:19:12 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/events.md

    {* ../../docs_src/events/tutorial002_py39.py hl[6] *}
    
    Here, the `shutdown` event handler function will write a text line `"Application shutdown"` to a file `log.txt`.
    
    /// info
    
    In the `open()` function, the `mode="a"` means "append", so, the line will be added after whatever is on that file, without overwriting the previous contents.
    
    ///
    
    /// tip
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/events.md

    {* ../../docs_src/events/tutorial002_py39.py hl[6] *}
    
    Aqui, a funรงรฃo de manipulador do evento `shutdown` escreverรก uma linha de texto `"Application shutdown"` no arquivo `log.txt`.
    
    /// info | Informaรงรฃo
    
    Na funรงรฃo `open()`, o `mode="a"` significa "acrescentar", entรฃo a linha serรก adicionada depois do que jรก estiver naquele arquivo, sem sobrescrever o conteรบdo anterior.
    
    ///
    
    /// tip | Dica
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/SearchForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.crawlinginfo;
    
    /**
     * The search form for Crawling Info.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The session ID field for searching crawling information.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 952 bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoRequest.java

    /**
     * Request data for FSCTL_QUERY_NETWORK_INTERFACE_INFO
     *
     * This IOCTL has no input data - the request is empty
     */
    public class QueryNetworkInterfaceInfoRequest {
    
        /**
         * Create query network interface info request
         */
        public QueryNetworkInterfaceInfoRequest() {
            // No input data required for this IOCTL
        }
    
        /**
         * Get the size of this request (always 0)
         *
         * @return size in bytes
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/Apply.java

        }
    
        @Override
        protected boolean shouldSaveModifications() {
            return true;
        }
    
        @Override
        public int execute(UpgradeContext context) throws Exception {
            context.info("Maven Upgrade Tool - Apply");
            context.println();
    
            return super.execute(context);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/Check.java

        }
    
        @Override
        protected boolean shouldSaveModifications() {
            return false;
        }
    
        @Override
        public int execute(UpgradeContext context) throws Exception {
            context.info("Maven Upgrade Tool - Check");
            context.println();
    
            return super.execute(context);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  10. docs/ja/llm-prompt.md

    2) If a title is present, prefer these canonical titles:
    
    - `/// note | ๅ‚™่€ƒ`
    - `/// note | ๆŠ€่ก“่ฉณ็ดฐ`
    - `/// tip | ่ฑ†็Ÿฅ่ญ˜`
    - `/// warning | ๆณจๆ„`
    - `/// info | ๆƒ…ๅ ฑ`
    - `/// check | ็ขบ่ช`
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 17:30:52 UTC 2025
    - 1.3K bytes
    - Viewed (0)
Back to top