- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 1,296 for implementations (0.07 sec)
-
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
public class JobNotFoundExceptionTest extends UnitFessTestCase { public void test_constructorWithScheduledJob() { // Test with scheduled job that has a custom toString implementation ScheduledJob scheduledJob = new ScheduledJob() { @Override public String toString() { return "TestScheduledJob[id=123]"; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
// Verify assertNotNull(factory); assertNotNull(factory.handerMap); assertTrue(factory.handerMap.isEmpty()); } // Test implementation of CorsHandler for testing purposes private static class TestCorsHandler extends CorsHandler { private final String name; public TestCorsHandler(String name) { this.name = name;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/util/HMACT64Test.java
// Calculate expected HMAC-MD5 using standard Java MessageDigest for comparison // This is a simplified HMAC-MD5 calculation for comparison, not a full RFC 2104 implementation. // The HMACT64 implementation is what we are testing. MessageDigest md5 = MessageDigest.getInstance("MD5"); byte[] ipad = new byte[64]; byte[] opad = new byte[64];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorInternalTest.java
assertEquals(expected, result); verify(locator, times(1)).shouldForceSigning(); verifyNoMoreInteractions(locator); } // Happy path: overlaps delegates to implementation and returns as stubbed @Test @DisplayName("overlaps returns true then false as stubbed") void overlapsReturnsTrueThenFalse() throws Exception { when(locator.overlaps(other)).thenReturn(true, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java
*/ package org.apache.maven.api; import java.time.Clock; import java.time.Duration; import java.time.Instant; import java.time.ZoneId; import java.time.ZoneOffset; /** * A Clock implementation that combines monotonic timing with wall-clock time. * <p> * This class provides precise time measurements using {@link System#nanoTime()} * while maintaining wall-clock time information in UTC. The wall-clock time
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 06:28:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
verify(request, times(1)).size(); verify(request, times(1)).getOverrideTimeout(); } @Test @DisplayName("Test Request with concrete implementation") void testConcreteImplementation() { // Create a concrete implementation for testing TestRequest testRequest = new TestRequest(); // Test initResponse
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
import org.apache.catalina.Context; import org.apache.catalina.LifecycleException; import org.apache.catalina.WebResource; import org.apache.catalina.webresources.StandardRoot; /** * Fess-specific web resource root implementation for Tomcat. * This class extends StandardRoot to provide custom web resource handling * for Fess plugins, including support for plugin JAR files in the WEB-INF/plugin directory. */
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/jcifs/internal/AllocInfoTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
android-test/build.gradle.kts
"META-INF/DEPENDENCIES", "META-INF/LICENSE.md", "META-INF/LICENSE-notice.md", "README.txt", "org/bouncycastle/LICENSE" ) } dependencies { implementation(libs.kotlin.reflect) implementation(libs.playservices.safetynet) "friendsImplementation"(projects.okhttp) "friendsImplementation"(projects.okhttpDnsoverhttps) testImplementation(projects.okhttp) testImplementation(libs.junit)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 20:01:04 UTC 2025 - 3.8K bytes - Viewed (2) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 13.7K bytes - Viewed (0)