Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for asctime (1.03 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java

                }
                final AtomicLong lastTime = lastTimes.putIfAbsent(host, new AtomicLong(SystemUtil.currentTimeMillis()));
                if (lastTime == null) {
                    return;
                }
                synchronized (lastTime) {
                    while (true) {
                        final long currentTime = SystemUtil.currentTimeMillis();
                        final long delayTime = lastTime.get() + delayMillisBeforeProcessing - currentTime;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

                buf.append(ComponentUtil.getSystemHelper().getLogFilePath());
            }
            buf.append(File.separator);
            buf.append("gc-").append(getExecuteType()).append(".log");
            buf.append(":utctime,pid,tags:filecount=5,filesize=64m");
            return jvmOptions(buf.toString());
        }
    
        public ExecJob jvmOptions(final String... options) {
            Collections.addAll(this.jvmOptions, options);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_en.properties

    labels.advance_search_occt_allinurl=in the url of the page
    labels.advance_search_sitesearch=Site or domain
    labels.advance_search_timestamp=Last update
    labels.advance_search_timestamp_default=anytime
    labels.advance_search_timestamp_pastday=past 24 hours
    labels.advance_search_timestamp_pastweek=past week
    labels.advance_search_timestamp_pastmonth=past month
    labels.advance_search_timestamp_pastyear=past year
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/util/ProfileUtil.java

    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.core.io.ResourceUtil;
    
    public class ProfileUtil {
        private static final String SPRING_PROFILES_ACTIVE = "spring.profiles.active";
    
        public static void setup() {
            final List<String> list = new ArrayList<String>();
    
            final String values = System.getProperty(SPRING_PROFILES_ACTIVE);
            if (values != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Last update */
        public static final String LABELS_advance_search_timestamp = "{labels.advance_search_timestamp}";
    
        /** The key of the message: anytime */
        public static final String LABELS_advance_search_timestamp_default = "{labels.advance_search_timestamp_default}";
    
        /** The key of the message: past 24 hours */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ru.properties

    labels.advance_search_occt_allinurl=in the url of the page
    labels.advance_search_sitesearch=Site or domain
    labels.advance_search_timestamp=Last update
    labels.advance_search_timestamp_default=anytime
    labels.advance_search_timestamp_pastday=past 24 hours
    labels.advance_search_timestamp_pastweek=past week
    labels.advance_search_timestamp_pastmonth=past month
    labels.advance_search_timestamp_pastyear=past year
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <_comment>AppleScript source code</_comment>
        <glob pattern="*.applescript"/>
        <sub-class-of type="text/plain"/>
      </mime-type>
    
      <mime-type type="text/asp" interpreted="true">
        <_comment>Active Server Page</_comment>
        <glob pattern="*.asp"/>
        <sub-class-of type="text/plain"/>
      </mime-type>
    
      <mime-type type="text/aspdotnet" interpreted="true">
        <_comment>ASP .NET</_comment>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/timer/TimeoutTask.java

     */
    public class TimeoutTask {
    
        private static final int ACTIVE = 0;
    
        private static final int STOPPED = 1;
    
        private static final int CANCELED = 2;
    
        private final TimeoutTarget timeoutTarget;
    
        private final long timeoutMillis;
    
        private final boolean permanent;
    
        private long startTime;
    
        private int status = ACTIVE;
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.advance_search_occt_allinurl=in the url of the page
    labels.advance_search_sitesearch=Site or domain
    labels.advance_search_timestamp=Last update
    labels.advance_search_timestamp_default=anytime
    labels.advance_search_timestamp_pastday=past 24 hours
    labels.advance_search_timestamp_pastweek=past week
    labels.advance_search_timestamp_pastmonth=past month
    labels.advance_search_timestamp_pastyear=past year
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

                            new Trans2SetFileInformation(th.getConfig(), f.getFid(), attrs | dir, ctime, mtime, atime),
                            new Trans2SetFileInformationResponse(th.getConfig()),
                            RequestParam.NO_RETRY);
                    }
                }
                else {
                    if ( ctime != 0 || atime != 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top