- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 320 for Docstring (0.04 sec)
-
StemmerOverrideFile.java
update(final InputStream in) throws IOException { L201: try (StemmerOverrideUpdater updater = new StemmerOverrideUpdater(null)) { L202: reload(updater, in); L203: } L204: } L205: L206: @Override L207: public String toString() { L208: return "StemmerOverrideFile [path=" + path + ", stemmerOverrideItemList=" + stemmerOverrideItemList + ", id=" + id + "]"; L209: } L210: L211: protected class StemmerOverrideUpdater implements Closeable { L212: L213: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
SuggestCreator.java
= "--properties", metaVar = "properties", usage = "Properties File") L65: protected String propertiesPath; L66: L67: protected Options() { L68: // nothing L69: } L70: L71: @Override L72: public String toString() { L73: return "Options [sessionId=" + sessionId + ", name=" + name + ", propertiesPath=" + propertiesPath + "]"; L74: } L75: } L76: L77: static void initializeProbes() { L78: // Force probes to be loaded L79: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 10K bytes -
KuromojiFile.java
synchronized void update(final InputStream in) throws IOException { L190: try (KuromojiUpdater updater = new KuromojiUpdater(null)) { L191: reload(updater, in); L192: } L193: } L194: L195: @Override L196: public String toString() { L197: return "KuromojiFile [path=" + path + ", kuromojiItemList=" + kuromojiItemList + ", id=" + id + "]"; L198: } L199: L200: protected class KuromojiUpdater implements Closeable { L201: L202: protected boolean isCommit =...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.7K bytes -
EsAbstractBehavior.java
L535: if (value instanceof String[]) { L536: return (String[]) value; L537: } else if (value instanceof List) { L538: return ((List<?>) value).stream().map(v -> v.toString()).toArray(n -> new String[n]); L539: } L540: String str = DfTypeUtil.toString(value); L541: if (str == null) { L542: return null; L543: } L544: return new String[] { str }; L545: } L546: L547: protected LocalDateTime toLocalDateTime(Object...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 26.4K bytes -
SpnegoAuthenticator.java
logger.debug("principal={}", principal); L151: } L152: L153: final String[] username = principal.getName().split("@", 2); L154: if (logger.isDebugEnabled()) { L155: logger.debug("username: {}", Arrays.toString(username)); L156: } L157: return new SpnegoCredential(username[0]); L158: }).orElseGet(() -> null); L159: L160: } L161: L162: protected static class SpengoConfig implements FilterConfig { L163: L164: @Override...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 11.2K bytes -
CommandChain.java
public String getOutput() { L260: final StringBuilder buf = new StringBuilder(100); L261: for (final String value : list) { L262: buf.append(value).append("\n"); L263: } L264: return buf.toString(); L265: } L266: L267: } L268: L269: public void setWorkingDirectory(final File workingDirectory) { L270: this.workingDirectory = workingDirectory; L271: } L272: L273: public void setMaxOutputLine(final int maxOutputLine)...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.3K bytes -
QueryResponseList.java
facetResponse; L311: } L312: L313: public boolean isPartialResults() { L314: return partialResults; L315: } L316: L317: public long getQueryTime() { L318: return queryTime; L319: } L320: L321: @Override L322: public String toString() { L323: return "QueryResponseList [parent=" + parent + ", start=" + start + ", offset=" + offset + ", pageSize=" + pageSize L324: + ", currentPageNumber=" + currentPageNumber + ", allRecordCount=" + allRecordCount + ", al...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 8.9K bytes -
BsRoleBhv.java
L73: protected <RESULT extends Role> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setName(DfTypeUtil.toString(source.get("name"))); L77: return updateEntity(source, result); L78: } catch (InstantiationException | IllegalAccessException e) { L79: final String msg = "Cannot create a new instance: " + entityType.getName(); L80:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 8.8K bytes -
AdminWizardAction.java
L149: buf.append(URLEncoder.encode(String.valueOf(c), Constants.UTF_8)); L150: } catch (final UnsupportedEncodingException e) {} L151: } L152: } L153: configPath = convertCrawlingPath(buf.toString()); L154: L155: final String username = systemHelper.getUsername(); L156: final long now = systemHelper.getCurrentTimeAsLong(); L157: L158: try { L159: if (isWebCrawlingPath(configPath)) { L160: // web...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 12.7K bytes -
AdminWebauthAction.java
final List<WebConfig> webConfigList = crawlingConfigHelper.getAllWebConfigList(false, false, false, null); L308: for (final WebConfig webConfig : webConfigList) { L309: itemList.add(createItem(webConfig.getName(), webConfig.getId().toString())); L310: } L311: RenderDataUtil.register(data, "webConfigItems", itemList); L312: } L313: L314: protected Map<String, String> createItem(final String label, final String value) { L315: final Map<String, String> map =...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.7K bytes