- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for MM (0.37 sec)
-
src/main/java/org/codelibs/core/CoreLibConstants.java
/** * ISO 8601 extended format: yyyy-MM-dd'T'HH:mm:ss.SSSZ */ public static final String DATE_FORMAT_ISO_8601_EXTEND = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"; /** * ISO 8601 extended UTC format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z' */ public static final String DATE_FORMAT_ISO_8601_EXTEND_UTC = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"; /** * Digit only date format: yyyyMMddHHmmss
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
* <td>{@literal yy/MM/dd H:mm}</td> * </tr> * <tr> * <td>{@link DateFormat#MEDIUM} format</td> * <td>{@literal yyyy/MM/dd H:mm:ss}</td> * </tr> * <tr> * <td>{@link DateFormat#LONG} format</td> * <td>{@literal yyyy/MM/dd H:mm:ss z}</td> * </tr> * <tr> * <td>{@link DateFormat#FULL} format</td> * <td>{@literal yyyy'年'M'月'd'日' H'時'mm'分'ss'秒' z}</td> * </tr> * </table> *
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/DateConversionUtil.java
* <td rowspan="4">Standard formats of {@link DateFormat}</td> * <td>{@link DateFormat#SHORT} format</td> * <td>{@literal yy/MM/dd}</td> * </tr> * <tr> * <td>{@link DateFormat#MEDIUM} format</td> * <td>{@literal yyyy/MM/dd}</td> * </tr> * <tr> * <td>{@link DateFormat#LONG} format</td> * <td>{@literal yyyy/MM/dd}</td> * </tr> * <tr> * <td>{@link DateFormat#FULL} format</td> * <td>{@literal yyyy'nen'M'gatsu'd'nichi'}</td>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java
} /** * @throws Exception */ @Test public void testToDate_SpecificPattern() throws Exception { final Date date = toDate("10::49::11", "ss::mm::HH"); assertThat(new SimpleDateFormat("HH:mm:ss").format(date), is("11:49:10")); } /** * @throws Exception */ @Test public void testToCalendar_Null() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 9.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java
BiPredicate<ImmutableSetMultimap<?, ?>, ImmutableSetMultimap<?, ?>> equivalence = Equivalence.equals() .onResultOf( (ImmutableSetMultimap<?, ?> mm) -> ImmutableListMultimap.copyOf(mm).asMap().entrySet().asList()) .and(Equivalence.equals()); CollectorTester.of(collector, equivalence) .expectCollects(ImmutableSetMultimap.of()) .expectCollects(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 28.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
* Maximum length is 10000 characters. */ @Size(max = 10000) public String parameterName; /** * The expiration date and time for the access token. * Must be in ISO 8601 format: YYYY-MM-DDTHH:MM:SS */ @Pattern(regexp = "[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]T[0-9][0-9]:[0-9][0-9]:[0-9][0-9]") public String expires; /** * The username of the user who created this access token.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
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/SearchLogPager.java
public String queryId; /** User session ID filter for search logs. */ public String userSessionId; /** Time range filter for search logs (format: "yyyy-MM-dd HH:mm - yyyy-MM-dd HH:mm"). */ public String requestedTimeRange; /** Access type filter for search logs (web, json, gsa, admin, other). */ public String accessType; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
README.md
Integer nullValue = IntegerConversionUtil.toInteger(null); // Returns null Boolean flag = BooleanConversionUtil.toBoolean("true"); // Returns true Date date = DateConversionUtil.toDate("2023-12-25", "yyyy-MM-dd"); // Primitive conversions with default values int primitiveInt = IntegerConversionUtil.toPrimitiveInt(value, "0"); // Default to 0 if null ``` ### Collection Utilities with Java 21 Support ```java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
* so you can specify multiple options using method chaining. * </p> * * <pre> * copyBeanToBean(srcBean, destBean, excludeNull().dateConverter("date", "MM/dd")); * </pre> * * @author koichik */ public abstract class CopyOptionsUtil { /** * Do not instantiate. */ protected CopyOptionsUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0)