Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for CEL (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    limitations under the License.
    */
    
    package common_test
    
    import (
    	"errors"
    	"fmt"
    	"reflect"
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/yaml"
    	"k8s.io/apiserver/pkg/cel/common"
    	"k8s.io/apiserver/pkg/cel/openapi"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    type TestCase struct {
    	Name string
    
    	// Expected old value after traversal. If nil, then the traversal should fail.
    	OldValue interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    }
    
    // NamedResourcesFilter is used in ResourceFilterModel.
    message NamedResourcesFilter {
      // Selector is a CEL expression which must evaluate to true if a
      // resource instance is suitable. The language is as defined in
      // https://kubernetes.io/docs/reference/using-api/cel/
      //
      // In addition, for each type in NamedResourcesAttributeValue there is a map that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. go.mod

    	github.com/fsnotify/fsnotify v1.7.0
    	github.com/go-jose/go-jose/v3 v3.0.3
    	github.com/go-logr/logr v1.4.2
    	github.com/gogo/protobuf v1.3.2
    	github.com/golang/protobuf v1.5.4
    	github.com/google/cel-go v0.17.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/go-containerregistry v0.19.1
    	github.com/google/gofuzz v1.2.0
    	github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
    	github.com/google/uuid v1.6.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation_test.go

    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel"
    	"k8s.io/apimachinery/pkg/api/apitesting/fuzzer"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/sets"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    )
    
    // TestRoundTrip checks the conversion to go-openapi types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 04:49:59 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/google/cel-go/LICENSE

    = vendor/github.com/google/cel-go licensed under: =
    
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 01:47:04 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    	apiservervalidation "k8s.io/apiserver/pkg/apis/apiserver/validation"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	authorizationcel "k8s.io/apiserver/pkg/authorization/cel"
    	"k8s.io/apiserver/pkg/features"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/apiserver/plugin/pkg/authorizer/webhook/metrics"
    	"k8s.io/client-go/kubernetes/scheme"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    		// Grandfathered tags with no modern replacement will be converted as
    		// follows:
    		[maxLen]byte{'c', 'e', 'l', '-', 'g', 'a', 'u', 'l', 'i', 's', 'h'}: -1, // cel-gaulish
    		[maxLen]byte{'e', 'n', '-', 'g', 'b', '-', 'o', 'e', 'd'}:           -2, // en-GB-oed
    		[maxLen]byte{'i', '-', 'd', 'e', 'f', 'a', 'u', 'l', 't'}:           -3, // i-default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    			},
    		},
    
    		"broken-cel": {
    			resources:       node1Resources,
    			class:           class1,
    			classParameters: classParametersEmpty,
    			claimParameters: claimParametersBroken,
    
    			expectNodeResults: nodeResults{
    				node1: {suitableErr: `checking node "node-1" and resources of driver "driver-1": evaluate request CEL expression: no such key: no-such-attribute`},
    			},
    		},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. hack/unwanted-dependencies.json

          ],
          "go.opencensus.io": [
            "github.com/Microsoft/hcsshim"
          ],
          "golang.org/x/exp": [
            "github.com/antlr4-go/antlr/v4",
            "github.com/google/cel-go"
          ],
          "google.golang.org/appengine": [
            "github.com/grpc-ecosystem/grpc-gateway/v2",
            "github.com/prometheus/client_golang",
            "github.com/prometheus/common",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go

    	appsv1 "k8s.io/api/apps/v1"
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/cel/openapi/resolver"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    var (
    	scheme *runtime.Scheme = func() *runtime.Scheme {
    		res := runtime.NewScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top