- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for evaluate (0.15 sec)
-
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
// Test evaluate method with empty template public void test_evaluate_withEmptyTemplate() { String template = ""; Map<String, Object> paramMap = new HashMap<>(); paramMap.put("key", "value"); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("", result); } // Test evaluate method with null template public void test_evaluate_withNullTemplate() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java
return 50; } }); Map<String, Object> params = new HashMap<>(); params.put("param1", "value1"); RescorerBuilder<?> result = ltrQueryRescorer.evaluate(params); assertNull(result); } public void test_evaluate_withNullModelName() { // Test when model name is null ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
} @Override public Object evaluate(String template, Map<String, Object> paramMap) { return "TestEngine[" + identifier + "]: " + template; } } private static class CustomScriptEngine implements ScriptEngine { @Override public Object evaluate(String template, Map<String, Object> paramMap) { return "CustomEngine: " + template;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
public void test_execute_scriptEngineReturnsNull() { // Setup engine that returns null scriptEngineFactory.add("nullEngine", new ScriptEngine() { @Override public Object evaluate(String template, Map<String, Object> paramMap) { return null; } }); // Execute and verify null result
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K 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) -
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/jcifs/util/SimpleCircuitBreaker.java
*/ public void run(Runnable runnable) throws Exception { call(() -> { runnable.run(); return null; }); } /** * Evaluate and potentially update the circuit breaker state * * @return current state after evaluation */ private State evaluateState() { State current = state.get();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt
server.apply( object : Statement() { override fun evaluate() { called.set(true) server .url("/") .toUrl() .openConnection() .connect() } }, Description.EMPTY, ) statement.evaluate() assertThat(called.get()).isTrue() try { server
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 13:16:34 UTC 2025 - 22.3K bytes - Viewed (0) -
docs/bucket/versioning/README.md
**PLEASE READ: This feature is meant for advanced use-cases only where the setup is using bucket versioning or with replicated buckets, use this feature to optimize versioning behavior for some specific applications. MinIO experts will evaluate and guide on the benefits for your application, please reach out to us on <https://subnet.min.io>.**
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 12K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
## Next Steps 1. **Immediate Actions**: - Set up Windows Server test environment - Create detailed technical specifications for Phase 1 - Identify and evaluate Java RDMA libraries 2. **Phase 1 Kickoff**: - Begin SMB3 lease implementation - Create comprehensive test suite - Document API changes 3. **Community Engagement**:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0)