- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 35 for getAndx (0.43 sec)
-
src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java
assertNotNull(response); assertTrue(response.getNum() > 0); assertTrue(response.getTotal() > 0); assertNotNull(response.getWords()); assertNotNull(response.getIndex()); } @Test public void test_setters() throws Exception { PopularWordsRequest request = new PopularWordsRequest(); request.setIndex("test-index"); request.setSize(20);Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
final List<SuggestItem> firstItems = new ArrayList<>(); final List<SuggestItem> secondItems = new ArrayList<>(); final String index; if (hits.length > 0) { index = hits[0].getIndex(); } else { index = SuggestConstants.EMPTY_STRING; } final boolean singleWordQuery = isSingleWordQuery(query); final boolean hiraganaQuery = isHiraganaQuery(query);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
length = 0; deferred = this; } /** * Returns the current index position in the buffer. * * @return the current index */ public int getIndex() { return index; } /** * Sets the current index position in the buffer. * * @param index the new index position */ public void setIndex(final int index) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* <li>{@link #getReadingConverter()}: Returns the ReadingConverter instance.</li> * <li>{@link #getNormalizer()}: Returns the Normalizer instance.</li> * <li>{@link #getIndex()}: Returns the index name.</li> * <li>{@link #getAllWordsNum()}: Returns the total number of words in the suggestion index.</li>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java
final List<String> words = new ArrayList<>(); final List<SuggestItem> items = new ArrayList<>(); final String index; if (hits.length > 0) { index = hits[0].getIndex(); } else { index = SuggestConstants.EMPTY_STRING; } for (final SearchHit hit : hits) { final Map<String, Object> source = hit.getSourceAsMap();
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java
when(mockSearchResponse.getHits()).thenReturn(mockSearchHits); when(mockSearchHits.getHits()).thenReturn(new SearchHit[] { mockHit }, new SearchHit[0]); when(mockHit.getIndex()).thenReturn("test-index"); when(mockHit.getId()).thenReturn("doc1"); // Setup scroll response (empty on second call) when(mockClient.prepareSearchScroll("scroll1")).thenReturn(mockScrollBuilder);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:44:44 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
SearchEngineUtil.scroll(alias, hit -> { try { writer.write("{\"index\":{\"_index\":\"" + hit.getIndex() + "\",\"_id\":\"" + StringEscapeUtils.escapeJson(hit.getId()) + "\"}}\n"); writer.write(hit.getSourceAsString());
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 32.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
this.length = 0; this.deferred = this; } /** * Returns the current index position in the buffer. * * @return the current index */ public int getIndex() { return this.index; } /** * Sets the current index position in the buffer. * * @param index the new index position */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
// Set up lenient stubs for common operations to avoid unnecessary stubbing exceptions lenient().when(mockNdrBuffer.getIndex()).thenReturn(0); lenient().when(mockDeferredNdrBuffer.getIndex()).thenReturn(0); // Mock the index field access mockDeferredNdrBuffer.index = 0; } @Test void testGetSyntax() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0)