Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for Evaluators (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/features/InterpretationStepFeatureHandler.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.features
    
    import org.gradle.declarative.dsl.evaluation.InterpretationStepFeature
    
    
    interface InterpretationStepFeatureHandler<F : InterpretationStepFeature> {
        fun shouldHandleFeature(feature: F): Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 880 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

                cancellationToken: BuildCancellationToken
            ): ProjectEvaluator {
                val evaluator = VintageModelProvider().createProjectEvaluator(buildOperationRunner, cachingServiceLocator, scriptPluginFactory, cancellationToken)
                return ConfigurationCacheAwareProjectEvaluator(evaluator, fingerprintController)
            }
        }
    
        private
        class VintageModelProvider : ServiceRegistrationProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/schema/InterpretationSchemaBuilder.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.schema
    
    import org.gradle.declarative.dsl.evaluation.InterpretationSequence
    
    
    interface InterpretationSchemaBuilder {
        fun getEvaluationSchemaForScript(
            scriptContext: DeclarativeScriptContext,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conversion/InterpretationSequenceStepWithConversion.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.conversion
    
    import org.gradle.declarative.dsl.evaluation.EvaluationSchema
    import org.gradle.declarative.dsl.evaluation.InterpretationSequenceStep
    import org.gradle.internal.declarativedsl.mappingToJvm.RuntimeCustomAccessors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    		return fmt.Errorf("server config must be non-nil")
    	}
    
    	// 1. Build policy evaluator
    	evaluator, err := o.newPolicyRuleEvaluator()
    	if err != nil {
    		return err
    	}
    
    	// 2. Build log backend
    	var logBackend audit.Backend
    	w, err := o.LogOptions.getWriter()
    	if err != nil {
    		return err
    	}
    	if w != nil {
    		if evaluator == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/ProjectSchema.kt

    import org.gradle.internal.declarativedsl.evaluationSchema.DefaultInterpretationSequence
    import org.gradle.internal.declarativedsl.evaluationSchema.buildEvaluationAndConversionSchema
    import org.gradle.internal.declarativedsl.evaluator.conversion.EvaluationAndConversionSchema
    import org.gradle.internal.declarativedsl.software.softwareTypesWithPluginApplication
    import org.gradle.plugin.software.internal.SoftwareTypeRegistry
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption.go

    	// Default score functions will be processed if nil returned here for backwards-compatibility.
    	OrderedScoreFuncs(ctx context.Context, nodesToVictims map[string]*extenderv1.Victims) []func(node string) int64
    }
    
    type Evaluator struct {
    	PluginName string
    	Handler    framework.Handle
    	PodLister  corelisters.PodLister
    	PdbLister  policylisters.PodDisruptionBudgetLister
    	State      *framework.CycleState
    	Interface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. pkg/quota/v1/install/update_filter.go

    limitations under the License.
    */
    
    package install
    
    import (
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kubernetes/pkg/quota/v1/evaluator/core"
    	"k8s.io/utils/clock"
    )
    
    // DefaultUpdateFilter returns the default update filter for resource update events for consideration for quota.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 22:39:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/policy/checker.go

    )
    
    const (
    	// DefaultAuditLevel is the default level to audit at, if no policy rules are matched.
    	DefaultAuditLevel = audit.LevelNone
    )
    
    // NewPolicyRuleEvaluator creates a new policy rule evaluator.
    func NewPolicyRuleEvaluator(policy *audit.Policy) auditinternal.PolicyRuleEvaluator {
    	for i, rule := range policy.Rules {
    		policy.Rules[i].OmitStages = unionStages(policy.OmitStages, rule.OmitStages)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 22:24:14 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.KaFe10Session
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.resolve.BindingContext
    
    @OptIn(KaAnalysisNonPublicApi::class) // used in IDEA K1 evaluator
    @Suppress("unused")
    fun KaSession.getInlineFunctionAnalyzer(analyzeOnlyReifiedInlineFunctions: Boolean): InlineFunctionAnalyzer {
        require(this is KaFe10Session) {
            "K2 implementation shouldn't call this code"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top