Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 22 of 22 for attaches (0.16 seconds)

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

                    return fessConfig.getRoleSearchGroupPrefix();
                }
            }
            return null;
        }
    
        /**
         * Escapes special characters in an LDAP search filter to prevent LDAP injection attacks.
         *
         * @param filter the LDAP search filter to escape (null is treated as empty string)
         * @return the escaped filter string safe for use in LDAP queries (empty string if filter is null)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            } catch (final Exception e) {
                logger.debug("Failed to get document count: indexName={}", indexName, e);
            }
            return -1;
        }
    
        /**
         * Gets the number of aliases attached to the specified index.
         *
         * @param indexName the name of the index
         * @return the number of aliases, or 0 if none found or an error occurred
         */
        public int getAliasCount(final String indexName) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top