Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for scriptData (0.12 sec)

  1. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 753 bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                                        <label for="scriptData" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.scheduledjob_scriptData"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="scriptData"/>
                                            <la:textarea styleId="scriptData" property="scriptData"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        @Required
        public String scriptType;
    
        public String scriptData;
    
        public String scriptResult;
    
        @Required
        public String startTime;
    
        public String endTime;
    
        public void initialize() {
            id = null;
            jobName = null;
            jobStatus = null;
            target = null;
            scriptType = null;
            scriptData = null;
            scriptResult = null;
            startTime = null;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java

        }
    
        @Override
        public String toString() {
            return "JobLog [scheduledJob=" + scheduledJob + ", endTime=" + endTime + ", jobName=" + jobName + ", jobStatus=" + jobStatus
                    + ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime="
                    + startTime + ", target=" + target + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsScheduledJobCA.java

        public void setScriptData_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setScriptData_Terms("scriptData", opLambda, null);
        }
    
        public void setScriptData_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsScheduledJobCA> aggsLambda) {
            setScriptData_Terms("scriptData", opLambda, aggsLambda);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  7. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        @CronExpression
        public String cronExpression;
    
        @Required
        @Size(max = 100)
        public String scriptType;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String scriptData;
    
        public String crawler;
    
        public String jobLogging;
    
        public String available;
    
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp

                                        <tr>
                                            <th><la:message key="labels.joblog_scriptData"/></th>
                                            <td>${f:br(f:h(scriptData))}<la:hidden
                                                    property="scriptData"/></td>
                                        </tr>
                                        <tr>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  10. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
Back to top