Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for 3F (0.01 seconds)

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

            } catch (NullPointerException e) {
                // Expected
            }
        }
    
        @Test
        public void test_encodeUrl_unicode() {
            assertEquals("%3F", DocumentUtil.encodeUrl("あ"));
            assertEquals("%3F%3F%3F", DocumentUtil.encodeUrl("あいう"));
        }
    
        @Test
        public void test_complex_document_structure() {
            Map<String, Object> doc = new HashMap<>();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. docs/features/events.md

        long nowNanos = System.nanoTime();
        if (name.equals("callStart")) {
          callStartNanos = nowNanos;
        }
        long elapsedNanos = nowNanos - callStartNanos;
        System.out.printf("%.3f %s%n", elapsedNanos / 1000000000d, name);
      }
    
      @Override public void callStart(Call call) {
        printEvent("callStart");
      }
    
      @Override public void callEnd(Call call) {
        printEvent("callEnd");
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:01:42 GMT 2026
    - 7.7K bytes
    - Click Count (0)
Back to Top