Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for NewCompiler (0.12 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    // nonStrictStatelessCELCompiler is a cel Compiler that does not enforce strict cost enforcement.
    var strictStatelessCELCompiler = plugincel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true))
    var nonStrictStatelessCELCompiler = plugincel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), false))
    
    func createCompiler(allowComposition, strictCost bool) plugincel.Compiler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	var allErrs field.ErrorList
    
    	// strictCost is set to true which enables the strict cost for CEL validation.
    	compiler := authenticationcel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true))
    	state := &validationState{}
    
    	allErrs = append(allErrs, validateIssuer(authenticator.Issuer, disallowedIssuers, fldPath.Child("issuer"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    		strictStatelessCELCompiler = plugincel.NewCompiler(extended)
    		defer func() {
    			strictStatelessCELCompiler = plugincel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), strictCost))
    		}()
    	} else {
    		nonStrictStatelessCELCompiler = plugincel.NewCompiler(extended)
    		defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	certutil "k8s.io/client-go/util/cert"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/utils/pointer"
    )
    
    var (
    	compiler = authenticationcel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true))
    )
    
    func TestValidateAuthenticationConfiguration(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top