Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 118 of 118 for Evaluators (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. RELEASE.md

    *   The `SidecarEvaluatorModelExport` callback has been added to Keras as `keras.callbacks.SidecarEvaluatorModelExport`. This callback allows for exporting the model the best-scoring model as evaluated by a `SidecarEvaluator` evaluator. The evaluator regularly evaluates the model and exports it if the user-defined comparison function determines that it is an improvement.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top