Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for 5f (0.01 seconds)

  1. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

         */
        @Test
        public void test_convertWithFieldCheck_withDifferentBoosts() {
            FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            float[] boostValues = { 0.5f, 1.0f, 2.0f, 5.0f, 10.0f };
    
            for (float boost : boostValues) {
                QueryContext context = new QueryContext("test", true);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            if (width < TABLET_WIDTH) {
                float ratio = (float) width / (float) TABLET_WIDTH;
                if (ratio < 0.5) {
                    ratio = 0.5f;
                }
                highlightInfo.fragmentSize((int) (highlightInfo.getFragmentSize() * ratio));
            }
        }
    
        /**
         * Gets the URL link for a document with proper protocol handling.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
Back to Top