- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for get_index (0.07 seconds)
-
callbacks.go
if c.before != "" { // if defined before callback if c.before == "*" && len(sorted) > 0 { if curIdx := getRIndex(sorted, c.name); curIdx == -1 { sorted = append([]string{c.name}, sorted...) } } else if sortedIdx := getRIndex(sorted, c.before); sortedIdx != -1 { if curIdx := getRIndex(sorted, c.name); curIdx == -1 { // if before callback already sorted, append current callback just after itCreated: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:26:07 GMT 2026 - 8.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
* 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) { this.index = index; } /** * Gets the source title.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) -
src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java
source.put("throwable", event.getThrowable() != null ? event.getThrowable() : ""); source.put("timestamp", event.getTimestamp()); bulkRequest.add(client.prepareIndex().setIndex(indexName).setSource(source)); } final BulkResponse response = bulkRequest.execute().actionGet(30_000L); if (response.hasFailures()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/LogNotificationJob.java
} } final BulkRequestBuilder bulkDelete = client.prepareBulk(); for (final String docId : docIds) { bulkDelete.add(client.prepareDelete().setIndex(indexName).setId(docId)); } bulkDelete.execute().actionGet(fessConfig.getIndexSearchTimeout()); // Delete any remaining events beyond the search size limit (discard overflow) try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
try { // This will likely fail due to missing SearchEngineClient setup, // but we can verify the method signature and basic functionality SearchEngineUtil.scroll("test_index", hit -> { callbackCount.incrementAndGet(); return true; // Continue processing }); } catch (Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1) -
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)