Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for gats (0.01 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to compiled classes directory.
         *
         * @param names the path components to append to the classes directory
         * @return the Path object pointing to the classes directory
         */
        public static Path getClassesPath(final String... names) {
            return getPath("WEB-INF/", "classes", names);
        }
    
        /**
         * Gets the path to original files directory.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

            this.queryId = queryId;
        }
    
        /**
         * Gets the list of search result documents.
         *
         * @return The list of search result documents
         */
        public List<Map<String, Object>> getDocumentItems() {
            return documentItems;
        }
    
        /**
         * Gets the facet response containing aggregated search facets.
         *
         * @return The facet response
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

                initProcesses.clear();
            }
        }
    
        /**
         * Gets a cached cipher by name.
         * @param cipherName The cipher name.
         * @return The cached cipher.
         */
        public static CachedCipher getCipher(final String cipherName) {
            return getComponent(cipherName);
        }
    
        /**
         * Gets the system properties.
         * @return The dynamic properties.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

         */
        public boolean isApiResponseField(final String field) {
            return apiResponseFieldSet.contains(field);
        }
    
        /**
         * Gets the fields that are included in standard search responses.
         *
         * @return array of field names for standard search responses
         */
        public String[] getResponseFields() {
            return responseFields;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                    .execute();
        }
    
        /**
         * Gets the OpenID Connect client secret.
         *
         * @return the client secret
         */
        protected String getOicClientSecret() {
            return ComponentUtil.getSystemProperties().getProperty(OIC_CLIENT_SECRET, StringUtil.EMPTY);
        }
    
        /**
         * Gets the OpenID Connect token server URL.
         *
         * @return the token server URL
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                }
            });
        }
    
        /**
         * Gets the username of the current user.
         *
         * @return The username, or "guest" if not logged in.
         */
        public String getUsername() {
            return getRequestManager().findUserBean(FessUserBean.class).map(FessUserBean::getUserId).orElse(Constants.GUEST_USER);
        }
    
        /**
         * Gets the request manager.
         *
         * @return The request manager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

            this.highlightPrefix = highlightPrefix;
        }
    
        /**
         * Gets the current highlight prefix used for highlight field names.
         *
         * @return the current highlight prefix
         */
        public String getHighlightPrefix() {
            return highlightPrefix;
        }
    
        /**
         * Gets the default facet information configuration.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         */
        Map<String, String> parentEncodingMap = Collections.synchronizedMap(new LruHashMap<>(1000));
    
        /**
         * Gets the Fess configuration instance.
         *
         * @return the Fess configuration object
         */
        FessConfig getFessConfig();
    
        /**
         * Gets the logger instance for this transformer.
         *
         * @return the logger instance
         */
        Logger getLogger();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        public <T> T[] toArray(final T[] a) {
            return parent.toArray(a);
        }
    
        /**
         * Gets the starting position of the current page in the overall result set.
         *
         * @return the start position (0-based)
         */
        public int getStart() {
            return start;
        }
    
        /**
         * Gets the offset value used for pagination calculations.
         *
         * @return the offset value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        }
    
        /**
         * Gets the total number of words in the suggest index.
         *
         * @return The total number of words.
         */
        public long getAllWordsNum() {
            return suggester.getAllWordsNum();
        }
    
        /**
         * Gets the number of words from documents in the suggest index.
         *
         * @return The number of document words.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
Back to top