Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 213 for dangling (0.05 sec)

  1. src/main/java/org/codelibs/fess/filter/CorsFilter.java

    import jakarta.servlet.ServletRequest;
    import jakarta.servlet.ServletResponse;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Filter for handling Cross-Origin Resource Sharing (CORS) requests.
     * Processes CORS headers and handles preflight OPTIONS requests.
     */
    public class CorsFilter implements Filter {
    
        /**
         * Creates a new instance of CorsFilter.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.ActionResponse;
    
    import jakarta.annotation.Resource;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Action class for handling thumbnail image requests.
     * Serves thumbnail images for documents in the search results.
     */
    public class ThumbnailAction extends FessSearchAction {
    
        /**
         * Default constructor for ThumbnailAction.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/WebApiUtil.java

    import org.lastaflute.web.util.LaRequestUtil;
    
    /**
     * Utility class for web API operations.
     * Provides functionality for setting and retrieving objects from request attributes,
     * error handling, and validation in web API context.
     */
    public final class WebApiUtil {
    
        /**
         * Request attribute key for storing web API exceptions.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

     *
     * This exception is used to indicate errors that occur during the execution
     * of SSO authentication and authorization processes. It extends FessSystemException
     * to provide consistent error handling within the Fess system for SSO-related
     * processing failures such as token validation errors, communication failures
     * with SSO providers, or configuration issues.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/InputStreamUtil.java

            final ByteArrayOutputStream os = new ByteArrayOutputStream(BUF_SIZE);
            CopyUtil.copy(is, os);
            return os.toByteArray();
        }
    
        /**
         * A method that wraps exception handling for {@link InputStream#available()}.
         *
         * @param is the input stream (must not be {@literal null})
         * @return the available size
         */
        public static int available(final InputStream is) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans;
    
    import java.lang.reflect.Constructor;
    import java.util.Collection;
    import java.util.Map;
    
    /**
     * Interface for handling constructors.
     *
     * @author koichik
     */
    public interface ConstructorDesc {
    
        /**
         * Returns the {@link BeanDesc} of the class that owns this constructor.
         *
         * @return {@link BeanDesc}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

    import org.opensearch.common.unit.Fuzziness;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    /**
     * Command class for handling term query execution and conversion.
     * This class processes Lucene TermQuery objects and converts them to OpenSearch QueryBuilder instances.
     */
    public class TermQueryCommand extends QueryCommand {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            result = virtualHostHelper.getVirtualHostPath(page);
            assertEquals("/site1/search", result.getRoutingPath());
    
            // The header remains for subsequent tests due to static request handling
            // Different matching header added to same request
            request.addHeader("X-Forwarded-Host", "test.com");
            result = virtualHostHelper.getVirtualHostPath(page);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            assertTrue(result.contains("Wrapped: Checked exception"));
            assertTrue(result.endsWith("\n"));
        }
    
        public void test_execute_withOutOfMemoryError() {
            // Test handling of Error (not Exception) - should NOT be caught by Exception handler
            SearchLogHelper mockSearchLogHelper = new SearchLogHelper() {
                @Override
                public void storeSearchLog() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

    import org.lastaflute.web.response.JsonResponse;
    
    /**
     * The hook for API failure.
     *
     * @author jflute
     */
    public class FessApiFailureHook implements ApiFailureHook { // #change_it for handling API failure
    
        private static final Logger logger = LogManager.getLogger(FessApiFailureHook.class);
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top