Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for MONTH (0.05 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    this.leftCalendar.month.month(month).year(year);
                    if (this.linkedCalendars)
                        this.rightCalendar.month = this.leftCalendar.month.clone().add(1, 'month');
                } else {
                    this.rightCalendar.month.month(month).year(year);
                    if (this.linkedCalendars)
                        this.leftCalendar.month = this.rightCalendar.month.clone().subtract(1, 'month');
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

        public void test_edgeCaseBehavior() {
            String[] edgeCases = { "0 0 25 * * ?", // Invalid day of month
                    "0 60 * * * ?", // Invalid minute
                    "0 0 0 32 1 ?", // Invalid day
                    "0 0 0 1 13 ?", // Invalid month
            };
    
            for (String cron : edgeCases) {
                boolean result = validator.determineValid(cron);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/moment-with-locales.min.js

    this;switch(t=this._isUTC?it:dt,e){case"year":a=t(this.year()+1,0,1)-1;break;case"quarter":a=t(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":a=t(this.year(),this.month()+1,1)-1;break;case"week":a=t(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":a=t(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":a=t(this.year(),this.month(),this.date()+1)-1;break;case"hour":a=this._d.valueOf(),a+=36e5-rt(a+(this._isUTC?0:6e4*this.utcOf...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 360.5K bytes
    - Viewed (2)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

          require(year >= 1601)
          require(month != -1)
          require(dayOfMonth in 1..31)
          require(hour in 0..23)
          require(minute in 0..59)
          require(second in 0..59)
    
          GregorianCalendar(UTC).apply {
            isLenient = false
            set(Calendar.YEAR, year)
            set(Calendar.MONTH, month - 1)
            set(Calendar.DAY_OF_MONTH, dayOfMonth)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        /** The domain for the user identification cookie */
        protected String cookieDomain;
    
        /** The maximum age of the user identification cookie in seconds (default: 1 month) */
        protected int cookieMaxAge = 30 * 24 * 60 * 60;// 1 month
    
        /** The path for the user identification cookie */
        protected String cookiePath = "/";
    
        /** Whether the user identification cookie should be secure (HTTPS only) */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

      border-radius: 4px;
    }
    
    .daterangepicker td.active, .daterangepicker td.active:hover {
      background-color: #357ebd;
      border-color: transparent;
      color: #fff;
    }
    
    .daterangepicker th.month {
      width: auto;
    }
    
    .daterangepicker td.disabled, .daterangepicker option.disabled {
      color: #999;
      cursor: not-allowed;
      text-decoration: line-through;
    }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_en.properties

    labels.facet_label_title=Label
    labels.facet_timestamp_title=Time
    labels.facet_timestamp_1day=Within 24 hours
    labels.facet_timestamp_1week=Within a week
    labels.facet_timestamp_1month=Within a month
    labels.facet_timestamp_1year=Within a year
    labels.facet_timestamp_3month=Within 3 months
    labels.facet_timestamp_6month=Within 6 months
    labels.facet_timestamp_2year=Within 2 years
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_label.properties

    labels.facet_label_title=Label
    labels.facet_timestamp_title=Time
    labels.facet_timestamp_1day=Within 24 hours
    labels.facet_timestamp_1week=Within a week
    labels.facet_timestamp_1month=Within a month
    labels.facet_timestamp_1year=Within a year
    labels.facet_timestamp_3month=Within 3 months
    labels.facet_timestamp_6month=Within 6 months
    labels.facet_timestamp_2year=Within 2 years
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Within a week */
        public static final String LABELS_facet_timestamp_1week = "{labels.facet_timestamp_1week}";
    
        /** The key of the message: Within a month */
        public static final String LABELS_facet_timestamp_1month = "{labels.facet_timestamp_1month}";
    
        /** The key of the message: Within a year */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/adminlte.min.css.map

    100%;\n  font-size: 1.25rem;\n}\n\n.pagination-month .page-item .page-month {\n  margin-bottom: 0;\n  font-size: 1.25rem;\n  font-weight: 700;\n}\n\n.pagination-month .page-item .page-year {\n  margin-bottom: 0;\n}\n\n.pagination-month.pagination-lg .page-month {\n  font-size: 1.5625rem;\n}\n\n.pagination-month.pagination-sm .page-month {\n  font-size: 1rem;\n}\n\n.dark-mode .page-item.disabled a,\n.dark-mode .page-item.disabled .page-link {\n  background-color: #3a4047 !important;\n  border-color: #6c757d...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
Back to top