- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,105 for base32 (0.03 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactory.java
/** * Factory interface for creating toolchain instances from configuration models. * * <p>This factory is responsible for instantiating concrete toolchain implementations * based on toolchain model configurations or default settings.</p> * * @since 4.0.0 */ @Experimental @Consumer public interface ToolchainFactory { /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 2.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java
*/ package org.codelibs.fess.crawler.client.http.ntlm; import org.apache.http.impl.auth.NTLMEngine; import org.apache.http.impl.auth.NTLMEngineException; /** * SmbjEngine is a NTLM Engine implementation based on smbj. * * @author shinsuke * */ public class SmbjEngine implements NTLMEngine { /** * Creates a new SmbjEngine instance. */ public SmbjEngine() { super(); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/ConcurrentNavigableMapTestSuiteBuilder.java
package com.google.common.collect.testing; import static com.google.common.collect.testing.Helpers.copyToList; import com.google.common.annotations.GwtIncompatible; import java.util.List; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a * ConcurrentNavigableMap implementation. * * @author Louis Wasserman */ @GwtIncompatible public class ConcurrentNavigableMapTestSuiteBuilder<K, V>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.util.ComponentUtil; /** * Helper class for controlling crawler execution intervals and timing. * This class manages crawler execution timing based on configurable rules * that can specify different delays for different time periods and days. */ public class IntervalControlHelper { /** Flag indicating whether the crawler is currently running */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
// Calculate channel score for load balancing int score = 100; // Adjust based on state if (state == ChannelState.ACTIVE) score -= 20; // Busy channel if (state != ChannelState.ESTABLISHED && state != ChannelState.ACTIVE) return 0; // Adjust based on error rate double errorRate = getErrorRate(); if (errorRate > 0.1) score -= 50;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java
*/ package org.codelibs.fess.crawler.client.ftp; import java.util.ArrayList; import java.util.List; /** * Holds a list of FtpAuthentication objects and provides methods to add and retrieve them based on a given path. * This class is designed to manage FTP authentication details for different paths. */ public class FtpAuthenticationHolder { List<FtpAuthentication> authenticationList = new ArrayList<>(); /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java
* * @throws IOException if an I/O error occurs during initialization. */ void init() throws IOException; /** * Converts the given text into a list of readings based on the specified field and languages. * * @param text the text to be converted. * @param field the field to be used for conversion. * @param langs the languages to be used for conversion.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; /** * Factory class for managing and organizing document ingesters. * The factory maintains a sorted collection of ingesters based on their priority * and provides methods to add new ingesters and retrieve the current collection. * * Ingesters are automatically sorted by priority, with lower numbers having higher priority. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
*/ package org.codelibs.fess.crawler.client.smb1; import java.util.HashMap; import java.util.Map; /** * Holds a map of SMB authentication configurations, allowing retrieval of the appropriate * authentication based on a given path. * * <p>This class manages a collection of {@link SmbAuthentication} objects, each associated * with a specific path prefix. When a path is provided, it iterates through the stored
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
/** * Fess configuration settings. */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of web configurations based on the provided pager. * * @param webConfigPager The pager containing pagination and search criteria * @return List of web configuration objects */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0)