Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for script_data (0.05 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsScheduledJobCQ.java

        }
    
        public void setScriptData_Equal(String scriptData) {
            setScriptData_Term(scriptData, null);
        }
    
        public void setScriptData_Equal(String scriptData, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setScriptData_Term(scriptData, opLambda);
        }
    
        public void setScriptData_Term(String scriptData) {
            setScriptData_Term(scriptData, null);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 98.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.job_log/job_log.json

          },
          "jobStatus": {
            "type": "keyword"
          },
          "target": {
            "type": "keyword"
          },
          "scriptType": {
            "type": "keyword"
          },
          "scriptData": {
            "type": "keyword"
          },
          "scriptResult": {
            "type": "keyword"
          },
          "lastUpdated": {
            "type": "long"
          },
          "startTime": {
            "type": "long"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 524 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsJobLog.java

            this.lastUpdated = value;
        }
    
        public String getScriptData() {
            checkSpecifiedProperty("scriptData");
            return convertEmptyToNull(scriptData);
        }
    
        public void setScriptData(String value) {
            registerModifiedProperty("scriptData");
            this.scriptData = value;
        }
    
        public String getScriptResult() {
            checkSpecifiedProperty("scriptResult");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ScheduledJobDbm.java

                0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnScriptData = cci("scriptData", "scriptData", null, null, String.class, "scriptData", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.json

          },
          "target": {
            "type": "keyword"
          },
          "cronExpression": {
            "type": "keyword"
          },
          "scriptType": {
            "type": "keyword"
          },
          "scriptData": {
            "type": "keyword"
          },
          "crawler": {
            "type": "boolean"
          },
          "jobLogging": {
            "type": "boolean"
          },
          "available": {
            "type": "boolean"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 753 bytes
    - Viewed (0)
  6. src/main/config/es/fess_config_scheduled_job.json

                "type" : "keyword"
              },
              "jobLogging" : {
                "type" : "boolean"
              },
              "name" : {
                "type" : "keyword"
              },
              "scriptData" : {
                "type" : "keyword"
              },
              "scriptType" : {
                "type" : "keyword"
              },
              "sortOrder" : {
                "type" : "integer"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        @Required
        @Size(max = 100)
        public String scriptType;
    
        /**
         * The script data or code for the scheduled job.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String scriptData;
    
        /**
         * Whether this job is related to crawling.
         */
        public String crawler;
    
        /**
         * Whether job logging is enabled.
         */
        public String jobLogging;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  8. src/main/config/es/fess_config_job_log.json

                "type" : "keyword"
              },
              "jobStatus" : {
                "type" : "keyword"
              },
              "lastUpdated" : {
                "type" : "long"
              },
              "scriptData" : {
                "type" : "keyword"
              },
              "scriptResult" : {
                "type" : "keyword"
              },
              "scriptType" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                            <th><la:message key="labels.scheduledjob_scriptData"/></th>
                                            <td>${f:br(f:h(scriptData))}<la:hidden
                                                    property="scriptData"/></td>
                                        </tr>
                                        <tr>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsJobLogCA.java

        public void setScriptData_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setScriptData_Terms("scriptData", opLambda, null);
        }
    
        public void setScriptData_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsJobLogCA> aggsLambda) {
            setScriptData_Terms("scriptData", opLambda, aggsLambda);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 58.7K bytes
    - Viewed (0)
Back to top