- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 874 for muss (0.04 sec)
-
guava-tests/test/com/google/common/base/PreconditionsTest.java
assertThat(expected).hasMessageThat().isEqualTo("index (-1) must not be negative"); } public void testCheckElementIndex_tooHigh() { IndexOutOfBoundsException expected = assertThrows(IndexOutOfBoundsException.class, () -> checkElementIndex(1, 1)); assertThat(expected).hasMessageThat().isEqualTo("index (1) must be less than size (1)"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
/** * Returns a {@link CopyOptions} with the specified converter applied. * * @param converter * The converter. Must not be {@literal null}. * @param propertyNames * The property names to which this converter will be applied. Each element must not be {@literal null} or an empty string. * @return A {@link CopyOptions} with the specified converter applied.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/FieldUtil.java
protected FieldUtil() { } /** * Returns the value of a {@code static} field represented by the given {@link Field}. * * @param <T> the type of the field * @param field the field (must not be {@literal null}) * @return the value represented by the {@code static} field * @throws IllegalAccessRuntimeException if the field cannot be accessed * @see Field#get(Object) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.8K bytes - Viewed (0) -
guava/src/com/google/common/graph/MutableValueGraph.java
* @since 20.0 */ @Beta public interface MutableValueGraph<N, V> extends ValueGraph<N, V> { /** * Adds {@code node} if it is not already present. * * <p><b>Nodes must be unique</b>, just as {@code Map} keys must be. They must also be non-null. * * @return {@code true} if the graph was modified as a result of this call */ @CanIgnoreReturnValue boolean addNode(N node); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/Logger.java
* @param throwable * Exception. Must not be {@literal null}. */ public void log(final Throwable throwable) { assertArgumentNotNull("throwable", throwable); error(throwable.getMessage(), throwable); } /** * Outputs a log entry. * * @param messageCode * Message code. Must not be {@literal null} or empty string. * @param args
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 12.4K bytes - Viewed (0) -
guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java
assertNotNull( rootLocaleFormat("%s must be annotated with @TesterAnnotation.", annotationClass), annotationClass.getAnnotation(TesterAnnotation.class)); Retention retentionPolicy = annotationClass.getAnnotation(Retention.class); assertNotNull( rootLocaleFormat("%s must have a @Retention annotation.", annotationClass), retentionPolicy); assertEquals(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 4.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java
*/ assertTrue(item + " must be inequivalent to null", !equivalence.equivalent(item, null)); assertTrue("null must be inequivalent to " + item, !equivalence.equivalent(null, item)); assertTrue(item + " must be equivalent to itself", equivalence.equivalent(item, item)); assertEquals( "the hash of " + item + " must be consistent", equivalence.hash(item),
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
* * @param path * The file path. Must not be {@literal null} or empty. * @param encoding * The encoding. Must not be {@literal null} or empty. * @return The text read from the file. */ public static String readText(final String path, final String encoding) { assertArgumentNotEmpty("path", path);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
* The property name. Must not be {@literal null} or an empty string. * @param propertyType * The property type. Must not be {@literal null}. * @param readMethod * The getter method. * @param writeMethod * The setter method. * @param beanDesc * The {@link BeanDesc}. Must not be {@literal null}. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
* * @param propertyName * The property name. Must not be {@literal null} or empty string * @return Whether the {@link PropertyDesc} exists */ boolean hasPropertyDesc(String propertyName); /** * Returns the {@link PropertyDesc}. * * @param propertyName * The property name. Must not be {@literal null} or empty string * @return {@link PropertyDesc}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0)