- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 273 for UL (0.02 sec)
-
guava/src/com/google/common/collect/Range.java
* may be equal only if at least one of the bounds is closed: * * <ul> * <li>{@code [a..a]} : a singleton range * <li>{@code [a..a); (a..a]} : {@linkplain #isEmpty empty} ranges; also valid * <li>{@code (a..a)} : <b>invalid</b>; an exception will be thrown * </ul> * * <h3>Warnings</h3> * * <ul> * <li>Use immutable value types only, if at all possible. If you must use a mutable type, <b>do
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 27.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<p><la:message key="labels.menu_maintenance" /></p> </a></li></c:if> </ul></li></c:if> <c:if test="${fe:fileExists('/WEB-INF/view/common/admin/sidebar_extra.jsp')}"> <c:import url="/WEB-INF/view/common/admin/sidebar_extra.jsp" /> </c:if> </ul> </nav> </div>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Apr 15 20:55:28 UTC 2021 - 17.8K bytes - Viewed (0) -
android/guava/src/com/google/common/net/UrlEscapers.java
* any unpaired carriage return or line feed characters with a CR+LF pair</a> on any non-file * inputs before escaping them with this escaper. * * <p>When escaping a String, the following rules apply: * * <ul> * <li>The alphanumeric characters "a" through "z", "A" through "Z" and "0" through "9" remain * the same. * <li>The special characters ".", "-", "*", and "_" remain the same.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 7.1K bytes - Viewed (0) -
docs_src/websockets/tutorial003.py
<form action="" onsubmit="sendMessage(event)"> <input type="text" id="messageText" autocomplete="off"/> <button>Send</button> </form> <ul id='messages'> </ul> <script> var client_id = Date.now() document.querySelector("#ws-id").textContent = client_id; var ws = new WebSocket(`ws://localhost:8000/ws/${client_id}`);
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 09 13:52:19 UTC 2020 - 2.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchResults.jsp
</la:link></li> </c:if> </c:forEach> </ul> </c:if> </c:forEach> <c:forEach var="facetQueryView" items="${fe:facetQueryViewList()}"> <ul class="list-group mb-2"> <li class="list-group-item text-uppercase"><la:message key="${facetQueryView.title}" /></li>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 09 04:29:42 UTC 2022 - 9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchResults.jsp
</la:link></li> </c:if> </c:forEach> </ul> </c:if> </c:forEach> <c:forEach var="facetQueryView" items="${fe:facetQueryViewList()}"> <ul class="list-group mb-2"> <li class="list-group-item text-uppercase"><la:message key="${facetQueryView.title}" /></li>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 09 04:29:42 UTC 2022 - 9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/ReferenceEntry.java
* * <p>Valid: * * <ul> * <li>Live: valid key/value are set * <li>Loading: loading is pending * </ul> * * <p>Invalid: * * <ul> * <li>Expired: time expired (key/value may still be set) * <li>Collected: key/value was partially collected, but not yet cleaned up * <li>Unset: marked as unset, awaiting cleanup or reuse * </ul> */ @GwtIncompatible
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
} /** * <code>type</code>の原型を返します。 * <ul> * <li><code>type</code>が<code>Class</code>の場合はそのまま返します。</li> * <li><code>type</code>がパラメータ化された型の場合はその原型を返します。</li> * <li><code>type</code>がワイルドカード型の場合は(最初の)上限境界を返します。</li> * <li><code>type</code>が配列の場合はその要素の実際の型の配列を返します。</li> * <li>その他の場合は<code>null</code>を返します。</li> * </ul> * * @param type * タイプ
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 23.6K bytes - Viewed (0) -
guava/src/com/google/common/base/StandardSystemProperty.java
* </ul> * * <p>Note that {@code StandardSystemProperty} does not provide constants for more recently added * properties, including: * * <ul> * <li>{@code java.vendor.version} (added in Java 11, listed as optional as of Java 13) * <li>{@code jdk.module.*} (added in Java 9, optional) * </ul> */ @CheckForNull public String value() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 23 15:09:35 UTC 2023 - 5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
/** * An artifact handler contains information explaining how an artifact plugs into the Maven build:<ul> * <li>Information needed to find the artifact file in a repository including extension and classifier</li> * <li>Information on how to use the artifact as a dependency: whether to add it to the classpath, whether to load its * dependencies transitively</li> * </ul> * */ public interface ArtifactHandler { @Deprecated
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0)