- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 456 for nothing (0.42 sec)
-
src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java
import jakarta.annotation.Resource; /** * The logic for access context. */ public class AccessContextLogic { /** * Default constructor. */ public AccessContextLogic() { // nothing } // =================================================================================== // Attribute
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/it/admin/StorageTests.java
protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); return updateMap; } @AfterEach protected void tearDown() { // do nothing } @Test void testList_ok() { checkGetMethod(Collections.emptyMap(), getListEndpointSuffix() + "/").then().body("response.status", equalTo(0)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/LogTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
/** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */ public KuromojiService() { // do nothing } /** * Get a list of Kuromoji items. * * @param dictId The dictionary ID. * @param kuromojiPager The pager for Kuromoji. * @return A list of Kuromoji items. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java
public void testAddAll_supportedNothing() { assertFalse("addAll(nothing) should return false", collection.addAll(emptyCollection())); expectUnchanged(); } @CollectionFeature.Require(absent = SUPPORTS_ADD) public void testAddAll_unsupportedNothing() { try { assertFalse( "addAll(nothing) should return false or throw", collection.addAll(emptyCollection()));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java
decode(buffer, bufferIndex, len); } @Override public int decode(final byte[] buffer, int bufferIndex, final int len) throws SMBProtocolDecodingException { if (len == 0) { // nothing to do return 0; } final int start = bufferIndex; this.nextEntryOffset = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
}, "ldapManager"); ComponentUtil.register(new ActivityHelper() { @Override public void permissionChanged(OptionalThing<FessUserBean> userBean) { // Do nothing } }, "activityHelper"); String[] permissions = ldapUser.getPermissions(); // Verify duplicates are removed assertNotNull(permissions);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/SamrPolicyHandleTest.java
} @Test void testClose_AlreadyClosed() throws IOException { // Test case: close() when already closed, should do nothing String server = "testServer"; int access = 123; // Setup for successful constructor doNothing().when(mockHandle).sendrecv(any(MsrpcSamrConnect4.class)); SamrPolicyHandle handle = new SamrPolicyHandle(mockHandle, server, access);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java
/** * The helper for access token. */ public class AccessTokenHelper { /** * Default constructor. */ public AccessTokenHelper() { // nothing } /** * The bearer string. */ protected static final String BEARER = "Bearer"; /** * The random instance. */ protected Random random = new SecureRandom();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} // Test implementation of ThumbnailManager to avoid container dependencies private class TestThumbnailManager extends ThumbnailManager { @Override public void init() { // Do nothing to avoid container access } @Override protected void storeQueue(List<Tuple3<String, String, String>> taskList) { // Override to avoid database operations taskList.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0)