Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 295 for dots (0.01 sec)

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

            value = "${spaces}";
            assertEquals("   ", ResourceUtil.resolve(value));
    
            // Test long property name
            System.setProperty("very.long.property.name.with.many.dots", "long");
            value = "${very.long.property.name.with.many.dots}";
            assertEquals("long", ResourceUtil.resolve(value));
    
            // Test multiple occurrences of same variable
            System.setProperty("repeat", "X");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

        }
    
        public void test_complex_field_names() {
            // Test various complex field names
            String[] fieldNames = { "simple_field", "field-with-dashes", "field.with.dots", "field_with_underscores", "fieldWithCamelCase",
                    "field with spaces", "field@with#special!chars", "フィールド名", "字段名称", "필드명" };
    
            for (String fieldName : fieldNames) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            // Test with special characters in keys and values
            value = "key.with.dots=value\nkey_with_underscores=value with spaces\nkey-with-dashes=value@#$%";
            paramMap = ParameterUtil.parse(value);
            assertEquals(3, paramMap.size());
            assertEquals("value", paramMap.get("key.with.dots"));
            assertEquals("value with spaces", paramMap.get("key_with_underscores"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                assertEquals(arrayValue, value);
            } finally {
                System.clearProperty(Constants.FESS_CONFIG_PREFIX + arrayKey);
            }
        }
    
        // Test property key with dots
        public void test_get_propertyKeyWithDots() {
            String dottedKey = "deeply.nested.property.key";
            String dottedValue = "nested-value";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

       */
      private InternetDomainName ancestor(int levels) {
        ImmutableList<String> ancestorParts = parts.subList(levels, parts.size());
    
        // levels equals the number of dots that are getting clipped away, then add the length of each
        // clipped part to get the length of the leading substring that is being removed.
        int substringFrom = levels;
        for (int i = 0; i < levels; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  6. CHANGELOG.md

    This release also stabilizes many APIs in the `mockwebserver3` artifact that's new in 5.0.
    
     *  Breaking: `RecordedRequest.body` is now nullable. Null is used when the request does not have a
        body.
    
     *  Breaking: `RecordedRequest.chunkSizes` is now nullable. Null is used when the request does not
        use chunked encoding. This is different from an empty list - that indicates the request is
        chunked but has no data.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  7. .github/workflows/docs.yml

            with:
              python-version: 3.x
    
          - run: pip install mkdocs-material mkdocs-redirects
    
          - name: Generate Docs
            run: ./test_docs.sh
    
          - uses: actions/upload-artifact@v4
            with:
              name: docs
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 987 bytes
    - Viewed (0)
  8. .github/PULL_REQUEST_TEMPLATE.md

    -->
    ```release-note
    
    ```
    
    #### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:
    
    <!--
    This section can be blank if this pull request does not require a release note.
    
    When adding links which point to resources within git repositories, like
    KEPs or supporting documentation, please reference a specific commit and avoid
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Jun 06 14:40:00 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/TableCollectorsTest.java

                    .put("one", "uno", 1)
                    .put("two", "dos", 6)
                    .put("three", "tres", 3)
                    .buildOrThrow(),
                immutableCell("one", "uno", 1),
                immutableCell("two", "dos", 2),
                immutableCell("three", "tres", 3),
                immutableCell("two", "dos", 4));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  10. android/pom.xml

                <parameters>true</parameters>
                <compilerArgs combine.children="override">
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <arg>--should-stop=ifError=FLOW</arg>
    
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
Back to top