- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 66 for mm (0.01 sec)
-
guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java
BiPredicate<ImmutableListMultimap<?, ?>, ImmutableListMultimap<?, ?>> equivalence = Equivalence.equals() .onResultOf((ImmutableListMultimap<?, ?> mm) -> mm.asMap().entrySet().asList()) .and(Equivalence.equals()); CollectorTester.of(collector, equivalence) .expectCollects(ImmutableListMultimap.of()) .expectCollects(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 25.4K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
} } private static void writePsOutputToFile(File rootProjectDir, List<String> psOutput) { String timestamp = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd-HH-mm-ss")); File psOutFile = new File(rootProjectDir, timestamp + ".psoutput"); try { Files.write(psOutFile.toPath(), psOutput); } catch (IOException e) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_details.jsp
<td><fmt:formatDate value="${fe:date(updatedTime)}" pattern="yyyy-MM-dd'T'HH:mm:ss"/></td> </tr> </tbody> </table> </div>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 5.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo.jsp
value="${fe:date(data.createdTime)}" pattern="yyyy-MM-dd'T'HH:mm:ss"/></td> </tr> </c:forEach> </tbody>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 11.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/fe.tld
<function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.util.Date parseDate(java.lang.String, java.lang.String)</function-signature> <example> ${fe:parseDate(doc.tstamp, "yyyy-MM-dd HH:mm:ss")} </example> </function> <function> <description> Returns formatted duration from a given value. </description> <name>formatDuration</name>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 10K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java
} } } } public static String formatTimestamp(long timestamp) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssXXX"); return sdf.format(new Date(timestamp)); } public static String formatDuration(long duration) { // CHECKSTYLE_OFF: MagicNumber long ms = duration % 1000;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
*/ private String loc; /** * The date of last modification of the file. This date should be in W3C * Datetime format. This format allows you to omit the time portion, if * desired, and use YYYY-MM-DD. * * Note that this tag is separate from the If-Modified-Since (304) header * the server can return, and search engines may use the information from * both sources differently. */
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String FIELD_LOGS = "fess.FieldLogs"; public static final String DEFAULT_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss"; public static final String ISO_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"; public static final String DATE_OPTIONAL_TIME = "date_optional_time"; public static final int DONE_STATUS = 9999;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp
value="${fe:date(data.lastAccessTime)}" pattern="yyyy-MM-dd'T'HH:mm:ss"/></td> </tr> </c:forEach> </tbody>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 13.3K bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_test.cc
} /** * We traced so far this function: * * def two_adds_and_mm(A, B): * my_add1 = A + B * my_add2 = B + B * mm = tf.MatMul(my_add1,my_add2) * return my_add1, my_add2, mm * * Now we will execute this function with an eager context: * * A =[[0, 1],[1, 0]] * B =[[1, 0],[0, 1]] *
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 39.1K bytes - Viewed (0)