Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for __ (0.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

            if (executionMode == ExecutionMode.KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS) {
                File[] psOutputs = rootProjectDir.listFiles((__, name) -> name.endsWith(".psoutput") || name.endsWith(".threaddump"));
                if (psOutputs != null) {
                    Stream.of(psOutputs).forEach(File::delete);
                }
            }
        }
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 26 09:46:00 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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)
  10. guava/src/com/google/common/base/Splitter.java

       * or trailing characters matching the given {@code CharMatcher} from each returned substring. For
       * example, {@code Splitter.on(',').trimResults(CharMatcher.is('_')).split("_a ,_b_ ,c__")}
       * returns an iterable containing {@code ["a ", "b_ ", "c"]}.
       *
       * @param trimmer a {@link CharMatcher} that determines whether a character should be removed from
       *     the beginning/end of a subsequence
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 24.4K bytes
    - Viewed (0)
Back to top