Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 691 for field3 (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing elevate word configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing elevate word entries,
     * including tracking information for optimistic locking and audit trails.
     * Elevate words are used to boost specific documents in search results when certain keywords are matched.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing request header configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing request header entries,
     * including tracking information for optimistic locking and audit trails.
     * Request headers are used to customize HTTP requests sent during web crawling operations.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing stopwords dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing stopwords entries.
     * Stopwords are common words that are typically ignored during text indexing and search operations.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                }));
                return list;
            });
        }
    
        /**
         * Updates a specific field in a document.
         *
         * @param index the index name
         * @param id    the document ID
         * @param field the field name to update
         * @param value the new field value
         * @return true if the update was successful, false otherwise
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * identity equality of its Thread field so that the task field is only accessed by a single
       * thread.
       */
      private static final class ThreadConfinedTaskQueue {
        /**
         * This field is only used for identity comparisons with the current thread. Field assignments
         * are atomic, but do not provide happens-before ordering; however:
         *
         * <ul>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing Kuromoji dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing Kuromoji dictionary entries.
     * Kuromoji is a Japanese morphological analyzer, and this dictionary manages custom tokenization rules.
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing synonym dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing synonym entries.
     * Synonyms are used to expand search queries by including terms with similar meanings.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing stemmer override dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing stemmer override entries.
     * Stemmer overrides define custom stemming rules that take precedence over the default stemming algorithm.
     *
     */
    public class EditForm extends CreateForm {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/BeanDesc.java

     * </p>
     *
     * <pre>
     * for (PropertyDesc propertyDesc : beanDesc.getPropertyDescs()) {
     *     propertyDesc.getValue(foo); // Retrieve the value of Foo's property
     * }
     *
     * for (FieldDesc fieldDesc : beanDesc.getFieldDescs()) {
     *     fieldDesc.getFieldValue(foo); // Retrieve the value of Foo's field
     * }
     *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

                }
            }
            return null;
        }
    
        /**
         * Processes field configurations to handle field overwriting rules.
         * Creates a new data map with fields processed according to their configuration.
         *
         * @param dataMap the original data map to process
         * @param fieldConfigs the field configurations to apply
         * @return a new data map with configurations applied
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top