- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for rbrace (0.05 seconds)
-
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
public void test_stackTrace() { // Test stack trace is properly set ResultOffsetExceededException exception = new ResultOffsetExceededException("Stack trace test"); StackTraceElement[] stackTrace = exception.getStackTrace(); assertNotNull(stackTrace); assertTrue(stackTrace.length > 0); // Check that the current test method is in the stack trace boolean foundTestMethod = false;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
if (Constants.NONE.equals(llmType)) { if (logger.isTraceEnabled()) { logger.trace("[LLM] LLM not available. llmType=none"); } return false; } if (!isRagChatEnabled()) { if (logger.isTraceEnabled()) { logger.trace("[LLM] LLM not available. ragChatEnabled=false"); } return false; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 11:10:51 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java
String errorMessage = "Stack trace test error"; ServletException servletException = new ServletException(errorMessage); // Wrap it in ServletRuntimeException ServletRuntimeException runtimeException = new ServletRuntimeException(servletException); // Verify stack trace is available StackTraceElement[] stackTrace = runtimeException.getStackTrace();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
@Test public void test_stackTraceForMessageOnlyConstructor() { // Test that stack trace is not writable when using message-only constructor ThumbnailGenerationException exception = new ThumbnailGenerationException("Test message"); // The message-only constructor uses super(message, false, false) which disables stack trace assertEquals(0, exception.getStackTrace().length); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java
@Test public void test_stackTrace() { // Test that stack trace is properly captured final JobProcessingException exception = new JobProcessingException("Stack trace test"); assertNotNull(exception.getStackTrace()); assertTrue(exception.getStackTrace().length > 0); // Verify the top of the stack trace points to this test methodCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
assertTrue(exception instanceof java.io.Serializable); } @Test public void test_stackTrace() { // Test that stack trace is properly preserved String message = "GSA error with stack trace"; Throwable cause = new NullPointerException("NPE occurred"); GsaConfigException exception = new GsaConfigException(message, cause);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.5K bytes - Click Count (0) -
src/main/webapp/js/purify.min.js
"frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),H=i(["xlink:href","xml:id","xlink:title","xml:space","xmlns:x...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 22.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
assertEquals(middleCause, exception.getCause()); assertEquals(rootCause, exception.getCause().getCause()); } @Test public void test_stackTrace() { // Test that stack trace is properly set DataStoreException exception = new DataStoreException("Test error"); StackTraceElement[] stackTrace = exception.getStackTrace(); assertNotNull(stackTrace);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
assertTrue(exception instanceof RuntimeException); } @Test public void test_stackTracePresent() { // Test that stack trace is properly captured CommandExecutionException exception = new CommandExecutionException("Stack trace test"); StackTraceElement[] stackTrace = exception.getStackTrace(); assertNotNull(stackTrace); assertTrue(stackTrace.length > 0);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.4K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 83.1K bytes - Click Count (0)