Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2831 - 2840 of 4,223 for lint (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

        /** Map of HTTP client properties */
        private final Map<String, Object> httpClientPropertyMap = new HashMap<>();
    
        /** List of request headers */
        private final List<Header> requestHeaderList = new ArrayList<>();
    
        /**
         * Constructs a new ApiExtractor.
         */
        public ApiExtractor() {
            // NOP
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

     * <p>
     * By specifying the source and destination JavaBeans, properties can be copied.
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.beans.util.BeanUtil.*;
     *
     * copyBeanToBean(srcBean, destBean);
     * </pre>
     * <p>
     * It is also possible to copy from a JavaBean to a {@link Map} or from a {@link Map} to a JavaBean.
     * </p>
     *
     * <pre>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/MapForEachTester.java

    import com.google.common.collect.testing.features.MapFeature;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests {@link Map#forEach}. Can't be invoked directly; please see
     * {@link com.google.common.collect.testing.MapTestSuiteBuilder}.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Function.java

     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Legacy version of {@link java.util.function.Function java.util.function.Function}.
     *
     * <p>The {@link Functions} class provides common functions and related utilities.
     *
     * <p>As this interface extends {@code java.util.function.Function}, an instance of this type can be
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 15 22:14:00 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. docs/em/docs/how-to/extending-openapi.md

    ## ๐Ÿ”‘ ๐Ÿ”ข
    
    โš™๏ธ โ„น ๐Ÿ”›, ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐ŸŽ ๐Ÿš™ ๐Ÿ”ข ๐Ÿ— ๐Ÿ—„ ๐Ÿ”— &amp; ๐Ÿ” ๐Ÿ”  ๐Ÿ• ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช.
    
    ๐Ÿ–ผ, โžก๏ธ ๐Ÿšฎ <a href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo" class="external-link" target="_blank">๐Ÿ“„ ๐Ÿ—„ โ†” ๐Ÿ”Œ ๐Ÿ›ƒ ๐Ÿ”ฑ</a>.
    
    ### ๐Ÿ˜ **FastAPI**
    
    ๐Ÿฅ‡, โœ ๐ŸŒ ๐Ÿ‘† **FastAPI** ๐Ÿˆธ ๐Ÿ›Ž:
    
    {* ../../docs_src/extending_openapi/tutorial001.py hl[1,4,7:9] *}
    
    ### ๐Ÿ— ๐Ÿ—„ ๐Ÿ”—
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/escape/ArrayBasedEscaperMap.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.VisibleForTesting;
    import java.util.Map;
    
    /**
     * An implementation-specific parameter class suitable for initializing {@link
     * ArrayBasedCharEscaper} or {@link ArrayBasedUnicodeEscaper} instances. This class should be used
     * when more than one escaper is created using the same character replacement mapping to allow the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. docs/de/docs/how-to/configure-swagger-ui.md

    # Swagger-Oberflรคche konfigurieren
    
    Sie kรถnnen einige zusรคtzliche <a href="https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/" class="external-link" target="_blank">Parameter der Swagger-Oberflรคche</a> konfigurieren.
    
    Um diese zu konfigurieren, รผbergeben Sie das Argument `swagger_ui_parameters` beim Erstellen des `FastAPI()`-App-Objekts oder an die Funktion `get_swagger_ui_html()`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 10:02:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

        /**
         * The active minimum port.
         */
        protected int activeMinPort;
    
        /**
         * The active maximum port.
         */
        protected int activeMaxPort;
    
        /**
         * Whether to autodetect encoding.
         */
        protected boolean autodetectEncoding;
    
        /**
         * The connect timeout.
         */
        protected int connectTimeout;
    
        /**
         * The data timeout.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/extra-models.md

    โšซ๏ธ ๐Ÿ”œ ๐Ÿ”ฌ ๐Ÿ—„ โฎ๏ธ `anyOf`.
    
    ๐Ÿ‘ˆ, โš™๏ธ ๐Ÿฉ ๐Ÿ ๐Ÿ†Ž ๐Ÿ”‘ <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>:
    
    /// note
    
    ๐Ÿ•โ” โš– <a href="https://docs.pydantic.dev/latest/concepts/types/#unions" class="external-link" target="_blank">`Union`</a>, ๐Ÿ”Œ ๐Ÿ† ๐ŸŽฏ ๐Ÿ†Ž ๐Ÿฅ‡, โฉ ๐ŸŒ˜ ๐ŸŽฏ ๐Ÿ†Ž. ๐Ÿ–ผ ๐Ÿ”›, ๐ŸŒ– ๐ŸŽฏ `PlaneItem` ๐Ÿ‘Ÿ โญ `CarItem` `Union[PlaneItem, CarItem]`.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. docs/ja/docs/advanced/response-directly.md

    # ใƒฌใ‚นใƒใƒณใ‚นใ‚’็›ดๆŽฅ่ฟ”ใ™
    
    **FastAPI** ใฎ *path operation* ใงใฏใ€้€šๅธธใฏไปปๆ„ใฎใƒ‡ใƒผใ‚ฟใ‚’่ฟ”ใ™ใ“ใจใŒใงใใพใ™: ไพ‹ใˆใฐใ€ `dict`ใ€`list`ใ€Pydanticใƒขใƒ‡ใƒซใ€ใƒ‡ใƒผใ‚ฟใƒ™ใƒผใ‚นใƒขใƒ‡ใƒซใชใฉใงใ™ใ€‚
    
    ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใงใฏใ€**FastAPI** ใฏ [JSONไบ’ๆ›ใ‚จใƒณใ‚ณใƒผใƒ€](../tutorial/encoder.md){.internal-link target=_blank} ใง่ชฌๆ˜Žใ•ใ‚Œใฆใ„ใ‚‹ `jsonable_encoder` ใซใ‚ˆใ‚Šใ€่ฟ”ใ™ๅ€คใ‚’่‡ชๅ‹•็š„ใซJSONใซๅค‰ๆ›ใ—ใพใ™ใ€‚
    
    ใ“ใฎใจใ่ƒŒๅพŒใงใฏใ€JSONไบ’ๆ›ใชใƒ‡ใƒผใ‚ฟ (ไพ‹ใˆใฐ`dict`) ใ‚’ใ€ใ‚ฏใƒฉใ‚คใ‚ขใƒณใƒˆใธ้€ไฟกใ•ใ‚Œใ‚‹ใƒฌใ‚นใƒใƒณใ‚นใจใ—ใฆๅˆฉ็”จใ•ใ‚Œใ‚‹ `JSONResponse` ใฎไธญใซๅซใ‚ใพใ™ใ€‚
    
    ใ—ใ‹ใ—ใ€*path operation* ใ‹ใ‚‰ `JSONResponse` ใ‚’็›ดๆŽฅ่ฟ”ใ™ใ“ใจใ‚‚ใงใใพใ™ใ€‚
    
    ใ“ใ‚Œใฏไพ‹ใˆใฐใ€ใ‚ซใ‚นใ‚ฟใƒ ใƒ˜ใƒƒใƒ€ใƒผใ‚„cookieใ‚’่ฟ”ใ™ใจใใซไพฟๅˆฉใงใ™ใ€‚
    
    ## `Response` ใ‚’่ฟ”ใ™
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top