- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for evaluated (0.05 sec)
-
guava/src/com/google/common/base/Predicates.java
* Returns a predicate that evaluates to {@code true} if any one of its components evaluates to * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited" * as soon as a true predicate is found. It defensively copies the iterable passed in, so future * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the * returned predicate will always evaluate to {@code false}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* The template is evaluated using the specified script engine with the value and context. * * @param dataMap the data map to modify * @param key the key to store the processed value under * @param value the original value to process * @param template the template script to evaluate * @param scriptType the type of script engine to use */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
CHILD_URL, /** Indicates that multiple child URLs were discovered. */ CHILD_URLS, /** Indicates that a URL was evaluated for crawling eligibility. */ EVALUATED, /** Indicates that a general exception occurred during processing. */ EXCEPTION, /** Indicates that processing of a URL has finished. */ FINISHED,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/PredicatesTest.java
new Predicate<@Nullable Integer>() { @Override public boolean apply(@Nullable Integer i) { throw new AssertionFailedError("This predicate should never have been evaluated"); } }; /** Instantiable predicate with reasonable hashCode() and equals() methods. */ static class IsOdd implements Predicate<@Nullable Integer>, Serializable {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 32.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
filter( unfiltered, new Predicate<String>() { @Override public boolean apply(String s) { throw new AssertionFailedError("Should never be evaluated"); } }); List<String> expected = emptyList(); List<String> actual = Lists.newArrayList(filtered); assertEquals(expected, actual); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
filter( unfiltered, new Predicate<String>() { @Override public boolean apply(String s) { throw new AssertionFailedError("Should never be evaluated"); } }); List<String> expected = emptyList(); List<String> actual = Lists.newArrayList(filtered); assertEquals(expected, actual); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/ScriptEngine.java
package org.codelibs.fess.script; import java.util.Map; /** * Interface for script engines that can evaluate templates with parameters. * This interface provides a contract for different script engine implementations * to process template strings with parameter substitution. */ public interface ScriptEngine { /** * Evaluates a template string with the provided parameter map.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/QueryRescorer.java
/** * Interface for query rescoring implementations. */ public interface QueryRescorer { /** * Evaluates the rescorer with the given parameters. * * @param params the parameters for rescoring * @return the rescorer builder */ RescorerBuilder<?> evaluate(final Map<String, Object> params);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/QueryRescorerTest.java
params.put("test", "value"); assertNull(queryRescorer.evaluate(params)); // First call - odd assertNotNull(queryRescorer.evaluate(params)); // Second call - even assertNull(queryRescorer.evaluate(params)); // Third call - odd assertNotNull(queryRescorer.evaluate(params)); // Fourth call - even } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0)