- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 3,289 for overridden (0.05 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
private FessConfigImpl fessConfig; @Override public void setUp() throws Exception { super.setUp(); // Create FessConfigImpl with overridden get method for testing fessConfig = new FessConfigImpl() { private static final long serialVersionUID = 1L; @Override public String get(String propertyKey) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java
public static final String SELF_COMBINATION_MODE_ATTRIBUTE = "combine.self"; /** Value indicating the element should be completely overridden */ public static final String SELF_COMBINATION_OVERRIDE = "override"; /** Value indicating the element should be merged */ public static final String SELF_COMBINATION_MERGE = "merge"; /** Value indicating the element should be removed */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 9.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeBasedTable.java
} @Override public @Nullable V put(C key, V value) { checkArgument(rangeContains(checkNotNull(key))); return super.put(key, value); } } /** Overridden column iterator to return columns values in globally sorted order. */ @Override Iterator<C> createColumnKeyIterator() { Comparator<? super C> comparator = columnComparator(); Iterator<C> merged =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 11.6K bytes - Viewed (0) -
docs/multi-user/README.md
Create new canned policy file `getonly.json`. This policy enables users to download all objects under `my-bucketname`. ```json cat > getonly.json << EOF {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/DiscreteDomain.java
IntegerDomain() { super(true); } @Override public @Nullable Integer next(Integer value) { int i = value; return (i == Integer.MAX_VALUE) ? null : i + 1; } @Override public @Nullable Integer previous(Integer value) { int i = value; return (i == Integer.MIN_VALUE) ? null : i - 1; } @Override Integer offset(Integer origin, long distance) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
*/ @Override public final void godHandEpilogue(final ActionRuntime runtime) { viewHelper.getActionHook().godHandEpilogue(runtime, super::godHandEpilogue); } // #app_customize you can customize the action hook /** * Hook method called before action processing. * This method can be overridden by subclasses to customize behavior. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java
} @Override public Comparator<? super E> comparator() { return sortedDelegate.comparator(); } @Override // needed to unify SortedIterable and Collection iterator() methods public UnmodifiableIterator<E> iterator() { return super.iterator(); } @Override public Object[] toArray() { /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
Secured parentSecured = parentMethod.getAnnotation(Secured.class); assertNotNull(parentSecured); assertEquals("ROLE_PARENT_METHOD", parentSecured.value()[0]); // Overridden method does not inherit annotation Method childMethod = ChildClass.class.getMethod("parentMethod"); Secured childSecured = childMethod.getAnnotation(Secured.class); assertNull(childSecured); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
} @Override public boolean isUseDirectoryLeasing() { return this.delegate.isUseDirectoryLeasing(); } @Override public String getDirectoryCacheScope() { return this.delegate.getDirectoryCacheScope(); } @Override public long getDirectoryCacheTimeout() { return this.delegate.getDirectoryCacheTimeout(); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
} ///// CycleDetectingLock methods. ///// @Override public LockGraphNode getLockGraphNode() { return lockGraphNode; } @Override public boolean isAcquiredByCurrentThread() { return isHeldByCurrentThread(); } ///// Overridden ReentrantLock methods. ///// @Override public void lock() { aboutToAcquire(this); try {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 35.9K bytes - Viewed (0)