- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 687 for field1 (0.07 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java
try { // Try to access the field, handling potential security restrictions Field field = DBFluteSystem.class.getDeclaredField("finalTimeZoneProvider"); field.setAccessible(true); return (DfFinalTimeZoneProvider) field.get(null); } catch (NoSuchFieldException e) { // Field might not exist in this version, return null return null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/UserInfo.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/FavoriteLog.java
if (value instanceof final LocalDateTime ldt) { final ZonedDateTime zdt = ZonedDateTime.of(ldt, ZoneId.systemDefault()); super.addFieldToSource(sourceMap, field, DateTimeFormatter.ISO_INSTANT.format(zdt)); } else { super.addFieldToSource(sourceMap, field, value); } } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/HttpHeadersTest.java
for (Field field : httpHeadersFields()) { httpHeaders.add((String) field.get(null)); } assertThat(httpHeaders.build()).containsNoDuplicates(); } private static ImmutableSet<Field> httpHeadersFields() { ImmutableSet.Builder<Field> builder = ImmutableSet.builder(); for (Field field : HttpHeaders.class.getDeclaredFields()) { /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final Map<String, String[]> fields = new HashMap<>(); for (final Map.Entry<String, String[]> entry : request.getParameterMap().entrySet()) { final String key = entry.getKey(); if (key.startsWith("fields.")) { final String[] value = simplifyArray(entry.getValue()); fields.put(key.substring("fields.".length()), value); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
* @param fields array of fields to search in * @param excludes array of words to exclude from results * @return list of popular words matching the criteria */ public List<String> getWordList(final SearchRequestType searchRequestType, final String seed, final String[] tags, final String[] roles, final String[] fields, final String[] excludes) {
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/webapp/WEB-INF/view/common/help.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <h2>Query Syntax</h2> <dl> <dt>Field</dt> <dd> You can search any field by typing the field name followed by a colon ":" and then the term you are looking for. If you want to find documents which has "Fess" as the document title, you can enter: <pre>title:Fess</pre> The available fields are "url", "host", "site", "title", "content",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
/** * Set a field with the specified date. If the field is not found, it is added. If the field is * found, the existing values are replaced. */ operator fun set( name: String, value: Date, ) = set(name, value.toHttpDateString()) /** * Set a field with the specified instant. If the field is not found, it is added. If the field
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. url */ String INDEX_FIELD_URL = "index.field.url"; /** The key of the configuration. e.g. doc_id */ String INDEX_FIELD_doc_id = "index.field.doc_id"; /** The key of the configuration. e.g. _id */ String INDEX_FIELD_ID = "index.field.id"; /** The key of the configuration. e.g. _version */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)