Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 188 for recognizers (0.21 sec)

  1. pkg/controller/garbagecollector/garbagecollector.go

    			// 1. The reference is to an object of a custom type that has not yet been
    			//    recognized by gc.restMapper (this is a transient error).
    			// 2. The reference is to an invalid group/version. We don't currently
    			//    have a way to distinguish this from a valid type we will recognize
    			//    after the next discovery sync.
    			// For now, record the error and retry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. istioctl/pkg/analyze/analyze.go

    			if err != nil {
    				return nil, err
    			}
    			readers = append(readers, dirReaders...)
    		} else {
    			if !isValidFile(f) {
    				fmt.Fprintf(cmd.ErrOrStderr(), "Skipping file %v, recognized file extensions are: %v\n", f, fileExtensions)
    				continue
    			}
    			rs, err := gatherFile(f)
    			if err != nil {
    				return nil, err
    			}
    			readers = append(readers, rs)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/go/doc/comment/parse.go

    func isStdPkg(path string) bool {
    	_, ok := slices.BinarySearch(stdPkgs, path)
    	return ok
    }
    
    // DefaultLookupPackage is the default package lookup
    // function, used when [Parser.LookupPackage] is nil.
    // It recognizes names of the packages from the standard
    // library with single-element import paths, such as math,
    // which would otherwise be impossible to name.
    //
    // Note that the go/doc package provides a more sophisticated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  5. plugin/pkg/admission/limitranger/admission.go

    		limit := limitRange.Spec.Limits[i]
    		limitType := limit.Type
    		if limitType == corev1.LimitTypePersistentVolumeClaim {
    			for k, v := range limit.Min {
    				// normal usage of minConstraint. pvc.Spec.Resources.Limits is not recognized as user input
    				if err := minConstraint(string(limitType), string(k), v, pvc.Spec.Resources.Requests, api.ResourceList{}); err != nil {
    					errs = append(errs, err)
    				}
    			}
    			for k, v := range limit.Max {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    	"reflect"
    
    	"github.com/gogo/protobuf/proto"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer/recognizer"
    	"k8s.io/apimachinery/pkg/util/framer"
    	"k8s.io/klog/v2"
    )
    
    var (
    	// protoEncodingPrefix serves as a magic number for an encoded protobuf message on this serializer. All
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    	position     int
    	path         *field.Path
    }
    
    // ParserContext represents context during parsing:
    // some literal for example 'in' and 'notin' can be
    // recognized as operator for example 'x in (a)' but
    // it can be recognized as value for example 'value in (in)'
    type ParserContext int
    
    const (
    	// KeyAndOperator represents key and operator
    	KeyAndOperator ParserContext = iota
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

    import org.codehaus.plexus.component.configurator.expression.TypeAwareExpressionEvaluator;
    
    /**
     * Evaluator for plugin parameters expressions. Content surrounded by <code>${</code> and <code>}</code> is evaluated.
     * Recognized values are:
     * <table border="1">
     * <caption>Expression matrix</caption>
     * <tr><th>expression</th>                     <th></th>               <th>evaluation result</th></tr>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_test.go

    	unversioned bool
    	err         error
    }
    
    func (t *mockTyper) ObjectKinds(obj runtime.Object) ([]schema.GroupVersionKind, bool, error) {
    	return t.gvks, t.unversioned, t.err
    }
    
    func (t *mockTyper) Recognizes(_ schema.GroupVersionKind) bool {
    	return true
    }
    
    func TestDirectCodecEncode(t *testing.T) {
    	serializer := mockSerializer{}
    	typer := mockTyper{
    		gvks: []schema.GroupVersionKind{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 17:04:19 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_unstructured_test.go

    			outObj:        elseUnstructuredDecodableList,
    			targetVersion: elseGVK.GroupVersion(),
    		},
    		{
    			name:          "typer fail to recognize unstructured object gvk will fail the encoding",
    			outObj:        elseUnstructuredDecodable,
    			targetVersion: v1GVK.GroupVersion(),
    			typer: &mockTyper{
    				err: fmt.Errorf("invalid obj gvk"),
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 08 14:55:24 UTC 2018
    - 10.9K bytes
    - Viewed (0)
Back to top