Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fragmenter (0.1 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                                .numOfFragments(numOfFragments).boundaryChars(boundaryChars).boundaryMaxScan(boundaryMaxScan)
                                .boundaryScannerType(boundaryScannerType).forceSource(forceSource).fragmenter(fragmenter)
                                .fragmentOffset(fragmentOffset).noMatchSize(noMatchSize).order(order).phraseLimit(phraseLimit))
                        .encoder(encoder)));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * query as the single string, or as individual name-value parameters. With name-value parameters
     * the values are optional and names may be repeated.
     *
     * ### Fragment
     *
     * The fragment is optional: it can be null, empty, or non-empty. Unlike host, port, path, and
     * query the fragment is not sent to the webserver: it's private to the client.
     *
     * ## Encoding
     *
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        val url =
          parse("http://host/#fragment")
            .newBuilder()
            .fragment(null)
            .build()
        assertThat(url.toString()).isEqualTo("http://host/")
        assertThat(url.fragment).isNull()
        assertThat(url.encodedFragment).isNull()
      }
    
      @Test
      fun clearEncodedFragment() {
        val url =
          parse("http://host/#fragment")
            .newBuilder()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                    /*
                     * Send multiple fragments
                     */
    
                    do {
                        doSend0(req);
                    }
                    while ( req.hasMoreElements() && req.nextElement() != null );
    
                    /*
                     * Receive multiple fragments
                     */
                    synchronized ( resp ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  5. okhttp/api/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 Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. 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:
       *
       * <pre>{@code
       * Set<Object> identityHashSet = Sets.newSetFromMap(
       *     new IdentityHashMap<Object, Boolean>());
       * }</pre>
       *
       * <p>The returned set is serializable if the backing map is.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        `NullPointerException`.
     *  New: Recover gracefully when Android's socket connections crash with an
        unexpected `ClassCastException`.
     *  Fix: Don't include the URL's fragment in `encodedQuery()` when the query
        itself is empty.
    
    ## Version 3.9.0
    
    _2017-09-03_
    
     *  **Interceptors are more capable.** The `Chain` interface now offers access
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top