Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 887 for evacuate (0.22 sec)

  1. 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)
  2. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/TestExecutionResultEvaluatorTest.groovy

    import spock.lang.Specification
    
    import static org.gradle.util.internal.TextUtil.normaliseLineSeparators
    
    class TestExecutionResultEvaluatorTest extends Specification {
    
        def "evaluate throws exception if no results tracked"() {
            given:
            def ancestryTracker = Mock(BuildOperationAncestryTracker)
            def testExecutionRequest = Mock(TestExecutionRequestAction)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            project.application.cppSource.files == [src] as Set
        }
    
        def "registers a component for the application"() {
            when:
            project.pluginManager.apply(CppApplicationPlugin)
            project.evaluate()
    
            then:
            project.components.main == project.application
            project.application.binaries.get().name == ['mainDebug', 'mainRelease']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalization.java

        }
    
        @Override
        public ResourceFilter getClasspathResourceFilter() {
            return resourceFilter.evaluate();
        }
    
        @Override
        public ResourceEntryFilter getManifestAttributeResourceEntryFilter() {
            return manifestAttributeResourceFilter.evaluate();
        }
    
        @Override
        public Map<String, ResourceEntryFilter> getPropertiesFileFilters() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 07:34:45 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1beta1/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: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

        }
    
        def "error message contains which cacheIf spec failed to evaluate"() {
            when:
            determineNoCacheReason(
                [],
                [cacheableOutputProperty],
                [spec({ throw new RuntimeException() }, "Exception is thrown")],
            )
    
            then:
            def ex = thrown GradleException
            ex.message == "Could not evaluate spec for 'Exception is thrown'."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  7. mockwebserver-junit4/src/test/java/mockwebserver3/junit4/MockWebServerRuleTest.kt

        val statement: Statement =
          rule.apply(
            object : Statement() {
              override fun evaluate() {
                called.set(true)
                rule.server.url("/").toUrl().openConnection().connect()
              }
            },
            Description.EMPTY,
          )
        statement.evaluate()
        assertThat(called.get()).isTrue()
        try {
          rule.server.url("/").toUrl().openConnection().connect()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    			}
    			if c.filter != nil {
    				okay, err := c.filter.Evaluate(ctx, instance.Instance.Attributes)
    				if err != nil {
    					return nil, fmt.Errorf("evaluate filter CEL expression: %w", err)
    				}
    				if !okay {
    					continue
    				}
    			}
    			okay, err := request.Evaluate(ctx, instance.Instance.Attributes)
    			if err != nil {
    				return nil, fmt.Errorf("evaluate request CEL expression: %w", err)
    			}
    			if !okay {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.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