Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fragments (0.28 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /**
         * Creates highlighted text from highlight field fragments.
         *
         * @param highlightField the highlight field containing fragments
         * @return the combined highlighted text
         */
        public String createHighlightText(final HighlightField highlightField) {
            final Text[] fragments = highlightField.fragments();
            if (fragments != null && fragments.length != 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

            String parentUrl = "http://example.com/parent?query=test&id=123";
            String url = "http://example.com/child#fragment";
            ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
    
            assertNotNull(exception);
            assertEquals("Not Found: http://example.com/child#fragment Parent: http://example.com/parent?query=test&id=123",
                    exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

        }
    
        public void test_constructor_withSpecialCharactersInUrl() {
            // Test with special characters in URL
            String url = "http://example.com/test?param=value&other=value#fragment";
            String message = "Error with special URL";
            Exception cause = new RuntimeException("Error cause");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, cause);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. okhttp/api/jvm/okhttp.api

    	public final fun encodedPathSegments ()Ljava/util/List;
    	public final fun encodedQuery ()Ljava/lang/String;
    	public final fun encodedUsername ()Ljava/lang/String;
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun fragment ()Ljava/lang/String;
    	public static final fun get (Ljava/lang/String;)Lokhttp3/HttpUrl;
    	public static final fun get (Ljava/net/URI;)Lokhttp3/HttpUrl;
    	public static final fun get (Ljava/net/URL;)Lokhttp3/HttpUrl;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                                .boundaryMaxScan(boundaryMaxScan)
                                .boundaryScannerType(boundaryScannerType)
                                .forceSource(forceSource)
                                .fragmenter(fragmenter)
                                .fragmentOffset(fragmentOffset)
                                .noMatchSize(noMatchSize)
                                .order(order)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  6. okhttp/api/android/okhttp.api

    	public final fun encodedPathSegments ()Ljava/util/List;
    	public final fun encodedQuery ()Ljava/lang/String;
    	public final fun encodedUsername ()Ljava/lang/String;
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun fragment ()Ljava/lang/String;
    	public static final fun get (Ljava/lang/String;)Lokhttp3/HttpUrl;
    	public static final fun get (Ljava/net/URI;)Lokhttp3/HttpUrl;
    	public static final fun get (Ljava/net/URL;)Lokhttp3/HttpUrl;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
       * {@snippet :
       * Set<Object> identityHashSet = Sets.newSetFromMap(
       *     new IdentityHashMap<Object, Boolean>());
       * }
       *
       * <p>The returned set is serializable if the backing map is.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
Back to top