Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for job_name (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        private int pageSize;
    
        /** Current page number */
        private int currentPageNumber;
    
        /** Search criteria: job ID */
        public String id;
    
        /** Search criteria: job name */
        public String jobName;
    
        /** Search criteria: job status */
        public String jobStatus;
    
        /** Search criteria: target */
        public String target;
    
        /** Search criteria: script type */
        public String scriptType;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsJobLogCA.java

        }
    
        public void setJobName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setJobName_Terms("jobName", opLambda, null);
        }
    
        public void setJobName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsJobLogCA> aggsLambda) {
            setJobName_Terms("jobName", 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)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsJobLogCB.java

                doColumn("_id");
            }
    
            public void columnEndTime() {
                doColumn("endTime");
            }
    
            public void columnJobName() {
                doColumn("jobName");
            }
    
            public void columnJobStatus() {
                doColumn("jobStatus");
            }
    
            public void columnLastUpdated() {
                doColumn("lastUpdated");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

     * limitations under the License.
     */
    
    package com.google.common.io;
    
    import static com.google.common.base.StandardSystemProperty.JAVA_IO_TMPDIR;
    import static com.google.common.base.StandardSystemProperty.OS_NAME;
    import static com.google.common.truth.Truth.assertThat;
    import static java.lang.Math.min;
    import static java.nio.file.attribute.PosixFilePermission.OWNER_READ;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        @ValidateTypeFailure
        public String id;
    
        /**
         * The name of the job that was executed.
         * This is a required field identifying the specific job type.
         */
        @Required
        public String jobName;
    
        /**
         * The execution status of the job.
         * This is a required field indicating success, failure, or running status.
         */
        @Required
        public String jobStatus;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp

                                            <th style="width: 25%"><la:message
                                                    key="labels.joblog_jobName"/></th>
                                            <td>${f:h(jobName)}<la:hidden property="jobName"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.joblog_jobStatus"/></th>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/SystemUtil.java

         */
        public static final String PATH_SEPARATOR = System.getProperty("path.separator");
    
        /**
         * <code>os.name</code> system property. Example: <code>Mac OS X</code>
         */
        public static final String OS_NAME = System.getProperty("os.name");
    
        /**
         * <code>java.io.tmpdir</code> system property. Example: /tmp
         */
        public static final String JAVA_IO_TMPDIR = System.getProperty("java.io.tmpdir");
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/basicInfoMap.dfprop

        # o isColumnNameCamelCase: (NotRequired - Default false)
        #  Is the column name camel case?
        #  Basically you don't need this if the style of column name is like 'FOO_NAME'.
        #    [true]
        #      The column name is camel case.
        #      e.g. If the column name is 'OrderDetailId', the class name is 'OrderDetailId'.
        #
        #    [false]
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/StandardSystemProperty.java

       *     using it, it is probably not doing what you want.
       */
      @Deprecated
      JAVA_EXT_DIRS("java.ext.dirs"),
    
      /** Operating system name. */
      OS_NAME("os.name"),
    
      /** Operating system architecture. */
      OS_ARCH("os.arch"),
    
      /** Operating system version. */
      OS_VERSION("os.version"),
    
      /** File separator ("/" on UNIX). */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 06 10:03:30 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

     * limitations under the License.
     */
    package com.google.common.reflect;
    
    import static com.google.common.base.StandardSystemProperty.JAVA_CLASS_PATH;
    import static com.google.common.base.StandardSystemProperty.OS_NAME;
    import static com.google.common.base.StandardSystemProperty.PATH_SEPARATOR;
    import static com.google.common.truth.Truth.assertThat;
    import static java.nio.charset.StandardCharsets.US_ASCII;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 23K bytes
    - Viewed (0)
Back to top