Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 927 for setups (0.04 sec)

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

    public class FessXpathTransformerTest extends UnitFessTestCase {
        private static final Logger logger = LogManager.getLogger(FessXpathTransformerTest.class);
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new DataSerializer(), "dataSerializer");
        }
    
        public void test_transform() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

                RenderDataUtil.register(data, "displayCreateLink",
                        !crawlingConfigHelper.getAllWebConfigList(false, false, false, null).isEmpty());
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(webAuthPager, 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
    - 20.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

                RenderDataUtil.register(data, "relatedQueryItems", relatedQueryService.getRelatedQueryList(relatedQueryPager));
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(relatedQueryPager, form, op -> op.include("term", "queries"));
                });
            });
        }
    
        private HtmlResponse asEditHtml() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/PrunedTag.java

         */
        public void setCss(final String css) {
            this.css = css;
        }
    
        /**
         * Sets a custom attribute name-value pair that this pruned tag should match.
         *
         * @param name the attribute name to match
         * @param value the attribute value to match
         */
        public void setAttr(final String name, final String value) {
            attrName = name;
            attrValue = value;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

                RenderDataUtil.register(data, "displayCreateLink",
                        !crawlingConfigHelper.getAllFileConfigList(false, false, false, null).isEmpty());
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(fileAuthenticationPager, form, op -> op.include("id"));
                });
            });
        }
    
        /**
         * Returns HTML response for the edit page.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.10.md

        * kubeadm upgrade now successfully upgrades etcd and the controlplane to use TLS
        * kubeadm upgrade now supports external etcd setups
        * kubeadm upgrade can now rollback and restore etcd after an upgrade failure
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.23.md

    The kube-scheduler is adding a new, simplified config field for Plugins to allow multiple extension points to be enabled in one spot.
    The new `multiPoint` plugin field is intended to simplify most scheduler setups for administrators.
    Plugins that are enabled via `multiPoint` will automatically be registered for each individual extension point that they implement.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/UserService.java

            return userBhv.selectEntity(cb -> {
                cb.query().setName_Equal(username);
            });
        }
    
        /**
         * Stores (inserts or updates) a user in the system.
         * Handles user authentication setup and database persistence.
         * If the surname is blank, it will be set to the user's name.
         *
         * @param user the user entity to store
         */
        public void store(final User user) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class WebFsIndexHelperTest extends UnitFessTestCase {
    
        private WebFsIndexHelper webFsIndexHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            webFsIndexHelper = new WebFsIndexHelper();
        }
    
        public void test_crawl_withNullParameters() {
            try {
                webFsIndexHelper.crawl("sessionId", null, null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/Crawler.java

                logger.info("Destroyed LaContainer.");
            }
        }
    
        /**
         * Main processing method that coordinates the entire crawling workflow.
         * This method handles session setup, crawler initialization, crawling execution,
         * and cleanup operations.
         *
         * @param options parsed command-line options containing crawling configuration
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
Back to top