- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 64 for evaluating (0.15 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java
} } catch (Exception e) { // TODO don't catch exception throw new ExpressionEvaluationException( "Error evaluating plugin parameter expression: " + expression, e); } } else if ("reactorProjects".equals(expression)) { value = session.getProjects(); } else if ("project".equals(expression)) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.6K 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) -
src/main/java/org/codelibs/fess/script/ScriptEngine.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java
break; } catch (Exception e) { // TODO don't catch exception throw new ExpressionEvaluationException( "Error evaluating plugin parameter expression: " + expression, e); } } } /*Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
* @param paramMap the parameters to bind to the script (null-safe, treated as empty map if null) * @return the result of script evaluation, or null if the template is empty or evaluation fails * @throws JobProcessingException if the script explicitly throws this exception * (allows scripts to signal job-specific errors that should propagate) */ @Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/11-language-change.yml
description: Changes to the language labels: ["Proposal", "LanguageChange", "LanguageChangeReview"] title: "proposal: spec: proposal title" body: - type: markdown attributes: value: | ## Our process for evaluating language changes can be found [here](https://go.googlesource.com/proposal/+/refs/heads/master#language-changes) - type: dropdown id: author-go-experience attributes: label: "Go Programming Experience"
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Aug 08 19:02:29 UTC 2024 - 4.7K bytes - Viewed (0) -
internal/bucket/replication/replication.go
return true, true } } } return hasARN, false } // FilterActionableRules returns the rules actions that need to be executed // after evaluating prefix/tag filtering func (c Config) FilterActionableRules(obj ObjectOpts) []Rule { if obj.Name == "" && (obj.OpType != ResyncReplicationType && obj.OpType != AllReplicationType) { return nil } var rules []Rule
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Equivalence.java
*/ @ForOverride protected abstract int doHash(T t); /** * Returns a new equivalence relation for {@code F} which evaluates equivalence by first applying * {@code function} to the argument, then evaluating using {@code this}. That is, for any pair of * non-null objects {@code x} and {@code y}, {@code equivalence.onResultOf(function).equivalent(a,
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 01:47:55 UTC 2025 - 14.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
* because it can resolve ambiguities when a path could be of many types. * * @param pathTypeFilter predicate evaluating whether a path type should be included in the result * @return {@code this} for method call chaining */ @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 23K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
} return v case '+': return +p.floatExpr() case '-': return -p.floatExpr() case scanner.Float: return p.atof(tok.String()) } p.errorf("unexpected %s evaluating float expression", tok) return 0 } // term = factor | factor ('*' | '/' | '%' | '>>' | '<<' | '&') factor func (p *Parser) term() uint64 { value := p.factor() for { switch p.peek() {
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Nov 12 03:59:40 UTC 2025 - 37.3K bytes - Viewed (0)