- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 157 for says (0.04 sec)
-
android/guava-tests/test/com/google/common/collect/MutableClassToInstanceMapTest.java
} public void testConstraint() { /* * We'll give ourselves a pass on testing all the possible ways of breaking the constraint, * because we know that newClassMap() is implemented using ConstrainedMap which is itself * well-tested. A purist would object to this, but what can I say, we're dirty cheaters. */ map.put(Integer.class, new Integer(5));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Feb 11 18:34:30 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
* Executes the log purging job. * Performs the following cleanup operations: * - Purges old crawling sessions * - Purges search logs older than configured days * - Purges job logs older than configured days * - Purges user info logs older than configured days * - Updates job log status * * @return a string containing the execution result and any error messages */ public String execute() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
public void deleteBefore(int days) { deleteSearchLogCalled[0] = true; searchLogDeletedDays[0] = days; } }; JobLogService jobLogService = new JobLogService() { @Override public void deleteBefore(int days) { deleteJobLogCalled[0] = true; jobLogDeletedDays[0] = days; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
* @param to the end time in HH:MM format * @param days comma-separated list of days (1=Sunday, 7=Saturday) * @param delay the delay in milliseconds to apply during this interval */ public void addIntervalRule(final String from, final String to, final String days, final long delay) { ruleList.add(new IntervalRule(from, to, days, delay)); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/ne.css
height: 50px; padding: 2px; font-family: Verdana, sans-serif; font-size: 10pt; color: #000000; text-decoration: none } a.plain { display: inline; float: none; width: auto; height: auto } a.sort { display: block; float: left; width: 100px; height: 15px; font-family: Verdana, sans-serif; font-size: 8pt; font-weight: bold;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.2K bytes - Viewed (0) -
okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt
1D5A5 ; mapped ; 0066 # 3.1 MATHEMATICAL SANS-SERIF CAPITAL F 1D5A6 ; mapped ; 0067 # 3.1 MATHEMATICAL SANS-SERIF CAPITAL G 1D5A7 ; mapped ; 0068 # 3.1 MATHEMATICAL SANS-SERIF CAPITAL H 1D5A8 ; mapped ; 0069 # 3.1 MATHEMATICAL SANS-SERIF CAPITAL I
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Feb 10 11:25:47 UTC 2024 - 854.1K bytes - Viewed (0) -
src/main/webapp/js/admin/adminlte.min.js.map
BG,EAAmB5S,EAAAA,QAAK6N,GAAJ,WAAyC4E,EAAzC,MAE1BC,EAAgBzO,MAAK,SAAC4O,EAAGZ,GACvBjS,EAAAA,QAAEiS,GAAG7G,SAAS9F,SAAS,aAEzBqN,EAAoB1O,MAAK,SAAC4O,EAAGZ,GAC3BjS,EAAAA,QAAEiS,GAAG3M,SAAS,aAEhBsN,EAAiB3O,MAAK,SAAC4O,EAAGZ,GACxBjS,EAAAA,QAAEiS,GAAG3M,SAAS,UACdtF,EAAAA,QAAEiS,GAAGpQ,QAAQ,iBAAiBiR,QAAQ,aAAaxN,SAAS,gBAIhE2C,WAAA,SAAW8K,GACT,QAD2B,IAAlBA,IAAAA,GAAW,GAChB/S,EAAAA,QAAE,QAAQkC,SAAS+L,IAA6B,CAClD,IAAM+E,EAAehT,EAAAA,QAAEwI,QAAQxC,SACzBiN,EAAejT,EAAAA,QAAEqN,IAAkBrE,cACzChJ,EAAAA,QAAK0N,GAAJ,K...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 132.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserInfoService.java
* This method is used for data cleanup and maintenance operations. * * @param days the number of days to keep user information records */ public void deleteBefore(final int days) { userInfoBhv.queryDelete(cb -> { cb.query().setUpdatedAt_LessEqual(systemHelper.getCurrentTimeAsLocalDateTime().minusDays(days)); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
* Deletes job logs that ended before the specified number of days ago. * Used for cleaning up old log entries. * * @param days the number of days to look back from the current time */ public void deleteBefore(final int days) { final long oneday = 24 * 60 * 60 * 1000L; final long targetTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong() - days * oneday; jobLogBhv.queryDelete(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
@Size(max = 20) public String csvFileEncoding; /** * Number of days to keep search logs before purging. * Set to -1 to disable automatic purging of search logs. */ @Min(-1) @Max(100000) @ValidateTypeFailure public Integer purgeSearchLogDay; /** * Number of days to keep job logs before purging. * Set to -1 to disable automatic purging of job logs. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0)