Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for LI (0.06 sec)

  1. src/main/java/org/codelibs/curl/Curl.java

     * <pre>
     * CurlRequest request = Curl.get("http://example.com");
     * </pre>
     *
     * <p>Supported HTTP methods:</p>
     * <ul>
     *   <li>GET</li>
     *   <li>POST</li>
     *   <li>PUT</li>
     *   <li>DELETE</li>
     *   <li>HEAD</li>
     *   <li>OPTIONS</li>
     *   <li>CONNECT</li>
     * </ul>
     *
     * <p>The Curl class also defines an enum {@link Method} which lists all supported HTTP methods.</p>
     *
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/TraversalUtil.java

     * <p>
     * Supported protocols:
     * </p>
     * <ul>
     * <li>{@literal file}</li>
     * <li>{@literal jar}</li>
     * <li>{@literal wsjar} (WebSphere proprietary protocol, alias for {@literal jar})</li>
     * <li>{@literal zip} (WebLogic proprietary protocol, use {@literal jar} protocol for normal zip files)</li>
     * <li>{@literal code-source} (Oracle AS(OC4J) proprietary protocol)</li>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         * Results are ordered by sort order and name in ascending order.</p>
         *
         * <p>Description matching supports:</p>
         * <ul>
         *   <li>Wildcard matching (if starts or ends with *)</li>
         *   <li>Prefix matching (if ends with *)</li>
         *   <li>Exact phrase matching (otherwise)</li>
         * </ul>
         *
         * @param cb the condition bean to configure
         * @param dataConfigPager the pager containing search criteria
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

     * <p>Key constant categories include:</p>
     * <ul>
     * <li>System configuration property keys</li>
     * <li>Default values for crawling and indexing operations</li>
     * <li>User agent strings and patterns for web crawling</li>
     * <li>Status constants for job execution and system states</li>
     * <li>Field names and keys used throughout the application</li>
     * <li>Date/time format patterns</li>
     * <li>Authentication type identifiers</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/CrawlJob.java

     *
     * <p>Key features:</p>
     * <ul>
     *   <li>Concurrent crawler process management with configurable limits</li>
     *   <li>Selective crawling based on configuration IDs</li>
     *   <li>Document expiration handling</li>
     *   <li>Hot thread monitoring for performance analysis</li>
     *   <li>Process isolation with separate JVM</li>
     * </ul>
     */
    public class CrawlJob extends ExecJob {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheStats.java

     *
     * <p>Cache statistics are incremented according to the following rules:
     *
     * <ul>
     *   <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented.
     *   <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded.
     *       <ul>
     *         <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

     *
     * <p>Fields:</p>
     * <ul>
     *   <li>{@code logger} - Logger instance for logging warnings.</li>
     *   <li>{@code PREFIX} - Prefix for the temporary file name.</li>
     *   <li>{@code SUFFIX} - Suffix for the temporary file name.</li>
     *   <li>{@code done} - Flag indicating whether the file has been retrieved.</li>
     * </ul>
     *
     * <p>Constructors:</p>
     * <ul>
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/BiMap.java

     * bimap containing the same entries as this bimap but with reversed keys and values.
     *
     * <h3>Implementations</h3>
     *
     * <ul>
     *   <li>{@link ImmutableBiMap}
     *   <li>{@link HashBiMap}
     *   <li>{@link EnumBiMap}
     *   <li>{@link EnumHashBiMap}
     * </ul>
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/NewCollectionTypesExplained#bimap">{@code BiMap}</a>.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/GenericsUtil.java

         * <ul>
         * <li>If <code>type</code> is a <code>Class</code>, it is returned as-is.</li>
         * <li>If <code>type</code> is a parameterized type, its raw type is returned.</li>
         * <li>If <code>type</code> is a wildcard type, its (first) upper bound is returned.</li>
         * <li>If <code>type</code> is an array, the raw class of its elements is returned.</li>
         * <li>Otherwise, <code>null</code> is returned.</li>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * Benchmarks (as of December 2011) show that:
     *
     * <ul>
     *   <li>for an unnested {@code lock()} and {@code unlock()}, a cycle detecting lock takes 38ns as
     *       opposed to the 24ns taken by a plain lock.
     *   <li>for nested locking, the cost increases with the depth of the nesting:
     *       <ul>
     *         <li>2 levels: average of 64ns per lock()/unlock()
     *         <li>3 levels: average of 77ns per lock()/unlock()
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top