- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 923 for field3 (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
/** The set of field names for content. */ protected final Set<String> contentFieldNameSet = new HashSet<>(); /** The set of field names for tags. */ protected final Set<String> tagFieldNameSet = new HashSet<>(); /** The set of field names for roles. */ protected final Set<String> roleFieldNameSet = new HashSet<>(); /** The list of content field names. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Mapping type for array fields. */ public static final String MAPPING_TYPE_ARRAY = "array"; /** Mapping type for string fields. */ public static final String MAPPING_TYPE_STRING = "string"; /** Mapping type for long fields. */ public static final String MAPPING_TYPE_LONG = "long"; /** Mapping type for double fields. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoConstantsTest.java
assertEquals(4, c.getDeclaredFields().length, "Unexpected number of fields"); assertEquals(0, c.getDeclaredMethods().length, "No declared methods expected"); assertEquals(0, c.getDeclaredConstructors().length, "Interfaces have no constructors"); } @Test @DisplayName("Fields are public static final Strings with expected values") void fieldModifiersAndTypes() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
result = ParameterUtil.createConfigParameterMap(configParameters); assertEquals(2, result.get(ConfigName.FIELD).size()); assertEquals("standard", result.get(ConfigName.FIELD).get("analyzer")); assertEquals("true", result.get(ConfigName.FIELD).get("store")); // Test with mixed parameters configParameters =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
} return SortBuilders.fieldSort(field).order(order); } /** * Checks if the specified field is a search field. * @param field The field name to check. * @return True if the field is a search field, false otherwise. */ protected boolean isSearchField(final String field) { for (final String searchField : getQueryFieldConfig().searchFields) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
} // Helper methods to access private fields using reflection protected void setFieldValue(String fieldName, Object value) { try { Field field = null; Class<?> clazz = this.getClass(); while (clazz != null && field == null) { try { field = clazz.getDeclaredField(fieldName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/CollectionFuture.java
extends AggregateFuture<V, C> { /* * We access this field racily but safely. For discussion of a similar situation, see the comments * on the fields of TimeoutFuture. This field is slightly different from the fields discussed * there: cancel() never reads this field, only writes to it. That makes the race here completely * harmless, rather than just 99.99% harmless. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
builder.setFetchSource(fields, null); queryHelper.processSearchPreference(builder, userBean, String.join(StringUtil.EMPTY, docIds)); return true; }); } /** * Updates a single field of a document. * * @param id The document ID to update * @param field The field name to update * @param value The new value for the field
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
thrownAtomicReferenceFieldUpdaterFailure); } } // TODO(lukes): Investigate using a @Contended annotation on these fields once one is available. /* * The following fields are package-private, even though we intend never to use them outside this * file. If they were instead private, then we wouldn't be able to access them reflectively from
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0)