- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 151 for Trace (0.02 sec)
-
src/test/java/jcifs/smb/SmbTreeConnectionTraceTest.java
SmbTreeConnectionTrace trace = Mockito.spy(new SmbTreeConnectionTrace(ctx)); doReturn(true).when(trace).isConnected(); trace.acquire(); // usageCount becomes 1 // Act & Assert: checkRelease should call isConnected() and not throw assertDoesNotThrow(trace::checkRelease); verify(trace, atLeastOnce()).isConnected(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
} public void test_stackTrace() { // Test that stack trace is properly maintained String message = "Stack trace test"; Exception cause = new IllegalArgumentException("Invalid argument"); ScriptEngineException exception = new ScriptEngineException(message, cause); // Verify stack trace exists StackTraceElement[] stackTrace = exception.getStackTrace();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
logger/slog.go
Key: "trace", Value: slog.GroupValue(fields...), }) case l.SlowThreshold != 0 && elapsed > l.SlowThreshold: l.Logger.WarnContext(ctx, "SQL executed", slog.Attr{ Key: "trace", Value: slog.GroupValue(fields...), }) case l.LogLevel >= Info: l.Logger.InfoContext(ctx, "SQL executed", slog.Attr{ Key: "trace", Value: slog.GroupValue(fields...), }) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 28 09:34:58 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
for (final Entry<String, Map<String, CacheEntry<DfsReferralDataInternal>>> entry : domains.entrySet()) { log.trace("Domain " + entry.getKey()); for (final Entry<String, CacheEntry<DfsReferralDataInternal>> entry2 : entry.getValue().entrySet()) { log.trace(" Root " + entry2.getKey()); if (entry2.getValue().map != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
public void test_stackTrace() { // Test that stack trace is properly captured String message = "Stack trace test"; SearchEngineClientException exception = new SearchEngineClientException(message); 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 - 6.9K bytes - Viewed (0) -
docs/debugging/README.md
## HTTP Trace HTTP tracing can be enabled by using [`mc admin trace`](https://docs.min.io/community/minio-object-store/reference/minio-mc-admin/mc-admin-trace.html) command. Example: ```sh minio server /data ``` Default trace is succinct only to indicate the API operations being called and the HTTP response status. ```sh mc admin trace myminio ``` To trace entire HTTP request
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
public void test_stackTrace() { // Test that stack trace is properly captured LdapOperationException exception = new LdapOperationException("Stack trace test"); StackTraceElement[] stackTrace = exception.getStackTrace(); assertNotNull(stackTrace); assertTrue(stackTrace.length > 0); // Verify that current test method appears in stack trace boolean foundTestMethod = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
} public void test_stackTrace() { // Test that stack trace is properly captured ThemeException exception = new ThemeException("Stack trace test"); assertNotNull(exception.getStackTrace()); assertTrue(exception.getStackTrace().length > 0); // Verify that this test method appears 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 - 8.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
} 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); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0)