Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 141 for singular2 (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/core/v1/conversion.go

    	if err := autoConvert_core_PodStatus_To_v1_PodStatus(in, out, s); err != nil {
    		return err
    	}
    	// at the this point autoConvert copied core.PodIPs -> v1.PodIPs
    	//  v1.PodIP (singular value field, which does not exist in core) needs to
    	// be set with core.PodIPs[0]
    	if len(in.PodIPs) > 0 {
    		out.PodIP = in.PodIPs[0].IP
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. docs/uk/docs/tutorial/body.md

    ## Без Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

      creationTimestamp: null
      name: bfdprofiles.metallb.io
    spec:
      group: metallb.io
      names:
        kind: BFDProfile
        listKind: BFDProfileList
        plural: bfdprofiles
        singular: bfdprofile
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.passiveMode
          name: Passive Mode
          type: boolean
        - jsonPath: .spec.transmitInterval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer_test.go

    	return nil, nil
    }
    func (doNothingRESTMapper) RESTMappings(gk schema.GroupKind, versions ...string) ([]*meta.RESTMapping, error) {
    	return nil, nil
    }
    func (doNothingRESTMapper) ResourceSingularizer(resource string) (singular string, err error) {
    	return "", nil
    }
    
    type doNothingAdmission struct{}
    
    func (doNothingAdmission) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/mdo/reader.vm

          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #if ( $Helper.isFlatItems( $field ) )
            #set ( $fieldTagName = $Helper.singular( $fieldTagName ) )
          #end
          #set ( $fieldCapName = $Helper.capitalise( $field.name ) )
                    case "${fieldTagName}": {
          #if ( $field.type == "String" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
Back to top