Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 887 for evacuate (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

                    if (evaluator instanceof TypeAwareExpressionEvaluator) {
                        result = ((TypeAwareExpressionEvaluator) evaluator).evaluate(value, type);
                    } else {
                        result = evaluator.evaluate(value);
                    }
                }
                if (null == result && configuration.getChildCount() == 0) {
                    value = configuration.getAttribute("default-value");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

            project.evaluate()
    
            then:
            project.library instanceof SwiftLibrary
            project.library.module.get() == "TestLib"
            project.library.swiftSource.files == [src] as Set
        }
    
        def "registers a component for the library with default linkage"() {
            when:
            project.pluginManager.apply(SwiftLibraryPlugin)
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tls.go

    	// TLS matches are composed of runtime and static predicates.
    	// Static predicates can be evaluated during the generation of the config. Examples: gateway, source labels, etc.
    	// Runtime predicates cannot be evaluated during config generation. Instead the proxy must be configured to
    	// evaluate them. Examples: SNI hosts, source/destination subnets, etc.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K 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. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/kotlin/build.gradle.kts

    // tag::after-evaluate[]
    gradle.beforeProject {
        // Set a default value
        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject {
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            val projectString = project.toString()
            println("Adding test task to $projectString")
            tasks.register("test") {
                doLast {
                    println("Running tests for $projectString")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 492 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/SetSystemPropertiesTest.groovy

            properties[TEST_PROPERTY] = "baz"
            SetSystemProperties setSystemProperties = new SetSystemProperties(properties)
    
            when:
            setSystemProperties.apply(base, Stub(Description)).evaluate()
    
            then:
            1 * base.evaluate() >> { assert System.getProperty(TEST_PROPERTY) == "baz" }
    
            and:
            System.getProperty(TEST_PROPERTY) == "bar"
        }
    
        def "cannot set java.io.tmpdir"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftApplicationPluginTest.groovy

            given:
            def src = projectDir.file("src/main/swift/main.swift").createFile()
    
            when:
            project.pluginManager.apply(SwiftApplicationPlugin)
            project.evaluate()
    
            then:
            project.application instanceof SwiftApplication
            project.application.module.get() == "TestApp"
            project.application.swiftSource.files == [src] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top