- Sort Score
- Result 10 results
- Languages All
Results 1021 - 1030 of 1,261 for configurations (0.07 sec)
-
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
protected static final char CACHE_KEY_SPLITTER = '\n'; /** Cache for storing popular word lists */ protected Cache<String, List<String>> cache; /** Fess configuration instance */ protected FessConfig fessConfig; /** * Default constructor. */ public PopularWordHelper() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
*/ public void setPageNumberList(final List<Integer> pageNumberList) { this.pageNumberList = pageNumberList; } /** * Gets the default page size from the Fess configuration. * * @return the default page size configured in the system */ protected int getDefaultPageSize() { return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
*/ public void setPageNumberList(final List<Integer> pageNumberList) { this.pageNumberList = pageNumberList; } /** * Gets the default page size from the Fess configuration. * * @return the default page size */ protected int getDefaultPageSize() { return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/config/MultiChannelConfigurationTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.Properties; import org.junit.jupiter.api.Test; import jcifs.CIFSException; /** * Unit tests for Multi-Channel configuration properties */ class MultiChannelConfigurationTest { @Test void testDefaultMultiChannelSettings() throws CIFSException { PropertyConfiguration config = new PropertyConfiguration(new Properties());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.3K bytes - Viewed (0) -
cmd/utils.go
} if transport == nil { // Client certs are not readable return default transport. return s.NewHTTPTransportWithTimeout(1 * time.Minute) } return transport } return globalRemoteTargetTransport } // NewHTTPTransport returns a new http configuration // used while communicating with the cloud backends.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33K bytes - Viewed (0) -
src/test/java/jcifs/util/SimpleCircuitBreakerTest.java
assertEquals(1, stats.totalCalls); assertEquals(1, stats.totalFailures); } @Test @DisplayName("Test invalid configuration") void testInvalidConfiguration() { assertThrows(IllegalArgumentException.class, () -> new SimpleCircuitBreaker("invalid", 0, 2, 100));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.6K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
Thread.currentThread().interrupt(); } } // Proceed with normal error handling/retry super.handleConnectionLoss(error); } ``` ## 6. Configuration ### 6.1 Configuration Properties ```java // In PropertyConfiguration.java public static final String USE_WITNESS = "jcifs.smb.client.useWitness";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
verify(transport).getDfsReferrals(eq(ctx), isNull(), eq("h"), eq("d"), eq(1)); } // Signing modes: optional vs enforced @Test @DisplayName("isSigningOptional and isSigningEnforced reflect configuration") void signingModes() throws Exception { when(transport.isSigningOptional()).thenReturn(true); when(transport.isSigningEnforced()).thenReturn(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
} else if (isSuccessful(responseData)) { if (transformer == null) { if (logger.isDebugEnabled()) { logger.debug("No Transformer for ({}). PLEASE CHECK YOUR CONFIGURATION.", responseData.getUrl()); } } else { final ResultData resultData = transformer.transform(responseData); if (resultData == null) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
logger.warn("Failed to stop thumbnail generator.", e); } }); } /** * Gets the system property option string for thumbnail path configuration. * * @return the property option string for JVM arguments */ public String getThumbnailPathOption() { return "-D" + Constants.FESS_THUMBNAIL_PATH + "=" + baseDir.getAbsolutePath();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0)