Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for targetInstanceId (0.06 seconds)

  1. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

         * Checks whether the specified instance is currently active.
         *
         * @param targetInstanceId the instance ID to check.
         * @return {@code true} if the instance is active.
         */
        public boolean isInstanceActive(final String targetInstanceId) {
            return getActiveInstances().stream().anyMatch(i -> i.instanceId.equals(targetInstanceId));
        }
    
    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)
  2. src/main/resources/fess_indices/fess_config.coordinator/coordinator.json

          },
          "hostname": {
            "type": "keyword"
          },
          "name": {
            "type": "keyword"
          },
          "status": {
            "type": "keyword"
          },
          "targetInstanceId": {
            "type": "keyword"
          },
          "data": {
            "type": "text",
            "index": false
          },
          "createdTime": {
            "type": "long"
          },
          "expiredTime": {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 541 bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                    + "\"targetInstanceId\":\"*\",\"createdTime\":5000}},"
                    + "{\"_source\":{\"type\":\"event\",\"name\":\"e2\",\"instanceId\":\"node3\","
                    + "\"targetInstanceId\":\"*\",\"createdTime\":7000}},"
                    + "{\"_source\":{\"type\":\"event\",\"name\":\"e3\",\"instanceId\":\"node4\","
                    + "\"targetInstanceId\":\"*\",\"createdTime\":6000}}" + "]}}";
    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)
Back to Top