- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for seqno (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt
/** * Representation of an individual case (set of headers and wire format). There are many cases for a * single story. This class is used reflectively with Moshi to parse stories. */ data class Case( val seqno: Int = 0, val wire: ByteString? = null, val headers: List<Map<String, String>>, ) : Cloneable { val headersList: List<Header> get() { val result = mutableListOf<Header>()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Dec 23 10:26:25 GMT 2023 - 1.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/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/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/log/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: Sat Mar 15 06:53:53 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) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/HpackDecodeTestBase.kt
for (testCase in story.cases) { val encoded = testCase.wire ?: continue bytesIn.write(encoded) hpackReader.readHeaders() assertSetEquals( "seqno=$testCase.seqno", testCase.headersList, hpackReader.getAndResetHeaderList(), ) } } companion object { /** * Reads all stories in the folders provided, asserts if no story found.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jan 08 01:13:22 GMT 2024 - 2.2K 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/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/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
*/ public boolean delete(final String index, final String id, final Number seqNo, final Number primaryTerm) { try { final DeleteRequestBuilder builder = client.prepareDelete().setIndex(index).setId(id).setRefreshPolicy(RefreshPolicy.IMMEDIATE); if (seqNo != null) { builder.setIfSeqNo(seqNo.longValue()); } if (primaryTerm != null) {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) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
assertNull(form.id); assertNull(form.seqNo); assertNull(form.primaryTerm); assertNull(form.crudMode); form.id = "test-id"; form.seqNo = 1L; form.primaryTerm = 1L; form.crudMode = CrudMode.EDIT; assertEquals("test-id", form.id); assertEquals(1L, form.seqNo.longValue()); assertEquals(1L, form.primaryTerm.longValue());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0)