Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for months (0.21 sec)

  1. .github/actions/people/app/main.py

        commenters = Counter()
        last_month_commenters = Counter()
        three_months_commenters = Counter()
        six_months_commenters = Counter()
        one_year_commenters = Counter()
        authors: Dict[str, Author] = {}
    
        now = datetime.now(tz=timezone.utc)
        one_month_ago = now - timedelta(days=30)
        three_months_ago = now - timedelta(days=90)
        six_months_ago = now - timedelta(days=180)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  2. docs/en/docs/deployment/https.md

    It is a project from the Linux Foundation. It provides **HTTPS certificates for free**, in an automated way. These certificates use all the standard cryptographic security, and are short-lived (about 3 months), so the **security is actually better** because of their reduced lifespan.
    
    The domains are securely verified and the certificates are generated automatically. This also allows automating the renewal of these certificates.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  3. src/main/resources/fess_label.properties

    labels.facet_timestamp_title=Date Range
    labels.facet_timestamp_1day=Past 24 Hours
    labels.facet_timestamp_1week=Past Week
    labels.facet_timestamp_1month=Past Month
    labels.facet_timestamp_1year=Past Year
    labels.facet_timestamp_3month=Past 3 Months
    labels.facet_timestamp_6month=Past 6 Months
    labels.facet_timestamp_2year=Past 2 Years
    labels.facet_timestamp_3year=Past 3 Years
    labels.facet_contentLength_title=Size
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  4. src/main/resources/fess_label_en.properties

    labels.facet_timestamp_title=Date Range
    labels.facet_timestamp_1day=Past 24 Hours
    labels.facet_timestamp_1week=Past Week
    labels.facet_timestamp_1month=Past Month
    labels.facet_timestamp_1year=Past Year
    labels.facet_timestamp_3month=Past 3 Months
    labels.facet_timestamp_6month=Past 6 Months
    labels.facet_timestamp_2year=Past 2 Years
    labels.facet_timestamp_3year=Past 3 Years
    labels.facet_contentLength_title=Size
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ko.properties

    labels.search_related_queries=Related Words:
    labels.search_result_similar=Similar Results ({0})
    labels.facet_timestamp_3month=Past 3 Months
    labels.facet_timestamp_6month=Past 6 Months
    labels.facet_timestamp_2year=Past 2 Years
    labels.facet_timestamp_3year=Past 3 Years
    labels.facet_contentLength_10kto50k=10kb - 50kb
    labels.facet_contentLength_50kto100k=50kb - 100kb
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ru.properties

    labels.search_result_sort_filename_asc=File Name (ascending)
    labels.search_result_sort_filename_desc=File Name (descending)
    labels.search_result_similar=Similar Results ({0})
    labels.facet_timestamp_3month=Past 3 Months
    labels.facet_timestamp_6month=Past 6 Months
    labels.facet_timestamp_2year=Past 2 Years
    labels.facet_timestamp_3year=Past 3 Years
    labels.facet_contentLength_10kto50k=10kb - 50kb
    labels.facet_contentLength_50kto100k=50kb - 100kb
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/BloomFilter.java

     * of the code may not be readable by older versions of the code (e.g., a serialized Bloom filter
     * generated today may <i>not</i> be readable by a binary that was compiled 6 months ago).
     *
     * <p>As of Guava 23.0, this class is thread-safe and lock-free. It internally uses atomics and
     * compare-and-swap to ensure correctness when multiple threads are used to access it.
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Cookie.kt

              }
              dayOfMonth == -1 && matcher.usePattern(DAY_OF_MONTH_PATTERN).matches() -> {
                dayOfMonth = matcher.group(1).toInt()
              }
              month == -1 && matcher.usePattern(MONTH_PATTERN).matches() -> {
                val monthString = matcher.group(1).lowercase(Locale.US)
                month = MONTH_PATTERN.pattern().indexOf(monthString) / 4 // Sneaky! jan=1, dec=12.
              }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 06 04:12:05 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  9. internal/s3select/sql/parser.go

    	Quantity  *Operand     `parser:" @@ \",\""`
    	Timestamp *PrimaryTerm `parser:" @@ \")\""`
    }
    
    // DateDiffFunc represents the DATE_DIFF function
    type DateDiffFunc struct {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/archive/zip/struct.go

    func msDosTimeToTime(dosDate, dosTime uint16) time.Time {
    	return time.Date(
    		// date bits 0-4: day of month; 5-8: month; 9-15: years since 1980
    		int(dosDate>>9+1980),
    		time.Month(dosDate>>5&0xf),
    		int(dosDate&0x1f),
    
    		// time bits 0-4: second/2; 5-10: minute; 11-15: hour
    		int(dosTime>>11),
    		int(dosTime>>5&0x3f),
    		int(dosTime&0x1f*2),
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
Back to top