Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for true (0.12 sec)

  1. src/main/java/org/codelibs/fess/job/CrawlJob.java

            addFessConfigProperties(cmdList);
            addFessSystemProperties(cmdList);
            addSystemProperty(cmdList, Constants.FESS_CONF_PATH, null, null);
            cmdList.add("-Dfess." + getExecuteType() + ".process=true");
            cmdList.add("-Dfess.log.path=" + (logFilePath != null ? logFilePath : systemHelper.getLogFilePath()));
            addSystemProperty(cmdList, "fess.log.name", getLogName("fess"), getLogName(StringUtil.EMPTY));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    resultMap.put("index", index);
                    resultMap.put("id", id);
                    resultMap.put("field", field);
                    resultMap.put("value", value.toString());
                    return true;
                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final String id = "001";
            final String field = "content";
            final String value = "test";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            }
            ExecutorService service = null;
            try {
                service = Executors.newFixedThreadPool(1);
                final AuthenticationContext context = new AuthenticationContext(authority, true, service);
                final Future<AuthenticationResult> future =
                        context.acquireTokenByRefreshToken(refreshToken, new ClientCredential(getClientId(), getClientSecret()), null, null);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                queryRequestBuilder.addAggregation(termsBuilder);
                queryRequestBuilder.setPreference(Constants.SEARCH_PREFERENCE_LOCAL);
                return true;
            }, (queryRequestBuilder, execTime, searchResponse) -> {
                final List<Map<String, String>> sessionIdList = new ArrayList<>();
                searchResponse.ifPresent(response -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            final AtomicBoolean resetJobs = new AtomicBoolean(false);
            try (CurlResponse response = ComponentUtil.getCurlHelper().post("/_bulk").onConnect((req, con) -> {
                con.setDoOutput(true);
                try (final BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(tempFile)));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                        builder.setQuery(QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), docId));
                        return true;
                    });
                }
                break;
            default:
                break;
            }
            return OptionalEntity.empty();
        }
    
        private HtmlResponse asListHtml() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

                queryBuilderList = new ArrayList<>();
            }
            queryBuilderList.add(builder);
        }
    
        protected void regOBA(String field) {
            registerOrderBy(field, true);
        }
    
        protected void regOBD(String field) {
            registerOrderBy(field, false);
        }
    
        protected void registerOrderBy(String field, boolean ascOrDesc) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                logger.debug("Search Role: {}:{}={}", type, name, value);
            }
            return value;
        }
    
        public void reloadConfiguration() {
            reloadConfiguration(true);
        }
    
        public void reloadConfiguration(final boolean resetJobs) {
            ComponentUtil.getSearchEngineClient().refresh();
    
            ComponentUtil.getSuggestHelper().init();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  9. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                } catch (final IOException e) {
                    throw new DictionaryException("Failed to write: " + line, e);
                }
            }
    
            public SynonymItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
                    try {
                        writer.write(item.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

    import org.w3c.dom.Node;
    import org.xml.sax.InputSource;
    
    public class FessPropTest extends UnitFessTestCase {
    
        @Override
        protected boolean isUseOneTimeContainer() {
            return true;
        }
    
        public void test_maxUsernameLength() throws IOException {
            FessProp.propMap.clear();
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
Back to top