- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 1,060 for getI (1.28 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
registration.incrementHeartbeatFailures(); } } /** * Gets the witness server address. * * @return the witness server address */ public InetAddress getWitnessServer() { return witnessServer; } /** * Gets the number of active registrations. * * @return the number of active registrations */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
assertNotNull(metaDataMap); assertEquals(3, metaDataMap.size()); assertEquals("value1", metaDataMap.get("key1")); assertEquals(123, metaDataMap.get("key2")); assertEquals(true, metaDataMap.get("key3")); } public void test_metaDataMapModifiable() { // Test that metadata map is modifiable ResponseData data = new ResponseData();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
} throwValidationError(messages -> messages.addErrorsCouldNotFindLogFile(GLOBAL, filename), this::asIndexHtml); return redirect(getClass()); // no-op } /** * Gets a list of log file items for display in the admin interface. * * @return list of maps containing log file information (id, name, lastModified, size) */ public static List<Map<String, Object>> getLogFileItems() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
form.permissions = stream(entity.getPermissions()).get(stream -> stream.map(s -> permissionHelper.decode(s)) .filter(StringUtil::isNotBlank) .distinct() .collect(Collectors.joining("\n"))); form.virtualHosts = stream(entity.getVirtualHosts())
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
return userInfo; } /** * Gets user information. * * @param userCode The user code. * @return The user information. */ public OptionalEntity<UserInfo> getUserInfo(final String userCode) { if (StringUtil.isNotBlank(userCode)) { try { return OptionalEntity.of(userInfoCache.get(userCode)); } catch (final ExecutionException e) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
} /** * Gets the web crawling configuration generated from the parsed GSA config. * * @return an optional containing the web configuration, or empty if no web URLs were found */ public OptionalEntity<WebConfig> getWebConfig() { return OptionalUtil.ofNullable(webConfig); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java
} maxLengthMap.put(mimeType, maxLength); } /** * Gets the maximum content length for a specific MIME type. * If no specific length is set for the MIME type, returns the default maximum length. * @param mimeType The MIME type to get the maximum length for * @return The maximum content length in bytes */ public long getMaxLength(final String mimeType) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/ParamMap.java
public boolean containsValue(final Object value) { return parent.containsValue(value); } @Override public V get(final Object key) { final V value = parent.get(key); if (value != null) { return value; } return parent.get(toCamelCase(key)); } @Override public V put(final K key, final V value) { return parent.put(key, value);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
public boolean hasSorts() { return !sortBuilderList.isEmpty(); } /** * Gets the list of sort builders for this query context. * @return The list of sort builders. */ public List<SortBuilder<?>> sortBuilders() { return sortBuilderList; } /** * Gets the query builder for this context. * @return The query builder. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0)