- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 871 for _blank (0.14 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
return "Unknown error"; } final Supplier<String> stacktraceString = () -> { final StringBuilder sb = new StringBuilder(); if (StringUtil.isBlank(cause.getMessage())) { sb.append(cause.getClass().getName()); } else { sb.append(cause.getMessage()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} } return LaResponseUtil.getResponse().encodeURL(sb.toString()); } public static String sdh(final String input) { if (StringUtil.isBlank(input)) { return input; } return ComponentUtil.getDocumentHelper().encodeSimilarDocHash(input); } public static String join(final Object input) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
return userBhv.selectEntity(cb -> { cb.query().setName_Equal(username); }); } public void store(final User user) { if (StringUtil.isBlank(user.getSurname())) { user.setSurname(user.getName()); } ComponentUtil.getAuthenticationManager().insert(user); userBhv.insertOrUpdate(user, op -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} } private static int process(final Options options) { final Crawler crawler = ComponentUtil.getComponent(Crawler.class); if (StringUtil.isBlank(options.sessionId)) { // use a default session id final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); options.sessionId = sdf.format(new Date()); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java
dfos = out; CopyUtil.copy(in, out); out.flush(); Extractor extractor = StringUtil.isBlank(mimeType) ? null : extractorFactory.getExtractor(mimeType); if (extractor == null) { final String detectedMimeType = getMimeType(out);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/esreq/AdminEsreqAction.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.2K bytes - Viewed (0) -
ci/official/utilities/convert_msys_paths_to_win_paths.py
""" import argparse import os def should_convert(var_name: str, blacklist: list[str] | None, whitelist_prefix: list[str] | None): """Check the variable name against white/black lists.""" if blacklist and var_name in blacklist: return False if not whitelist_prefix: return True for prefix in whitelist_prefix: if var_name.startswith(prefix): return True
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
protected boolean isEmptyArray(final String[] values) { if (values == null || values.length == 0) { return true; } return stream(values).get(stream -> stream.allMatch(StringUtil::isBlank)); } protected static String[] simplifyArray(final String[] values) { return stream(values).get(stream -> stream.filter(StringUtil::isNotBlank).distinct().toArray(n -> new String[n])); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/PingResponse.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.9K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
} protected String getScriptType(final DataStoreParams paramMap) { final String value = paramMap.getAsString(SCRIPT_TYPE); if (StringUtil.isBlank(value)) { return Constants.DEFAULT_SCRIPT; } return value; } protected Object convertValue(final String scriptType, final String template, final Map<String, Object> paramMap) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.3K bytes - Viewed (0)