Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 882 for evacuated (0.71 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"valueExpression": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  2. internal/s3select/sql/evaluate.go

    func (e *ConditionOperand) evalNode(r Record, tableAlias string) (*Value, error) {
    	opVal, opErr := e.Operand.evalNode(r, tableAlias)
    	if opErr != nil || e.ConditionRHS == nil {
    		return opVal, opErr
    	}
    
    	// Need to evaluate the ConditionRHS
    	switch {
    	case e.ConditionRHS.Compare != nil:
    		cmpRight, cmpRErr := e.ConditionRHS.Compare.Operand.evalNode(r, tableAlias)
    		if cmpRErr != nil {
    			return nil, cmpRErr
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // Required.
      optional string key = 1;
    
      // valueExpression represents the expression which is evaluated by CEL to
      // produce an audit annotation value. The expression must evaluate to either
      // a string or null value. If the expression evaluates to a string, the
      // audit annotation is included with the string value. If the expression
      // evaluates to null or empty string the audit annotation will be omitted.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"valueExpression": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// valueExpression represents the expression which is evaluated by CEL to
    	// produce an audit annotation value. The expression must evaluate to either
    	// a string or null value. If the expression evaluates to a string, the
    	// audit annotation is included with the string value. If the expression
    	// evaluates to null or empty string the audit annotation will be omitted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/types.go

    	//
    	// Required.
    	Key string
    
    	// valueExpression represents the expression which is evaluated by CEL to
    	// produce an audit annotation value. The expression must evaluate to either
    	// a string or null value. If the expression evaluates to a string, the
    	// audit annotation is included with the string value. If the expression
    	// evaluates to null or empty string the audit annotation will be omitted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Required.
      optional string key = 1;
    
      // valueExpression represents the expression which is evaluated by CEL to
      // produce an audit annotation value. The expression must evaluate to either
      // a string or null value. If the expression evaluates to a string, the
      // audit annotation is included with the string value. If the expression
      // evaluates to null or empty string the audit annotation will be omitted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"valueExpression": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Required.
      optional string key = 1;
    
      // valueExpression represents the expression which is evaluated by CEL to
      // produce an audit annotation value. The expression must evaluate to either
      // a string or null value. If the expression evaluates to a string, the
      // audit annotation is included with the string value. If the expression
      // evaluates to null or empty string the audit annotation will be omitted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

        ): KaConstantValue? {
            val evaluated = evaluate(fir) ?: return null
    
            val value = evaluated.value
            val psi = evaluated.psi as? KtElement
            return when (evaluated.kind) {
                ConstantValueKind.Byte -> KaConstantValue.KaByteConstantValue(value as Byte, psi)
                ConstantValueKind.Int -> KaConstantValue.KaIntConstantValue(value as Int, psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top