- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for root5 (2 sec)
-
src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java
} if (logger.isDebugEnabled()) { logger.debug("Loaded ScriptEngine: {}", name); } scriptEngineMap.put(name.toLowerCase(Locale.ROOT), scriptEngine); scriptEngineMap.put(scriptEngine.getClass().getSimpleName().toLowerCase(Locale.ROOT), scriptEngine); } /** * Gets a script engine. * @param name The name of the script engine. * @return The script engine. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
/** The key of the configuration. e.g. [Test] */ String MAIL_SUBJECT_TEST_PREFIX = "mail.subject.test.prefix"; /** The key of the configuration. e.g. root@localhost */ String MAIL_RETURN_PATH = "mail.return.path"; /** * Get the value of property as {@link String}. * @param propertyKey The key of the property. (NotNull)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
final Map<String, List<String>> map = new HashMap<>(); headers.entrySet().stream().filter(e -> e.getKey() != null).forEach( e -> map.put(e.getKey().toLowerCase(Locale.ROOT), e.getValue() == null ? List.of() : List.copyOf(e.getValue()))); this.headers = Map.copyOf(map); } } /** * Gets the headers of the response. *
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
* Retrieves the current user's locale from the request manager. * * @return the user's locale, or Locale.ROOT if not available */ private static Locale getUserLocale() { final Locale locale = ComponentUtil.getRequestManager().getUserLocale(); if (locale == null) { return Locale.ROOT; } return locale; } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.4K bytes - Viewed (1) -
pom.xml
<type>file</type> <src>${project.build.directory}/generated-packaging/deb/env/fess</src> <dst>/etc/default/fess</dst> <mapper> <type>perm</type> <user>root</user> <group>root</group> </mapper> </data> <!-- Add init.d files --> <data> <type>file</type> <src>${project.build.directory}/generated-packaging/deb/init.d/fess</src>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 49.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} return language.toLowerCase(Locale.ROOT); } return null; }).toArray(n -> new String[n])); } default Locale getQueryLocaleFromName(final String name) { if (name == null) { return Locale.ROOT; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
import org.apache.catalina.Context; import org.apache.catalina.LifecycleException; import org.apache.catalina.WebResource; import org.apache.catalina.webresources.StandardRoot; /** * Fess-specific web resource root implementation for Tomcat. * This class extends StandardRoot to provide custom web resource handling * for Fess plugins, including support for plugin JAR files in the WEB-INF/plugin directory. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/assemblies/files/generate-thumbnail
get_imagemagick_cmd() { if command -v magick >/dev/null 2>&1; then echo "magick" elif command -v convert >/dev/null 2>&1; then echo "convert" else echo "" fi } if [[ x"$HOME" = "x/root" ]] || [[ x"$HOME" = "x/var/root" ]] ; then HOME=/var/lib/fess fi if [[ x"${cmd_type}" = "xmsoffice" ]] ; then im_cmd=$(get_imagemagick_cmd) if [[ -z "${im_cmd}" ]] ; thenRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
if (StringUtil.isBlank(endpoint)) { // Default to S3 if no endpoint (uses AWS default) return StorageType.S3; } final String lowerEndpoint = endpoint.toLowerCase(Locale.ROOT); // GCS patterns if (lowerEndpoint.contains("storage.googleapis.com") || lowerEndpoint.contains(".storage.cloud.google.com")) { return StorageType.GCS; } // S3 patterns
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
} if (logger.isDebugEnabled()) { logger.debug("Loaded DataStore: name={}", name); } dataStoreMap.put(name.toLowerCase(Locale.ROOT), dataStore); dataStoreMap.put(dataStore.getClass().getSimpleName().toLowerCase(Locale.ROOT), dataStore); } /** * Retrieves a data store instance by name. * The lookup is case-insensitive and will match both registered namesRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9K bytes - Viewed (0)