Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 606 for setaun (0.03 sec)

  1. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

    public class PagerCreatorTest extends UnitFessTestCase {
    
        private PagerCreator pagerCreator;
        private NamingConvention namingConvention;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            namingConvention = new MockNamingConvention();
            pagerCreator = new PagerCreator(namingConvention);
        }
    
        // Test constructor initialization
        public void test_constructor() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

        private ThumbnailGenerator thumbnailGenerator;
        private File tempOutputFile;
        private Path tempDir;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            tempDir = Files.createTempDirectory("thumbnail-test");
            tempOutputFile = Files.createTempFile(tempDir, "thumbnail", ".png").toFile();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

        private NotificationHelper notificationHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            notificationHelper = new NotificationHelper();
        }
    
        public void test_sendToSlack_withBlankWebhookUrls() {
            // Setup mock configuration with blank webhook URLs
            ComponentUtil.setFessConfig(new MockFessConfig() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

    public class IntervalControlHelperTest extends UnitFessTestCase {
    
        private IntervalControlHelper intervalControlHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            intervalControlHelper = new IntervalControlHelper();
        }
    
        public void test_noRule() {
            assertEquals(0, intervalControlHelper.getDelay());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class FessLabelsTest extends UnitFessTestCase {
    
        private FessLabels fessLabels;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            fessLabels = new FessLabels();
        }
    
        /**
         * Test that assertPropertyNotNull throws exception for null input
         */
        public void test_assertPropertyNotNull_withNull() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

    public class FessUserBeanTest extends UnitFessTestCase {
    
        private FessUserBean fessUserBean;
        private TestFessUser testUser;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            testUser = new TestFessUser();
            fessUserBean = new FessUserBean(testUser);
        }
    
        public void test_getUserId() {
            // Test with normal user
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class DataStoreTest extends UnitFessTestCase {
    
        private DataStore dataStore;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        public void test_store_basic() {
            // Create a simple DataStore implementation for testing
            final AtomicBoolean storeCalled = new AtomicBoolean(false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java

                RenderDataUtil.register(data, "boostDocumentRuleItems", boostDocumentRuleService.getBoostDocumentRuleList(boostDocPager));
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(boostDocPager, form, op -> op.include("urlExpr", "boostExpr"));
                });
            });
        }
    
        private HtmlResponse asEditHtml() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

            return asHtml(path_AdminRole_AdminRoleJsp).renderWith(data -> {
                RenderDataUtil.register(data, "roleItems", roleService.getRoleList(rolePager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(rolePager, form, op -> op.include("id"));
                });
            });
        }
    
        private HtmlResponse asEditHtml() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/IndexForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.wizard;
    
    /**
     * Form class for the admin wizard index page.
     * This form handles the initial setup and configuration
     * in the administrative wizard interface.
     */
    public class IndexForm {
    
        /**
         * Default constructor for index form.
         * Creates a new instance with default values.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
Back to top