- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 35 for setDaemon (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
// Start cleanup executor for expired leases this.cleanupExecutor = Executors.newSingleThreadScheduledExecutor(r -> { Thread t = new Thread(r, "LeaseManager-Cleanup"); t.setDaemon(true); return t; }); // Schedule periodic cleanup long cleanupInterval = context.getConfig().getLeaseTimeout(); if (cleanupInterval <= 0) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
log.debug("Connecting " + this.name); } this.state = 1; this.te = null; final Thread t = new Thread(this, this.name); t.setDaemon(true); this.thread = t; synchronized (this.thread) { t.start(); t.wait(timeout); /* wait for doConnect */ st = this.state;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
this.remoteInterfaces = new ArrayList<>(); this.scheduler = Executors.newScheduledThreadPool(2, r -> { Thread t = new Thread(r, "MultiChannelScheduler"); t.setDaemon(true); return t; }); this.loadBalancer = new ChannelLoadBalancer(this); this.failover = new ChannelFailover(this); Configuration config = context.getConfig();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
dataCrawlingThread.setPriority(crawlerPriority); dataCrawlingThread.setName(sid); dataCrawlingThread.setDaemon(true); dataCrawlingThreadList.add(dataCrawlingThread); dataCrawlingThreadStatusList.add(Constants.READY); } int startedCrawlerNum = 0;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
indexUpdater.setName("IndexUpdater"); indexUpdater.setPriority(indexUpdaterPriority); indexUpdater.setSessionIdList(sessionIdList); indexUpdater.setDaemon(true); indexUpdater.setCrawlerList(crawlerList); getAvailableBoostDocumentRuleList().forEach(rule -> { indexUpdater.addDocBoostMatcher(new org.codelibs.fess.indexer.DocBoostMatcher(rule));
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
@Override public Thread newThread(Runnable r) { Thread newThread = new Thread(GROUP, r, "resolver-" + THREAD_NUMBER.getAndIncrement()); newThread.setDaemon(true); newThread.setContextClassLoader(null); return newThread; } } private class ResolveTask implements Runnable { private final ClassLoader classLoader;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
java.util.concurrent.Executors.newSingleThreadScheduledExecutor(r -> { Thread t = new Thread(r, "SecureKeyManager-Rotation"); t.setDaemon(true); return t; }); private java.util.concurrent.ScheduledFuture<?> rotationTask; /** * Configure key rotation interval *
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
private final ExecutorService logExecutor = Executors.newSingleThreadExecutor(r -> { Thread t = new Thread(r, "SecurityAuditLogger"); t.setDaemon(true); return t; }); private volatile boolean asyncLogging = true; private volatile boolean shutdown = false; // Event statistics
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
// Advanced health monitoring private final ScheduledExecutorService healthCheckExecutor = Executors.newSingleThreadScheduledExecutor(r -> { Thread t = new Thread(r, "SmbTransportPool-HealthCheck"); t.setDaemon(true); return t; }); private ScheduledFuture<?> healthCheckTask; private volatile boolean healthCheckingEnabled = true; // Health check metricsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0)