- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 23 for setRoot (0.04 seconds)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
final String host = paramMap.get(prefix + "host"); if (StringUtil.isNotBlank(host)) { config.setHost(host); } final String port = paramMap.get(prefix + "port"); if (StringUtil.isNotBlank(port)) { try { config.setPort(Integer.parseInt(port)); } catch (final NumberFormatException e) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 17.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/WebAuthenticationConfig.java
* <pre>{@code * WebAuthenticationConfig config = new WebAuthenticationConfig(); * config.setHost("example.com"); * config.setPort(80); * config.setCredentials(credentialsConfig); * }</pre> * * <p>Example usage for Form-based authentication:</p> * <pre>{@code * WebAuthenticationConfig config = new WebAuthenticationConfig(); * config.setHost("example.com"); * config.setAuthSchemeType(AuthSchemeType.FORM);
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Fri Jan 09 23:46:52 GMT 2026 - 6.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
// host/port/realm: only set if not blank (null means "any" - AuthScope.ANY equivalent) if (StringUtil.isNotBlank(getHostname())) { config.setHost(getHostname()); } if (getPort() != null) { config.setPort(getPort()); } if (StringUtil.isNotBlank(getAuthRealm())) { config.setRealm(getAuthRealm()); } // AuthSchemeType の設定Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 5.7K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
task.getDocumentationFiles().from(extension.getUserManual().getRoot()); task.getDocumentationRoot().convention(extension.getUserManual().getRoot()); task.getDestinationDirectory().convention(layout.getBuildDirectory().dir("tmp/" + task.getName())); });
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 22:33:18 GMT 2026 - 17.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java
*/ public abstract class UserManual { /** * The root of the user manual documentation. This is the source of the adoc files. */ public abstract DirectoryProperty getRoot(); /** * Source of snippets that can be inserted into the user manual */ public abstract DirectoryProperty getSnippets(); /**Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 22:33:18 GMT 2026 - 1.6K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
* @return The port number. */ public int getPort() { return port; } /** * Sets the port number. * @param port The port number. */ public void setPort(final int port) { this.port = port; } /** * Returns the username. * @return The username. */ public String getUsername() { return username; }Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Jan 04 09:30:17 GMT 2026 - 4.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordDbm.java
// --------------- protected final Map<String, PropertyGateway> _epgMap = newHashMap(); { setupEpg(_epgMap, et -> ((ElevateWord) et).getBoost(), (et, vl) -> ((ElevateWord) et).setBoost(DfTypeUtil.toFloat(vl)), "boost"); setupEpg(_epgMap, et -> ((ElevateWord) et).getCreatedBy(), (et, vl) -> ((ElevateWord) et).setCreatedBy(DfTypeUtil.toString(vl)), "createdBy");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
webConfig = new WebConfig(); webConfig.setName("Default"); webConfig.setAvailable(true); webConfig.setBoost(1.0f); webConfig.setConfigParameter(StringUtil.EMPTY); webConfig.setIntervalTime(1000); webConfig.setNumOfThread(3); webConfig.setSortOrder(1);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
try { if (isWebCrawlingPath(configPath)) { // web final WebConfig wConfig = new WebConfig(); wConfig.setAvailable(Constants.T); wConfig.setBoost(1.0f); wConfig.setCreatedBy(username); wConfig.setCreatedTime(now); if (form.depth != null) { wConfig.setDepth(form.depth); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 02:14:37 GMT 2026 - 16.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
protected transient volatile Map<ConfigName, Map<String, String>> configParameterMap; protected CrawlerClientFactory crawlerClientFactory = null; public WebConfig() { setBoost(1.0f); } @Override public String getDocumentBoost() { return getBoost().toString(); } @Override public String getIndexingTarget(final String input) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 10.3K bytes - Click Count (0)