- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 1,761 for mmap (0.27 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* @param title the raw title text to process * @param dataMap additional data map (not currently used) * @return the normalized title, or empty string if title is null */ public String getTitle(final ResponseData responseData, final String title, final Map<String, Object> dataMap) { if (title == null) { return StringUtil.EMPTY; // empty }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
} } return responseData.getLastModified(); } /** * Check if the data map has a title. * @param dataMap The data map. * @return true if the data map has a title. */ protected boolean hasTitle(final Map<String, Object> dataMap) { final Object titleObj = dataMap.get(fessConfig.getIndexFieldTitle()); if (titleObj != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapSerializationTester.java
import com.google.common.collect.testing.features.CollectionFeature; import com.google.common.testing.EqualsTester; import com.google.common.testing.SerializableTester; import java.util.Map; import org.junit.Ignore; /** * Basic serialization test for maps. * * @author Louis Wasserman */ @GwtCompatible @Ignore("test runners must not instantiate and run this directly, only via suites we build")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
import java.time.LocalDateTime; import java.util.ArrayList; import java.util.Collection; import java.util.Date; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import java.util.Map; import java.util.function.Function; import org.codelibs.fess.opensearch.config.allcommon.EsAbstractEntity.DocMeta; import org.codelibs.fess.opensearch.config.allcommon.EsAbstractEntity.RequestOptionCall;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exbhv/SearchLogBhv.java
@Override protected <RESULT extends SearchLog> RESULT createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { try { final RESULT result = super.createEntity(source, entityType); final Object searchFieldObj = source.get("searchField"); if (searchFieldObj instanceof Map) { ((Map<String, ?>) searchFieldObj).entrySet().stream().forEach(e -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
*/ public class SearchForm extends SearchRequestParams { /** * Map of additional search fields with their values. */ public Map<String, String[]> fields = new HashMap<>(); /** * Map of advanced search conditions. */ public Map<String, String[]> as = new HashMap<>(); /** * The main search query string. */ @Size(max = 1000)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
listOf("8.10", "8.13"), // 8.10 <=version < 8.13 listOf("8.13", "99.0"), // 8.13 <=version < 99.0 ) typealias BuildProjectToSubprojectTestClassTimes = Map<String, Map<String, List<TestClassTime>>> interface FunctionalTestBucketProvider { fun createFunctionalTestsFor( stage: Stage, testCoverage: TestCoverage, ): List<FunctionalTest> }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 05:08:24 UTC 2025 - 8.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeResolverTest.java
new TypeResolver() .where( new TypeCapture<Map<Integer, T>>() {}.capture(), new TypeCapture<Map<? extends Number, ? extends Number>>() {}.capture()) .resolveType(subtype); } interface TypedKeyMap<T> extends Map<Integer, T> {} interface TypedListKeyMap<T> extends Map<List<Integer>, T> {} private static <T> Type aTypeVariable() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 9.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java
return LIST_ENDPOINT_SUFFIX; } @Override protected String getItemEndpointSuffix() { return ITEM_ENDPOINT_SUFFIX; } @Override protected Map<String, Object> createTestParam(int id) { final Map<String, Object> requestBody = new HashMap<>(); final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("target", "target" + id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/UserTests.java
return LIST_ENDPOINT_SUFFIX; } @Override protected String getItemEndpointSuffix() { return ITEM_ENDPOINT_SUFFIX; } @Override protected Map<String, Object> createTestParam(int id) { final Map<String, Object> requestBody = new HashMap<>(); final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("password", "password" + id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.3K bytes - Viewed (0)