Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for wchar (0.02 sec)

  1. SynonymFile.java

    0) { L215: list.add(sb.toString()); L216: sb = new StringBuilder(); L217: } L218: pos += separator.length(); L219: continue; L220: } L221: L222: char ch = s.charAt(pos); L223: pos++; L224: if (ch == '\\') { L225: sb.append(ch); L226: if (pos >= end) { L227: break; // ERROR, or let it go? L228: } L229: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      12.5K bytes
  2. CrawlingInfoHelper.java

    }); L203: } L204: L205: protected String generateId(final String urlId) { L206: final StringBuilder encodedBuf = new StringBuilder(urlId.length() + 100); L207: for (int i = 0; i < urlId.length(); i++) { L208: final char c = urlId.charAt(i); L209: if (c >= 'a' && c <= 'z' // L210: || c >= 'A' && c <= 'Z' // L211: || c >= '0' && c <= '9' // L212: || c == '.' // L213: || c == '-' //...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.6K bytes
  3. LabelTypeHelper.java

    value; L245: L246: final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); L247: if (StringUtil.isNotBlank(includedPaths)) { L248: final StringBuilder buf = new StringBuilder(100); L249: char split = 0; L250: for (final String path : includedPaths.split("\n")) { L251: if (split == 0) { L252: split = '|'; L253: } else { L254: buf.append(split);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      11.7K bytes
  4. AdminWizardAction.java

    configName = StringUtils.abbreviate(configPath, 30); L135: } L136: L137: // normalize L138: final StringBuilder buf = new StringBuilder(1000); L139: for (int i = 0; i < configPath.length(); i++) { L140: final char c = configPath.charAt(i); L141: if (c == '\\') { L142: buf.append('/'); L143: } else if (c == ' ') { L144: buf.append("%20"); L145: } else if (CharUtil.isUrlChar(c)) { L146: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.7K bytes
  5. SystemHelper.java

    == null) { L240: return path; L241: } L242: L243: try { L244: final StringBuilder buf = new StringBuilder(path.length() + 100); L245: for (int i = 0; i < path.length(); i++) { L246: final char c = path.charAt(i); L247: if (CharUtil.isUrlChar(c) || c == '^' || c == '{' || c == '}' || c == '|' || c == '\\') { L248: buf.append(c); L249: } else { L250: buf.append(URLEncoder...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  6. GsaConfigParser.java

    ueue.get(tagQueue.size() - 2))) { L220: userAgent = textBuf.toString().trim(); L221: } L222: tagQueue.pollLast(); L223: textBuf.setLength(0); L224: } L225: L226: @Override L227: public void characters(final char[] ch, final int start, final int length) throws SAXException { L228: final String text = new String(ch, start, length); L229: if (logger.isDebugEnabled()) { L230: logger.debug("Text: {}", text); L231: } L232: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      14.1K bytes
  7. ViewHelper.java

    "file:"); L344: } L345: L346: if (isHttpUrl && isSmbOrFtpUrl) { L347: // smb/ftp->http L348: // encode L349: final StringBuilder buf = new StringBuilder(url.length() + 100); L350: for (final char c : url.toCharArray()) { L351: if (CharUtil.isUrlChar(c)) { L352: buf.append(c); L353: } else { L354: try { L355: buf.append(URLEncoder.encode(String.valueOf(c),...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      40.2K bytes
Back to top