Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for CEL (0.21 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    message ValidatingAdmissionPolicyBinding {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		// If any schema related validation errors have been found at this level or deeper, skip CEL expression validation.
    		// Invalid OpenAPISchemas are not always possible to convert into valid CEL DeclTypes, and can lead to CEL
    		// validation error messages that are not actionable (will go away once the schema errors are resolved) and that
    		// are difficult for CEL expression authors to understand.
    		if len(allErrs.SchemaErrors) == 0 && celContext != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	// Required.
    	Kind string
    }
    
    // Validation specifies the CEL expression which is used to apply the validation.
    type Validation struct {
    	// Expression represents the expression which will be evaluated by CEL.
    	// ref: https://github.com/google/cel-spec
    	// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    message ValidatingAdmissionPolicyBinding {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    }
    
    // Validation specifies the CEL expression which is used to apply the validation.
    type Validation struct {
    	// Expression represents the expression which will be evaluated by CEL.
    	// ref: https://github.com/google/cel-spec
    	// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // Validation specifies the CEL expression which is used to apply the validation.
    type Validation struct {
    	// Expression represents the expression which will be evaluated by CEL.
    	// ref: https://github.com/google/cel-spec
    	// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cel
    
    import (
    	"fmt"
    	"math"
    	"strings"
    	"testing"
    
    	celgo "github.com/google/cel-go/cel"
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    
    	apiextensions "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    	if celErr, ok := err.(*cel.Error); ok {
    		switch celErr.Type {
    		case cel.ErrorTypeRequired:
    			return field.Required(fldPath, celErr.Detail)
    		case cel.ErrorTypeInvalid:
    			return field.Invalid(fldPath, expression.GetExpression(), celErr.Detail)
    		case cel.ErrorTypeInternal:
    			return field.InternalError(fldPath, celErr)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cel
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"testing"
    
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"k8s.io/utils/ptr"
    )
    
    func TestCelCostStability(t *testing.T) {
    	cases := []struct {
    		name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "rule": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top