- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 169 for unavailable (0.46 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java
final MimeTypeHelper mimeTypeHelper = crawlerContainer.getComponent("mimeTypeHelper"); if (mimeTypeHelper == null) { throw new CrawlerSystemException("MimeTypeHelper is unavailable."); } return mimeTypeHelper; } /** * Returns the ExtractorFactory instance from the CrawlerContainer. * @return The ExtractorFactory instance. */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessEventType.java
*/ IP_CHANGE(4), /** * Share deleted - share removal notification */ SHARE_DELETE(5), /** * Cluster node unavailable - node down event */ NODE_UNAVAILABLE(6), /** * Cluster node available - node up event */ NODE_AVAILABLE(7); private final int value; /** * Creates a new WitnessEventType with the specified value. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java
import jcifs.Configuration; /** * SMB1 Transaction Wait Named Pipe request implementation. * Implements the TRANS_WAIT_NAMED_PIPE transaction to wait for a named pipe * to become available when the pipe server is busy or temporarily unavailable. * * @author mbechler */ public class TransWaitNamedPipe extends SmbComTransaction { /** * Constructs a wait request for a named pipe. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
return; } final JobHelper jobHelper = ComponentUtil.getJobHelper(); if (!jobHelper.isAvailable(id)) { logger.info("Job is unavailable, unregistering: id={}", id); jobHelper.unregister(scheduledJob); return; } final JobLog jobLog = new JobLog(scheduledJob);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java
} return blob; } /** * Gets the content length of the GCS object. * * @return The content length in bytes, or -1 if unavailable */ @Override public long getContentLengthLong() { try { if (!connected) { connect(); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 9.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
} return headObject; } /** * Gets the content length of the S3 object. * * @return The content length in bytes, or -1 if unavailable */ @Override public long getContentLengthLong() { try { if (!connected) { connect(); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessNotification.java
// Notification flags /** Resource state is unknown */ public static final int WITNESS_RESOURCE_STATE_UNKNOWN = 0x00000000; /** Resource is available for use */ public static final int WITNESS_RESOURCE_STATE_AVAILABLE = 0x00000001; /** Resource is unavailable */ public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF; /** * Creates a new empty witness notification. */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 6.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
} } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("CrawlerClientCreator is unavailable.", e); } } } /** * Adds a client with a regular expression pattern. * @param regex The regular expression to match URLs. * @param client The CrawlerClient instance. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProviderFactory.java
* * @return true if at least one RDMA provider is available */ public static boolean isRdmaAvailable() { return selectBestProvider() != null; } /** * Get list of all available RDMA providers * * @return list of available providers */ public static List<String> getAvailableProviders() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaProviderFactoryTest.java
assertTrue(provider.isAvailable(), "Returned provider should be available"); } @Test public void testCreateProviderTcp() { RdmaProvider provider = RdmaProviderFactory.createProvider("tcp"); assertNotNull(provider, "TCP provider should always be available"); assertTrue(provider.isAvailable(), "TCP provider should be available");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3.4K bytes - Viewed (0)