Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 691 - 700 of 1,150 for Little (0.07 seconds)

  1. src/main/webapp/WEB-INF/view/common/admin/crud/header.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <h3 class="card-title">
    	<c:if test="${crudMode == null}">
    		<la:message key="labels.crud_title_list" />
    	</c:if>
    	<c:if test="${crudMode == 1}">
    		<la:message key="labels.crud_title_create" />
    	</c:if>
    	<c:if test="${crudMode == 2}">
    		<la:message key="labels.crud_title_edit" />
    	</c:if>
    	<c:if test="${crudMode == 3}">
    		<la:message key="labels.crud_title_delete" />
    	</c:if>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 1K bytes
    - Click Count (0)
  2. docs/ko/docs/python-types.md

    {* ../../docs_src/python_types/tutorial001_py310.py *}
    
    이 프로그램을 호출하면 다음이 출력됩니다:
    
    ```
    John Doe
    ```
    
    이 함수는 다음을 수행합니다:
    
    * `first_name`과 `last_name`를 받습니다.
    * `title()`로 각각의 첫 글자를 대문자로 변환합니다.
    * 가운데에 공백을 두고 <dfn title="서로를 하나로 합칩니다. 하나의 내용 뒤에 다른 것의 내용을 이어 붙입니다.">연결</dfn>합니다.
    
    {* ../../docs_src/python_types/tutorial001_py310.py hl[2] *}
    
    ### 수정하기 { #edit-it }
    
    매우 간단한 프로그램입니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  3. docs/ja/llm-prompt.md

    - request (HTTP): リクエスト
    - response (HTTP): レスポンス
    - path operation: path operation (do not translate)
    
    ### `///` admonitions
    
    1) Keep the admonition keyword in English (do not translate `note`, `tip`, etc.).
    2) If a title is present, prefer these canonical titles:
    
    - `/// note | 備考`
    - `/// note | 技術詳細`
    - `/// tip | 豆知識`
    - `/// warning | 注意`
    - `/// info | 情報`
    - `/// check | 確認`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 16:44:21 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  4. tests/test_security_api_key_query_description.py

        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/users/me": {
                        "get": {
                            "responses": {
                                "200": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  5. tests/test_security_api_key_query_optional.py

        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/users/me": {
                        "get": {
                            "responses": {
                                "200": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  6. tests/test_security_http_digest.py

        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/users/me": {
                        "get": {
                            "responses": {
                                "200": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  7. docs/ko/docs/tutorial/path-operation-configuration.md

    `summary`와 `description`을 추가할 수 있습니다:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[17:18] *}
    
    ## 독스트링으로 만든 설명 { #description-from-docstring }
    
    설명은 보통 길어지고 여러 줄에 걸쳐있기 때문에, *경로 처리* 설명을 함수 <dfn title="문서화에 사용되는 함수 내부 첫 표현식의 여러 줄 문자열(어떤 변수에도 할당되지 않음)">독스트링</dfn>에 선언할 수 있으며, **FastAPI**는 그곳에서 이를 읽습니다.
    
    독스트링에는 [Markdown](https://en.wikipedia.org/wiki/Markdown)을 작성할 수 있으며, (독스트링의 들여쓰기를 고려하여) 올바르게 해석되고 표시됩니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  8. src/test/java/jcifs/smb1/smb1/Trans2SetFileInformationResponseTest.java

         */
        @Test
        void testToString() {
            // The actual toString() method uses super.toString(), so we mimic that for the check.
            // A direct string comparison might be brittle, so we check for the class name and brackets.
            String actualString = response.toString();
            assertTrue(actualString.startsWith("Trans2SetFileInformationResponse["),
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  9. docs/ja/docs/tutorial/query-params-str-validations.md

    /// tip | 豆知識
    
    Pydantic には [`BeforeValidator`](https://docs.pydantic.dev/latest/concepts/validators/#field-before-validator) などもあります。 🤓
    
    ///
    
    例えば、このカスタムバリデータは、<abbr title="International Standard Book Number - 国際標準図書番号">ISBN</abbr> の書籍番号なら item ID が `isbn-` で始まること、<abbr title="Internet Movie Database - インターネット・ムービー・データベース: 映画に関する情報を掲載する Web サイト">IMDB</abbr> の movie URL ID なら `imdb-` で始まることをチェックします:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  10. docs/en/docs/management.md

    ## Owner
    
    I, [@tiangolo](https://github.com/tiangolo), am the creator and owner of the FastAPI repository. 🤓
    
    I normally give the final review to each PR before merging them. I make the final decisions on the project, I'm the [<abbr title="Benevolent Dictator For Life">BDFL</abbr>](https://en.wikipedia.org/wiki/Benevolent_dictator_for_life). 😅
    
    ## Team
    
    There's a team of people that help manage and maintain the project. 😎
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 1.5K bytes
    - Click Count (0)
Back to Top