Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 185 for singular2 (0.2 sec)

  1. samples/custom-bootstrap/README.md

    This will merge the passed in configuration with the default configuration. Singular values will replace the default values, while repeated values will be appended.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/errors/errors.go

    )
    
    // MessageCountMap contains occurrence for each error message.
    type MessageCountMap map[string]int
    
    // Aggregate represents an object that contains multiple errors, but does not
    // necessarily have singular semantic meaning.
    // The aggregate can be used with `errors.Is()` to check for the occurrence of
    // a specific error type.
    // Errors.As() is not supported, because the caller presumably cares about a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    		Name: "coolfoo.stable.example.com",
    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: v1.CustomResourceDefinitionNames{
    			Plural:     "coolfoos",
    			Singular:   "coolfoo",
    			ShortNames: []string{"foo"},
    			Kind:       "CoolFoo",
    			ListKind:   "CoolFooList",
    		},
    		Scope: v1.ClusterScoped,
    		Versions: []v1.CustomResourceDefinitionVersion{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/firsthit_restmapper.go

    )
    
    var (
    	_ ResettableRESTMapper = &FirstHitRESTMapper{}
    )
    
    // FirstHitRESTMapper is a wrapper for multiple RESTMappers which returns the
    // first successful result for the singular requests
    type FirstHitRESTMapper struct {
    	MultiRESTMapper
    }
    
    func (m FirstHitRESTMapper) String() string {
    	return fmt.Sprintf("FirstHitRESTMapper{\n\t%v\n}", m.MultiRESTMapper)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    				//      UnstructuredJSONScheme.
    				//   2. SetUnstructuredContent does not populate "apiVersion" and
    				//      "kind" on each entry of its Items
    				//      field. UnstructuredJSONScheme does, inferring the singular
    				//      Kind from the list Kind.
    				//   3. SetUnstructuredContent ignores entries of "items" that are
    				//      not JSON objects or are objects without
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/mcs-serviceexport-crd.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: serviceexports.{{ .Group }}
    spec:
      group: {{ .Group }}
      scope: Namespaced
      names:
        plural: serviceexports
        singular: serviceexport
        kind: ServiceExport
        shortNames:
          - svcex
      versions:
        - name: {{ .Version }}
          served: true
          storage: true
          subresources:
            status: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 4K bytes
    - Viewed (0)
  7. src/mdo/writer.vm

                writeDom(${classLcapName}.get${fieldCapName}(), serializer);
          #elseif ( $field.type == "java.util.List" && $field.to == "String" && $field.multiplicity == "*" )
            #set( $singularField = ${Helper.singular($fieldTagName)} )
                writeList("$fieldTagName", ${classLcapName}.get${fieldCapName}(), serializer, t -> writeTag("$singularField", "${def}", t, serializer));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/hostendpoints-crd.yaml

      name: hostendpoints.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: HostEndpoint
        listKind: HostEndpointList
        plural: hostendpoints
        singular: hostendpoint
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/lazy.go

    	if err := o.init(); err != nil {
    		return nil, err
    	}
    	return o.mapper.RESTMappings(gk, versions...)
    }
    
    func (o *lazyObject) ResourceSingularizer(resource string) (singular string, err error) {
    	if err := o.init(); err != nil {
    		return "", err
    	}
    	return o.mapper.ResourceSingularizer(resource)
    }
    
    func (o *lazyObject) Reset() {
    	o.lock.Lock()
    	defer o.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// Must be all lowercase.
    	Plural string `json:"plural" protobuf:"bytes,1,opt,name=plural"`
    	// singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.
    	// +optional
    	Singular string `json:"singular,omitempty" protobuf:"bytes,2,opt,name=singular"`
    	// shortNames are short names for the resource, exposed in API discovery documents,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top