- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for tree (0.03 sec)
-
README.md
### Docker We provide Docker images on [ghcr.io](https://github.com/orgs/codelibs/packages). We also provide a Docker Compose (YAML) file in [this repository](https://github.com/codelibs/docker-fess/tree/master/compose). ### Browser UI - Search UI: http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
*/ @Size(max = 1000) public String ldapAdminSecurityCredentials; /** * LDAP base DN (Distinguished Name) for user searches. * Defines the root of the LDAP directory tree for user lookups. */ @Size(max = 1000) public String ldapBaseDn; /** * LDAP filter for finding user accounts. * Defines the search filter used to locate user accounts in LDAP.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* -Djcifs.smb1.smb.client.responseTimeout=30000<br> * -Dio.netty.noUnsafe=true<br> * -Dio.netty.noKeySetOptimization=true<br> * -Dio.netty.recycler.maxCapacityPerThread=0<br> * -Dlog4j.shutdownHookEnabled=false<br> * -Dlog4j2.formatMsgNoLookups=true<br> * -Dlog4j2.disable.jmx=true<br> * -Dlog4j.skipJansi=true<br> * -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider<br>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
form.loginRequired = fessConfig.isLoginRequired() ? Constants.TRUE : Constants.FALSE; form.resultCollapsed = fessConfig.isResultCollapsed() ? Constants.TRUE : Constants.FALSE; form.loginLink = fessConfig.isLoginLinkEnabled() ? Constants.TRUE : Constants.FALSE; form.thumbnail = fessConfig.isThumbnailEnabled() ? Constants.TRUE : Constants.FALSE;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 14.4K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
pom.xml
<version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.16</version> <optional>true</optional> </dependency> <dependency>
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Dec 20 04:15:34 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* * <h2>Security Settings (Production)</h2> * <p>For production environments, consider enabling these security features:</p> * <pre> * saml.security.authnrequest_signed=true * saml.security.want_messages_signed=true * saml.security.want_assertions_signed=true * </pre> * * @see <a href="https://fess.codelibs.org/">Fess Documentation</a> */ public class SamlAuthenticator implements SsoAuthenticator { /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/storage/StorageItem.java
private final String encodedId; /** * Creates a new StorageItem instance. * * @param name the name of the item * @param path the path of the item * @param directory true if this item is a directory * @param size the size of the item in bytes * @param lastModified the last modified timestamp * @param encodedId the base64-encoded ID of the item */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
try { final File file = File.createTempFile(prefix, suffix); file.setReadable(false, false); file.setReadable(true, true); file.setWritable(false, false); file.setWritable(true, true); if (logger.isDebugEnabled()) { logger.debug("Create {} as a temp file.", file.getAbsolutePath()); } return file;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
return true; }); } /** * Updates a single field of a document. * * @param id The document ID to update * @param field The field name to update * @param value The new value for the field * @return true if the update was successful, false otherwise */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0)