Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for __ (6.46 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        protected DocMeta docMeta;
        protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties();
        protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties();
        protected EntityModifiedProperties __specifiedProperties;
        protected boolean __createdBySelect;
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

        protected DocMeta docMeta;
        protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties();
        protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties();
        protected EntityModifiedProperties __specifiedProperties;
        protected boolean __createdBySelect;
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    {"source":{"index":"__SOURCE_INDEX__","size":__SIZE__},"dest":{"index":"__DEST_INDEX__"}}
                    """;
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String source = template //
                    .replace("__SOURCE_INDEX__", fromIndex)//
                    .replace("__SIZE__", fessConfig.getIndexReindexSize())//
                    .replace("__DEST_INDEX__", toIndex);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 100 */
        String INDEX_REINDEX_SIZE = "index.reindex.size";
    
        /** The key of the configuration. e.g. {"source":{"index":"__SOURCE_INDEX__","size":__SIZE__},"dest":{"index":"__DEST_INDEX__"},"script":{"source":"__SCRIPT_SOURCE__"}} */
        String INDEX_REINDEX_BODY = "index.reindex.body";
    
        /** The key of the configuration. e.g. adaptive */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  5. src/main/resources/fess_config.properties

    image/x-icon=ico\n\
    image/png=png\n\
    image/svg+xml=svg\n\
    image/tiff=tiff\n\
    image/jpeg=jpg\n\
    
    index.reindex.size=100
    index.reindex.body={"source":{"index":"__SOURCE_INDEX__","size":__SIZE__},"dest":{"index":"__DEST_INDEX__"},"script":{"source":"__SCRIPT_SOURCE__"}}
    index.reindex.requests_per_second=adaptive
    index.reindex.refresh=false
    index.reindex.timeout=1m
    index.reindex.scroll=5m
    index.reindex.max_docs=
    
    # query
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

        protected DocMeta docMeta;
        protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties();
        protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties();
        protected EntityModifiedProperties __specifiedProperties;
        protected boolean __createdBySelect;
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                public OptionalEntity<WebConfig> getWebConfigByName(String name) {
                    final WebConfig webConfig = new WebConfig();
                    webConfig.setId("01T");
                    webConfig.setName("__TEMPLATE__");
                    return OptionalEntity.of(webConfig);
                }
            }, WebConfigService.class.getCanonicalName());
            ComponentUtil.register(new FileConfigService() {
                @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

        protected Map<String, Pair<Map<String, String>, List<Pair<Pattern, String>>>> relatedContentMap = Collections.emptyMap();
    
        protected String regexPrefix = "regex:";
    
        protected String queryPlaceHolder = "__QUERY__";
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            load();
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            assertEquals("_", ldapManager.replaceWithUnderscores("<"));
            assertEquals("_", ldapManager.replaceWithUnderscores(">"));
    
            assertEquals("_a_", ldapManager.replaceWithUnderscores("/a/"));
            assertEquals("___", ldapManager.replaceWithUnderscores("///"));
            assertEquals("a_a", ldapManager.replaceWithUnderscores("a/a"));
        }
    
        public void test_allowEmptyGroupAndRole() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top