- Sort Score
- Result 10 results
- Languages All
Results 1731 - 1740 of 3,587 for findall (0.12 sec)
-
guava-testlib/src/com/google/common/testing/CollectorTester.java
CollectorTester<T, A, R> of( Collector<T, A, R> collector, BiPredicate<? super R, ? super R> equivalence) { return new CollectorTester<>(collector, equivalence); } private final Collector<T, A, R> collector; private final BiPredicate<? super R, ? super R> equivalence; private CollectorTester( Collector<T, A, R> collector, BiPredicate<? super R, ? super R> equivalence) { this.collector = checkNotNull(collector);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu May 15 21:47:56 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava/src/com/google/common/math/LinearTransformation.java
* {@code x} and {@code y} value pair. * * @since 20.0 */ public static final class LinearTransformationBuilder { private final double x1; private final double y1; private LinearTransformationBuilder(double x1, double y1) { this.x1 = x1; this.y1 = y1; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapKeySet.java
@J2ktIncompatible @SuppressWarnings("unused") private static final class KeySetSerializedForm<K> implements Serializable { final ImmutableMap<K, ?> map; KeySetSerializedForm(ImmutableMap<K, ?> map) { this.map = map; } Object readResolve() { return map.keySet(); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
*/ public void add(final String mimetype, final String filetype) { mimetypeMap.put(mimetype, filetype); } /** * Retrieves the file type for a given MIME type. * * @param mimetype the MIME type to look up * @return the corresponding file type, or the default value if not found */ public String get(final String mimetype) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
* @return a list of RelatedContent entities matching the specified criteria */ public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) { final PagingResultBean<RelatedContent> relatedContentList = relatedContentBhv.selectPage(cb -> { cb.paging(relatedContentPager.getPageSize(), relatedContentPager.getCurrentPageNumber());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java
import java.util.function.Predicate; /** * This should be removed when https://bugs.openjdk.org/browse/JDK-8323729 * is released in our minimum JDK. */ class ImmutableCollections { private static final Map<?, ?> EMPTY_MAP = new AbstractImmutableMap<>() { @Override public Set<Entry<Object, Object>> entrySet() { return new AbstractImmutableSet<>() { @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 07 11:47:42 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/TestLogHandler.java
* </pre> * * @author Kevin Bourrillion * @since 10.0 */ @GwtCompatible @NullMarked public class TestLogHandler extends Handler { private final Object lock = new Object(); /** We will keep a private list of all logged records */ @GuardedBy("lock") private final List<LogRecord> list = new ArrayList<>(); /** Adds the most recently logged record to our list. */ @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java
* carried exit code will be returned from invoker {@link Invoker#invoke(InvokerRequest)} method. */ public static final class ExitException extends InvokerException { private final int exitCode; public ExitException(int exitCode) { super("EXIT"); this.exitCode = exitCode; } public int getExitCode() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Nov 13 14:14:56 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/es/docs/advanced/testing-dependencies.md
app.dependency_overrides = {} ``` /// tip | Consejo Si quieres sobrescribir una dependencia solo durante algunos tests, puedes establecer la sobrescritura al inicio del test (dentro de la función del test) y restablecerla al final (al final de la función del test).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/ScheduledJobBhv.java
/** * @author FreeGen */ public class ScheduledJobBhv extends BsScheduledJobBhv { private static final Logger logger = LogManager.getLogger(ScheduledJobBhv.class); private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.2K bytes - Viewed (0)