Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for celBool (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/value.go

    		return v.Equal(other)
    	case PlainTextValue:
    		return celBool(string(v) == other.Value().(string))
    	case *MultilineStringValue:
    		return celBool(v.Value == other.Value().(string))
    	case time.Duration:
    		otherDuration := other.Value().(time.Duration)
    		return celBool(v == otherDuration)
    	case time.Time:
    		otherTimestamp := other.Value().(time.Time)
    		return celBool(v.Equal(otherTimestamp))
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
Back to top