Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 185 for singular2 (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs/pt/docs/tutorial/schema-extra-example.md

    href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#fixed-fields-20" class="external-link" target="_blank">`example`</a> para a versão modificada do **JSON Schema** que é usada, para o mesmo próposito (mas é apenas `example` no singular, não `examples`), e é isso que é usado pela UI da documentação da API(usando o Swagger UI).
    
    Portanto, embora `example` não seja parte do JSON Schema, é parte da versão customizada do JSON Schema usada pelo OpenAPI, e é isso que vai ser...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

    spec:
      group: crd.projectcalico.org
      names:
        kind: KubeControllersConfiguration
        listKind: KubeControllersConfigurationList
        plural: kubecontrollersconfigurations
        singular: kubecontrollersconfiguration
      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
    - 11K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    						SpecReplicasPath:   ".spec.replicas",
    						StatusReplicasPath: ".status.replicas",
    					},
    				},
    			},
    		},
    		Names: apiextensionsv1.CustomResourceDefinitionNames{
    			Plural:   "foos",
    			Singular: "foo",
    			Kind:     "Foo",
    			ListKind: "FooList",
    		},
    		Scope:                 apiextensionsv1.ClusterScoped,
    		PreserveUnknownFields: false,
    	},
    }
    
    const defaultingFooV1beta1Schema = `
    type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/listtype_test.go

    			{
    				Name:    "v1beta1",
    				Storage: true,
    				Served:  true,
    				Schema:  fixtures.AllowAllSchema(),
    			},
    		},
    		Names: apiextensionsv1.CustomResourceDefinitionNames{
    			Plural:   "foos",
    			Singular: "foo",
    			Kind:     "Foo",
    			ListKind: "FooList",
    		},
    		Scope: apiextensionsv1.ClusterScoped,
    	},
    }
    
    const (
    	// structural schema because x-kubernetes-list-type is only allowed for those
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    						Kind: "Node",
    					},
    					ShortNames: []string{"no"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    			},
    		},
    		{
    			name: "Singular Resource Name",
    			resources: []metav1.APIResource{
    				{
    					Name:         "nodes",
    					SingularName: "node",
    					Kind:         "Node",
    					ShortNames:   []string{"no"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top