Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 207 for catching (0.17 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

         * Gets JAR files from the WEB-INF/lib directory that start with the specified prefix.
         *
         * @param namePrefix the prefix that JAR file names should start with
         * @return an array of File objects representing matching JAR files, or empty array if none found
         */
        public static File[] getJarFiles(final String namePrefix) {
            final ServletContext context = LaServletContextUtil.getServletContext();
            if (context == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records matching the search criteria.
         *
         * @return The total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records matching the search criteria.
         *
         * @param allRecordCount The total record count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

    /**
     * Represents the result of a search operation in the rank fusion system.
     *
     * This class encapsulates all the information returned from a search query,
     * including the list of matching documents, total record count, query execution
     * time, facet information, and metadata about the search results.
     */
    public class SearchResult {
    
        /** The list of documents returned by the search query. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        // names or patterns, but they should be treated as absolute. At the same time, any hostname
        // presented to this method should also be treated as absolute for the purposes of matching
        // to the server certificate.
        //   www.android.com  matches www.android.com
        //   www.android.com  matches www.android.com.
        //   www.android.com. matches www.android.com.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_2x.md

     *  Fix: `OkApacheClient` now allows an empty `PUT` and `POST`.
     *  Fix: Websockets no longer rebuffer socket streams.
     *  Fix: Websockets are now better at handling close frames.
     *  Fix: Content type matching is now case insensitive.
     *  Fix: `Vary` headers are not lost with `android.net.http.HttpResponseCache`.
     *  Fix: HTTP/2 wasn't enforcing stream timeouts when writing the underlying
        connection. Now it is.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  6. gradle.properties

    org.gradle.caching=true
    org.gradle.parallel=true
    
    android.useAndroidX=true
    kotlin.mpp.applyDefaultHierarchyTemplate=false
    
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 240 bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            // Within time range and matching day
            assertTrue(rule.isTarget(12, 30, 1)); // 12:30 on Sunday
            assertTrue(rule.isTarget(12, 30, 3)); // 12:30 on Tuesday
            assertTrue(rule.isTarget(12, 30, 5)); // 12:30 on Thursday
    
            // Within time range but not matching day
            assertFalse(rule.isTarget(12, 30, 2)); // 12:30 on Monday
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/WebApiManager.java

    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Interface for managing web API request processing.
     * Implementations of this interface handle specific types of web API requests
     * by matching incoming requests and processing them accordingly.
     */
    public interface WebApiManager {
    
        /**
         * Checks if the request matches this API manager.
         * @param request The HTTP servlet request.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. docs/works_with_okhttp.md

     * [Fresco](https://github.com/facebook/fresco): An Android library for managing images and the memory they use.
     * [Glide](https://github.com/bumptech/glide): An image loading and caching library for Android focused on smooth scrolling.
     * [GoogleAppEngineOkHttp](https://github.com/apkelly/GoogleAppEngineOkHttp): An OkHttp Call that works on Google App Engine.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 15 16:18:51 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class WebApiManagerTest extends UnitFessTestCase {
    
        public void test_matches_withPathBasedImplementation() {
            // Test simple path-based matching
            WebApiManager manager = new TestWebApiManager("/api/v1");
    
            TestHttpServletRequest request = new TestHttpServletRequest();
            request.setRequestURI("/api/v1/search");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top