- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 96 for documented (0.04 sec)
-
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
assertEquals("Target elements should match", expectedTargets, actualTargets); } // Test annotation is documented public void test_documented() { final Documented documented = CustomSize.class.getAnnotation(Documented.class); assertNotNull("Documented annotation should be present", documented); } // Test Constraint annotation public void test_constraintAnnotation() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/UriTypeTest.java
assertEquals("Target elements should match", expectedTargets, actualTargets); } // Test annotation is documented public void test_documented() { final Documented documented = UriType.class.getAnnotation(Documented.class); assertNotNull("Documented annotation should be present", documented); } // Test Constraint annotation public void test_constraintAnnotation() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
assertEquals(java.lang.annotation.RetentionPolicy.RUNTIME, retention.value()); } // Test annotation is documented public void test_annotationDocumented() { java.lang.annotation.Documented documented = CronExpression.class.getAnnotation(java.lang.annotation.Documented.class); assertNotNull(documented); } // Test annotation has Constraint meta-annotation public void test_annotationConstraint() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
assertThat(ClassPath.toFile(new URL("file:///c:/Documents%20and%20Settings/"))) .isEqualTo(new File("/c:/Documents and Settings/")); assertThat(ClassPath.toFile(new URL("file:///c:/Documents ~ Settings, or not/11-12 12:05"))) .isEqualTo(new File("/c:/Documents ~ Settings, or not/11-12 12:05")); } // https://github.com/google/guava/issues/2152
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
// Check Inherited annotation assertNotNull(Secured.class.getAnnotation(Inherited.class)); // Check Documented annotation assertNotNull(Secured.class.getAnnotation(Documented.class)); } // Test annotation value method public void test_valueMethod() throws NoSuchMethodException { Method valueMethod = Secured.class.getMethod("value");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java
private static final MediaType MEDIA_TYPE_PNG = MediaType.get("image/png"); private final OkHttpClient client = new OkHttpClient(); public void run() throws Exception { // Use the imgur image upload API as documented at https://api.imgur.com/endpoints/image final ProgressListener progressListener = new ProgressListener() { boolean firstUpdate = true;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 4.2K bytes - Viewed (1) -
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
/** * Creates a new {@link ThreadFactory} builder. * * <p><b>Java 21+ users:</b> use {@link Thread#ofPlatform()} instead, translating other calls on * the builder as documented on each method (except for the rarely used {@link #setThreadFactory}, * which does not have an equivalent). */ public ThreadFactoryBuilder() {} /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:35:26 UTC 2025 - 9K bytes - Viewed (0) -
guava/src/com/google/common/base/Functions.java
* NullPointerException} on null input. * * <p><b>Warning:</b> The returned function may not be <i>consistent with equals</i> (as * documented at {@link Function#apply}). For example, this function yields different results for * the two equal instances {@code ImmutableSet.of(1, 2)} and {@code ImmutableSet.of(2, 1)}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 15.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicLongMap.java
* {@code K}. If a key has not yet been associated with a value, its implicit value is zero. * * <p>Most methods in this class treat absent values and zero values identically, as individually * documented. Exceptions to this are {@link #containsKey}, {@link #size}, {@link #isEmpty}, {@link * #asMap}, and {@link #toString}. * * <p>Instances of this class may be used by multiple threads concurrently. All operations are
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
* <i>not</i> needed, it may be faster to copy {@code Iterables.filter(unfiltered, predicate)} and * use the copy. * * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>, as documented at * {@link Predicate#apply}. Do not provide a predicate such as {@code * Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals. (See {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0)