Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for CEL (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	var celValidator *cel.Validator
    	if utilfeature.DefaultFeatureGate.Enabled(features.CustomResourceValidationExpressions) {
    		celValidator = cel.NewValidator(structuralSchema, true, celconfig.PerCallLimit) // CEL programs are compiled and cached here
    	}
    
    	strategy := customResourceStrategy{
    		ObjectTyper:     typer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    	}
    
    	// celFormatter configures additional formatters needed for some of the format strings like "CEL"
    	// for more information, see https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/formatter/cel/v3/cel.proto
    	celFormatter = &core.TypedExtensionConfig{
    		Name:        "envoy.formatter.cel",
    		TypedConfig: protoconv.MessageToAny(&celformatter.Cel{}),
    	}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object metadata; More info: https://git.k8s.io/community/contrib...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/features"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    }
    
    // ValidationRules describes a list of validation rules written in the CEL expression language.
    type ValidationRules []ValidationRule
    
    // ValidationRule describes a validation rule written in the CEL expression language.
    type ValidationRule struct {
    	// Rule represents the expression which will be evaluated by CEL.
    	// ref: https://github.com/google/cel-spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cel
    
    import (
    	"math/rand"
    	"strings"
    	"testing"
    
    	celgo "github.com/google/cel-go/cel"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/cel/library"
    )
    
    func TestCompileValidatingPolicyExpression(t *testing.T) {
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    }
    
    // CELTypeInfo represents all the typeInfo needed by CEL to compile x-kubernetes-validations rules for a schema node.
    type CELTypeInfo struct {
    	// Schema is a structural schema for this CELSchemaContext node. It must be non-nil.
    	Schema *structuralschema.Structural
    	// DeclType is a CEL declaration representation of Schema of this CELSchemaContext node. It must be non-nil.
    	DeclType *cel.DeclType
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    limitations under the License.
    */
    
    package library
    
    import (
    	"math"
    
    	"github.com/google/cel-go/checker"
    	"github.com/google/cel-go/common"
    	"github.com/google/cel-go/common/ast"
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    	"github.com/google/cel-go/common/types/traits"
    	"k8s.io/apiserver/pkg/cel"
    )
    
    // CostEstimator implements CEL's interpretable.ActualCostEstimator and checker.CostEstimator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top