Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for spaceChars (0.29 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

                this.duplicateTermRemoved = duplicateTermRemoved;
                return this;
            }
    
            public TextNormalizeContext spaceChars(final int[] spaceChars) {
                this.spaceChars = spaceChars;
                return this;
            }
        }
    
        public static TextNormalizeContext normalizeText(final Reader reader) {
            return new TextNormalizeContext(reader);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            if (title == null) {
                return StringUtil.EMPTY; // empty
            }
    
            final int[] spaceChars = getSpaceChars();
            try (final Reader reader = new StringReader(title)) {
                return TextUtil.normalizeText(reader).initialCapacity(title.length()).spaceChars(spaceChars).execute();
            } catch (final IOException e) {
                return StringUtil.EMPTY; // empty
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

        }
    
        public void setMaxSymbolTermSize(final int maxSymbolTermSize) {
            this.maxSymbolTermSize = maxSymbolTermSize;
        }
    
        public void setSpaceChars(final int[] spaceChars) {
            this.spaceChars = spaceChars;
        }
    
        public void setTikaConfig(final TikaConfig tikaConfig) {
            this.tikaConfig = tikaConfig;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/text/template/parse/lex.go

    // to be present to avoid ambiguity with things like "{{-3}}". It reads
    // better with the space present anyway. For simplicity, only ASCII
    // does the job.
    const (
    	spaceChars    = " \t\r\n"  // These are the space characters defined by Go itself.
    	trimMarker    = '-'        // Attached to left/right delimiter, trims trailing spaces from preceding/following text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    final int length = spaceStr.length();
                    spaceChars = new int[length];
                    for (int i = 0; i < length; i++) {
                        spaceChars[i] = spaceStr.codePointAt(i);
                    }
                }
                propMap.put(key, spaceChars);
            }
            return spaceChars;
        }
    
        String getCrawlerDocumentFullstopChars();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/Hexdump.java

                c[ci++] = ':';
                do {
                    if( si == length ) {
                        int n = 16 - s;
                        System.arraycopy( SPACE_CHARS, 0, c, ci, n * 3 );
                        ci += n * 3;
                        System.arraycopy( SPACE_CHARS, 0, d, s, n );
                        break;
                    }
                    c[ci++] = ' ';
                    i = src[srcIndex + si] & 0xFF;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top