Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 415 for evaluations (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    				celMatcher: matcher,
    				validationFilter: &fakeCelFilter{
    					evaluations: tc.evaluations,
    					throwError:  tc.throwError,
    				},
    				messageFilter: &fakeCelFilter{
    					evaluations: tc.messageEvaluations,
    					throwError:  tc.throwError,
    				},
    				auditAnnotationFilter: &fakeCelFilter{
    					evaluations: tc.auditEvaluations,
    					throwError:  tc.throwError,
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/cel/mapper.go

    }
    
    func (m *mapper) eval(ctx context.Context, input map[string]interface{}) ([]EvaluationResult, error) {
    	evaluations := make([]EvaluationResult, len(m.compilationResults))
    
    	for i, compilationResult := range m.compilationResults {
    		var evaluation = &evaluations[i]
    		evaluation.ExpressionAccessor = compilationResult.ExpressionAccessor
    
    		evalResult, _, err := compilationResult.Program.ContextEval(ctx, input)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 20:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/metrics_test.go

    			}
    		})
    	}
    }
    
    type fakeAuthorizerMetrics struct {
    	totalCode string
    
    	latency     float64
    	latencyCode string
    
    	evaluations       int
    	evaluationsResult string
    
    	duration       float64
    	durationResult string
    
    	failOpen       int
    	failOpenResult string
    
    	cel.NoopMatcherMetrics
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	for i, compilationResult := range f.compilationResults {
    		var evaluation = &evaluations[i]
    		if compilationResult.ExpressionAccessor == nil { // in case of placeholder
    			continue
    		}
    		evaluation.ExpressionAccessor = compilationResult.ExpressionAccessor
    		if compilationResult.Error != nil {
    			evaluation.Error = &cel.Error{
    				Type:   cel.ErrorTypeInvalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	evaluations1 := atomic.Int64{}
    	evaluations2 := atomic.Int64{}
    
    	compiler.RegisterDefinition(&policy1, func(ctx context.Context, matchedResource schema.GroupVersionResource, versionedAttr *admission.VersionedAttributes, versionedParams runtime.Object, namespace *v1.Namespace, runtimeCELCostBudget int64, authz authorizer.Authorizer) validating.ValidateResult {
    		evaluations1.Add(1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/interface.go

    	AuditAnnotations []PolicyAuditAnnotation
    }
    
    // Validator is contains logic for converting ValidationEvaluation to PolicyDecisions
    type Validator interface {
    	// Validate is used to take cel evaluations and convert into decisions
    	// runtimeCELCostBudget was added for testing purpose only. Callers should always use const RuntimeCELCostBudget from k8s.io/apiserver/pkg/apis/cel/config.go as input.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 17:47:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	group           singleflight.Group
    	liveTTL         time.Duration
    	// updatedQuotas holds a cache of quotas that we've updated.  This is used to pull the "really latest" during back to
    	// back quota evaluations that touch the same quota doc.  This only works because we can compare etcd resourceVersions
    	// for the same resource as integers.  Before this change: 22 updates with 12 conflicts.  after this change: 15 updates with 0 conflicts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. 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 &amp; C
     * Y depends on B
     * Z depends on C
     * </p>
     *
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    by a period '.' and called "dot", to the value at the current location in the
    structure as execution proceeds.
    
    The input text for a template is UTF-8-encoded text in any format.
    "Actions"--data evaluations or control structures--are delimited by
    "{{" and "}}"; all text outside actions is copied to the output unchanged.
    
    Once parsed, a template may be executed safely in parallel, although if parallel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      let summary = "Identity op which associates statistics with the value.";
    
      let description = [{
        Associates statistics about the runtime ranges of values observed for
        evaluations of this node.
    
        Statistics about the entire type are reported in the 'layerStats' attribute
        and those for each axis, in the (optional) `axisStats` attribute. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top