- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 691 for field3 (0.19 sec)
-
src/main/java/org/codelibs/fess/helper/ViewHelper.java
/** * Creates text fragments from highlight fields for URL fragment navigation. * * @param fields the highlight fields * @return array of text fragments */ public TextFragment[] createTextFragmentsByHighlight(final HighlightField[] fields) { final List<TextFragment> list = new ArrayList<>(); for (final HighlightField field : fields) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
if (!labelTypeItems.isEmpty() && !form.fields.containsKey(FessSearchAction.LABEL_FIELD)) { final String[] defaultLabelValues = fessConfig.getDefaultLabelValues(getUserBean()); if (defaultLabelValues.length > 0) { form.fields.put(FessSearchAction.LABEL_FIELD, defaultLabelValues); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
if (i > 0) sb.append(","); sb.append("\"field").append(i).append("\""); } String[] result = KuromojiCSVUtil.parse(sb.toString()); assertEquals(1000, result.length); // Quoted values keep their quotes for (int i = 0; i < 999; i++) { assertEquals("field" + i, result[i]); } assertEquals("\"field999\"", result[999]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
exclusiveMaximum: false default: 20 example: 20 - name: sort in: query description: Sorted field name required: false schema: type: string example: score - name: fields.label in: query description: Filtered label name required: false style: form explode: true
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
*/ public ReqHeaderPager() { // Default constructor - initialization handled by field defaults and clear() method } /** * Clears all pager data and resets to default values. * This method resets pagination state and clears all request header fields. */ public void clear() { allRecordCount = 0; allPageCount = 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
/** * Returns the generic type of the specified field for the given index. * * @param field the field to analyze * @param index the index of the generic type * @return the generic type class, or null if not found */ public static Type getGenericParameter(final java.lang.reflect.Field field, final int index) { return getGenericParameter(field.getGenericType(), index); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- DRA: the `DeviceRequestAllocationResult` struct now has an "AdminAccess" field which should be used instead of the corresponding field in the `DeviceRequest` field when dealing with an allocation. If a device is only allocated for admin access, allocating it again for normal usage is now supported, as originally intended. To allow admin access, starting with 1.32 the...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
src/main/assemblies/extension/kibana/fess_log.ndjson
\"y\":[{\"accessor\":1,\"format\":{\"id\":\"number\"},\"params\":{},\"aggType\":\"avg\"}]}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"avg\",\"schema\":\"metric\",\"params\":{\"field\":\"responseTime\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"requestedAt\",\"timeRange\":{\"from\":\"now-2d\",\"to\":\"now\"},\"useNormalizedEsInterval\":true,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Aug 12 01:26:21 UTC 2019 - 18.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java
*/ @GwtCompatible @ReflectionSupport(value = ReflectionSupport.Level.FULL) abstract class AggregateFutureState<OutputT extends @Nullable Object> extends AbstractFuture.TrustedFuture<OutputT> { /* * The following fields are package-private, even though we intend never to use them outside this * file. For discussion, see AbstractFutureState. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
// Search Execute // /** * Performs bulk document operations (index multiple documents). * Validates document fields and adds default values where necessary. * * @param body the bulk request body containing documents to process * @return JSON response with bulk operation results */ // PUT /api/admin/documents/bulk
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0)