Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 185 for singular2 (0.22 sec)

  1. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

    spec:
      group: snapshot.storage.k8s.io
      names:
        kind: VolumeSnapshotClass
        listKind: VolumeSnapshotClassList
        plural: volumesnapshotclasses
        shortNames:
          - vsclass
          - vsclasses
        singular: volumesnapshotclass
      scope: Cluster
      versions:
        - additionalPrinterColumns:
            - jsonPath: .driver
              name: Driver
              type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    type CategoriesProvider interface {
    	Categories() []string
    }
    
    // SingularNameProvider returns singular name of resources. This is used by kubectl discovery to have singular
    // name representation of resources. In case of shortcut conflicts(with CRD shortcuts) singular name should always map to this resource.
    type SingularNameProvider interface {
    	GetSingularName() string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    					Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
    						{
    							Name: "v1",
    						},
    					},
    					Names: apiextensionsv1.CustomResourceDefinitionNames{
    						Plural:   "foos",
    						Singular: "foo",
    						Kind:     "Foo",
    						ListKind: "FooList",
    					},
    					Scope: apiextensionsv1.NamespaceScoped,
    				},
    			}, "v1", schema, Options{V2: tt.v2})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    	// the provided version(s).
    	RESTMappings(gk schema.GroupKind, versions ...string) ([]*RESTMapping, error)
    
    	ResourceSingularizer(resource string) (singular string, err error)
    }
    
    // ResettableRESTMapper is a RESTMapper which is capable of resetting itself
    // from discovery.
    // All rest mappers that delegate to other rest mappers must implement this interface and dynamically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. schema/naming.go

    func (ns NamingStrategy) SchemaName(table string) string {
    	table = strings.TrimPrefix(table, ns.TablePrefix)
    
    	if ns.SingularTable {
    		return ns.toSchemaName(table)
    	}
    	return ns.toSchemaName(inflection.Singular(table))
    }
    
    // ColumnName convert string to column name
    func (ns NamingStrategy) ColumnName(table, column string) string {
    	return ns.toDBName(column)
    }
    
    // JoinTableName convert string to join table name
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: serviceimports.{{ .Group }}
    spec:
      group: {{ .Group }}
      scope: Namespaced
      names:
        plural: serviceimports
        singular: serviceimport
        kind: ServiceImport
        shortNames:
        - svcim
      versions:
      - name: {{ .Version }}
        served: true
        storage: true
        subresources:
          status: {}
        additionalPrinterColumns:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    				Group: "mygroup.example.com",
    				Names: apiextensionsv1.CustomResourceDefinitionNames{
    					Plural:     "noxus",
    					Singular:   "nonenglishnoxu",
    					Kind:       "WishIHadChosenNoxu",
    					ShortNames: []string{"foo", "bar", "abc", "def"},
    					ListKind:   "NoxuItemList",
    				},
    				Scope: apiextensionsv1.NamespaceScoped,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy_test.go

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: foos.test
    spec:
      group: test
      names:
        kind: Foo
        listKind: FooList
        plural: foos
        singular: foo
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            type: object
            properties:
              numArray:
                type: array
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/mdo/writer-stax.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${loctrac},
                        t -> writeTag("$singularField", null, t, serializer${loctracnull}));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/priority.go

    func (m PriorityRESTMapper) RESTMappings(gk schema.GroupKind, versions ...string) ([]*RESTMapping, error) {
    	return m.Delegate.RESTMappings(gk, versions...)
    }
    
    func (m PriorityRESTMapper) ResourceSingularizer(resource string) (singular string, err error) {
    	return m.Delegate.ResourceSingularizer(resource)
    }
    
    func (m PriorityRESTMapper) ResourcesFor(partiallySpecifiedResource schema.GroupVersionResource) ([]schema.GroupVersionResource, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top