Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for init (0.2 sec)

  1. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  3. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  4. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/query/QueryProcessorTest.java

    import org.codelibs.fess.query.QueryProcessor.FilterChain;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    public class QueryProcessorTest extends UnitFessTestCase {
    
        public void test_executeWithFilter() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SambaHelper.java

        public static final int SID_TYPE_ALIAS = 4;
    
        public static final int SID_TYPE_DELETED = 6;
    
        public static final int SID_TYPE_DOM_GRP = 2;
    
        public static final int SID_TYPE_DOMAIN = 3;
    
        public static final int SID_TYPE_INVALID = 7;
    
        public static final int SID_TYPE_UNKNOWN = 8;
    
        public static final int SID_TYPE_USE_NONE = 0;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

    import org.codelibs.fess.es.config.exentity.PathMapping;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class PathMappingHelperTest extends UnitFessTestCase {
    
        public PathMappingHelper pathMappingHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            pathMappingHelper = new PathMappingHelper();
            pathMappingHelper.init();
        }
    
        public void test_setPathMappingList() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

    public class DictionaryManager {
        private static final Logger logger = LogManager.getLogger(DictionaryManager.class);
    
        protected List<DictionaryCreator> creatorList = new ArrayList<>();
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            creatorList.forEach(creator -> {
                creator.setDictionaryManager(this);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

        protected volatile Map<String, Map<String, List<Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>>>>> keyMatchQueryMap =
                Collections.emptyMap();
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            load();
        }
    
        public List<KeyMatch> getAvailableKeyMatchList() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K 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 09 15:34:10 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 2.5K bytes
    - Viewed (1)
Back to top