- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 179 for nothing (1.51 sec)
-
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
* * @see Request * @see SuggestResponse */ public class SuggestRequest extends Request<SuggestResponse> { /** * Constructs a new suggest request. */ public SuggestRequest() { // nothing } private String index = null; private String query = ""; private int size = 10; private final List<String> tags = new ArrayList<>();
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/MIENameTest.java
} } @Test @DisplayName("Mockito presence: no collaborator interactions to verify") void noDependenciesToMock() { // This class has no external collaborators; nothing to verify. // Keep Mockito import usage minimal to satisfy build-time linkage. Runnable r = mock(Runnable.class); r.run(); verify(r, times(1)).run(); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
} /** * Cleans up resources when the filter is destroyed. * Currently performs no cleanup operations. */ @Override public void destroy() { // nothing }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/BufferCacheImplTest.java
// And it should still be zeroed for (byte value : reused) { assertEquals(0, value, "Reused buffer must be zeroed"); } } // Edge: cache size 0 means nothing is cached; release still zeroes argument @Test @DisplayName("Cache size 0: release zeroes but does not cache; getBuffer allocates new") void zeroSizedCacheDoesNotStore() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
// Arrange // Spy on the connection to verify handshake() is called NtlmHttpURLConnection spiedConnection = spy(ntlmConnection); doNothing().when(spiedConnection).connect(); // Mock the handshake process to do nothing complex mockResponse(HTTP_OK, "OK", null, null); // Act & Assert assertDoesNotThrow(() -> spiedConnection.getResponseCode());Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
assertEquals(baseUrl + "none", responseData.getUrl()); } try { smbClient.doGet(""); fail(); } catch (final CrawlerSystemException e) { // nothing } } public void test_doHead() throws Exception { try (final ResponseData responseData = smbClient.doHead(baseUrl + "file1.txt")) { assertEquals(0, responseData.getStatus());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
public class SuggestJob extends ExecJob { private static final Logger logger = LogManager.getLogger(SuggestJob.class); /** * Constructs a new suggest job. */ public SuggestJob() { // do nothing } @Override public String execute() { final StringBuilder resultBuf = new StringBuilder(); if (sessionId == null) { // create session idRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
SmbFileHandleImpl result = stream.ensureOpen(); assertSame(fd, result); verify(handle, times(1)).ensureOpen(); } @Test @DisplayName("close() does nothing (no delegate interactions)") void close_isNoop() throws Exception { // Verify close() is a no-op and does not call handle/tree/fd SmbPipeInputStream stream = newStreamWithInit(true);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
*/ public static class TimeoutSettings { /** * Constructs a new {@link TimeoutSettings}. */ public TimeoutSettings() { // nothing } /** Search timeout. */ protected String searchTimeout = "15s"; /** Index timeout. */ protected String indexTimeout = "1m"; /** Bulk timeout. */Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 20.1K bytes - Viewed (0)