- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 874 for muss (0.01 sec)
-
src/main/java/org/codelibs/core/sql/StatementUtil.java
*/ protected StatementUtil() { } /** * Executes the SQL. * * @param statement * {@link Statement}. Must not be {@literal null}. * @param sql * SQL string. Must not be {@literal null} or empty. * @return The result of the execution. * @see Statement#execute(String) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
if ("*" !in pattern) { // Not a wildcard pattern -- hostname and pattern must match exactly. return hostname == pattern } // Wildcard pattern // WILDCARD PATTERN RULES: // 1. Asterisk (*) is only permitted in the left-most domain name label and must be the // only character in that label (i.e., must match the whole left-most label).
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.6K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStats.java
* * <ul> * <li>Both {@code xStats} and {@code yStats} must have the same {@code count}. * <li>If that {@code count} is 1, {@code sumOfProductsOfDeltas} must be exactly 0.0. * <li>If that {@code count} is more than 1, {@code sumOfProductsOfDeltas} must be finite. * </ul> */ PairedStats(Stats xStats, Stats yStats, double sumOfProductsOfDeltas) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 12.6K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
checkNotNull(funnel); checkArgument( expectedInsertions >= 0, "Expected insertions (%s) must be >= 0", expectedInsertions); checkArgument(fpp > 0.0, "False positive probability (%s) must be > 0.0", fpp); checkArgument(fpp < 1.0, "False positive probability (%s) must be < 1.0", fpp); return Collector.of( () -> BloomFilter.create(funnel, expectedInsertions, fpp), BloomFilter::put,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/ParameterizedClassDescImpl.java
* * @param rawClass * The raw class. Must not be {@literal null}. */ public ParameterizedClassDescImpl(final Class<?> rawClass) { assertArgumentNotNull("rawClass", rawClass); this.rawClass = rawClass; } /** * Constructs an instance. * * @param rawClass * The raw class. Must not be {@literal null}. * @param arguments
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/SerializeUtil.java
protected SerializeUtil() { } private static final int BYTE_ARRAY_SIZE = 8 * 1024; /** * Tests if the object can be serialized. * * @param obj the object to be serialized (must not be {@literal null}) * @return the deserialized object */ public static Object serialize(final Object obj) { assertArgumentNotNull("obj", obj);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipInputStreamUtil.java
protected ZipInputStreamUtil() { } /** * A method that wraps the exception handling of {@link ZipInputStream#getNextEntry()}. * * @param zis * {@link ZipInputStream}. Must not be {@literal null}. * @return {@link ZipEntry} * @see ZipInputStream#getNextEntry() */ public static ZipEntry getNextEntry(final ZipInputStream zis) { assertArgumentNotNull("zis", zis);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DisposableUtil.java
* A disposable resource. Must not be {@literal null}. */ public static synchronized void addFirst(final Disposable disposable) { assertArgumentNotNull("disposable", disposable); disposables.addFirst(disposable); } /** * Unregisters a disposable resource. * * @param disposable * A disposable resource. Must not be {@literal null}. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DocumentBuilderUtil.java
*/ protected DocumentBuilderUtil() { } /** * Parses the XML. * * @param builder * {@link DocumentBuilder}; must not be {@literal null}. * @param is * Input stream; must not be {@literal null}. * @return {@link Document} */ public static Document parse(final DocumentBuilder builder, final InputStream is) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SAXParserUtil.java
* * @param parser * The {@link SAXParser} to use. Must not be {@literal null}. * @param inputSource * The {@link InputSource} containing the content to be parsed. Must not be {@literal null}. * @param handler * The SAX {@link DefaultHandler} to use. Must not be {@literal null}. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0)