- Sort Score
- Result 10 results
- Languages All
Results 1631 - 1640 of 5,965 for public (0.04 sec)
-
src/test/java/jcifs/tests/persistent/HandleReconnectorTest.java
future.get(); }); } @Test public void testGetMaxRetries() { assertEquals(2, reconnector.getMaxRetries()); } @Test public void testGetRetryDelay() { assertEquals(50, reconnector.getRetryDelay()); } @Test public void testDefaultConstructor() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractService.java
* @since 1.0 */ @GwtIncompatible @J2ktIncompatible public abstract class AbstractService implements Service { private static final ListenerCallQueue.Event<Listener> STARTING_EVENT = new ListenerCallQueue.Event<Listener>() { @Override public void call(Listener listener) { listener.starting(); } @Override public String toString() { return "starting()"; }Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java
/** * Comprehensive tests for enhanced pre-authentication integrity service. */ public class PreauthIntegrityServiceTest { private PreauthIntegrityService preauthService; private SecureRandom secureRandom; @BeforeEach public void setUp() { secureRandom = new SecureRandom();Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
// Test creating custom implementation of annotation public void test_customAnnotationImplementation() { final CustomSize customAnnotation = new CustomSize() { @Override public Class<? extends Annotation> annotationType() { return CustomSize.class; } @Override public String message() { return "Test message";Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumMultiset.java
return new Multisets.AbstractEntry<E>() { @Override public E getElement() { return enumConstants[index]; } @Override public int getCount() { return counts[index]; } }; } }; } @Override public void forEachEntry(ObjIntConsumer<? super E> action) { checkNotNull(action);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
public void setTestData(List<RelatedQuery> testData) { this.testData = testData; } public List<RelatedQuery> getTestData() { return testData; } } static class MockFessConfig extends FessConfig.SimpleImpl { @Override public Integer getPageRelatedqueryMaxFetchSizeAsInteger() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
import org.mockito.Mockito; /** * Tests for RateLimiter. * * @author Dimitris Andreou */ @NullUnmarked public class RateLimiterTest extends TestCase { private static final double EPSILON = 1e-8; private final FakeStopwatch stopwatch = new FakeStopwatch(); public void testSimple() { RateLimiter limiter = RateLimiter.create(5.0, stopwatch); limiter.acquire(); // R0.00, since it's the first requestRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
import org.mockito.Mockito; /** * Tests for RateLimiter. * * @author Dimitris Andreou */ @NullUnmarked public class RateLimiterTest extends TestCase { private static final double EPSILON = 1e-8; private final FakeStopwatch stopwatch = new FakeStopwatch(); public void testSimple() { RateLimiter limiter = RateLimiter.create(5.0, stopwatch); limiter.acquire(); // R0.00, since it's the first requestRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableTable.java
} @Override public ImmutableSet<R> rowKeySet() { return rowMap().keySet(); } /** * {@inheritDoc} * * <p>The value {@code Map<C, V>} instances in the returned map are {@link ImmutableMap} instances * as well. */ @Override public abstract ImmutableMap<R, Map<C, V>> rowMap(); @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.3K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
import java.io.File; import java.util.logging.Level; import java.util.logging.Logger; import org.codelibs.curl.Curl.Method; import org.junit.Test; public class CurlTest { private static final Logger logger = Logger.getLogger(CurlTest.class.getName()); @Test public void test_Get() { Curl.get("https://www.codelibs.org/").execute(response -> { final String content = response.getContentAsString();Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0)