- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 107 for hourly (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
* information to search engines and may not correlate exactly to how often * they crawl the page. Valid values are: * <ul> * <li>always</li> * <li>hourly</li> * <li>daily</li> * <li>weekly</li> * <li>monthly</li> * <li>yearly</li> * <li>never</li> * </ul> * The value "always" should be used to describe documents that change each
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java
/** Log type constant for hourly search count aggregation. */ public static final String LOG_TYPE_SEARCH_COUNT_HOUR = "search_count_hour_agg"; /** Log type constant for daily search count aggregation. */ public static final String LOG_TYPE_SEARCH_COUNT_DAY = "search_count_day_agg"; /** Log type constant for hourly unique user aggregation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Default cron expression for daily tasks (daily at midnight). */ public static final String DEFAULT_DAILY_CRON_EXPRESSION = "0 0 * * *"; /** Default cron expression for hourly tasks (every hour). */ public static final String DEFAULT_HOURLY_CRON_EXPRESSION = "0 * * * *"; /** Default interval time in milliseconds for file system crawling. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
&& isInDays(day); } if (compareTime(hours, minutes, toHours, toMinutes) >= 0 && isInDays(day + 1) || compareTime(fromHours, fromMinutes, hours, minutes) >= 0 && isInDays(day)) { return true; } return false; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
cmd/data-scanner_test.go
// Prepare lifecycle expiration workers es := newExpiryState(t.Context(), objAPI, 0) globalExpiryState = es // Prepare object versions obj := "obj-1" // Simulate objects uploaded 30 hours ago modTime := now.Add(-48 * time.Hour) uuids := make([]uuid.UUID, 5) for i := range uuids { uuids[i] = uuid.UUID([16]byte{15: uint8(i + 1)}) } fivs := make([]FileInfo, 5) objInfos := make([]ObjectInfo, 5)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationResponseTest.java
} @Test void testConstructorWithNegativeTimezone() { // Test constructor with negative timezone offset long serverTimeZoneOffset = -7200000L; // -2 hours in milliseconds response = new SmbComQueryInformationResponse(mockConfig, serverTimeZoneOffset); assertNotNull(response); assertEquals(ServerMessageBlock.SMB_COM_QUERY_INFORMATION, getCommand(response)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
maven-tests/mvnw
die() { printf %s\\n "$1" >&2 exit 1 } trim() { # MWRAPPER-139: # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. # Needed for removing poorly interpreted newline sequences when running in more # exotic environments such as mingw bash on Windows. printf "%s" "${1}" | tr -d '[:space:]' }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 12 12:05:57 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java
private static final long TEST_LAST_ACCESS_TIME = System.currentTimeMillis() - 43200000L; // 12 hours ago private static final long TEST_LAST_WRITE_TIME = System.currentTimeMillis() - 3600000L; // 1 hour ago private static final long TEST_CHANGE_TIME = System.currentTimeMillis(); // now private static final int TEST_ATTRIBUTES = 0x00000020; // FILE_ATTRIBUTE_ARCHIVE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
assertEquals("ftp://123.123.123.123/ccc.txt", ftpInfo.toUrl("/aaa/../ccc.txt")); value = "ftp://123.123.123.123/test test.txt"; ftpInfo = new FtpClient.FtpInfo(value, Constants.UTF_8); assertEquals(value, ftpInfo.toUrl()); assertEquals("123.123.123.123:21", ftpInfo.getCacheKey()); assertEquals("123.123.123.123", ftpInfo.getHost());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 18K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
*/ public String toChildUrl(final String child) { final String url = toUrl(); if (url.endsWith("/")) { return normalize(toUrl() + child); } return normalize(toUrl() + "/" + child); } /** * Gets the parent directory path from the FTP URL. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 39.5K bytes - Viewed (0)