Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 176 for spaced (0.05 seconds)

  1. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Leading and trailing spaces
            value = " value1 , value2 , value3 ";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals(" value1 ", result[0]);
            assertEquals(" value2 ", result[1]);
            assertEquals(" value3 ", result[2]);
    
            // Spaces in quoted values
            value = "\" spaced value \",\"  another  \"";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/net/PercentEscaperTest.java

        assertThat(spaceEscaper.escape("string with spaces")).isEqualTo("string with spaces");
      }
    
      /** Tests that if we add extra 'safe' characters they remain unescaped */
      public void testCustomEscaper() {
        UnicodeEscaper e = new PercentEscaper("+*/-", false);
        for (char c = 0; c < 128; c++) {
          if ((c >= '0' && c <= '9')
              || (c >= 'a' && c <= 'z')
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/net/PercentEscaperTest.java

        assertThat(spaceEscaper.escape("string with spaces")).isEqualTo("string with spaces");
      }
    
      /** Tests that if we add extra 'safe' characters they remain unescaped */
      public void testCustomEscaper() {
        UnicodeEscaper e = new PercentEscaper("+*/-", false);
        for (char c = 0; c < 128; c++) {
          if ((c >= '0' && c <= '9')
              || (c >= 'a' && c <= 'z')
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  4. docs/de/llm-prompt.md

    ```
    ## Ein weiteres Modul mit `APIRouter`. { #another-module-with-apirouter }
    ```
    
    - Replace occurrences of literal ` - ` (a space followed by a hyphen followed by a space) with ` – ` (a space followed by a dash followed by a space) in the translated part of the heading.
    
    Example:
    
    Source (English):
    
    ```
    # FastAPI in Containers - Docker { #fastapi-in-containers-docker }
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  5. fastapi/_compat/shared.py

    Sebastián Ramírez <******@****.***> 1770834732 -0800
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:32:12 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  6. docs/fr/llm-prompt.md

    ```
    ... comme prévu.
    ... cela fonctionnerait :
    ... etc.
    D'autres ...
    La suite ...
    ```
    
    - This does not apply in URLs, code blocks, and code snippets. Do not remove or add spaces there.
    
    ### Headings
    
    - Prefer translating headings using the infinitive form (as is common in the existing French docs): `Créer…`, `Utiliser…`, `Ajouter…`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 11:57:08 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java

                // state of the automaton:
                // 0: key parsing
                // 1: antislash found while parsing the key
                // 2: separator crossing
                // 3: white spaces
                // 4: value parsing
                int state = 0;
    
                for (int pos = 0; pos < line.length(); pos++) {
                    char c = line.charAt(pos);
    
                    switch (state) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Oct 16 09:03:48 GMT 2025
    - 38.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            return fessConfig.isCrawlerDocumentDuplicateTermRemoved();
        }
    
        /**
         * Gets the array of space character codes from configuration.
         *
         * @return array of character codes to be treated as spaces
         */
        protected int[] getSpaceChars() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/graph/Traverser.java

       *       notes on element objects</a> for more information.)
       *   <li>While traversing, the traverser will use <i>O(n)</i> space (where <i>n</i> is the number
       *       of nodes that have thus far been visited), plus <i>O(H)</i> space (where <i>H</i> is the
       *       number of nodes that have been seen but not yet visited, that is, the "horizon").
       * </ul>
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * <h4>Context-sensitive interpretation</h4>
         * A dependency with this path type will not necessarily be placed on the class path.
         * There are two circumstances where the dependency may nevertheless be placed somewhere else:
         *
         * <ul>
         *   <li>If {@link #MODULES} path type is also set, then the dependency can be placed either on the
         *       class path or on the module path, but only one of those. The choice is up to the plugin,
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Dec 15 11:13:42 GMT 2025
    - 15.7K bytes
    - Click Count (1)
Back to Top