- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 1,601 for Instance (0.04 sec)
-
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
return normalizerChain; } /** * Creates a new instance of DefaultContentsAnalyzer using the provided client and suggest settings. * * @param client the OpenSearch client to be used for the analyzer * @param settings the suggest settings containing the analyzer configuration * @return a new instance of AnalyzerSettings.DefaultContentsAnalyzer */Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* Provides functionality to track crawling sessions, manage document expiration, * and handle crawling information storage and retrieval. */ public class CrawlingInfoHelper { /** * Creates a new instance of CrawlingInfoHelper. */ public CrawlingInfoHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(CrawlingInfoHelper.class); /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
* * Character mapping files contain mapping rules in the format: * input1,input2,... => output */ public class CharMappingFile extends DictionaryFile<CharMappingItem> { /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(CharMappingFile.class); /** Type identifier for character mapping dictionaries. */ private static final String MAPPING = "mapping";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/util/HMACT64Test.java
@Mock private MessageDigest mockMd5; @BeforeEach void setUp() throws NoSuchAlgorithmException { // Mock Crypto.getMD5() to return our mockMd5 instance // This requires Mockito 3.4.0+ for MockedStatic // For simplicity, we'll assume Crypto.getMD5() is static and mock it. // If it's not static, we'd need to inject it or mock the class that provides it.Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/PredicatesTest.java
// enum singleton pattern private enum TrimStringFunction implements Function<String, String> { INSTANCE; @Override public String apply(String string) { return whitespace().trimFrom(string); } } public void testCompose() { Function<String, String> trim = TrimStringFunction.INSTANCE; Predicate<String> equalsFoo = Predicates.equalTo("Foo");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 32.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
assertNotNull(component1); assertNotNull(component2); // Should be same instance for singleton assertSame(component1, component2); // The first creation should increment the counter assertTrue("Instance count should be at least 1", SingletonTestComponent.getInstanceCount() >= 1); } /** * Test wrap method */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
/** * Prefix length for generated IDs. */ protected int idPrefixLength = 445; /** * Returns the FesenClient instance, connecting if not already connected. * @return The FesenClient instance. */ protected FesenClient getClient() { if (!fesenClient.connected()) { synchronized (fesenClient) { if (!fesenClient.connected()) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
*/ public class FessResponseProcessor extends DefaultResponseProcessor { /** * Default constructor. */ public FessResponseProcessor() { super(); } /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FessResponseProcessor.class); /** Factory for creating and managing ingesters */ private IngestFactory ingestFactory = null;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
* This form handles the creation of API access tokens with configurable permissions and expiration dates. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { // Default constructor } /** * The CRUD operation mode for this form. * Indicates whether this is a create, read, update, or delete operation.Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/MultiIterator.java
assertArgumentNotNull("iterators", iterators); return () -> new MultiIterator<>(iterators); } /** * Constructs an instance. * * @param iterators the array of {@link Iterator}s (must not be {@literal null}) */ public MultiIterator(final Iterator<E>... iterators) { assertArgumentNotNull("iterators", iterators);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.5K bytes - Viewed (0)