- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for Phread (0.06 sec)
-
SystemHelper.java
logger.info("Cpu Load {}% is greater than {}%. {} waiting thread(s). {} thread is timed out.", current, percent, L627: waitingThreadNames.size(), threadName); L628: } L629: return false; L630: } L631: if (logger.isInfoEnabled()) { L632: logger.info("Cpu Load {}% is greater than {}%. {} waiting thread(s).", current, percent, waitingThreadNames.size()); L633: ...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
WebFsIndexHelper.java
L53: L54: protected long maxAccessCount = Long.MAX_VALUE; L55: L56: protected long crawlingExecutionInterval = Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL; L57: L58: protected int indexUpdaterPriority = Thread.MAX_PRIORITY; L59: L60: protected int crawlerPriority = Thread.NORM_PRIORITY; L61: L62: protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>()); L63: L64: public void crawl(final String sessionId, final List<String> webConfigIdList, final...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 22.6K bytes -
Crawler.java
L229: SingletonLaContainerFactory.init(); L230: L231: final Thread shutdownCallback = new Thread("ShutdownHook") { L232: @Override L233: public void run() { L234: destroyContainer(); L235: } L236: L237: }; L238: Runtime.getRuntime().addShutdownHook(shutdownCallback); L239: L240: commandThread = new Thread(() -> { L241: try (BufferedReader reader = new BufferedReader(new...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes -
FessXpathTransformerTest.java
L749: responseData.setUrl("http://example.com/"); L750: L751: String data = "<html><head></head><body>aaa</body></html>"; L752: Document document = getDocument(data); L753: String value = transformer.getCanonicalUrl(responseData, document); L754: assertNull(value); L755: L756: data = "<html><head><link rel=\"canonical\" href=\"http://example.com/\"></head><body>aaa</body></html>"; L757: document = getDocument(data); L758: value = transform...github.com/codelibs/fess/src/test/java/org/code...Thu Oct 24 13:01:38 UTC 2024 41.3K bytes -
IndexUpdater.java
org.opensearch.index.query.QueryBuilders; L58:import org.opensearch.search.sort.SortOrder; L59: L60:import jakarta.annotation.PostConstruct; L61:import jakarta.annotation.PreDestroy; L62:import jakarta.annotation.Resource; L63: L64:public class IndexUpdater extends Thread { L65: private static final Logger logger = LogManager.getLogger(IndexUpdater.class); L66: L67: protected List<String> sessionIdList; L68: L69: @Resource L70: protected SearchEngineClient searchEngineClient; L71: L72: @Resource L73:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24.2K bytes -
ThumbnailManager.java
baseDir; L67: L68: private final List<ThumbnailGenerator> generatorList = new ArrayList<>(); L69: L70: private BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue; L71: L72: private volatile boolean generating; L73: L74: private Thread thumbnailQueueThread; L75: L76: protected int thumbnailPathCacheSize = 10; L77: L78: protected String imageExtention = "png"; L79: L80: protected int splitSize = 10; L81: L82: protected int thumbnailTaskQueueSize = 10000; L83: L84: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 21.5K bytes -
advance.jsp
me.min.css')}" rel="stylesheet" type="text/css" /> L16:</head> L17:<body> L18: <la:form styleClass="form-stacked" action="/search/" method="get" styleId="searchForm"> L19: ${fe:facetForm()}${fe:geoForm()} L20: <header> L21: <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> L22: <div class="container"> L23: <la:link styleClass="navbar-brand d-inline-flex" href="/"> L24: <img src="${fe:url('/images/logo-head.png')}" L25: alt="<la:message key="labels.header_brand_name"...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
fess_config.properties
n/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-powerpoint,application/vnd.openxmlformats-officedocument.presentationml.presentation L271:crawler.document.cache.html.mimetypes=text/html L272: L273:# indexer L274:indexer.thread.dump.enabled=true L275:indexer.unprocessed.document.size=1000 L276:indexer.click.count.enabled=true L277:indexer.favorite.count.enabled=true L278:indexer.webfs.commit.margin.time=5000 L279:indexer.webfs.max.empty.list.count=3600 L280:indexer.webf...github.com/codelibs/fess/src/main/resources/fes...Tue Oct 01 14:13:38 UTC 2024 30.9K bytes -
advance.jsp
me.min.css')}" rel="stylesheet" type="text/css" /> L16:</head> L17:<body> L18: <la:form styleClass="form-stacked" action="/search/" method="get" styleId="searchForm"> L19: ${fe:facetForm()}${fe:geoForm()} L20: <header> L21: <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> L22: <div class="container"> L23: <la:link styleClass="navbar-brand d-inline-flex" href="/"> L24: <img src="${fe:url('/images/logo-head.png')}" L25: alt="<la:message key="labels.header_brand_name"...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
FessMultipartRequestHandler.java
MultipartExceededException(msg, actual, permitted, e)); L307: try { L308: final InputStream is = request.getInputStream(); L309: try { L310: final byte[] buf = new byte[1024]; L311: while ((is.read(buf)) != -1) {} L312: } catch (final Exception ignored) {} finally { L313: try { L314: is.close(); L315: } catch (final Exception ignored) {} L316: } L317: } catch (final...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes