- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 158 for synchronize (1.62 sec)
-
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
resultData.setTransformerName(getName()); initBaseDir(); final String url = responseData.getUrl(); final String path = getFilePath(url); synchronized (this) { final File file = createFile(path); try (final InputStream is = responseData.getResponseBody(); final OutputStream os = new FileOutputStream(file);) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
* @throws DcerpcException if the bind operation fails * @throws IOException if an I/O error occurs */ public void bind() throws DcerpcException, IOException { synchronized (this) { try { state = 1; final DcerpcMessage bind = new DcerpcBind(binding, this); sendrecv(bind); } catch (final IOException ioe) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
startLatch.await(); // Wait for signal to start conn.connect(); successCount.incrementAndGet(); } catch (Exception e) { synchronized (exceptions) { exceptions.add(e); } failureCount.incrementAndGet(); } finally { doneLatch.countDown();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java
assertTrue(CrawlerStatus.INITIALIZING.compareTo(CrawlerStatus.DONE) < 0); } } catch (Exception e) { synchronized (exceptions) { exceptions.add(e); } } } }); } // Start all threads
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* * @return The configured SPNEGO authenticator instance * @throws SsoLoginException if SPNEGO initialization fails */ protected synchronized org.codelibs.spnego.SpnegoAuthenticator getAuthenticator() { final FessConfig fessConfig = ComponentUtil.getFessConfig();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
final Queue<OpenSearchUrlQueue> crawlingQueue = queueHolder.crawlingQueue; OpenSearchUrlQueue urlQueue = waitingQueue.poll(); if (urlQueue == null) { synchronized (queueHolder) { urlQueue = waitingQueue.poll(); if (urlQueue == null) { final List<OpenSearchUrlQueue> urlQueueList = fetchUrlQueueList(sessionId);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 16.9K bytes - Viewed (1) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
boolean isRootOrShare() { // length == 0 should not happen return getUNCPath().length() <= 1; } /** * @throws MalformedURLException * */ private synchronized void canonicalizePath() { final char[] in = this.url.getPath().toCharArray(); final char[] out = new char[in.length]; final int length = in.length; int prefixLen = 0, state = 0;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0)