Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 225 for evacuate (0.17 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conversion/AnalysisAndConversionStepRunner.kt

                    applyReflectionToJvmObjectConversion(step.evaluationSchemaForStep, step, stepContext.targetObject, topLevelObjectReflection)
                    EvaluationResult.Evaluated(ConversionStepResult.ConversionSucceeded(analysisResult.stepResult))
                } else EvaluationResult.Evaluated(ConversionStepResult.ConversionNotApplicable(analysisResult.stepResult))
        }
    
        private
        fun <R : Any> applyReflectionToJvmObjectConversion(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/EvaluationResult.kt

    import org.gradle.internal.declarativedsl.language.SingleFailureResult
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentTraceElement
    
    
    sealed interface EvaluationResult<out R : StepResult> {
        class Evaluated<R : StepResult>(val stepResult: R) : EvaluationResult<R>
    
        class NotEvaluated<R : StepResult>(
            val stageFailures: List<StageFailure>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately before a project is evaluated.
         *
         * Any extensions added to the {@code Project} model will be available to build scripts.
         *
         * @param action The action to execute.
         * @see IsolatedAction for the requirements to isolated actions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compileTimeConstantProvider/AbstractCompileTimeConstantEvaluatorTest.kt

            } ?: testServices.assertions.fail { "Unsupported expression: $element" }
            val constantValue = executeOnPooledThreadInReadAction {
                analyseForTest(expression) {
                    expression.evaluate()
                }
            }
            val actual = buildString {
                appendLine("expression: ${expression.text}")
                appendLine("constant: ${constantValue?.renderAsKotlinConstant() ?: "NOT_EVALUATED"}")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultDevelocityBuildLifecycleService.java

            // - `allprojects` executes eagerly before any project has been evaluated, allowing its effects
            //   to be observable from other eager configuration blocks (e.g., `subprojects { ... }`).
            // - `lifecycle.beforeProject` executes just before each project is evaluated. Therefore, its effects
            //   are not observable from eager configuration blocks, which would anyway be incompatible with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 21:44:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile_test.go

    	}{
    		{
    			name: "invalid ClaimValidationCondition",
    			expressionAccessors: []ExpressionAccessor{
    				&ClaimValidationCondition{
    					Expression: "claims.foo",
    				},
    			},
    			wantErr: "must evaluate to bool",
    		},
    		{
    			name: "UserValidationCondition with wrong env",
    			expressionAccessors: []ExpressionAccessor{
    				&UserValidationCondition{
    					Expression: "user.username == 'foo'",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	Strings []string `json:"strings" protobuf:"bytes,1,opt,name=strings"`
    }
    
    // NamedResourcesRequest is used in ResourceRequestModel.
    type NamedResourcesRequest struct {
    	// Selector is a CEL expression which must evaluate to true if a
    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCacheRule.groovy

            private final String reason
    
            SkippingRuleStatement(String reason) {
                this.reason = reason
            }
    
            @Override
            void evaluate() throws Throwable {
                assumeTrue("Test does not support configuration cache: $reason", false)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. releasenotes/notes/50700.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50700
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 217 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

        : BaseScopedDiagnosticHandler(context, propagate, filter_stack) {
      if (filter_stack) {
        this->shouldShowLocFn = [](Location loc) -> bool {
          // For a Location to be surfaced in the stack, it must evaluate to true.
          // For any Location that is a FileLineColLoc:
          if (FileLineColLoc fileLoc = mlir::dyn_cast<FileLineColLoc>(loc)) {
            return !tensorflow::IsInternalFrameForFilename(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top