Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getAndx (0.04 seconds)

  1. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

        }
    
        @Test
        public void test_chatSourceDefaultConstructor() {
            final ChatSource source = new ChatSource();
            assertEquals(0, source.getIndex());
            assertNull(source.getTitle());
            assertNull(source.getUrl());
            assertNull(source.getDocId());
            assertNull(source.getSnippet());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/entity/ChatMessage.java

                }
                return value.toString();
            }
    
            /**
             * Gets the source index.
             *
             * @return the source index
             */
            public int getIndex() {
                return index;
            }
    
            /**
             * Sets the source index.
             *
             * @param index the source index
             */
            public void setIndex(final int index) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            public void refresh() {
                // Mock implementation
            }
    
            public void createIndexIfNothing() {
                // Mock implementation
            }
    
            public String getIndex() {
                return "fess.suggest";
            }
    
            public long getAllWordsNum() {
                return 100L;
            }
    
            public long getDocumentWordsNum() {
                return 50L;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16.3K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertTrue(interfaces.hasMoreElements());
        while (interfaces.hasMoreElements()) {
          NetworkInterface i = interfaces.nextElement();
          builder.add(i.getName()).add(String.valueOf(i.getIndex()));
        }
        return builder.build();
      }
    
      /** Checks that the IP converts to the big integer and the big integer converts to the IP. */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 36.3K bytes
    - Click Count (0)
Back to Top