Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for _seq_no (0.45 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    index.field.click_count=click_count
    index.field.config_id=config_id
    index.field.expires=expires
    index.field.url=url
    index.field.doc_id=doc_id
    index.field.id=_id
    index.field.version=_version
    index.field.seq_no=_seq_no
    index.field.primary_term=_primary_term
    index.field.lang=lang
    index.field.has_cache=has_cache
    index.field.last_modified=last_modified
    index.field.anchor=anchor
    index.field.segment=segment
    index.field.role=role
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_FIELD_ID = "index.field.id";
    
        /** 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";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  6. src/main/java/org/codelibs/fess/es/user/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;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/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;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/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;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  9. 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>()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Dec 23 10:26:25 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  10. 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.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.2K bytes
    - Viewed (0)
Back to top