Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 515 for init (0.17 sec)

  1. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

    import org.codelibs.fess.es.config.exentity.PathMapping;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    
    public class ViewHelperTest extends UnitFessTestCase {
        public ViewHelper viewHelper;
    
        private UserAgentHelper userAgentHelper;
    
        private PathMappingHelper pathMappingHelper;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

    public class TermQueryCommandTest extends UnitFessTestCase {
        private static final Logger logger = LogManager.getLogger(TermQueryCommandTest.class);
    
        private TermQueryCommand queryCommand;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    
            QueryFieldConfig queryFieldConfig = new QueryFieldConfig();
            queryFieldConfig.init();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

        protected volatile List<LabelTypePattern> labelTypePatternList;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            load();
        }
    
        @Override
        public int load() {
            final List<LabelType> labelTypeList = ComponentUtil.getComponent(LabelTypeService.class).getLabelTypeList();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

        private static final Logger logger = LogManager.getLogger(RelatedQueryHelper.class);
    
        protected volatile Map<String, Map<String, String[]>> relatedQueryMap = Collections.emptyMap();
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            load();
        }
    
        public List<RelatedQuery> getAvailableRelatedQueryList() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/packaging/rpm/init.d/fess

    ### END INIT INFO
    
    #
    # init.d / servicectl compatibility (openSUSE)
    #
    if [ -f /etc/rc.status ]; then
        . /etc/rc.status
        rc_reset
    fi
    
    #
    # Source function library.
    #
    if [ -f /etc/rc.d/init.d/functions ]; then
        . /etc/rc.d/init.d/functions
    fi
    
    # Sets the default values for fess variables used in this script
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

        protected String encoding;
    
        protected ServletContext servletContext;
    
        protected URLCodec urlCodec = new URLCodec();
    
        @Override
        public void init(final FilterConfig config) throws ServletException {
            servletContext = config.getServletContext();
    
            encoding = config.getInitParameter(LastaPrepareFilter.ENCODING_KEY);
            if (encoding == null) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            int exitCode;
            try {
                SingletonLaContainerFactory.setConfigPath("app.xml");
                SingletonLaContainerFactory.setExternalContext(new GenericExternalContext());
                SingletonLaContainerFactory.setExternalContextComponentDefRegister(new GenericExternalContextComponentDefRegister());
                SingletonLaContainerFactory.init();
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  8. pom.xml

    								<type>perm</type>
    								<user>root</user>
    								<group>root</group>
    							</mapper>
    						</data>
    						<!-- Add init.d files -->
    						<data>
    							<type>file</type>
    							<src>${project.build.directory}/generated-packaging/deb/init.d/fess</src>
    							<dst>/etc/init.d/fess</dst>
    							<mapper>
    								<type>perm</type>
    								<filemode>755</filemode>
    								<user>root</user>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        protected final Map<String, CrawlingConfig> crawlingConfigMap = new ConcurrentHashMap<>();
    
        protected int count = 1;
    
        protected Cache<String, CrawlingConfig> crawlingConfigCache;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/curl/CurlTest.java

                TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
                trustManagerFactory.init(keyStore);
    
                SSLContext sslContext = SSLContext.getInstance("TLS");
                sslContext.init(null, trustManagerFactory.getTrustManagers(), null);
    
                Curl.get("https://localhost:9200/").sslSocketFactory(sslContext.getSocketFactory()).execute(response -> {
    Java
    - Registered: Thu May 02 15:34:13 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 2.5K bytes
    - Viewed (1)
Back to top