- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 712 for valid (0.03 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
assertTrue("Complete configuration should be valid", true); // Test minimal configuration final CommandGenerator minimalGenerator = new CommandGenerator(); minimalGenerator.setCommandList(Collections.singletonList("echo test")); assertTrue("Minimal configuration should be valid", true); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
return new SmbTreeHandleImpl(loc, this); } return connectHost(loc, loc.getServerWithDfs()); } } /** * @return whether we have a valid tree connection */ @SuppressWarnings("resource") public synchronized boolean isConnected() { final SmbTreeImpl t = getTreeInternal(); return t != null && t.isConnected(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
assertEquals("testService", nonPagerComponentName); } // Test class name creation from component name public void test_fromComponentNameToClassName() { // Test with valid component name - using custom method MockNamingConvention mockNaming = (MockNamingConvention) namingConvention; String className = mockNaming.fromComponentNameToPartOfClassName("testPager");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
// After destroy, generator should not be available assertFalse(thumbnailGenerator.isAvailable()); } public void test_createTask_withValidParams() { // Test task creation with valid parameters String path = "/path/to/document.pdf"; Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", "application/pdf"); docMap.put("title", "Test Document");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
assertEquals(0, exception.getSuppressed().length); } catch (Exception e) { // If an exception is thrown when trying to add suppressed, that's also valid // since suppression is disabled } // Stack trace should be empty since writableStackTrace is false StackTraceElement[] stackTrace = exception.getStackTrace();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
/** * Flag to return only a single directory entry. */ public static final byte SMB2_RETURN_SINGLE_ENTRY = 0x2; /** * Flag indicating that the file index field contains a valid index. */ public static final byte SMB2_INDEX_SPECIFIED = 0x4; /** * Flag to reopen the directory enumeration. */ public static final byte SMB2_REOPEN = 0x10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/RequestParamTest.java
} // Sanity: Enum.valueOf(Class, String) behaves identically to RequestParam.valueOf(String) @Test @DisplayName("Enum.valueOf mirrors RequestParam.valueOf for valid names") void enumValueOfParity() { for (RequestParam rp : RequestParam.values()) { assertSame(rp, Enum.valueOf(RequestParam.class, rp.name())); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.2K bytes - Viewed (0) -
cmd/jwt_test.go
token, err := getTokenString(creds.AccessKey, creds.SecretKey) if err != nil { t.Fatalf("unable get token %s", err) } testCases := []struct { req *http.Request expectedErr error }{ // Set valid authorization header. { req: &http.Request{ Header: http.Header{ "Authorization": []string{token}, }, }, expectedErr: nil, }, // No authorization header. {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withNullMessageAndValidCause() { // Test constructor with null message and valid cause Throwable cause = new RuntimeException("Runtime error"); CommandExecutionException exception = new CommandExecutionException(null, cause); assertNotNull(exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
cmd/consolelogger.go
select { case subCh <- entry: case <-doneCh: return nil } } } return sys.pubsub.Subscribe(madmin.LogMaskAll, subCh, doneCh, filter) } // Init if HTTPConsoleLoggerSys is valid, always returns nil right now func (sys *HTTPConsoleLoggerSys) Init(_ context.Context) error { return nil } // Endpoint - dummy function for interface compatibility
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.4K bytes - Viewed (0)