- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 927 for field1 (0.04 sec)
-
guava/src/com/google/common/collect/Serialization.java
// Secret sauce for setting final fields; don't make it public. static final class FieldSetter<T> { private final Field field; private FieldSetter(Field field) { this.field = field; field.setAccessible(true); } void set(T instance, Object value) { try { field.set(instance, value); } catch (IllegalAccessException impossible) { throw new AssertionError(impossible);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.5K 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/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/IndexingHelper.java
* @param id the document ID to retrieve * @param fields the fields to include in the response (null for all fields) * @return the document as a map of field names to values, or null if not found */ public Map<String, Object> getDocument(final SearchEngineClient searchEngineClient, final String id, final String[] fields) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K 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) -
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/jcifs/smb/DirFileEntryEnumIterator2Test.java
Class<?> cls = req.getClass().getSuperclass(); // ServerMessageBlock2Request Field f = cls.getSuperclass().getDeclaredField("next"); // ServerMessageBlock2.next f.setAccessible(true); return f.get(req); } /** * Reflectively set the private 'results' field on Smb2QueryDirectoryResponse. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.7K bytes - Viewed (0)