- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for name (0.02 sec)
-
SystemHelper.java
} L477: L478: public String getSearchRoleByUser(final String name) { L479: return createSearchRole(ComponentUtil.getFessConfig().getRoleSearchUserPrefix(), name); L480: } L481: L482: public String getSearchRoleByGroup(final String name) { L483: return createSearchRole(ComponentUtil.getFessConfig().getRoleSearchGroupPrefix(), name); L484: } L485: L486: public String getSearchRoleByRole(final String name) { L487: return createSearchRole(ComponentUtil.getFessCon...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
AdminBackupAction.java
getBackupItems() { L605: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L606: return stream(fessConfig.getIndexBackupAllTargets()).get(stream -> stream.map(name -> { L607: final Map<String, String> map = new HashMap<>(); L608: map.put("id", name); L609: map.put("name", name); L610: return map; L611: }).collect(Collectors.toList())); L612: } L613: L614: private HtmlResponse asListHtml() { L615: return asHtml(path_Ad...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
AdminMaintenanceAction.java
protected void writeFesenCat(final ZipOutputStream zos, final String id) { L193: Arrays.stream(CAT_NAMES).forEach(name -> { L194: final ZipEntry entry = new ZipEntry(id + "/es_cat_" + name + ".txt"); L195: try { L196: zos.putNextEntry(entry); L197: try (CurlResponse response = ComponentUtil.getCurlHelper().get("/_cat/" + name).param("v", "").execute()) { L198: CopyUtil.copy(response.getContentAsStream(), zos); L199: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 14K bytes -
SuggestHelper.java
searchLog.getSearchFieldLogList()) { L185: final String name = searchFieldLog.getFirst(); L186: if (contentFieldNameSet.contains(name)) { L187: if (sb.length() > 0) { L188: sb.append(TEXT_SEP); L189: } L190: sb.append(searchFieldLog.getSecond()); L191: fields.add(name); L192: } else if (tagFieldNameSet.contains(name)) { L193: tags.add(searchFieldLog.getSecond());...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.1K bytes -
FessXpathTransformer.java
String X_ROBOTS_TAG = "X-Robots-Tag"; L92: L93: private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content"; L94: L95: private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content"; L96: L97: private static final String META_NAME_ROBOTS_CONTENT = "//META[@name=\"robots\" or @name=\"ROBOTS\"]/@content"; L98: L99: private static final String ROBOTS_TAG_NONE = "none"; L100: L101: private static...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 13:01:38 UTC 2024 42.9K bytes -
FessMultipartRequestHandler.java
Attribute L69: // ========= L70: // keeping parsed request parameters, normal texts or uploaded files L71: // keys are requested parameter names (treated as field name here) L72: protected Map<String, Object> elementsAll; // lazy-loaded, then after not null L73: protected Map<String, MultipartFormFile> elementsFile; // me too L74: protected Map<String, String[]> elementsText; // me too L75: L76:...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
Crawler.java
errors.offer(msg); L110: } L111: } L112: L113: public static class Options { L114: L115: @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID") L116: public String sessionId; L117: L118: @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name") L119: public String name; L120: L121: @Option(name = "-w", aliases = "--webConfigIds", metaVar = "webConfigIds", usage = "Web Config IDs") L122: public String...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes -
AdminSchedulerAction.java
L142: scheduledJobForm.available = Constants.ON; L143: scheduledJobForm.cronExpression = null; L144: final String decodedName = new String(Base64.getUrlDecoder().decode(name), Constants.CHARSET_UTF_8); L145: scheduledJobForm.name = MessageFormat.format(fessConfig.getJobTemplateTitle(type), decodedName); L146: final String[] ids = { "", "", "" }; L147: if (Constants.WEB_CRAWLER_TYPE.equals(type)) { L148: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 18.1K bytes -
ViewHelper.java
null) { L730: charset = Constants.UTF_8; L731: } L732: final String name; L733: final String url = responseData.getUrl(); L734: final int pos = url.lastIndexOf('/'); L735: try { L736: if (pos >= 0 && pos + 1 < url.length()) { L737: name = URLDecoder.decode(url.substring(pos + 1), charset); L738: } else { L739: name = URLDecoder.decode(url, charset); L740: } L741: L742: final String...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
RankFusionProcessor.java
L390: L391: @Override L392: public String[] getExtraQueries() { L393: return parent.getExtraQueries(); L394: } L395: L396: @Override L397: public Object getAttribute(final String name) { L398: return parent.getAttribute(name); L399: } L400: L401: @Override L402: public Locale getLocale() { L403: return parent.getLocale(); L404: } L405: L406: @Override L407: public SearchRequestType getType()...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.3K bytes