Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for processResponse (0.05 sec)

  1. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                        session.removeAttribute(SAML_STATE);
                        try {
                            final Auth auth = new Auth(getSettings(), request, response);
                            auth.processResponse();
    
                            if (!auth.isAuthenticated()) {
                                if (logger.isDebugEnabled()) {
                                    logger.debug("Authentication is failed.");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  2. CHANGELOG.md

        on Java 17+.
     *  Fix: Don't crash if a cookie's value is a lone double quote character.
     *  Fix: Don't crash when canceling an event source created by `EventSources.processResponse()`.
     *  New: `Cache` now has a public constructor that takes an [okio.FileSystem]. This should make it
        possible to implement decorators for cache encryption or compression.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java

        NOT_MODIFIED,
        /** Indicates getting content from a resource. */
        GET_CONTENT,
        /** Indicates a redirect location was found. */
        REDIRECT_LOCATION,
        /** Indicates processing a response. */
        PROCESS_RESPONSE,
        /** Indicates the crawling process has finished. */
        FINISHED_CRAWLING,
        /** Indicates processing child URLs due to an exception. */
        PROCESS_CHILD_URLS_BY_EXCEPTION,
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

                break;
            case GET_CONTENT:
                processGetContent(objs);
                break;
            case REDIRECT_LOCATION:
                processRedirectLocation(objs);
                break;
            case PROCESS_RESPONSE:
                processProcessResponse(objs);
                break;
            case FINISHED_CRAWLING:
                processFinishedCrawling(objs);
                break;
            case PROCESS_CHILD_URLS_BY_EXCEPTION:
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top