- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 12 for _seq_no (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
} @Test public void test_parseJson_operationDocument() { final String json = "{\"_index\":\"fess_config.coordinator\",\"_id\":\"reindex\"," + "\"found\":true,\"_seq_no\":5,\"_primary_term\":1," + "\"_source\":{\"type\":\"operation\",\"name\":\"reindex\"," + "\"instanceId\":\"node1@host1\",\"hostname\":\"host1\","Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
final long seqNo = getLongValue(result, "_seq_no"); final long primaryTerm = getLongValue(result, "_primary_term"); try (CurlResponse deleteResponse = ComponentUtil.getCurlHelper() // .delete("/" + getIndexName() + "/_doc/" + operationName // + "?refresh=true&if_seq_no=" + seqNo + "&if_primary_term=" + primaryTerm) //
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. _version */ String INDEX_FIELD_VERSION = "index.field.version"; /** The key of the configuration. e.g. _seq_no */ String INDEX_FIELD_seq_no = "index.field.seq_no"; /** The key of the configuration. e.g. _primary_term */ String INDEX_FIELD_primary_term = "index.field.primary_term"; /** The key of the configuration. e.g. lang */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
@Override public String getIndexFieldRole() { return "role"; } @Override public String getIndexFieldSeqNo() { return "seq_no"; } @Override public String getIndexFieldVersion() { return "version"; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
} public Long version() { return version; } public DocMeta seqNo(Long seqNo) { this.seqNo = seqNo; return this; } public Long seqNo() { return seqNo; } public DocMeta primaryTerm(Long primaryTerm) { this.primaryTerm = primaryTerm; return this;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 26.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 26.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
final Number seqNo = (Number) entity.remove(fessConfig.getIndexFieldSeqNo()); final Number primaryTerm = (Number) entity.remove(fessConfig.getIndexFieldPrimaryTerm()); if (seqNo != null && primaryTerm != null && oldId != null) { searchEngineClient.delete(index, oldId, seqNo, primaryTerm); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java
public class EditForm extends CreateForm { /** Unique identifier for the search list entry */ public String id; /** Sequence number for ordering search list entries */ @ValidateTypeFailure public Long seqNo; /** Primary term value for search list configuration */ @ValidateTypeFailure public Long primaryTerm; /** * Default constructor for EditForm. */ public EditForm() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.3K bytes - Click Count (0)