Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 534 for loggers (0.03 sec)

  1. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

     * Provides functionality to encode/decode permission strings and extract
     * role type information from various file system protocols (SMB, file, FTP).
     */
    public class PermissionHelper {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(PermissionHelper.class);
    
        /** Prefix used to identify role-based permissions */
        protected String rolePrefix = "{role}";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/PurgeDocJob.java

     * It helps maintain the search index by cleaning up outdated content automatically.
     */
    public class PurgeDocJob {
    
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(PurgeDocJob.class);
    
        /**
         * Default constructor for PurgeDocJob.
         * Creates a new instance of the document purging job with default settings.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java

     * from files that match the pattern "stemmer_override.*\\.txt".
     */
    public class StemmerOverrideCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(StemmerOverrideCreator.class);
    
        /**
         * Constructs a new creator for stemmer override dictionaries.
         * It sets the file pattern to match files starting with "stemmer_override"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin user management.
     */
    public class ApiAdminUserAction extends FessApiAdminAction {
    
        /** The logger for this class. */
        private static final Logger logger = LogManager.getLogger(ApiAdminUserAction.class);
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

        // ===================================================================================
        //                                                                            Constant
        //
        /** Logger for this class. */
        private static final Logger logger = LogManager.getLogger(GoAction.class);
    
        /** Helper for URL path mapping and transformation. */
        @Resource
        protected PathMappingHelper pathMappingHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/ITBase.java

    import java.util.Map;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    
    import io.restassured.mapper.ObjectMapperType;
    import io.restassured.specification.RequestSpecification;
    
    public class ITBase {
        private static final Logger logger = LogManager.getLogger(ITBase.class);
        public static final String DEFAULT_FESS_URL = "http://localhost:8080";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

     * at runtime. When a MIME type is not found in the mapping, a default value
     * is returned.
     */
    public class FileTypeHelper {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(FileTypeHelper.class);
    
        /** Default file type value returned when MIME type is not found in mappings */
        protected String defaultValue = "others";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                        permissions = null;
                        if (logger.isDebugEnabled()) {
                            logger.debug("Token refreshed successfully via silent authentication");
                        }
                        return true;
                    }
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Silent token refresh failed: {}", e.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

         */
        @Override
        public boolean generate(final String thumbnailId, final File outputFile) {
            if (logger.isDebugEnabled()) {
                logger.debug("Generate Thumbnail: {}", thumbnailId);
            }
    
            if (outputFile.exists()) {
                if (logger.isDebugEnabled()) {
                    logger.debug("The thumbnail file exists: {}", outputFile.getAbsolutePath());
                }
                return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/ListenerCallQueueTest.java

        queue.enqueue(THROWING_EVENT, "custom-label");
    
        Logger logger = Logger.getLogger(ListenerCallQueue.class.getName());
        logger.setLevel(Level.SEVERE);
        TestLogHandler logHandler = new TestLogHandler();
        logger.addHandler(logHandler);
        try {
          queue.dispatch();
        } finally {
          logger.removeHandler(logHandler);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top