- Sort Score
- Result 10 results
- Languages All
Results 1391 - 1400 of 5,298 for recur2 (0.04 sec)
-
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
}).createPageNumberList()); return pathMappingList; } /** * Gets a path mapping by ID. * * @param id the path mapping ID * @return the path mapping */ public OptionalEntity<PathMapping> getPathMapping(final String id) { return pathMappingBhv.selectByPK(id); } /** * Stores a path mapping. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
return (T) invoke(method, null, args); } /** * Returns whether the method is <code>abstract</code>. * * @param method * The method. Cannot be {@literal null} * @return <code>abstract</code> if the method is abstract */ public static boolean isAbstract(final Method method) { return Modifier.isAbstract(method.getModifiers());Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Present.java
return this; } @Override public T or(Supplier<? extends T> supplier) { checkNotNull(supplier); return reference; } @Override public T orNull() { return reference; } @Override public Set<T> asSet() { return Collections.singleton(reference); } @Override public <V> Optional<V> transform(Function<? super T, V> function) { return new Present<>(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java
return parent.toArray(); } public <T> T[] toArray(final T[] a) { return parent.toArray(a); } public boolean add(final E e) { return parent.add(e); } public boolean remove(final Object o) { return parent.remove(o); } public boolean containsAll(final Collection<?> c) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java
return AdminWebconfigAction.class; } if (user.hasRoles(getActionRoles(AdminFileconfigAction.ROLE))) { return AdminFileconfigAction.class; } if (user.hasRoles(getActionRoles(AdminDataconfigAction.ROLE))) { return AdminDataconfigAction.class; } if (user.hasRoles(getActionRoles(AdminLabeltypeAction.ROLE))) { return AdminLabeltypeAction.class;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingList.java
return delegate().addAll(index, elements); } @Override @ParametricNullness public E get(int index) { return delegate().get(index); } @Override public int indexOf(@Nullable Object element) { return delegate().indexOf(element); } @Override public int lastIndexOf(@Nullable Object element) { return delegate().lastIndexOf(element); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java
Iterator<Entry<E>> entryIterator = entrySet().iterator(); if (!entryIterator.hasNext()) { return null; } Entry<E> entry = entryIterator.next(); return Multisets.immutableEntry(entry.getElement(), entry.getCount()); } @Override public @Nullable Entry<E> lastEntry() { return delegate().lastEntry(); } /** * A sensible definition of {@link #lastEntry()} in terms of {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/FavoriteLogDbm.java
return _columnCreatedAt; } public ColumnInfo columnDocId() { return _columnDocId; } public ColumnInfo columnQueryId() { return _columnQueryId; } public ColumnInfo columnUrl() { return _columnUrl; } public ColumnInfo columnUserInfoId() { return _columnUserInfoId; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
@Nullable public Path getPath() { return path; } @Override @Nonnull public InputStream openStream() throws IOException { return Files.newInputStream(path); } @Override @Nonnull public String getLocation() { return location; } @Override @NullableRegistered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FessCrawlerConfig.java
/** * Gets the name of the queue index for the crawler. * * @return the queue index name */ @Override public String getQueueIndex() { return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".queue"; } /** * Gets the name of the data index for the crawler. * * @return the data index name */ @Override public String getDataIndex() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0)