- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 175 for timeStamp (0.11 sec)
-
src/test/java/org/codelibs/core/beans/converter/DateConverterTest.java
*/ package org.codelibs.core.beans.converter; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.not; import static org.junit.Assert.assertThat; import java.sql.Timestamp; import java.util.Date; import org.junit.Test; /** * @author higa * */ public class DateConverterTest { /** * @throws Exception */ @Test
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
*/ @Size(max = 1000) public String createdBy; /** * The timestamp when this bad word entry was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values including current user and timestamp. */ public void initialize() { createdBy = ComponentUtil.getSystemHelper().getUsername();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
*/ public void setSearchQuery(final String searchQuery) { this.searchQuery = searchQuery; } /** * Sets the timestamp when the search request was made. * * @param requestedTime The request timestamp */ public void setRequestedTime(final long requestedTime) { this.requestedTime = requestedTime; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
monitorTarget.appendTimestamp(buf); String result = buf.toString(); assertTrue(result.startsWith("\"timestamp\":\"")); assertTrue(result.endsWith("\"")); // Verify a timestamp was properly formatted assertNotNull(result); assertTrue(result.length() > "\"timestamp\":\"\"".length()); } // Test appendException method with simple exception
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/test/resources/plugin/repo2/fess-ds-atlassian/12.2.0-SNAPSHOT/maven-metadata.xml
<metadata modelVersion="1.1.0"> <groupId>org.codelibs.fess</groupId> <artifactId>fess-ds-atlassian</artifactId> <version>12.2.0-SNAPSHOT</version> <versioning> <snapshot> <timestamp>20180814.210714</timestamp> <buildNumber>10</buildNumber> </snapshot> <lastUpdated>20180814210714</lastUpdated> <snapshotVersions> <snapshotVersion> <extension>jar</extension>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 15 02:16:52 UTC 2019 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
final String k = "timestamp"; assertEquals("", getAsQuery(Collections.singletonMap(k, new String[] { "" }))); assertEquals("timestamp:2023-01-01", getAsQuery(Collections.singletonMap(k, new String[] { "2023-01-01" }))); assertEquals("timestamp:2023-12-31", getAsQuery(Collections.singletonMap(k, new String[] { " 2023-12-31 " }))); assertEquals("timestamp:2023-01-01 timestamp:2023-12-31",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
/** * Constructor for ProtwordsFile. * @param id the file identifier * @param path the file path * @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<c:if test="${as.timestamp.contains('[now-1w/d TO *]')}">selected</c:if> ><la:message key="labels.advance_search_timestamp_pastweek" /></option> <option value="[now-1M/d TO *]" <c:if test="${as.timestamp.contains('[now-1M/d TO *]')}">selected</c:if> ><la:message key="labels.advance_search_timestamp_pastmonth" /></option> <option value="[now-1y/d TO *]"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java
dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new CharMappingFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
* @param id The unique identifier for this dictionary file. * @param path The path to the dictionary file. * @param timestamp The last modified timestamp of the file. */ public StopwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STOPWORDS; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0)