Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 118 for Evaluators (0.47 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/features"
    )
    
    // PolicyTestContext is everything you need to unit test a policy plugin
    type PolicyTestContext[P runtime.Object, B runtime.Object, E Evaluator] struct {
    	context.Context
    	Plugin *Plugin[PolicyHook[P, B, E]]
    	Source Source[PolicyHook[P, B, E]]
    	Start  func() error
    
    	scheme     *runtime.Scheme
    	restMapper *meta.DefaultRESTMapper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/preemption/preemption_test.go

    			})
    
    			fakePostPlugin := &FakePostFilterPlugin{numViolatingVictim: tt.numViolatingVictim}
    
    			for cycle, pod := range tt.testPods {
    				state := framework.NewCycleState()
    				pe := Evaluator{
    					PluginName: "FakePostFilter",
    					Handler:    fwk,
    					Interface:  fakePostPlugin,
    					State:      state,
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

    import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;
    import org.codehaus.plexus.component.configurator.expression.TypeAwareExpressionEvaluator;
    
    /**
     * Evaluator for plugin parameters expressions. Content surrounded by <code>${</code> and <code>}</code> is evaluated.
     * Recognized values are:
     * <table border="1">
     * <caption>Expression matrix</caption>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. .github/CODEOWNERS

    platforms/core-configuration/declarative-dsl-api/                   @gradle/bt-declarative-dsl
    platforms/core-configuration/declarative-dsl-core/                  @gradle/bt-declarative-dsl
    platforms/core-configuration/declarative-dsl-evaluator/             @gradle/bt-declarative-dsl
    platforms/core-configuration/declarative-dsl-provider/              @gradle/bt-declarative-dsl
    platforms/core-configuration/declarative-dsl-tooling-builders/      @gradle/bt-declarative-dsl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/html/template/multi_test.go

    	{"invoke nested int", `{{template "nested" .I}}`, "17", tVal, true},
    	{"variable declared by template", `{{template "nested" $x:=.SI}},{{index $x 1}}`, "[3 4 5],4", tVal, true},
    
    	// User-defined function: test argument evaluator.
    	{"testFunc literal", `{{oneArg "joe"}}`, "oneArg=joe", tVal, true},
    	{"testFunc .", `{{oneArg .}}`, "oneArg=joe", "joe", true},
    }
    
    // These strings are also in testdata/*.
    const multiText1 = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

    import org.jetbrains.kotlin.resolve.constants.evaluate.evalBinaryOp
    import org.jetbrains.kotlin.resolve.constants.evaluate.evalUnaryOp
    import org.jetbrains.kotlin.types.ConstantValueKind
    
    /**
     * An evaluator that transform numeric operation, such as div, into compile-time constant iff involved operands, such as explicit receiver
     * and the argument, are compile-time constant as well.
     */
    internal object FirCompileTimeConstantEvaluator {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. .teamcity/subprojects.json

        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "declarative-dsl-evaluator",
        "path": "platforms/core-configuration/declarative-dsl-evaluator",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "declarative-dsl-provider",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    							Kind:       definition.Spec.ParamKind.Kind,
    						},
    						nested: param,
    					}
    				}
    
    				validationResults = append(validationResults,
    					hook.Evaluator.Validate(
    						ctx,
    						matchResource,
    						versionedAttr,
    						p,
    						namespace,
    						celconfig.RuntimeCELCostBudget,
    						authz,
    					),
    				)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    			Annotations:                namespace.Annotations,
    			Finalizers:                 namespace.Finalizers,
    		},
    	}
    }
    
    // CompilationErrors returns a list of all the errors from the compilation of the evaluator
    func (e *filter) CompilationErrors() []error {
    	compilationErrors := []error{}
    	for _, result := range e.compilationResults {
    		if result.Error != nil {
    			compilationErrors = append(compilationErrors, result.Error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

    import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;
    import org.codehaus.plexus.component.configurator.expression.TypeAwareExpressionEvaluator;
    
    /**
     * Evaluator for plugin parameters expressions. Content surrounded by <code>${</code> and <code>}</code> is evaluated.
     * Recognized values are:
     * <table border="1">
     * <caption>Expression matrix</caption>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top