- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 894 for forget (0.08 sec)
-
src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java
final Date date = toDate("11:49"); assertThat(new SimpleDateFormat("HH:mm:ss").format(date), is("11:49:00")); } /** * @throws Exception */ @Test public void testToDate_MediumStyle() throws Exception { final Date date = toDate("11:49:10"); assertThat(new SimpleDateFormat("HH:mm:ss").format(date), is("11:49:10")); } /** * @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) -
src/main/webapp/js/help.js
$(document).on("click touchend", function(e) { if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) { $("#searchOptions").removeClass("active"); } }); $("[data-toggle='control-options']").click(function(e) { e.preventDefault(); var target = $(this).attr("data-target") || $(this).attr("href"); if (target) { $(target).toggleClass("active"); } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
* <td>{@link DateFormat#SHORT} format</td> * <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>
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/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java
assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(date), is("2010/09/07 11:49:00")); } /** * @throws Exception */ @Test public void testToDate_MediumStyle() throws Exception { final Date date = toDate("2010/9/7 11:49:10", Locale.JAPAN); assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(date), is("2010/09/07 11:49:10")); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 11.4K bytes - Viewed (0) -
fuzzing/fuzzingserver-test.sh
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Mar 26 02:01:32 UTC 2019 - 673 bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/FieldDesc.java
* Returns the value of the {@link Field}. * * @param <T> * the type of the field * @param target * the target object. Must not be {@literal null} * @return the value of the {@link Field} */ <T> T getFieldValue(Object target); /** * Returns the value of the static {@link Field}. * * @param <T>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
* * @param <T> * the property type * @param target * the target object. Must not be {@literal null} * @return the property value */ <T> T getValue(Object target); /** * Sets the value of the property. * * @param target * the target object. Must not be {@literal null} * @param value
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvocationTargetRuntimeException.java
private static final long serialVersionUID = 7760491787158046906L; /** * The target class. */ private final Class<?> targetClass; /** * Creates a {@link InvocationTargetRuntimeException}. * * @param targetClass * Target class * @param cause * The cause of the exception */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleGuid.java
* @param bytes the 16-byte GUID data in little-endian format (SMB wire format) */ public HandleGuid(byte[] bytes) { if (bytes.length != 16) { throw new IllegalArgumentException("GUID must be 16 bytes"); } // MS-SMB2 specifies little-endian byte ordering for GUID components // Convert from little-endian wire format to Java UUID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
* Default implementation returns the target unchanged. * * @param target the result data to process * @param responseData the response data from crawling * @return the processed result data */ public ResultData process(final ResultData target, final ResponseData responseData) { return target; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0)