Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for things (0.15 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapUser.java

        protected Hashtable<String, String> env;
    
        protected String name;
    
        protected String[] permissions = null;
    
        public LdapUser(final Hashtable<String, String> env, final String name) {
            this.env = env;
            this.name = name;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public String[] getPermissions() {
            if (permissions == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        }
    
        public void setUserCheckInterval(final long userCheckInterval) {
            this.userCheckInterval = userCheckInterval;
        }
    
        public void setUserInfoCacheSize(final int userInfoCacheSize) {
            this.userInfoCacheSize = userInfoCacheSize;
        }
    
        public void setLoggerName(final String loggerName) {
            this.loggerName = loggerName;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                this.basePath = basePath;
                this.imageExtention = imageExtention;
                this.expiry = expiry;
                this.fessConfig = ComponentUtil.getFessConfig();
                this.maxPurgeSize = fessConfig.getPageThumbnailPurgeMaxFetchSizeAsInteger();
                this.searchEngineClient = ComponentUtil.getSearchEngineClient();
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/score/ScoreBooster.java

        public int getPriority() {
            return this.priority;
        }
    
        public void setPriority(final int priority) {
            this.priority = priority;
        }
    
        public void setRequestTimeout(final String bulkRequestTimeout) {
            this.requestTimeout = bulkRequestTimeout;
        }
    
        public void setRequestCacheSize(final int requestCacheSize) {
            this.requestCacheSize = requestCacheSize;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

        private static final Logger logger = LogManager.getLogger(DataStoreFactory.class);
    
        protected Map<String, DataStore> dataStoreMap = new LinkedHashMap<>();
    
        protected String[] dataStoreNames = StringUtil.EMPTY_STRINGS;
    
        protected long lastLoadedTime = 0;
    
        public void add(final String name, final DataStore dataStore) {
            if (name == null || dataStore == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    final int num) {
                this.query = query;
                this.tags = tags;
                this.fields = fields;
                this.num = num;
                this.request = request;
            }
    
            protected static RequestParameter parse(final HttpServletRequest request) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                });
            } catch (final ExecutionException e) {
                logger.warn("Failed to process a group cache.", e);
                return new Pair<>(StringUtil.EMPTY_STRINGS, StringUtil.EMPTY_STRINGS);
            }
        }
    
        protected void processGroup(final AzureAdUser user, final List<String> groupList, final List<String> roleList, final String id) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exec/Crawler.java

                    final String[] toAddresses;
                    if (StringUtil.isNotBlank(toStrs)) {
                        toAddresses = toStrs.split(",");
                    } else {
                        toAddresses = StringUtil.EMPTY_STRINGS;
                    }
                    final NotificationHelper notificationHelper = ComponentUtil.getNotificationHelper();
                    SMailCallbackContext.setPreparedMessageHookOnThread(notificationHelper::send);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

           if (this.minDate && this.startDate.isBefore(this.minDate)) {
    L467:                this.startDate = this.minDate.clone();
    L468:                if (this.timePicker && this.timePickerIncrement)
    L469:                    this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
    L470:            }
    L471:
    L472:            if (this.maxDate && this.startDate.isAfter(this.maxDate)) {
    L473:                this.startDate = this.maxDate.clone();
    ...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, form.dictId);
            validate(form, messages -> {}, this::asEditHtml);
            verifyToken(this::asEditHtml);
            createSynonymItem(form, this::asEditHtml).ifPresent(entity -> {
                try {
                    synonymService.store(form.dictId, entity);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.5K bytes
    - Viewed (0)
Back to top