- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 171 for evaluation (0.07 sec)
-
impl/maven-core/src/test/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelperTest.java
private ExpressionEvaluator evaluator; private ConfigurationListener listener; @BeforeEach void setUp() { converterLookup = new DefaultConverterLookup(); evaluator = mock(ExpressionEvaluator.class); listener = mock(ConfigurationListener.class); helper = new EnhancedCompositeBeanHelper(converterLookup, getClass().getClassLoader(), evaluator, listener); } @AfterEachRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 12 14:59:46 UTC 2025 - 8.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedComponentConfigurator.java
final ExpressionEvaluator evaluator, final ClassRealm realm, final ConfigurationListener listener) throws ComponentConfigurationException { try { ClassRealmConverter.pushContextRealm(realm); this.configureComponent(component, configuration, evaluator, (ClassLoader) realm, listener); } finally {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- Added enforcement of an upper cost bound for DRA evaluations of CEL. The API server and scheduler now enforce an upper bound on the cost and runtime steps required for evaluating a CEL expression. ([#128101](https://github.com/kubernetes/kubernetes/pull/128101), [@pohly](https://github.com/pohly)) [SIG API Machinery and Node]
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Dec 16 18:27:41 UTC 2025 - 448.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/configuration/internal/CompositeBeanHelperPerformanceTest.java
when(evaluator.evaluate(anyString())).thenReturn("testValue"); for (int i = 0; i < 10; i++) { when(evaluator.evaluate(Integer.toString(i))).thenReturn(i); } when(evaluator.evaluate("123")).thenReturn(123); when(evaluator.evaluate("456")).thenReturn(456); when(evaluator.evaluate("true")).thenReturn(true);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 17 07:40:49 UTC 2025 - 16.6K bytes - Viewed (0) -
internal/bucket/lifecycle/evaluator_test.go
{Action: NoneAction}, {Action: NoneAction}, {Action: DeleteVersionAction}, {Action: NoneAction}, {Action: DeleteVersionAction}, {Action: NoneAction}, } evaluator = NewEvaluator(lc) gotEvents = evaluator.eval(objs, now) for i := range wantEvents { if gotEvents[i].Action != wantEvents[i].Action { t.Fatalf("test-%d: got %v, want %v", i+1, gotEvents[i], wantEvents[i]) } }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Apr 08 15:41:24 UTC 2025 - 5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelper.java
private final ExpressionEvaluator evaluator; private final ConfigurationListener listener; /** * Holds information about a method including its parameter type. */ private record MethodInfo(Method method, Type parameterType) {} public EnhancedCompositeBeanHelper( ConverterLookup lookup, ClassLoader loader, ExpressionEvaluator evaluator, ConfigurationListener listener) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 12 14:59:46 UTC 2025 - 12.3K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle.go
const ( // NoneAction means no action required after evaluating lifecycle rules NoneAction Action = iota // DeleteAction means the object needs to be removed after evaluating lifecycle rules DeleteAction // DeleteVersionAction deletes a particular version DeleteVersionAction // TransitionAction transitions a particular object after evaluating lifecycle transition rules TransitionAction
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Apr 03 06:45:06 UTC 2025 - 18.2K bytes - Viewed (0) -
impl/maven-core/src/site/apt/getting-to-container-configured-mojos.apt
there, we need to do several things to add capability to the default configuration of plexus. This document will detail those changes. Container Enhancements * ExpressionEvaluator Currently, the expression evaluator used to resolve configuration values is the DefaultExpressionEvaluator, which is a local variable within the implementation of the BasicComponentConfigurator. This ExpressionEvaluator
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle_test.go
ModTime: now, } obj2 := ObjectOpts{ Name: "obj2", ModTime: now, } // Go back seven days in the past now = now.Add(7 * 24 * time.Hour) evaluator := NewEvaluator(lc) evts := evaluator.eval([]ObjectOpts{obj1, obj2}, now) evt := evts[0] if evt.Action != TransitionAction { t.Fatalf("Expected action: %s but got %s", TransitionAction, evt.Action) }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 55.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java
import org.apache.maven.plugin.version.PluginVersionResolutionException; import org.apache.maven.project.MavenProject; /** * A stub dependency graph that is custom-made for testing concurrent build graph evaluations. * <p> * Implements a graph as follows: * A has no dependencies * B depends on A * C depends on A * X depends on B & C * Y depends on B * Z depends on C * </p> * */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.6K bytes - Viewed (0)