Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 544 for constants (0.06 sec)

  1. src/main/java/org/codelibs/fess/Constants.java

    import org.codelibs.core.lang.StringUtil;
    
    /**
     * Constants class that extends CoreLibConstants and contains application-wide constant values for the Fess search engine.
     * This class provides constants for system configuration, crawling and indexing defaults, user agent strings,
     * status values, field names, date/time formats, authentication types, and various reserved words and patterns.
     *
     * <p>Key constant categories include:</p>
     * <ul>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            return Constants.TRUE.equalsIgnoreCase(getSystemProperty(key, defaultValue ? Constants.TRUE : Constants.FALSE));
        }
    
        default void setSystemPropertyAsBoolean(final String key, final boolean value) {
            setSystemProperty(key, value ? Constants.TRUE : Constants.FALSE);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SystemUtilTest extends UnitFessTestCase {
    
        public void test_getSearchEngineHttpAddress_null() {
            // Clear the system property to test null case
            String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
            System.clearProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        /**
         * Initializes the form with default values for creating a new scheduled job.
         */
        public void initialize() {
            target = Constants.DEFAULT_JOB_TARGET;
            cronExpression = Constants.DEFAULT_CRON_EXPRESSION;
            scriptType = Constants.DEFAULT_JOB_SCRIPT_TYPE;
            sortOrder = 0;
            createdBy = ComponentUtil.getSystemHelper().getUsername();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Enums.java

          Class<T> enumClass) {
        synchronized (enumConstantCache) {
          Map<String, WeakReference<? extends Enum<?>>> constants = enumConstantCache.get(enumClass);
          if (constants == null) {
            constants = populateCache(enumClass);
          }
          return constants;
        }
      }
    
      /**
       * Returns a serializable converter that converts between strings and {@code enum} values of type
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 01 13:41:58 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            value = null;
            assertEquals("", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
    
            value = "";
            assertEquals("", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
    
            value = " ";
            assertNull(dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.1K bytes
    - Viewed (1)
  7. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>());
            queryContext = new QueryContext("test", true);
            assertEquals("test", queryContext.getQueryString());
    
            // Verify that highlighting and field log are initialized
            assertNotNull(getMockRequest().getAttribute(Constants.HIGHLIGHT_QUERIES));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

            }
    
            final String[] searchers = DocumentUtil.getValue(docMap, Constants.SEARCHER, String[].class);
            if (searchers != null) {
                docMap.put(Constants.SEARCHER, ArrayUtil.add(searchers, getName()));
            } else {
                docMap.put(Constants.SEARCHER, new String[] { getName() });
            }
    
            return docMap;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

                        copyBeanToBean(entity, form, copyOp -> {
                            copyOp.excludeNull();
                            copyOp.exclude(Stream.concat(Stream.of(Constants.COMMON_CONVERSION_RULE),
                                    Stream.of(Constants.PERMISSIONS, Constants.VIRTUAL_HOSTS)).toArray(n -> new String[n]));
                        });
                        final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

        /**
         * Processes the job.
         * @param runtime The job runtime.
         */
        protected void process(final LaJobRuntime runtime) {
            if (!runtime.getParameterMap().containsKey(Constants.SCHEDULED_JOB)) {
                logger.warn("{} is empty.", Constants.SCHEDULED_JOB);
                return;
            }
            runtime.stopIfNeeds();
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top