- Sort Score
- Num 10 results
- Language All
Results 791 - 800 of 5,228 for avoid (0.02 seconds)
-
src/main/java/org/codelibs/fess/opensearch/user/cbean/ca/bs/BsRoleCA.java
if (opLambda != null) { opLambda.callback(builder); } } public void setName_Terms() { setName_Terms(null); } public void setName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setName_Terms("name", opLambda, null); } public void setName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsRoleCA> aggsLambda) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
} @Test public void testSingleArgumentConstructor() { CurlRequest request = new CurlRequest(Method.POST); assertEquals(Method.POST, request.method()); assertEquals("UTF-8", request.encoding()); assertEquals(1024 * 1024, request.threshold()); assertNull(request.proxy()); assertNull(request.body()); } @TestCreated: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 24.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/CaseFormatTest.java
assertThat(LOWER_UNDERSCORE.to(LOWER_CAMEL, "foo")).isEqualTo("foo"); assertThat(LOWER_UNDERSCORE.to(LOWER_CAMEL, "foo_bar")).isEqualTo("fooBar"); } public void testLowerUnderscoreToUpperCamel() { assertThat(LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo")).isEqualTo("Foo"); assertThat(LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo_bar")).isEqualTo("FooBar"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 9.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/ThrowablesTest.java
@SuppressWarnings("ThrowIfUncheckedKnownUnchecked") public void testThrowIfUnchecked_unchecked() { assertThrows( SomeUncheckedException.class, () -> throwIfUnchecked(new SomeUncheckedException())); } // We're testing that the method is in fact equivalent to throwing the exception directly. @SuppressWarnings("ThrowIfUncheckedKnownUnchecked") public void testThrowIfUnchecked_error() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 15K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/ImmutableListTest.java
return suite; } // Creation tests public void testCreation_noArgs() { List<String> list = ImmutableList.of(); assertEquals(emptyList(), list); } public void testCreation_oneElement() { List<String> list = ImmutableList.of("a"); assertEquals(singletonList("a"), list); } public void testCreation_twoElements() { List<String> list = ImmutableList.of("a", "b");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 24.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
class CacheOperationsTests { private Map<String, DfsReferralDataInternal> cacheMap; @BeforeEach void setupCache() { cacheMap = new HashMap<>(); } @Test @DisplayName("Should replace entry in cache map") void testReplaceCacheWithMap() { String key = "test-key"; // Setup concrete implementationCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 28.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java
} }; public void testServiceStartStop() throws Exception { NullService service = new NullService(); service.startAsync().awaitRunning(); assertFalse(future.isDone()); service.stopAsync().awaitTerminated(); assertTrue(future.isCancelled()); } private class NullService extends AbstractScheduledService { @Override protected void runOneIteration() throws Exception {}Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 22.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java
} }; public void testServiceStartStop() throws Exception { NullService service = new NullService(); service.startAsync().awaitRunning(); assertFalse(future.isDone()); service.stopAsync().awaitTerminated(); assertTrue(future.isCancelled()); } private class NullService extends AbstractScheduledService { @Override protected void runOneIteration() throws Exception {}Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 22.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java
private NotificationHelper notificationHelper; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); notificationHelper = new NotificationHelper(); } @Test public void test_sendToSlack_withBlankWebhookUrls() { // Setup mock configuration with blank webhook URLsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 20K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
} @Test public void test_constructor_withNewlineInOutput() { // Test newline replacement in output String[] inputs = { "input" }; CharMappingItem item = new CharMappingItem(1L, inputs, "line1\nline2"); assertEquals("line1 line2", item.getOutput()); } @Test public void test_constructor_withNullOutput() { // Test with null outputCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0)