Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for accessing (0.15 sec)

  1. src/main/java/org/codelibs/curl/CurlResponse.java

        }
    
        /**
         * Sets the exception that occurred while accessing the content.
         *
         * @param e the exception to set.
         */
        public void setContentException(final Exception e) {
            contentException = e;
        }
    
        /**
         * Gets the exception that occurred while accessing the content, if any.
         *
         * @return the exception, or null if no exception occurred.
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

     * including retrieving, storing, and deleting stopwords.
     */
    public class StopwordsService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** The Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Constructs a new stopwords service.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/SynonymService.java

     * including retrieving, storing, and deleting synonyms.
     */
    public class SynonymService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** The Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Constructs a new synonym service.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/util/BeanMap.java

     */
    package org.codelibs.core.beans.util;
    
    import java.util.LinkedHashMap;
    
    import org.codelibs.core.exception.IllegalKeyOfBeanMapException;
    
    /**
     * A map with String keys that throws an exception when accessing (get) a non-existent key.
     *
     * @author higa
     */
    public class BeanMap extends LinkedHashMap<String, Object> {
    
        private static final long serialVersionUID = 1;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

        public String reading;
    
        /** The target label for filtering documents to be elevated */
        public String targetLabel;
    
        /** The permission settings for accessing this elevate word configuration */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        /** The boost score multiplier applied to elevated documents */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

     * specific terms, improving search accuracy for domain-specific vocabularies.
     */
    public class StemmerOverrideService {
    
        /** Dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/design/FileAccessForm.java

    package org.codelibs.fess.app.web.admin.design;
    
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form class for file access operations in the admin design interface.
     * This form handles file name validation for accessing design files.
     */
    public class FileAccessForm {
    
        /** The name of the file to access (required) */
        @Required
        public String fileName;
    
        /**
         * Default constructor for file access form.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java

     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.lang.reflect.Field;
    
    /**
     * Exception thrown when accessing a non-{@literal static} {@link Field} without specifying an object.
     *
     * @author koichik
     */
    public class FieldNotStaticRuntimeException extends ClRuntimeException {
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java

     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.lang.reflect.Method;
    
    /**
     * Exception thrown when accessing a non-{@literal static} {@link Method} without specifying an object.
     *
     * @author koichik
     */
    public class MethodNotStaticRuntimeException extends ClRuntimeException {
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

     * including tracking information for optimistic locking and audit trails.
     * Web authentication configurations define credentials for accessing protected web resources during crawling.
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top