Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 432 for evacuated (0.22 sec)

  1. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/interface.go

    	"k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    var _ cel.ExpressionAccessor = &ValidationCondition{}
    
    // ValidationCondition contains the inputs needed to compile, evaluate and validate a cel expression
    type ValidationCondition struct {
    	Expression string
    	Message    string
    	Reason     *metav1.StatusReason
    }
    
    func (v *ValidationCondition) GetExpression() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 17:47:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InetAddresses.java

       *
       * @param ipString {@code String} to evaluated as an IP URI host string literal
       * @return {@code true} if the argument is a valid IP URI host
       */
      public static boolean isUriInetAddress(String ipString) {
        return forUriStringOrNull(ipString, /* parseScope= */ false) != null;
      }
    
      /**
       * Evaluates whether the argument is an IPv6 "compat" address.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            val constantValue = ConstantExpressionEvaluator.getConstant(initializer, bindingContext)
            if (constantValue != null) {
                val evaluated = constantValue.toConstantValue(propertyDescriptor?.type ?: TypeUtils.NO_EXPECTED_TYPE).toKtConstantValue()
                return KaConstantInitializerValue(evaluated, initializer)
            }
        }
    
        return KaNonConstantInitializerValue(initializer)
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/assignments.go

    			check.assignError(orig_rhs, l, r)
    		}
    	}
    	// ensure that LHS variables have a type
    	for _, v := range lhs {
    		if v.typ == nil {
    			v.typ = Typ[Invalid]
    		}
    	}
    	// orig_rhs[0] was already evaluated
    }
    
    // assignVars type-checks assignments of expressions orig_rhs to variables lhs.
    func (check *Checker) assignVars(lhs, orig_rhs []syntax.Expr) {
    	l, r := len(lhs), len(orig_rhs)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

        @Override
        public Statement apply(final Statement base, Description description) {
            sampleName = getSampleName(description);
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    if (sampleName != null) {
                        IntegrationTestBuildContext context = IntegrationTestBuildContext.INSTANCE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeout.java

        /**
         * Returns the duration's time unit.
         *
         * @return the duration's time unit
         */
        TimeUnit unit() default TimeUnit.SECONDS;
    
        /**
         * Only enables the timeout when the closure is evaluated to `true`.
         *
         * @return the closure
         */
        Class<? extends Closure> onlyIf() default AlwaysTrue.class;
    
        class AlwaysTrue extends Closure<Boolean> {
            public AlwaysTrue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/DeclarativeKotlinScriptEvaluator.kt

    import org.gradle.internal.declarativedsl.settings.SettingsBlocksCheck
    import org.gradle.plugin.software.internal.SoftwareTypeRegistry
    
    
    internal
    interface DeclarativeKotlinScriptEvaluator {
        fun evaluate(
            target: Any,
            scriptSource: ScriptSource,
            targetScope: ClassLoaderScope,
        ): EvaluationResult<*>
    }
    
    
    internal
    fun defaultDeclarativeScriptEvaluator(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. doc/go_spec.html

    type of a specially annotated switch expression.
    The switch expression is evaluated exactly once in a switch statement.
    </p>
    
    <h4 id="Expression_switches">Expression switches</h4>
    
    <p>
    In an expression switch,
    the switch expression is evaluated and
    the case expressions, which need not be constants,
    are evaluated left-to-right and top-to-bottom; the first one that equals the
    switch expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

            ComponentUtil.register(scriptEngineFactory, "scriptEngineFactory");
            new AbstractScriptEngine() {
    
                @Override
                public Object evaluate(String template, Map<String, Object> paramMap) {
                    final Map<String, Object> bindingMap = new HashMap<>(paramMap);
                    bindingMap.put("container", SingletonLaContainerFactory.getContainer());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top