- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for toLevel (1.42 sec)
-
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Sets the log level for the application. * * @param level The log level to set. */ public void setLogLevel(final String level) { final Level logLevel = Level.toLevel(level, Level.WARN); System.setProperty(Constants.FESS_LOG_LEVEL, logLevel.toString()); split(ComponentUtil.getFessConfig().getLoggingAppPackages(), ",")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
SsoProcessException topLevel = new SsoProcessException("SSO process failed", level1); // Verify the chain assertEquals("SSO process failed", topLevel.getMessage()); assertEquals(level1, topLevel.getCause()); assertEquals("Level 1: Authentication service error", topLevel.getCause().getMessage()); assertEquals(level2, topLevel.getCause().getCause());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java
CrawlerSystemException topLevel = new CrawlerSystemException("Top level", level1); // Verify chain assertSame(level1, topLevel.getCause()); assertSame(level2, topLevel.getCause().getCause()); assertSame(level3, topLevel.getCause().getCause().getCause()); assertNull(topLevel.getCause().getCause().getCause().getCause()); // Verify messages
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 20K bytes - Viewed (0) -
ci/official/utilities/setup.sh
set -exo pipefail -o history -o allexport # Set TFCI_GIT_DIR, the root directory for all commands, to two directories # above the location of this file (setup.sh). We could also use "git rev-parse # --show-toplevel", but that wouldn't work for non-git repos (like if someone # downloaded TF as a zip archive). export TFCI_GIT_DIR=$(cd $(dirname "$0"); realpath ../../) cd "$TFCI_GIT_DIR"
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Jan 09 18:37:25 UTC 2025 - 6.2K bytes - Viewed (0)