Search Options

Results per page
Sort
Preferred Languages
Advance

Results 641 - 650 of 2,463 for param (0.13 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException.java

        private Artifact artifact;
    
        /**
         * @param message a message
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(String message) {
            this(message, null, null);
        }
    
        /**
         * @param cause a cause
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/exception/SuggesterException.java

        /**
         * Constructs a new SuggesterException with the specified detail message.
         * @param msg The detail message.
         */
        public SuggesterException(final String msg) {
            super(msg);
        }
    
        /**
         * Constructs a new SuggesterException with the specified cause.
         * @param cause The cause.
         */
        public SuggesterException(final Throwable cause) {
            super(cause);
        }
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java

    import com.google.caliper.Param;
    import com.google.common.primitives.Ints;
    import java.util.Random;
    import java.util.concurrent.atomic.AtomicLong;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Single-threaded benchmark for {@link LoadingCache}.
     *
     * @author Charles Fry
     */
    @NullUnmarked
    public class LoadingCacheSingleThreadBenchmark {
      @Param({"1000", "2000"})
      int maximumSize;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

         * Converts the given host string to ASCII using IDN.
         *
         * @param host the host string to convert
         * @return the ASCII representation of the host string
         */
        protected String toAscii(final String host) {
            return IDN.toASCII(decode(host), flag);
        }
    
        /**
         * Sets the flag for IDN conversion.
         *
         * @param flag the flag to set
         */
        public void setFlag(final int flag) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Strings.java

       *
       * <p>See {@link java.util.Formatter} for a richer set of formatting capabilities.
       *
       * @param string the string which should appear at the end of the result
       * @param minLength the minimum length the resulting string must have. Can be zero or negative, in
       *     which case the input string is always returned.
       * @param padChar the character to insert at the beginning of the result until the minimum length
       *     is reached
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 27 17:53:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/normalizer/Normalizer.java

     * a given text based on the specified field and optional language parameters.
     */
    public interface Normalizer {
        /**
         * Normalizes the given text.
         * @param text The text to normalize
         * @param field The field name
         * @param langs The language
         * @return The normalized text
         */
        String normalize(String text, String field, String... langs);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/AccessResultCallback.java

    /**
     * A callback interface for processing access results.
     *
     * @param <RESULT> the type of access result that extends {@link AccessResult}
     */
    public interface AccessResultCallback<RESULT extends AccessResult<?>> {
        /**
         * Processes the given access result.
         *
         * @param accessResult the result of the access operation to be processed
         */
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/cookie-params.md

    πŸ₯‡ πŸ’² πŸ”’ πŸ’², πŸ‘† πŸ’ͺ πŸšΆβ€β™€οΈ 🌐 βž• πŸ”¬ βš–οΈ ✍ πŸ”’:
    
    {* ../../docs_src/cookie_params/tutorial001.py hl[9] *}
    
    /// note | πŸ“‘ β„Ή
    
    `Cookie` "πŸ‘­" πŸŽ“ `Path` &amp; `Query`. ⚫️ πŸ˜– βšͺ️➑️ 🎏 ⚠ `Param` πŸŽ“.
    
    βœ‹οΈ πŸ’­ πŸ‘ˆ πŸ•β” πŸ‘† πŸ—„ `Query`, `Path`, `Cookie` &amp; 🎏 βšͺ️➑️ `fastapi`, πŸ‘ˆ πŸ€™ πŸ”’ πŸ‘ˆ πŸ“¨ 🎁 πŸŽ“.
    
    ///
    
    /// info
    
    πŸ“£ πŸͺ, πŸ‘† πŸ’ͺ βš™οΈ `Cookie`, ↩️ βͺ πŸ”’ πŸ”œ πŸ”¬ πŸ”’ πŸ”’.
    
    ///
    
    ## πŸŒƒ
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 828 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

            /**
             * Constructor.
             * @param nameId The name ID.
             * @param sessionIndex The session index.
             * @param nameIdFormat The name ID format.
             * @param nameidNameQualifier The name ID name qualifier.
             * @param nameidSPNameQualifier The name ID SP name qualifier.
             * @param groups The groups.
             * @param roles The roles.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

        @Override
        public ResponseData doGet(final String uri) {
            return processRequest(uri, true);
        }
    
        /**
         * Processes a request for the given URI.
         *
         * @param uri the URI to process
         * @param includeContent whether to include content in the response
         * @return the response data
         * @throws CrawlingAccessException if the request fails
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top