- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 353 for Store2 (0.03 sec)
-
src/test/java/org/codelibs/core/io/PropertiesUtilTest.java
PropertiesUtil.store(outProperties, outputStream, "comments"); CloseableUtil.close(outputStream); final Properties properties = new Properties(); PropertiesUtil.load(properties, file); assertThat(properties.getProperty("a"), is("A")); } /** * Test method for * {@link org.codelibs.core.io.PropertiesUtil#store(Properties, java.io.Writer, String)} * .
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 9.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java
* setException(stackOverflowError) would fail: * * - If the stack overflowed before set()/setValue() could even store the result in the output * Future, then a call setException() would likely also overflow. * * - If the stack overflowed after set()/setValue() stored its result, then a call to * setException() will be a no-op because the Future is already done. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 20 18:03:37 UTC 2025 - 10.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multimaps.java
* specified function to each item in an {@code Iterable} of values. Each value will be stored as * a value in the resulting multimap, yielding a multimap with the same size as the input * iterable. The key used to store that value in the multimap will be the result of calling the * function on that value. The resulting multimap is created as an immutable snapshot. In the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 86.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multimaps.java
* specified function to each item in an {@code Iterable} of values. Each value will be stored as * a value in the resulting multimap, yielding a multimap with the same size as the input * iterable. The key used to store that value in the multimap will be the result of calling the * function on that value. The resulting multimap is created as an immutable snapshot. In the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 86.9K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.crawling_info_DataCrawlExecTime=Crawl Execution Time (Data Store) labels.crawling_info_DataCrawlStartTime=Crawl Start Time (Data Store) labels.crawling_info_DataCrawlEndTime=Crawl End Time (Data Store) labels.crawling_info_DataIndexExecTime=Indexing Execution Time (Data Store) labels.crawling_info_DataIndexSize=Index Size (Data Store) labels.webauth_configuration=Web Authentication labels.webauth_list_hostname=Hostname
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStore.java
*/ public interface DataStore { /** * Store the data. * @param config The data configuration. * @param callback The callback. * @param initParamMap The initial parameters. */ void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap); /** * Stop the data store. */ void stop();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Tables.java
* remove()}. Otherwise, all optional operations are supported. Null row keys, columns keys, and * values are not supported. * * <p>Lookups by row key are often faster than lookups by column key, because the data is stored * in a {@code Map<R, Map<C, V>>}. A method call like {@code column(columnKey).get(rowKey)} still * runs quickly, since the row key is provided. However, {@code column(columnKey).size()} takes
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
/** * The flag to check if the data store is alive. */ protected boolean alive = true; /** * Register this data store. */ public void register() { ComponentUtil.getDataStoreFactory().add(getName(), this); } /** * Get the name of this data store. * @return The name of this data store. */ protected abstract String getName();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class DataStoreExceptionTest extends UnitFessTestCase { public void test_constructor_withMessage() { // Test with message only String message = "Data store error occurred"; DataStoreException exception = new DataStoreException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
return getKuromojiFile(dictId).map(file -> file.get(id).get()); } /** * Store a Kuromoji item. * * @param dictId The dictionary ID. * @param kuromojiItem The Kuromoji item to store. */ public void store(final String dictId, final KuromojiItem kuromojiItem) { getKuromojiFile(dictId).ifPresent(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0)