- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 182 for getAs (0.15 seconds)
-
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
return getAs(key, defaultValue, s -> s); } /** * Retrieves a setting value as an int. * @param key The key of the setting. * @param defaultValue The default value if the setting is not found. * @return The setting value as an int. */ public int getAsInt(final String key, final int defaultValue) { return getAs(key, defaultValue, Integer::parseInt); }Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 18.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmChatResponse.java
* * @param content the response content */ public LlmChatResponse(final String content) { this.content = content; } /** * Gets the response content. * * @return the content */ public String getContent() { return content; } /** * Sets the response content. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
initProcesses.clear(); } } /** * Gets a cached cipher by name. * @param cipherName The cipher name. * @return The cached cipher. */ public static CachedCipher getCipher(final String cipherName) { return getComponent(cipherName); } /** * Gets the system properties. * @return The dynamic properties. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
numOfFragments = fessConfig.getQueryHighlightNumberOfFragmentsAsInteger(); fragmentOffset = fessConfig.getQueryHighlightFragmentOffsetAsInteger(); } /** * Gets the highlighting type. * * @return the highlighting type */ public String getType() { return type; } /** * Sets the highlighting type with fluent interface. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 10:17:07 GMT 2026 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/util/MapValueExtractor.java
} /** * Gets a String value from the map. * * @param map The source map * @param key The key to look up * @return The string value, or null if the key doesn't exist or value is null */ public static String getString(final Map<String, Object> map, final String key) { return getString(map, key, null); } /**Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 9.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/CookieConfig.java
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 14:22:26 GMT 2026 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/TimeoutSettings.java
} /** * Gets the bulk timeout. * @return The bulk timeout. */ public String getBulkTimeout() { return bulkTimeout; } /** * Sets the bulk timeout. * @param timeout The bulk timeout. */ public void setBulkTimeout(final String timeout) { this.bulkTimeout = timeout; } /** * Gets the indices timeout.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 3.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/WebAuthenticationConfig.java
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) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* Gets the file model + build pom transformation, without inheritance nor interpolation. * * @return The raw model, never {@code null}. */ @Nonnull Model getRawModel(); /** * Gets the effective model of the parent POM. * * @return the effective model of the parent POM, never {@code null} */ @Nonnull Model getParentModel(); /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 4.2K bytes - Click Count (0)