- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 97 for getClass (0.12 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
private static class Foo<A, B> { Class<? super A> getClassA() { return new TypeToken<A>(getClass()) {}.getRawType(); } Class<? super B> getClassB() { return new TypeToken<B>(getClass()) {}.getRawType(); } Class<? super A[]> getArrayClassA() { return new TypeToken<A[]>(getClass()) {}.getRawType(); } Type getArrayTypeA() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
private static class Foo<A, B> { Class<? super A> getClassA() { return new TypeToken<A>(getClass()) {}.getRawType(); } Class<? super B> getClassB() { return new TypeToken<B>(getClass()) {}.getRawType(); } Class<? super A[]> getArrayClassA() { return new TypeToken<A[]>(getClass()) {}.getRawType(); } Type getArrayTypeA() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/ResourcesTest.java
} public void testToString() throws IOException { URL resource = getClass().getResource("testdata/i18n.txt"); assertThat(Resources.toString(resource, UTF_8)).isEqualTo(I18N); assertThat(Resources.toString(resource, US_ASCII)).isNotEqualTo(I18N); } public void testToByteArray() throws IOException { URL resource = getClass().getResource("testdata/i18n.txt");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 6.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
.addEqualityGroup(classInfo(Test.class), classInfo(Test.class, getClass().getClassLoader())) .addEqualityGroup( new ResourceInfo(FILE, "a/b/c.txt", getClass().getClassLoader()), new ResourceInfo(FILE, "a/b/c.txt", getClass().getClassLoader())) .addEqualityGroup(new ResourceInfo(FILE, "x.txt", getClass().getClassLoader())) .testEquals(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 23.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/ResourcesTest.java
} public void testToString() throws IOException { URL resource = getClass().getResource("testdata/i18n.txt"); assertThat(Resources.toString(resource, UTF_8)).isEqualTo(I18N); assertThat(Resources.toString(resource, US_ASCII)).isNotEqualTo(I18N); } public void testToByteArray() throws IOException { URL resource = getClass().getResource("testdata/i18n.txt");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 6.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
form.autoExpandReplicasForDoc)) { saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL)); } return redirect(getClass()); } /** * Reloads the document index by closing and reopening it. * * @param form the action form (validated but not used for configuration)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 23K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
.addEqualityGroup(classInfo(Test.class), classInfo(Test.class, getClass().getClassLoader())) .addEqualityGroup( new ResourceInfo(FILE, "a/b/c.txt", getClass().getClassLoader()), new ResourceInfo(FILE, "a/b/c.txt", getClass().getClassLoader())) .addEqualityGroup(new ResourceInfo(FILE, "x.txt", getClass().getClassLoader())) .testEquals(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 25.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
void testGetSupertype_typeVariableWithMultipleBounds() { assertEquals( Number.class, new TypeToken<T>(getClass()) {}.getSupertype(Number.class).getType()); assertEquals( new TypeToken<Iterable<A>>() {}, new TypeToken<T>(getClass()) {}.getSupertype(Iterable.class)); } public void testGetSupertype_withoutTypeVariable() { ParameterizedType expectedType =
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 89.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
assertFalse(crawlerEngineClient.equals(other)); } // Test getClass method @Test public void test_getClass() { // Test that getClass returns the correct class assertEquals(CrawlerEngineClient.class, crawlerEngineClient.getClass()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
FessUserNotFoundException exception2 = new FessUserNotFoundException("user2"); // Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass()); } @Test public void test_stackTrace() { // Test that the exception has a proper stack trace
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.8K bytes - Click Count (0)