- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 931 for available (0.06 sec)
-
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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3.4K 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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} // Test add generator available public void test_add_availableGenerator() { TestThumbnailGenerator generator = new TestThumbnailGenerator(); generator.available = true; thumbnailManager.add(generator); assertEquals(1, thumbnailManager.generatorList.size()); } // Test add generator not available public void test_add_unavailableGenerator() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java
* @param componentName The name of the component that is not available. */ public ContainerNotAvailableException(final String componentName) { super(componentName + " is not available."); } /** * Constructor with component name and cause. * @param componentName The name of the component that is not available. * @param cause The cause of the exception. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsScheduledJobCQ.java
TermQueryBuilder builder = regTermQ("available", available); if (opLambda != null) { opLambda.callback(builder); } } public void setAvailable_NotEqual(Boolean available) { setAvailable_NotTerm(available, null); } public void setAvailable_NotTerm(Boolean available) { setAvailable_NotTerm(available, null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 98.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
return crawlingConfigMap.get(sessionCountId); } /** * Retrieves all available web crawling configurations. * This is a convenience method that calls the overloaded version with default parameters * (withLabelType=true, withRoleType=true, available=true, idList=null). * * @return a list of all available WebConfig objects */ public List<WebConfig> getAllWebConfigList() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceException.java
* @param available available resources * @param requested requested resources */ public SmbResourceException(String message, int errorCode, ResourceType resourceType, long available, long requested) { super(message, errorCode, Severity.TRANSIENT, Category.RESOURCE); this.resourceType = resourceType; this.availableResources = available; this.requestedResources = requested;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
int available = stream.available(); assertEquals(0, available, "Disconnected/server-closed should yield 0 available"); verify(fd, times(1)).markClosed(); verify(tree, times(1)).close(); verify(fd, times(1)).close(); } @Test @DisplayName("available() on SMB1 returns reported available when connected")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"log_aggregator"}}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponse.java
private int available; /** * Constructs a TransPeekNamedPipeResponse with the specified configuration. * * @param config the SMB configuration */ public TransPeekNamedPipeResponse(final Configuration config) { super(config); } /** * Gets the number of bytes available to read from the named pipe. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.3K bytes - Viewed (0)