Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for version_no (0.03 sec)

  1. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #
        #    # o versionNoFieldName: (NotRequired - Default 'VERSION_NO')
        #    #  The column name of version no for optimistic lock.
        #    #  Basically you don't need this if your tables have the column 'VERSION_NO'.
        #    #  because the default value is 'VERSION_NO'.
        #    ; versionNoFieldName = VERSION_NO
        #}
        # - - - - - - - - - -/
    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  2. dbflute_fess/playsql/replace-schema.sql

        FORMALIZED_DATETIME DATETIME,
        BIRTHDATE DATE,
        REGISTER_DATETIME DATETIME NOT NULL,
        REGISTER_USER VARCHAR(200) NOT NULL,
        UPDATE_DATETIME DATETIME NOT NULL,
        UPDATE_USER VARCHAR(200) NOT NULL,
        VERSION_NO BIGINT NOT NULL
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 449 bytes
    - Viewed (0)
  3. dbflute_fess/playsql/_readme.txt

    map:{
        ; REGISTER_DATETIME = sysdate
        ; REGISTER_USER     = foo
        ; REGISTER_PROCESS  = bar
        ; UPDATE_DATETIME   = sysdate
        ; UPDATE_USER       = foo
        ; UPDATE_PROCESS    = bar
        ; VERSION_NO        = 0
    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 1.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            for (Map<String, Object> setting : settings) {
                final Map<String, Object> requestBody = new HashMap<>(updateMap);
                requestBody.put("version_no", 1);
                final String idKey = getIdKey();
                if (setting.containsKey(idKey)) {
                    requestBody.put(idKey, setting.get(idKey));
                }
                for (String key : keySet) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            final Map<String, Object> source = toLowerHyphen(searchLogEvent.toSource());
            source.put("_id", searchLogEvent.getId());
            // source.put("version_no", searchLogEvent.getVersionNo());
            source.put("event_type", searchLogEvent.getEventType());
            return source;
        }
    
        /**
         * Converts a map to lower hyphen case.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/conditionBeanMap.dfprop

            # ...
    
            # [Exclude]
            # VersionNo column may not be needed
            # to be set these condition-keys basically.
            #; !NotEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
            #; !GreaterThan = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
            #; !LessThan = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
            #; !GreaterEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            private String id;
            private Long versionNo;
            private String eventType;
            private Map<String, Object> sourceMap;
    
            public TestSearchLogEvent(String id, Long versionNo, String eventType) {
                this.id = id;
                this.versionNo = versionNo;
                this.eventType = eventType;
                this.sourceMap = new HashMap<>();
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        /** The creator of the key match. */
        public String createdBy;
    
        /** The created time of the key match. */
        public String createdTime;
    
        /** The version number of the key match. */
        public String versionNo;
    
        /**
         * Clears the pager fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        public String createdBy;
    
        /**
         * Search criteria: creation time.
         */
        public String createdTime;
    
        /**
         * Search criteria: version number.
         */
        public String versionNo;
    
        /**
         * Search criteria: configuration description.
         */
        public String description;
    
        /**
         * Clears all pager data and search criteria.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. src/test/resources/plugin/repo3/fess-crawler-smbj/maven-metadata.xml

    <metadata>
      <groupId>org.codelibs.fess</groupId>
      <artifactId>fess-crawler-smbj</artifactId>
      <versioning>
        <latest>14.15.0</latest>
        <release>14.15.0</release>
        <versions>
          <version>14.14.0</version>
          <version>14.15.0</version>
        </versions>
        <lastUpdated>20240526053206</lastUpdated>
      </versioning>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 380 bytes
    - Viewed (0)
Back to top