Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 100 for correcte (0.05 seconds)

  1. .teamcity/scripts/CheckBadMerge.java

                System.out.println(commit + " is a merge commit already on a release branch, ignoring.");
                System.out.println("  Branches: " + commitBranches);
                return;
            }
    
            // The correct state we are looking for is:
            // 1. It's a merge commit.
            // 2. One of its parent commits is from master only.
            // 3. Another parent commit is not from master but from release branch.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

            }
        }
    
        // ========== Thread Safety Tests for getDataStoreNames() ==========
    
        /**
         * Test concurrent getDataStoreNames calls to verify synchronized method works correctly.
         * Multiple threads call getDataStoreNames() simultaneously.
         */
        @Test
        public void test_getDataStoreNames_concurrentAccess() throws Exception {
            final int threadCount = 10;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

                @Override
                protected String getSsoType() {
                    return currentSsoType;
                }
            };
    
            // Verify login credential is retrieved correctly via backward compatibility
            LoginCredential credential = ssoManager.getLoginCredential();
            assertNotNull(credential);
            assertEquals("entraiduser", ((TestLoginCredential) credential).username);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

        @Test
        public void test_atomicDeleteIfExists_noImageFile() throws Exception {
            // Test that Files.deleteIfExists works correctly for no-image marker files
            Path noImageFile = Files.createTempFile("noimage_test", ".noimage");
            try {
                assertTrue(Files.exists(noImageFile));
    
                // Atomic delete should succeed
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            assertTrue(deleteSearchLogCalled[0]);
            assertTrue(deleteJobLogCalled[0]);
            assertTrue(deleteUserInfoCalled[0]);
            assertTrue(updateJobLogStatusCalled[0]);
    
            // Assert correct parameters were passed - verify that time passed is greater than 0
            assertTrue(crawlingInfoDeletedBeforeTime[0] > 0);
            assertEquals(30, searchLogDeletedDays[0]);
            assertEquals(14, jobLogDeletedDays[0]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 32.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

    import org.lastaflute.web.response.JsonResponse;
    
    /**
     * Tests for the scheduler start API endpoint contract.
     * Verifies that {@code PUT /api/admin/scheduler/{id}/start} returns the correct
     * {@code jobLogId} based on the job's logging configuration.
     */
    public class ApiAdminSchedulerActionTest extends UnitFessTestCase {
    
        @Override
        protected boolean isUseOneTimeContainer() {
            return true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

                    }
                }
            }
        }
    
        @Test
        public void test_pathValues() throws Exception {
            // Test specific path values to ensure correct JSP paths
            assertEquals("/admin/accesstoken/admin_accesstoken.jsp", FessHtmlPath.path_AdminAccesstoken_AdminAccesstokenJsp.getRoutingPath());
            assertEquals("/admin/accesstoken/admin_accesstoken_details.jsp",
    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)
  8. CONTRIBUTING.md

    #### Accepting multiple changes
    
    If you have multiple changes to accept (and you're sure they ought to be accepted instead of corrected), you can use the `Accept Changes for all Errors` button to speed the process.
    This button will cause a Javascript alert dialog to appear asking you to type a reason for accepting the changes, e.g. "Added new API for Gradle 8.x".
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            this.commandDestroyTimeout = commandDestroyTimeout;
        }
    
        /**
         * Gets file extension from MIME type for creating temp files with proper extensions.
         * This helps ImageMagick correctly identify file formats.
         * @param mimeType The MIME type of the content.
         * @return The file extension including the dot (e.g., ".gif"), or empty string if unknown.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

    public class SecuredTest extends UnitFessTestCase {
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
        }
    
        // Test that Secured annotation has correct meta-annotations
        @Test
        public void test_annotationMetadata() {
            // Check if Secured annotation is present
            assertNotNull(Secured.class);
    
            // Check Target annotation
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
Back to Top