- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 437 for dage (0.01 sec)
-
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
private int allPageCount; /** Whether a previous page exists. */ private boolean existPrePage; /** Whether a next page exists. */ private boolean existNextPage; /** The list of page numbers. */ private List<Integer> pageNumberList; /** The number of items per page. */ private int pageSize; /** The current page number. */ private int currentPageNumber;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
final SimpleDateFormat format = new SimpleDateFormat(pattern, locale); final Date date = toDate(str, format); if (date != null) { return new Time(date.getTime()); } } final Date date = toDate(str, locale); if (date != null) { return new Time(date.getTime()); } final Time time = toSqlTimeJdbcEscape(str);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
/** Indicates if a next page exists. */ private boolean existNextPage; /** The list of page numbers. */ private List<Integer> pageNumberList; /** The size of a page. */ private int pageSize; /** The current page number. */ private int currentPageNumber; /** The ID of the label type. */ public String id; /** The name of the label type. */ public String name;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java
/** * Flag indicating whether a previous page exists. */ private boolean existPrePage; /** * Flag indicating whether a next page exists. */ private boolean existNextPage; /** * List of page numbers for pagination navigation. */ private List<Integer> pageNumberList; /** * Number of records per page. */ private int pageSize; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.dict_mapping_configuration"/></title> <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include> </head> <body class="hold-transition sidebar-mini"> <div class="wrapper">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 10.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.dict_stopwords_configuration"/></title> <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include> </head> <body class="hold-transition sidebar-mini"> <div class="wrapper">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java
} /** * Gets the page size for search results. * @return The page size. */ public int getPageSize() { if (size != null) { return size; } return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /** * Gets the current page number for search results. * @return The current page number. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
* * @param page The HTML page to get the virtual host path for * @return The HTML page with updated virtual host path */ public HtmlNext getVirtualHostPath(final HtmlNext page) { return processVirtualHost(s -> { final String basePath = getVirtualHostBasePath(s, page); return new HtmlNext(basePath + page.getRoutingPath()); }, page);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/converter/DateConverterTest.java
import java.sql.Timestamp; import java.util.Date; import org.junit.Test; /** * @author higa * */ public class DateConverterTest { /** * @throws Exception */ @Test public void testGetAsObjectAndGetAsString() throws Exception { final DateConverter converter = new DateConverter("yyyy/MM/dd"); final Date result = (Date) converter.getAsObject("2008/01/16");
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.6K bytes - Viewed (0)