Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 111 for Evaluators (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/text/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: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    	defer func() {
    		metrics.PreemptionAttempts.Inc()
    	}()
    
    	pe := preemption.Evaluator{
    		PluginName: names.DefaultPreemption,
    		Handler:    pl.fh,
    		PodLister:  pl.podLister,
    		PdbLister:  pl.pdbLister,
    		State:      state,
    		Interface:  pl,
    	}
    
    	result, status := pe.Preempt(ctx, pod, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. settings.gradle.kts

            subproject("core-kotlin-extensions")
            subproject("core-serialization-codecs")
            subproject("declarative-dsl-api")
            subproject("declarative-dsl-core")
            subproject("declarative-dsl-evaluator")
            subproject("declarative-dsl-provider")
            subproject("declarative-dsl-tooling-models")
            subproject("declarative-dsl-tooling-builders")
            subproject("dependency-management-serialization-codecs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/types.go

    	f, found := t.Fields[name]
    	return f, found
    }
    
    // HasTrait implements the CEL ref.Type interface making this type declaration suitable for use
    // within the CEL evaluator.
    func (t *DeclType) HasTrait(trait int) bool {
    	if t.traitMask&trait == trait {
    		return true
    	}
    	if t.defaultValue == nil {
    		return false
    	}
    	_, isDecl := t.defaultValue.Type().(*DeclType)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				if _, status := fwk.RunPreFilterPlugins(ctx, state, pod); !status.IsSuccess() {
    					t.Errorf("cycle %d: Unexpected PreFilter Status: %v", cycle, status)
    				}
    				pe := preemption.Evaluator{
    					PluginName: names.DefaultPreemption,
    					Handler:    pl.fh,
    					PodLister:  pl.podLister,
    					PdbLister:  pl.pdbLister,
    					State:      state,
    					Interface:  pl,
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-67027`](https://youtrack.jetbrains.com/issue/KT-67027) K2: Review all use-sites of annotation arguments utilities
    - [`KT-65012`](https://youtrack.jetbrains.com/issue/KT-65012) IR Evaluator: `NoSuchFieldException` when evaluating protected/private fields of superclasses
    - [`KT-66953`](https://youtrack.jetbrains.com/issue/KT-66953) K2: toByte() call on Char leads to ClassCastException for klib backends
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (!rt || !rt.hasStaticShape() || rt.getRank() != 1) return {};
      int dim_size = rt.getDimSize(0);
    
      // Worklist to direct partial evaluation.
      SmallVector<ValuePort, 4> worklist;
    
      // Simple evaluator that attempts to partially evaluate the input value even
      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top