Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 381 - 390 of 711 for skips (0.15 seconds)

  1. docs/fr/docs/tutorial/dependencies/classes-as-dependencies.md

    Ce sont ces paramètres que **FastAPI** utilisera pour « résoudre » la dépendance.
    
    Dans les deux cas, il y aura :
    
    - Un paramètre de requête optionnel `q` qui est un `str`.
    - Un paramètre de requête `skip` qui est un `int`, avec une valeur par défaut de `0`.
    - Un paramètre de requête `limit` qui est un `int`, avec une valeur par défaut de `100`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java

        @ValueSource(ints = { 1, 10, 100, 500, 1024 })
        void testReadDataWireFormatWithVariousSizes(int dataSize) throws SMBProtocolDecodingException {
            if (dataSize > outputBuffer.length) {
                return; // Skip sizes larger than buffer
            }
    
            byte[] sourceData = new byte[dataSize];
            for (int i = 0; i < dataSize; i++) {
                sourceData[i] = (byte) (i % 256);
            }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestratorTest.java

                    verify(strategy).isApplicable(context);
                    verify(strategy).apply(Mockito.eq(context), Mockito.any());
                }
            }
    
            @Test
            @DisplayName("should skip non-applicable strategies")
            void shouldSkipNonApplicableStrategies() throws Exception {
                UpgradeContext context = createMockContext();
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  4. docs/en/docs/advanced/events.md

    You can probably skip this part.
    
    ///
    
    There's an alternative way to define this logic to be executed during *startup* and during *shutdown*.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  5. docs/en/docs/environment-variables.md

    # Environment Variables { #environment-variables }
    
    /// tip
    
    If you already know what "environment variables" are and how to use them, feel free to skip this.
    
    ///
    
    An environment variable (also known as "**env var**") is a variable that lives **outside** of the Python code, in the **operating system**, and could be read by your Python code (or by other programs as well).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  6. docs/uk/docs/tutorial/dependencies/index.md

    І вона може повертати будь-що.
    
    У цьому випадку ця залежність очікує:
    
    * Необов’язковий параметр запиту `q` типу `str`.
    * Необов’язковий параметр запиту `skip` типу `int`, за замовчуванням `0`.
    * Необов’язковий параметр запиту `limit` типу `int`, за замовчуванням `100`.
    
    Потім вона просто повертає `dict`, що містить ці значення.
    
    /// info | Інформація
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/tutorial/dependencies/classes-as-dependencies.md

    ...它的參數與我們之前的 `common_parameters` 相同:
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8] *}
    
    **FastAPI** 會用這些參數來「解析」該相依性。
    
    兩種情況下都會有:
    
    - 一個可選的查詢參數 `q`,型別為 `str`。
    - 一個查詢參數 `skip`,型別為 `int`,預設為 `0`。
    - 一個查詢參數 `limit`,型別為 `int`,預設為 `100`。
    
    兩種情況下,資料都會被轉換、驗證,並記錄到 OpenAPI schema 中等。
    
    ## 如何使用 { #use-it }
    
    現在你可以用這個類別來宣告你的相依性。
    
    {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  8. tests/benchmarks/test_general_performance.py

    from typing import Annotated, Any
    
    import pytest
    from fastapi import Depends, FastAPI
    from fastapi.testclient import TestClient
    from pydantic import BaseModel
    
    if "--codspeed" not in sys.argv:
        pytest.skip(
            "Benchmark tests are skipped by default; run with --codspeed.",
            allow_module_level=True,
        )
    
    LARGE_ITEMS: list[dict[str, Any]] = [
        {
            "id": i,
            "name": f"item-{i}",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Dec 26 20:40:26 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  9. docs/ftp/README.md

      of restrictions are needed for a user.
    
    - No "admin:*" operations are needed for FTP/SFTP access to the bucket(s) and object(s), so you may
      skip them for restrictions.
    
    ## Usage
    
    Start MinIO in a distributed setup, with 'ftp/sftp' enabled.
    
    ```
    minio server http://server{1...4}/disk{1...4}
       --ftp="address=:8021" --ftp="passive-port-range=30000-40000" \
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 07 06:41:25 GMT 2024
    - 7.8K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

            try {
                URL url = new URL(originalRepository.getUrl());
                return !(isLocal(url.getHost()) || url.getProtocol().equals("file"));
            } catch (MalformedURLException e) {
                // bad url just skip it here. It should have been validated already, but the wagon lookup will deal with it
                return false;
            }
        }
    
        private static boolean isLocal(String host) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Feb 07 00:45:02 GMT 2025
    - 33.5K bytes
    - Click Count (0)
Back to Top