Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for window_size (0.04 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            final int windowSize = fessConfig.getRankFusionWindowSizeAsInteger();
            if (maxPageSize * 2 < windowSize) {
                logger.warn("rank.fusion.window_size is lower than paging.search.page.max.size. "
                        + "The window size should be 2x more than the page size. ({} * 2 <= {})", maxPageSize, windowSize);
                this.windowSize = 2 * maxPageSize;
            } else {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    labels.facet_filetype_pdf=filetype:pdf\t\
    labels.facet_filetype_txt=filetype:txt\t\
    labels.facet_filetype_others=filetype:others\n\
    
    # ranking
    
    # Window size for rank fusion.
    rank.fusion.window_size=200
    # Rank constant for rank fusion.
    rank.fusion.rank_constant=20
    # Number of threads for rank fusion.
    rank.fusion.threads=-1
    # Score field for rank fusion.
    rank.fusion.score_field=rf_score
    
    # acl
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'rank.fusion.window_size'. <br>
         * The value is, e.g. 200 <br>
         * comment: Window size for rank fusion.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRankFusionWindowSize();
    
        /**
         * Get the value for the key 'rank.fusion.window_size' as {@link Integer}. <br>
         * The value is, e.g. 200 <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java

            assertTrue(result instanceof QueryRescorerBuilder);
    
            QueryRescorerBuilder queryRescorerBuilder = (QueryRescorerBuilder) result;
            assertEquals(testWindowSize, queryRescorerBuilder.windowSize().intValue());
        }
    
        public void test_evaluate_withEmptyParams() {
            // Test with empty parameters map
            final String testModelName = "test_model";
            final int testWindowSize = 50;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/score/LtrQueryRescorer.java

            if (StringUtil.isBlank(modelName)) {
                return null;
            }
            return new QueryRescorerBuilder(new StoredLtrQueryBuilder().modelName(modelName).params(params))
                    .windowSize(fessConfig.getLtrWindowSize());
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt

        if (sendConnectionPreface) {
          writer.connectionPreface()
          writer.settings(okHttpSettings)
          val windowSize = okHttpSettings.initialWindowSize
          if (windowSize != DEFAULT_INITIAL_WINDOW_SIZE) {
            writer.windowUpdate(0, (windowSize - DEFAULT_INITIAL_WINDOW_SIZE).toLong())
          }
        }
        // Thread doesn't use client Dispatcher, since it is scoped potentially across clients via
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(data1.type).isEqualTo(Http2.TYPE_DATA)
        assertThat(data1.streamId).isEqualTo(3)
        assertArrayEquals("abcdef".toByteArray(), data1.data)
      }
    
      @Test fun readSendsWindowUpdateHttp2() {
        val windowSize = 100
        val windowUpdateThreshold = 50
    
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 75.5K bytes
    - Viewed (0)
Back to top