- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for Name (0.02 sec)
-
PluginHelper.java
isExcludedName(final ArtifactType artifactType, final String name) { L167: if (artifactType != ArtifactType.CRAWLER) { L168: return false; L169: } L170: L171: if ("fess-crawler".equals(name)// L172: || "fess-crawler-db".equals(name)// L173: || "fess-crawler-db-h2".equals(name)// L174: || "fess-crawler-db-mysql".equals(name)// L175: || "fess-crawler-es".equals(name)// L176: || "fess-crawler-lasta".equals(name)//...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 01:47:10 UTC 2024 17.8K bytes -
fess_config.properties
pping L779:online.help.name.webconfig=webconfig L780:online.help.name.searchlist=searchlist L781:online.help.name.log=log L782:online.help.name.general=general L783:online.help.name.role=role L784:online.help.name.joblog=joblog L785:online.help.name.keymatch=keymatch L786:online.help.name.relatedquery=relatedquery L787:online.help.name.relatedcontent=relatedcontent L788:online.help.name.wizard=wizard L789:online.help.name.badword=badword L790:online.help.name.pathmap=pathmap L791:online.help.name.boostdoc=boostdoc...github.com/codelibs/fess/src/main/resources/fes...Tue Oct 01 14:13:38 UTC 2024 30.9K bytes -
SpnegoAuthenticator.java
if (SpnegoHttpFilter.Constants.LOGIN_CONF.equals(name)) { L196: return getResourcePath(getProperty(SPNEGO_LOGIN_CONF, "auth_login.conf")); L197: } L198: if (SpnegoHttpFilter.Constants.KRB5_CONF.equals(name)) { L199: return getResourcePath(getProperty(SPNEGO_KRB5_CONF, "krb5.conf")); L200: } L201: if (SpnegoHttpFilter.Constants.CLIENT_MODULE.equals(name)) { L202: return getProperty(SPNEGO_LOGIN_CLIENT_MODULE,...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 11.2K bytes -
esclient.xml
</property> L20: <!-- Dictionaries --> L21: <postConstruct name="addConfigFile"> L22: <arg>"fess"</arg> L23: <arg>"mapping.txt"</arg> L24: </postConstruct> L25: <postConstruct name="addConfigFile"> L26: <arg>"fess"</arg> L27: <arg>"synonym.txt"</arg> L28: </postConstruct> L29: <postConstruct name="addConfigFile"> L30: <arg>"fess"</arg> L31: <arg>"ar/protwords.txt"</arg> L32: </postConstruct> L33: <postConstruct name="addConfigFile"> L34: <arg>"fess"</arg> L35: <arg>"ca/protwords.txt"</arg>...github.com/codelibs/fess/src/main/resources/esc...Mon Oct 21 12:20:52 UTC 2024 16K bytes -
openapi-user.yaml
exclusiveMaximum: false L72: default: 20 L73: example: 20 L74: - name: sort L75: in: query L76: description: Sorted field name L77: required: false L78: schema: L79: type: string L80: example: score L81: - name: fields.label L82: in: query L83: description: Filtered label name L84: required: false L85: style: form L86: explode: true L87: schema:...github.com/codelibs/fess/src/main/config/openap...Thu May 09 06:31:27 UTC 2024 21.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 -
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 -
advance.jsp
L325: <div class="col-lg-5 col-md-8 col-sm-7 col-xs-6"> L326: <input class="form-control" type="text" id="as_sitesearch" name="as.sitesearch" value="${f:h(fe:join(as.sitesearch))}"> L327: </div> L328: <div class="col-lg-4 d-none d-lg-flex align-items-center"> L329: </div> L330: </div> L331: L332: <div class="row"> L333: <button type="submit" name="search" id="searchButton" class="btn btn-primary mx-auto"> L334: <em class="fa fa-search"> L335: <la:message key="...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
advance.jsp
L325: <div class="col-lg-5 col-md-8 col-sm-7 col-xs-6"> L326: <input class="form-control" type="text" id="as_sitesearch" name="as.sitesearch" value="${f:h(fe:join(as.sitesearch))}"> L327: </div> L328: <div class="col-lg-4 d-none d-lg-flex align-items-center"> L329: </div> L330: </div> L331: L332: <div class="row"> L333: <button type="submit" name="search" id="searchButton" class="btn btn-primary mx-auto"> L334: <em class="fa fa-search"> L335: <la:message key="...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
AbstractFessFileTransformer.java
getResourceName(final ResponseData responseData) { L404: String name = responseData.getUrl(); L405: final String enc = responseData.getCharSet(); L406: L407: if (name == null || enc == null) { L408: return null; L409: } L410: L411: name = name.replaceAll("/+$", StringUtil.EMPTY); L412: final int idx = name.lastIndexOf('/'); L413: if (idx >= 0) { L414: name = name.substring(idx + 1); L415: } L416: try { L417: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 23.6K bytes