- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 361 for track (2.31 sec)
-
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
} @Test @DisplayName("Test stack trace inclusion") void testStackTraceInclusion() { logger.setIncludeStackTrace(true); Map<String, Object> context = new HashMap<>(); context.put("error", "Test error"); logger.logSecurityViolation("Test violation with stack trace", context); logger.setIncludeStackTrace(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java
assertSame(root, ex.getRootCause()); } /** * Verify that {@link #toString()} includes a stack trace when a root cause * is present. */ @Test @DisplayName("toString with root cause contains stack trace") void testToStringWithRootCause() { RuntimeException cause = new RuntimeException("boom"); SmbException ex = new SmbException(0, cause);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
this.macSigningKey = macSigningKey; this.signSequence = initialSequence; this.bypass = bypass; if (log.isTraceEnabled()) { log.trace("macSigningKey:"); log.trace(Hexdump.toHexString(macSigningKey, 0, macSigningKey.length)); } } /** * This constructor used to instance a SigningDigest object for
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
if (log.isTraceEnabled()) { log.trace(response.toString()); log.trace(Hexdump.toHexString(this.rcv_buf, 0, this.in.getLength())); } response.notify(); } } } catch (final SocketTimeoutException ste) { log.trace("Socket timeout", ste); } catch (final Exception ex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
} public void test_stackTrace() { // Test that stack trace is properly captured JobNotFoundException exception = new JobNotFoundException("Stack trace test"); assertNotNull(exception.getStackTrace()); assertTrue(exception.getStackTrace().length > 0); // Verify the stack trace contains this test method boolean foundTestMethod = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
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;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.6K bytes - Viewed (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();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.8K bytes - Viewed (0) -
logger/logger.go
BeginAt time.Time SQL string RowsAffected int64 Err error } // New trace recorder func (l *traceRecorder) New() *traceRecorder { return &traceRecorder{Interface: l.Interface, BeginAt: time.Now()} } // Trace implement logger interface func (l *traceRecorder) Trace(ctx context.Context, begin time.Time, fc func() (string, int64), err error) { l.BeginAt = begin
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun Jan 12 10:19:28 UTC 2025 - 6.3K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestImplementationTest.java
void testRequestTraceIntegration() { Session session = mock(Session.class); RequestTrace trace = new RequestTrace("test-context", null, "test-data"); ArtifactInstallerRequest request = ArtifactInstallerRequest.builder().session(session).trace(trace).build(); assertEquals(trace, request.getTrace()); assertEquals(session, request.getSession()); } @Test
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java
return actionClass; } /** * Overrides fillInStackTrace to return null for performance optimization. * This prevents stack trace generation for this exception type. * * @return null to skip stack trace generation */ @Override public synchronized Throwable fillInStackTrace() { return null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)