Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 457 for getLogger (0.18 sec)

  1. src/main/java/jcifs/smb/FileEntryAdapterIterator.java

    import jcifs.ResourceFilter;
    import jcifs.SmbResource;
    
    
    abstract class FileEntryAdapterIterator implements CloseableIterator<SmbResource> {
    
        private static final Logger log = LoggerFactory.getLogger(FileEntryAdapterIterator.class);
    
        private final CloseableIterator<FileEntry> delegate;
        private final ResourceFilter filter;
        private final SmbResource parent;
        private SmbResource next;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/ShareEnumIterator.java

    import jcifs.ResourceFilter;
    import jcifs.SmbConstants;
    import jcifs.SmbResource;
    
    
    class ShareEnumIterator implements CloseableIterator<SmbResource> {
    
        private static final Logger log = LoggerFactory.getLogger(ShareEnumIterator.class);
    
        private final Iterator<FileEntry> delegate;
        private final ResourceFilter filter;
        private final SmbResource parent;
        private SmbResource next;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

    import org.lastaflute.job.LaJob;
    import org.lastaflute.job.LaJobRunner;
    import org.lastaflute.job.LaJobScheduler;
    
    public class AllJobScheduler implements LaJobScheduler {
    
        private static final Logger logger = LogManager.getLogger(AllJobScheduler.class);
    
        protected static final String APP_TYPE = "JOB";
    
        @Resource
        private TimeManager timeManager;
    
        @Resource
        private FessConfig fessConfig;
    
        @Resource
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exbhv/ScheduledJobBhv.java

    import org.dbflute.optional.OptionalEntity;
    
    /**
     * @author FreeGen
     */
    public class ScheduledJobBhv extends BsScheduledJobBhv {
    
        private static final Logger logger = LogManager.getLogger(ScheduledJobBhv.class);
    
        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
            if (indexName == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

        }
        return returnValue;
      }
    
      // This is the old implementation of ExecutionList using a LinkedList.
      private static final class OldExecutionList {
        static final Logger log = Logger.getLogger(OldExecutionList.class.getName());
        final Queue<OldExecutionList.RunnableExecutorPair> runnables = Lists.newLinkedList();
        boolean executed = false;
    
        public void add(Runnable runnable, Executor executor) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 15:19:38 GMT 2023
    - 20.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    
    /**
     * @author shinsuke
     *
     */
    public class CrawlerStatsHelper {
        private static final Logger logger = LogManager.getLogger(CrawlerStatsHelper.class);
    
        private static final String BEGIN_KEY = "begin";
    
        protected Logger statsLogger = null;
    
        protected String loggerName = "fess.log.crawler.stats";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java

    import org.codelibs.fess.exception.InvalidAccessTokenException;
    
    public abstract class FessApiAdminAction extends FessApiAction {
    
        private static final Logger logger = LogManager.getLogger(FessApiAdminAction.class);
    
        @Override
        protected boolean isAccessAllowed() {
            try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/AggregateLogJob.java

    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.helper.SearchLogHelper;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class AggregateLogJob {
    
        private static final Logger logger = LogManager.getLogger(AggregateLogJob.class);
    
        public String execute() {
            final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper();
    
            final StringBuilder resultBuf = new StringBuilder();
    
            try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/InterruptionUtil.java

    /**
     * Utilities for performing thread interruption in tests
     *
     * @author Kevin Bourrillion
     * @author Chris Povirk
     */
    final class InterruptionUtil {
      private static final Logger logger = Logger.getLogger(InterruptionUtil.class.getName());
    
      /** Runnable which will interrupt the target thread repeatedly when run. */
      private static final class Interruptenator implements Runnable {
        private final long everyMillis;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java

    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.dict.DictionaryItem;
    
    public class StopwordsCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(StopwordsCreator.class);
    
        public StopwordsCreator() {
            super("stopwords.*\\.txt");
        }
    
        @PostConstruct
        public void register() {
            if (logger.isInfoEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
Back to top