- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 3,554 for PUBLIC (0.03 sec)
-
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class CrawlerEngineClientTest extends UnitFessTestCase { private CrawlerEngineClient crawlerEngineClient; @Override public void setUp() throws Exception { super.setUp(); crawlerEngineClient = new CrawlerEngineClient(); } @Override public void tearDown() throws Exception { crawlerEngineClient = null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; import org.codelibs.fess.unit.UnitFessTestCase; public class InvalidAccessTokenExceptionTest extends UnitFessTestCase { public void test_constructor_withTypeAndMessage() { // Test constructor with type and message String type = "Bearer"; String message = "Invalid access token provided";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
assertTrue("processThreadDump should be public", java.lang.reflect.Modifier.isPublic(processMethod.getModifiers())); assertEquals("processThreadDump should return void", void.class, processMethod.getReturnType()); } catch (NoSuchMethodException e) { fail("All expected public methods should exist: " + e.getMessage()); } } public void test_utilityClass_pattern() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
*/ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { // Default constructor } /** * The CRUD operation mode for this form. * Indicates whether this is a create, read, update, or delete operation. */ @ValidateTypeFailure public int crudMode; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
import java.io.ByteArrayOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import org.codelibs.fess.unit.UnitFessTestCase; public class DictionaryExpiredExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test default constructor DictionaryExpiredException exception = new DictionaryExpiredException(); assertNotNull(exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapPutIterableTester.java
// We use ::iterator so that we test passing a plain Iterable, not a Collection. "UnnecessaryMethodReference", }) public class MultimapPutIterableTester<K, V> extends AbstractMultimapTester<K, V, Multimap<K, V>> { @CollectionSize.Require(absent = ZERO) @MapFeature.Require(SUPPORTS_PUT) public void testPutAllNonEmptyIterableOnPresentKey() { assertTrue(multimap().putAll(k0(), newArrayList(v3(), v4())::iterator));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/factory/BeanDescFactoryTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.entity; import org.codelibs.fess.unit.UnitFessTestCase; public class RequestParameterTest extends UnitFessTestCase { public void test_constructor_withValidNameAndValues() { // Test with normal name and values String name = "paramName"; String[] values = { "value1", "value2", "value3" };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
import java.util.List; import java.util.Map; import org.codelibs.fess.opensearch.user.exentity.User; import org.codelibs.fess.unit.UnitFessTestCase; public class AuthenticationChainTest extends UnitFessTestCase { // Test basic update operation public void test_update_normalUser() { TestAuthenticationChain chain = new TestAuthenticationChain(); User user = createTestUser("testuser", "Test User");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0)