Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 225 for evacuate (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                        ext.value = "from after evaluate"
                        doLast {
                            println "value: $value"
                        }
                    }
                }
            '''
    
            then:
            succeeds "fromAfterEvaluate"
    
            and:
            output.contains "value: from after evaluate and from container rule and from rule"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/integration_test/custom_aggregator_op_test.py

          aggregator = custom_aggregator_op_wrapper.custom_aggregator(
              input_tensor,
              id='1',
              calibration_method=_CalibrationMethod.CALIBRATION_METHOD_MIN_MAX,
          )
          aggregator_output = self.evaluate(aggregator)
          self.assertAllEqual(aggregator_output.output, [1.0, 2.0, 3.0, 4.0, 5.0])
          self.assertEqual(aggregator_output.min, 1.0)
          self.assertEqual(aggregator_output.max, 5.0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/text/template/exec.go

    			if _, ok := etyp.FieldByName(fieldName); !ok {
    				// If there's no such field, say "can't evaluate"
    				// instead of "nil pointer evaluating".
    				break
    			}
    		}
    		if isNil {
    			s.errorf("nil pointer evaluating %s.%s", typ, fieldName)
    		}
    	}
    	s.errorf("can't evaluate field %s in type %s", fieldName, typ)
    	panic("not reached")
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompileTimeConstantProvider.kt

    import org.jetbrains.kotlin.resolve.constants.evaluate.ConstantExpressionEvaluator
    import org.jetbrains.kotlin.types.TypeUtils
    
    
    internal class KaFe10CompileTimeConstantProvider(
        override val analysisSession: KaFe10Session
    ) : KaCompileTimeConstantProvider(), KaFe10SessionComponent {
        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun evaluate(expression: KtExpression): KaConstantValue? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    		// If ratcheting is enabled, allow rule with oldSelf to evaluate
    		// when `optionalOldSelf` is set to true
    		optionalOldSelfRule := ptr.Deref(rule.OptionalOldSelf, false)
    		if compiled.UsesOldSelf && oldObj == nil {
    			// transition rules are evaluated only if there is a comparable existing value
    			// But if the rule uses optional oldSelf and gate is enabled we allow
    			// the rule to be evaluated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/v1/types.go

    }
    
    // SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview.
    type SelfSubjectRulesReviewSpec struct {
    	// Namespace to evaluate rules for. Required.
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,1,opt,name=namespace"`
    }
    
    // SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompileTimeConstantProvider.kt

    import org.jetbrains.kotlin.analysis.api.components.KaCompileTimeConstantProvider
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    import org.jetbrains.kotlin.analysis.api.fir.evaluate.FirAnnotationValueConverter
    import org.jetbrains.kotlin.analysis.api.fir.evaluate.FirCompileTimeConstantEvaluator
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.low.level.api.fir.api.getOrBuildFir
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/call.go

    		x.mode = invalid
    	}
    
    	return statement
    }
    
    // exprList evaluates a list of expressions and returns the corresponding operands.
    // A single-element expression list may evaluate to multiple operands.
    func (check *Checker) exprList(elist []syntax.Expr) (xlist []*operand) {
    	if n := len(elist); n == 1 {
    		xlist, _ = check.multiExpr(elist[0], false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareProjectEvaluator.kt

        private val controller: ConfigurationCacheFingerprintController
    ) : ProjectEvaluator {
        override fun evaluate(project: ProjectInternal, state: ProjectStateInternal) {
            controller.runCollectingFingerprintForProject(project.identityPath) {
                delegate.evaluate(project, state)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ExpectingFailureRuleStatement.groovy

        ExpectingFailureRuleStatement(Statement next, String feature) {
            this.next = next
            this.feature = feature
        }
    
        @Override
        void evaluate() throws Throwable {
            try {
                next.evaluate()
                throw new ToBeFixedSpecInterceptor.UnexpectedSuccessException(feature)
            } catch (ToBeFixedSpecInterceptor.UnexpectedSuccessException ex) {
                throw ex
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top