- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for name (0.05 sec)
-
ResourceUtil.java
join("/", names)).toPath(); L92: } L93: L94: public static Path getClassesPath(final String... names) { L95: return getPath("WEB-INF/", "classes", names); L96: } L97: L98: public static Path getOrigPath(final String... names) { L99: return getPath("WEB-INF/", "orig", names); L100: } L101: L102: public static Path getMailTemplatePath(final String... names) { L103: return getPath("WEB-INF/", "mail", names); L104: } L105: L106: public static Path getViewTemplatePath(final...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 08:52:32 UTC 2024 7.5K bytes -
FessProp.java
L1991: final String myName = getSchedulerTargetName(); L1992: L1993: final String[] targets = target.split(","); L1994: for (String name : targets) { L1995: name = name.trim(); L1996: if (Constants.DEFAULT_JOB_TARGET.equalsIgnoreCase(name) || StringUtil.isNotBlank(myName) && myName.equalsIgnoreCase(name)) { L1997: return true; L1998: } L1999: } L2000: return false; L2001: } L2002: L2003: String getApiGsaResponseHeaders();...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 87.2K bytes -
OpenIdConnectCredential.java
FessUser { L79: L80: private static final long serialVersionUID = 1L; L81: L82: protected final String name; L83: L84: protected String[] groups; L85: L86: protected String[] roles; L87: L88: protected String[] permissions; L89: L90: protected OpenIdUser(final String name, final String[] groups, final String[] roles) { L91: this.name = name; L92: this.groups = groups; L93: this.roles = roles; L94: } L95: L96: @Override...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.2K bytes -
ExecJob.java
return this; L134: } L135: L136: protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) { L137: final String value = System.getProperty(name); L138: if (value != null) { L139: final StringBuilder buf = new StringBuilder(); L140: buf.append("-D").append(name).append("=").append(value); L141: if (appendValue != null) { L142: buf.append(appendValue);...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 7.7K bytes -
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 -
FessConfig.java
ONLINE_HELP_NAME_DICT_SYNONYM = "online.help.name.dict.synonym"; L1469: L1470: /** The key of the configuration. e.g. dict */ L1471: String ONLINE_HELP_NAME_DICT = "online.help.name.dict"; L1472: L1473: /** The key of the configuration. e.g. kuromoji */ L1474: String ONLINE_HELP_NAME_DICT_KUROMOJI = "online.help.name.dict.kuromoji"; L1475: L1476: /** The key of the configuration. e.g. protwords */ L1477: String ONLINE_HELP_NAME_DICT_PROTWORDS = "online.help.name.dict.protwords"; L1478: L1479:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
SearchApiManager.java
entry : doc.entrySet()) { L236: final String name = entry.getKey(); L237: if (StringUtil.isNotBlank(name) && entry.getValue() != null) { L238: if (!first2) { L239: buf.append(','); L240: } else { L241: first2 = false; L242: } L243: buf.append(escapeJson(name)); L244: buf.append(':'); L245: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K 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