Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for character (1.8 sec)

  1. src/main/java/org/codelibs/fess/query/QueryCommand.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.query;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.lang.Character.UnicodeBlock;
    
    import org.apache.lucene.search.Query;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.QueryContext;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                int pos = escaped.indexOf(escapedHighlightPre);
                while (pos >= 0) {
                    final int c = escaped.codePointAt(pos);
                    if (Character.isISOControl(c) || highlightTerminalCharSet.contains(c)) {
                        break;
                    }
                    pos--;
                }
    
                value = escaped.substring(pos + 1);
            } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            String[] spaces = (String[]) propMap.get(CRAWLER_DOCUMENT_SPACES);
            if (spaces == null) {
                spaces = Arrays.stream(getCrawlerDocumentSpaceCharsAsArray()).mapToObj(Character::toString).toArray(n -> new String[n]);
                propMap.put(CRAWLER_DOCUMENT_SPACES, spaces);
            }
            return spaces;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                userAgent = textBuf.toString().trim();
            }
            tagQueue.pollLast();
            textBuf.setLength(0);
        }
    
        @Override
        public void characters(final char[] ch, final int start, final int length) throws SAXException {
            final String text = new String(ch, start, length);
            if (logger.isDebugEnabled()) {
                logger.debug("Text: {}", text);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
Back to top