Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for aquests (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.response.StreamResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * Action class for handling document redirection requests.
     * This action processes "go" requests that redirect users to specific documents
     * while tracking click events and handling various URL types including file system paths.
     */
    public class GoAction extends FessSearchAction {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            assertFalse(fessUserBean.hasGroups(new String[] { "managers", "guests" }));
    
            // Test with multiple groups
            testUser.setGroupNames(new String[] { "developers", "testers", "managers" });
            assertTrue(fessUserBean.hasGroups(new String[] { "developers" }));
            assertTrue(fessUserBean.hasGroups(new String[] { "testers", "guests" }));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

     * for API endpoints including authentication, message handling, and access control.
     *
     * This class extends FessBaseAction and provides specialized behavior for API requests,
     * including token-based authentication and JSON response handling.
     */
    public abstract class FessApiAction extends FessBaseAction {
    
        /**
         * Default constructor.
         */
        public FessApiAction() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        limiter.acquire();
        limiter.acquire();
        limiter.acquire();
        limiter.acquire();
        assertEvents(
            "R0.00", // First comes the saved-up burst, which defaults to a 1-second burst (2 requests).
            "R0.00", "R0.00", // Now comes the free request.
            "R0.50", // Now it's 0.5 seconds per request.
            "R0.50");
    
        limiter.setRate(Double.POSITIVE_INFINITY);
        limiter.acquire();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        limiter.acquire();
        limiter.acquire();
        limiter.acquire();
        limiter.acquire();
        assertEvents(
            "R0.00", // First comes the saved-up burst, which defaults to a 1-second burst (2 requests).
            "R0.00", "R0.00", // Now comes the free request.
            "R0.50", // Now it's 0.5 seconds per request.
            "R0.50");
    
        limiter.setRate(Double.POSITIVE_INFINITY);
        limiter.acquire();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                    logger.warn(message, e);
                }
                response.sendError(e.getStatusCode(), message);
            }
        }
    
        /**
         * Processes API requests to the search engine.
         * Handles both regular API calls and plugin requests.
         *
         * @param request  the HTTP servlet request
         * @param response the HTTP servlet response
         * @param path     the request path after removing the prefix
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

     *
     *  * **[Request Count:][requestCount]** the number of HTTP requests issued since this cache was
     *    created.
     *  * **[Network Count:][networkCount]** the number of those requests that required network use.
     *  * **[Hit Count:][hitCount]** the number of those requests whose responses were served by the
     *    cache.
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                    .build();
        }
    
        /**
         * Retrieves a list of popular words based on the specified search parameters.
         * Uses caching to improve performance for repeated requests.
         *
         * @param searchRequestType the type of search request
         * @param seed the seed value for popular word generation
         * @param tags array of tags to filter results
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java

        @Resource
        private PathMappingService pathMappingService;
    
        // GET /api/admin/pathmap
        // PUT /api/admin/pathmap
        /**
         * Returns list of path mapping settings.
         * Supports both GET and PUT requests for retrieving paginated path mapping configurations.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing path mapping settings list with pagination info
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java

        // GET /api/admin/relatedcontent/settings
        // PUT /api/admin/relatedcontent/settings
        /**
         * Returns list of related content settings.
         * Supports both GET and PUT requests for retrieving paginated related content configurations.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing related content settings list with pagination info
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top