Search Options

Results per page
Sort
Preferred Languages
Advance

Results 731 - 740 of 1,082 for xquery (0.03 sec)

  1. docs/ko/docs/tutorial/request-forms-and-files.md

    예 ) `pip install python-multipart`.
    
    ///
    
    ## `File` 및 `Form` 업로드
    
    {* ../../docs_src/request_forms_and_files/tutorial001.py hl[1] *}
    
    ## `File` 및 `Form` 매개변수 정의
    
    `Body` 및 `Query`와 동일한 방식으로 파일과 폼의 매개변수를 생성합니다:
    
    {* ../../docs_src/request_forms_and_files/tutorial001.py hl[8] *}
    
    파일과 폼 필드는 폼 데이터 형식으로 업로드되어 파일과 폼 필드로 전달됩니다.
    
    어떤 파일들은 `bytes`로, 또 어떤 파일들은 `UploadFile`로 선언할 수 있습니다.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. MIGRATION.md

    ---
    
    ## API Reference
    
    ### Search APIs
    
    #### JSON Search API
    
    **Endpoints**:
    - `GET /api/v1/documents?q={query}` (recommended)
    - `GET /json/?q={query}` (legacy, for backward compatibility)
    
    **Parameters**:
    - `q` - Query string
    - `num` - Results per page (default: 20)
    - `start` - Starting offset (default: 0)
    - `fields.label` - Label filter
    - `lang` - Language preference
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/cookie-param-models.md

    /// note | Hinweis
    
    Dies wird seit FastAPI Version `0.115.0` unterstützt. 🤓
    
    ///
    
    /// tip | Tipp
    
    Diese gleiche Technik gilt für `Query`, `Cookie` und `Header`. 😎
    
    ///
    
    ## Cookies mit einem Pydantic-Modell { #cookies-with-a-pydantic-model }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 13:54:34 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. docs/fr/llm-prompt.md

    * «path operations» (plural): «opérations de chemin»
    * «path operation function»: «fonction de chemin»
    * «path operation decorator»: «décorateur d'opération de chemin»
    
    * «path parameter»: «paramètre de chemin»
    * «query parameter»: «paramètre de requête»
    
    * «the `Request`»: «`Request`» (keep as code identifier)
    * «the `Response`»: «`Response`» (keep as code identifier)
    
    * «deployment»: «déploiement»
    * «to upgrade»: «mettre à niveau»
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:41:43 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. tests/named_polymorphic_test.go

    		t.Errorf("Hamster's preferred toy count should be 1")
    	}
    
    	if DB.Model(&hamster2).Association("OtherToy").Count() != 1 {
    		t.Errorf("Hamster's other toy count should be 1")
    	}
    
    	// Query
    	hamsterToy := Toy{}
    	DB.Model(&hamster).Association("PreferredToy").Find(&hamsterToy)
    	if hamsterToy.Name != hamster.PreferredToy.Name {
    		t.Errorf("Should find has one polymorphic association")
    	}
    
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Wed Jul 08 09:59:40 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  6. docs/features/connections.md

     * They don't specify whether a specific proxy server should be used or how to authenticate with that proxy server.
    
    They're also concrete: each URL identifies a specific path (like `/square/okhttp`) and query (like `?q=sharks&lang=en`). Each webserver hosts many URLs.
    
    ### [Addresses](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-address/)
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  7. docs/de/docs/benchmarks.md

    Unabhängige TechEmpower-Benchmarks zeigen **FastAPI**-Anwendungen, die unter Uvicorn ausgeführt werden, als <a href="https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7" class="external-link" target="_blank">eines der schnellsten verfügbaren Python-Frameworks</a>, nur unterhalb von Starlette und Uvicorn selbst (die intern von FastAPI verwendet werden).
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Sep 20 15:10:09 UTC 2025
    - 4K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/cookie-param-models.md

    /// note | Nota
    
    Isso é suportado desde a versão `0.115.0` do FastAPI. 🤓
    
    ///
    
    /// tip | Dica
    
    Essa mesma técnica se aplica para `Query`, `Cookie`, e `Header`. 😎
    
    ///
    
    ## Cookies com Modelos Pydantic { #cookies-with-a-pydantic-model }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 20:32:40 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionBean.java

        }
    
        @Override
        public SpecifiedColumn invokeSpecifyColumn(String columnPropertyPath) {
            return null;
        }
    
        @Override
        public void invokeOrScopeQuery(OrQuery<ConditionBean> orQuery) {
            // do nothing
        }
    
        @Override
        public void invokeOrScopeQueryAndPart(AndQuery<ConditionBean> andQuery) {
            // do nothing
        }
    
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionBean.java

        }
    
        @Override
        public SpecifiedColumn invokeSpecifyColumn(String columnPropertyPath) {
            return null;
        }
    
        @Override
        public void invokeOrScopeQuery(OrQuery<ConditionBean> orQuery) {
            // do nothing
        }
    
        @Override
        public void invokeOrScopeQueryAndPart(AndQuery<ConditionBean> andQuery) {
            // do nothing
        }
    
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
Back to top