- Sort Score
- Num 10 results
- Language All
Results 1441 - 1450 of 5,228 for avoid (0.36 seconds)
-
src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java
@Mock private SmbResource mockResource1; @Mock private SmbResource mockResource2; @Mock private SmbResource mockResource3; @BeforeEach void setUp() { lenient().when(mockFileEntry1.getName()).thenReturn("file1.txt"); lenient().when(mockFileEntry2.getName()).thenReturn("file2.txt"); lenient().when(mockFileEntry3.getName()).thenReturn("file3.txt");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 14.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java
public class FessWebResourceRootTest extends UnitFessTestCase { @Test public void test_classExists() { // Basic test to verify the class exists and has the correct structure assertNotNull(FessWebResourceRoot.class, "FessWebResourceRoot class should exist"); } @Test public void test_inheritance() { // Verify that FessWebResourceRoot extends StandardRootCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 4.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
void testCommandInitialization() { Smb2WriteRequest writeRequest = new Smb2WriteRequest(mockConfig, testFileId); // Command is set in parent constructor assertNotNull(writeRequest); } @Test @DisplayName("Should accept null file ID in constructor") void testConstructorWithNullFileId() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.4K bytes - Click Count (0) -
src/test/java/jcifs/util/EncdecTest.java
/** * Test class for Encdec utility functionality */ @DisplayName("Encdec Utility Tests") class EncdecTest extends BaseTest { @Test @DisplayName("Should encode and decode 16-bit integers") void testInt16Operations() { // Given short value = 0x1234; byte[] buffer = new byte[2]; // When - encode little endian Encdec.enc_uint16le(value, buffer, 0);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
public void testSimplify3() { assertThat(simplifyPath("/a/b/c/d")).isEqualTo("/a/b/c/d"); } public void testSimplify4() { assertThat(simplifyPath("/a/b/c/d/")).isEqualTo("/a/b/c/d"); } public void testSimplify5() { assertThat(simplifyPath("/a//b")).isEqualTo("/a/b"); } public void testSimplify6() { assertThat(simplifyPath("//a//b/")).isEqualTo("/a/b"); } public void testSimplify7() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 11.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
public void testSimplify3() { assertThat(simplifyPath("/a/b/c/d")).isEqualTo("/a/b/c/d"); } public void testSimplify4() { assertThat(simplifyPath("/a/b/c/d/")).isEqualTo("/a/b/c/d"); } public void testSimplify5() { assertThat(simplifyPath("/a//b")).isEqualTo("/a/b"); } public void testSimplify6() { assertThat(simplifyPath("//a//b/")).isEqualTo("/a/b"); } public void testSimplify7() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 11.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java
public void reschedule(final String cronExp, final org.lastaflute.job.subsidiary.VaryingCronOpCall opLambda) { } @Override public void unschedule() { } @Override public void disappear() { } @Override public void becomeNonCron() { } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
} @Test public void test_loginPaths() throws Exception { // Test login-related paths assertEquals("/login/index.jsp", FessHtmlPath.path_Login_IndexJsp.getRoutingPath()); assertEquals("/login/newpassword.jsp", FessHtmlPath.path_Login_NewpasswordJsp.getRoutingPath()); } @Test public void test_configPaths() throws Exception {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java
public class AbstractConfigHelperTest extends UnitFessTestCase { private TestConfigHelper configHelper; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); configHelper = new TestConfigHelper(); } @Test public void test_setReloadInterval() { assertEquals(1000L, configHelper.reloadInterval); configHelper.setReloadInterval(5000L);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/CacheBuilderSpec.java
} /** Base class for parsing integers. */ private abstract static class IntegerParser implements ValueParser { abstract void parseInteger(CacheBuilderSpec spec, int value); @Override public void parse(CacheBuilderSpec spec, String key, @Nullable String value) { if (isNullOrEmpty(value)) { throw new IllegalArgumentException("value of key " + key + " omitted");Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 18.2K bytes - Click Count (0)