- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 64 for inherit (0.21 sec)
-
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
appendExceptionMethod = method; break; } } assertNotNull("Should inherit append method", appendMethod); assertNotNull("Should inherit appendTimestamp method", appendTimestampMethod); assertNotNull("Should inherit appendException method", appendExceptionMethod); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
} } // Test that class annotation is inherited public void test_inheritedClassAnnotation() { Secured parentSecured = ParentClass.class.getAnnotation(Secured.class); assertNotNull(parentSecured); assertEquals("ROLE_PARENT", parentSecured.value()[0]); // Child class should inherit the annotation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
guava-gwt/pom.xml
necessary <inherits> lines for c.g.c.collect.testModule, etc. However, adding <inherits> lines could make c.g.c.base.testModule transitively inherit from extra modules. If some of those modules are ones that it uses but forgets to list in its own <inherits>, we'd like to get an error. Currently we do, but if we add the extra <inherits> lines, we won't.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
implements RandomAccess, Serializable { private final ImmutableLongArray parent; private AsList(ImmutableLongArray parent) { this.parent = parent; } // inherit: isEmpty, containsAll, toArray x2, iterator, listIterator, stream, forEach, mutations @Override public int size() { return parent.length(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22K bytes - Viewed (0) -
guava/src/com/google/common/primitives/ImmutableIntArray.java
implements RandomAccess, Serializable { private final ImmutableIntArray parent; private AsList(ImmutableIntArray parent) { this.parent = parent; } // inherit: isEmpty, containsAll, toArray x2, iterator, listIterator, stream, forEach, mutations @Override public int size() { return parent.length(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 21.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/StandardTable.java
removeColumn(entry.getKey()); return true; } return false; } @Override public boolean removeAll(Collection<?> c) { /* * We can't inherit the normal implementation (which calls * Sets.removeAllImpl(Set, *Collection*)) because, under some * circumstances, it attempts to call columnKeySet().iterator().remove, * which is unsupported.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 30.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
* map. */ final class WriteThroughEntry extends SimpleEntry<K, V> { WriteThroughEntry(K key, V value) { super(key, value); } /* * We inherit equals() and hashCode() instead of overriding them to use keyEquivalence and * valueEquivalence. */ @Override public V setValue(V newValue) { put(getKey(), newValue);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.33.md
- New configuration is introduced to the kubelet that allows it to track container...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:46:23 UTC 2025 - 294.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
assertNotNull(manager); } // Test insert with no chains public void test_insert_noChains() { User user = createTestUser("testuser"); authenticationManager.insert(user); // Should not throw exception even with no chains } // Test insert with single chain public void test_insert_singleChain() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
assertNotNull(crawlerEngineClient); // The actual client initialization happens lazily when needed } // Test that close method exists (inherited) public void test_closeMethodExists() { // Test that close method is available (inherited from parent) try { // Just verify the method exists, don't actually call it crawlerEngineClient.getClass().getMethod("close");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0)