Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 571 - 580 of 811 for optionally (0.12 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java

    import org.dbflute.cbean.ConditionBean;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/body.md

    Örneğin, yukarıdaki model şu şekilde bir JSON "`object`" (veya Python `dict`) tanımlar:
    
    ```JSON
    {
        "name": "Foo",
        "description": "An optional description",
        "price": 45.2,
        "tax": 3.5
    }
    ```
    
    ...`description` ve `tax` opsiyonel olduğu için (default değerleri `None`), şu JSON "`object`" da geçerli olur:
    
    ```JSON
    {
        "name": "Foo",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/HashMultimap.java

     *
     * <p>The multimap does not store duplicate key-value pairs. Adding a new key-value pair equal to an
     * existing key-value pair has no effect.
     *
     * <p>Keys and values may be null. All optional multimap methods are supported, and all returned
     * views are modifiable.
     *
     * <p>This class is not threadsafe when any concurrent operations update the multimap. Concurrent
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 05 23:15:58 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb1/netbios/NbtSocket.java

        }
    
        /**
         * Creates a new NetBIOS socket with the specified parameters.
         *
         * @param address the NetBIOS address to connect to
         * @param calledName the called NetBIOS name (optional)
         * @param port the port number (0 for default)
         * @param localAddr the local address to bind to
         * @param localPort the local port to bind to
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  5. docs/uk/docs/index.md

        * **WebSockets**
        * надзвичайно прості тести на основі HTTPX та `pytest`
        * **CORS**
        * **Cookie Sessions**
        * ...та більше.
    
    ### Розгортання застосунку (необовʼязково) { #deploy-your-app-optional }
    
    За бажання ви можете розгорнути ваш застосунок FastAPI у [FastAPI Cloud](https://fastapicloud.com), перейдіть і приєднайтеся до списку очікування, якщо ви ще цього не зробили. 🚀
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java

    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.rank.fusion.SearchResult.SearchResultBuilder;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.dbflute.optional.OptionalThing;
    import org.junit.jupiter.api.Test;
    
    /**
     * Error handling tests for RankFusionProcessor.
     * Tests exception handling improvements including InterruptedException and ExecutionException.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  7. src/test/java/jcifs/smb/SmbTransportInternalTest.java

            assertThrows(jcifs.CIFSException.class, () -> transport.getDfsReferrals(ctx, nullName, "h", "d", 1));
            verify(transport).getDfsReferrals(eq(ctx), isNull(), eq("h"), eq("d"), eq(1));
        }
    
        // Signing modes: optional vs enforced
        @Test
        @DisplayName("isSigningOptional and isSigningEnforced reflect configuration")
        void signingModes() throws Exception {
            when(transport.isSigningOptional()).thenReturn(true);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/request-files.md

    ///
    
    /// warning
    
    你可以在一個路徑操作中宣告多個 `File` 與 `Form` 參數,但不能同時宣告預期以 JSON 接收的 `Body` 欄位,因為此請求的本文會使用 `multipart/form-data` 而不是 `application/json`。
    
    這不是 **FastAPI** 的限制,而是 HTTP 協定本身的規範。
    
    ///
    
    ## 可選的檔案上傳 { #optional-file-upload }
    
    可透過一般型別註解並將預設值設為 `None` 使檔案成為可選:
    
    {* ../../docs_src/request_files/tutorial001_02_an_py310.py hl[9,17] *}
    
    ## `UploadFile` 搭配額外中繼資料 { #uploadfile-with-additional-metadata }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  9. scripts/doc_parsing_utils.py

        r"\[(?P<text>.*?)\]"  # link text (non-greedy)
        r"\("
        r"(?P<url>[^)\s]+)"  # url (no spaces and `)`)
        r'(?:\s+["\'](?P<title>.*?)["\'])?'  # optional title in "" or ''
        r"\)"
        r"(?:\{(?P<attrs>[^}]*)\})?"  # optional attributes in {}
    )
    
    HTML_LINK_RE = re.compile(r"<a\s+[^>]*>.*?</a>")
    HTML_LINK_TEXT_RE = re.compile(r"<a\b([^>]*)>(.*?)</a>")
    HTML_LINK_OPEN_TAG_RE = re.compile(r"<a\b([^>]*)>")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

    import org.codelibs.fess.opensearch.config.exentity.DataConfig;
    import org.codelibs.fess.util.ParameterUtil;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing data configuration CRUD operations.
     * This service provides functionality to create, read, update, and delete
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8K bytes
    - Click Count (0)
Back to Top