Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. KuromojiCSVUtil.java

    java.util.ArrayList; L36:import java.util.regex.Matcher; L37:import java.util.regex.Pattern; L38: L39:/** L40: * Utility class for parsing CSV text L41: */ L42:public final class KuromojiCSVUtil { L43: private static final char QUOTE = '"'; L44: L45: private static final char COMMA = ','; L46: L47: private static final Pattern QUOTE_REPLACE_PATTERN = Pattern.compile("^\"([^\"]+)\"$"); L48: L49: private static final String ESCAPED_QUOTE = "\"\""; L50: L51: private KuromojiCSVUtil() { L52:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
  2. replace-schema.sql

    L1: L2:create table DUMMY_MEMBER( L3: MEMBER_ID INTEGER IDENTITY NOT NULL PRIMARY KEY, L4: MEMBER_NAME VARCHAR(200) NOT NULL, L5: MEMBER_ACCOUNT VARCHAR(50) NOT NULL, L6: MEMBER_STATUS_CODE CHAR(3) NOT NULL, L7: FORMALIZED_DATETIME DATETIME, L8: BIRTHDATE DATE, L9: REGISTER_DATETIME DATETIME NOT NULL, L10: REGISTER_USER VARCHAR(200) NOT NULL, L11: UPDATE_DATETIME DATETIME NOT NULL, L12: UPDATE_USER VARCHAR(200) NOT NULL, L13: VERSION_NO BIGINT NOT NULL L14:);...
    github.com/codelibs/fess/dbflute_fess/playsql/r...
    Sat Jul 25 06:04:16 UTC 2015
      449 bytes
  3. NotificationHelper.java

    org.dbflute.mail.CardView; L30:import org.dbflute.mail.send.supplement.SMailPostingDiscloser; L31: L32:public class NotificationHelper { L33: private static final Logger logger = LogManager.getLogger(NotificationHelper.class); L34: L35: protected static final char LF = '\n'; L36: L37: public void send(final CardView cardView, final SMailPostingDiscloser discloser) { L38: sendToSlack(cardView, discloser); L39: sendToGoogleChat(cardView, discloser); L40: } L41: L42: protected void sendToSlack(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.1K bytes
  4. GoAction.java

    final String value = URLUtil.decode(form.hash, Constants.UTF_8); L114: if (targetUrl.indexOf('#') == -1) { L115: final StringBuilder buf = new StringBuilder(value.length() + 100); L116: for (final char c : value.toCharArray()) { L117: if (CharUtil.isUrlChar(c) || c == ' ') { L118: buf.append(c); L119: } else { L120: try { L121: buf.appe...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.9K bytes
  5. PopularWordHelper.java

    com.google.common.cache.CacheBuilder; L37: L38:import jakarta.annotation.PostConstruct; L39: L40:public class PopularWordHelper { L41: private static final Logger logger = LogManager.getLogger(PopularWordHelper.class); L42: L43: protected static final char CACHE_KEY_SPLITTER = '\n'; L44: L45: protected Cache<String, List<String>> cache; L46: L47: protected FessConfig fessConfig; L48: L49: @PostConstruct L50: public void init() { L51: if (logger.isDebugEnabled()) { L52: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.6K bytes
  6. DocumentUtil.java

    ().filter(req -> req.getCharacterEncoding() != null) L141: .map(HttpServletRequest::getCharacterEncoding).orElse(Constants.UTF_8); L142: final StringBuilder buf = new StringBuilder(url.length() + 100); L143: for (final char c : url.toCharArray()) { L144: if (CharUtil.isUrlChar(c)) { L145: buf.append(c); L146: } else { L147: try { L148: buf.append(URLEncoder.encode(String.valueOf(c), enc)); L149: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5K bytes
  7. ProtwordsFile.java

    } L166: L167: private String unescape(final String s) { L168: if (s.indexOf('\\') >= 0) { L169: final StringBuilder sb = new StringBuilder(); L170: for (int i = 0; i < s.length(); i++) { L171: final char ch = s.charAt(i); L172: if (ch == '\\' && i < s.length() - 1) { L173: i++; L174: sb.append(s.charAt(i)); L175: } else { L176: sb.append(ch); L177: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
  8. StopwordsFile.java

    } L166: L167: private String unescape(final String s) { L168: if (s.indexOf('\\') >= 0) { L169: final StringBuilder sb = new StringBuilder(); L170: for (int i = 0; i < s.length(); i++) { L171: final char ch = s.charAt(i); L172: if (ch == '\\' && i < s.length() - 1) { L173: i++; L174: sb.append(s.charAt(i)); L175: } else { L176: sb.append(ch); L177: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
  9. databaseInfoMap.dfprop

    ----------------/ L121:# L122:# Default mapping as follows: L123:# -------------------------------------------------------- L124:# | JDBC Type | Java Native | CSharp Native | L125:# | ------------------------------------------------------ L126:# | CHAR | java.lang.String | String | L127:# | VARCHAR | java.lang.String | String | L128:# | LONGVARCHAR | java.lang.String | String | L129:# | NUMERIC | java.math.BigDecimal | decimal? | L130:#...
    github.com/codelibs/fess/dbflute_fess/dfprop/da...
    Sat Oct 31 23:35:14 UTC 2015
      7.3K bytes
  10. service.bat

    L171:echo JAVA_HOME environment variable must be set! L172:pause L173:goto:eof L174: L175:rem --- L176:rem Function for converting Xm[s|x] values into MB which Commons Daemon accepts L177:rem --- L178::convertxm L179:set value=%~1 L180:rem extract last char (unit) L181:set unit=%value:~-1% L182:rem assume the unit is specified L183:set conv=%value:~0,-1% L184: L185:if "%unit%" == "k" goto kilo L186:if "%unit%" == "K" goto kilo L187:if "%unit%" == "m" goto mega L188:if "%unit%" == "M" goto mega L189:if...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Sun Jan 15 06:32:15 UTC 2023
      6K bytes
Back to top