Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 580 for evaluations (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

     * However, in practice there is usually an operation for evaluating the project's build script.
     *
     * The before/after evaluate operations are fired regardless whether anyone is actually listening.
     * This may change in future versions.
     *
     * The use of term “evaluate” is a legacy constraint.
     * Project evaluation is synonymous with “project configuration” (the latter being the preferred term).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/validtype.go

    // A[string]:
    //
    //   B[P₁]
    //         nest = A[string]
    //         path = A[A[string]]->B[P]->A[string]  <== path contains B[P]!
    //
    // But because we use the correct type nest, evaluation proceeds without
    // errors and we get the evaluation sequence:
    //
    //   struct{_ P₂}
    //         nest = A[string]->B[P]
    //         path = A[A[string]]->B[P]->A[string]->B[P]
    //   P₂
    //         nest = A[string]->B[P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/go/types/validtype.go

    // A[string]:
    //
    //   B[P₁]
    //         nest = A[string]
    //         path = A[A[string]]->B[P]->A[string]  <== path contains B[P]!
    //
    // But because we use the correct type nest, evaluation proceeds without
    // errors and we get the evaluation sequence:
    //
    //   struct{_ P₂}
    //         nest = A[string]->B[P]
    //         path = A[A[string]]->B[P]->A[string]->B[P]
    //   P₂
    //         nest = A[string]->B[P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

     * Recognized values are:
     * <table border="1">
     * <caption>Expression matrix</caption>
     * <tr><th>expression</th>                     <th></th>               <th>evaluation result</th></tr>
     * <tr><td><code>session</code></td>           <td></td>               <td>the actual {@link MavenSession}</td></tr>
     * <tr><td><code>session.*</code></td>         <td>(since Maven 3)</td><td></td></tr>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

     * Recognized values are:
     * <table border="1">
     * <caption>Expression matrix</caption>
     * <tr><th>expression</th>                     <th></th>               <th>evaluation result</th></tr>
     * <tr><td><code>session.*</code></td>         <td></td>               <td></td></tr>
     * <tr><td><code>project.*</code></td>         <td></td>               <td></td></tr>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/AnalysisStatementFilter.kt

     */
    
    package org.gradle.declarative.dsl.evaluation
    
    import org.gradle.declarative.dsl.evaluation.AnalysisStatementFilter.AnalyzeEverythingFilter
    import org.gradle.declarative.dsl.evaluation.AnalysisStatementFilter.CompositionFilter
    import org.gradle.declarative.dsl.evaluation.AnalysisStatementFilter.CompositionFilter.AndFilter
    import org.gradle.declarative.dsl.evaluation.AnalysisStatementFilter.CompositionFilter.OrFilter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    type messageFunc func(authenticationcel.ExpressionAccessor) (string, error)
    
    // checkValidationRulesEvaluation checks if the validation rules evaluation results
    // are valid. If the validation rules evaluation results are not valid, it returns
    // an error with an optional message that was set in the validation rule.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/LazyCodecTest.kt

    /**
     * [Lazy] values support Java serialization via a custom `writeReplace` method that forces their evaluation.
     */
    class LazyCodecTest : AbstractFunctionalTypeTest() {
    
        @Test
        fun `forces evaluation of Lazy objects`() {
            assertEagerEvaluationOf(lazy()) {
                value
            }
        }
    
        @Test
        fun `forces evaluation of dynamic Lazy fields`() {
            assertEagerEvaluationOf(BeanOf(lazy())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/registry.go

    type simpleRegistry struct {
    	lock sync.RWMutex
    	// evaluators tracked by the registry
    	evaluators map[schema.GroupResource]quota.Evaluator
    }
    
    // NewRegistry creates a simple registry with initial list of evaluators
    func NewRegistry(evaluators []quota.Evaluator) quota.Registry {
    	return &simpleRegistry{
    		evaluators: evaluatorsByGroupResource(evaluators),
    	}
    }
    
    func (r *simpleRegistry) Add(e quota.Evaluator) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/InterpretationSequence.kt

     */
    
    package org.gradle.internal.declarativedsl.evaluationSchema
    
    import org.gradle.declarative.dsl.evaluation.EvaluationSchema
    import org.gradle.declarative.dsl.evaluation.InterpretationSequence
    import org.gradle.declarative.dsl.evaluation.InterpretationSequenceStep
    import org.gradle.declarative.dsl.evaluation.InterpretationStepFeature
    import org.gradle.internal.declarativedsl.evaluator.conversion.EvaluationAndConversionSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top