Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 185 for singular2 (0.22 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

              },
              "singularName": {
                "default": "",
                "description": "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
                "type": "string"
              },
              "storageVersionHash": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  2. src/encoding/ascii85/ascii85_test.go

    package ascii85
    
    import (
    	"bytes"
    	"io"
    	"strings"
    	"testing"
    )
    
    type testpair struct {
    	decoded, encoded string
    }
    
    var bigtest = testpair{
    	"Man is distinguished, not only by his reason, but by this singular passion from " +
    		"other animals, which is a lust of the mind, that by a perseverance of delight in " +
    		"the continued and indefatigable generation of knowledge, exceeds the short " +
    		"vehemence of any carnal pleasure.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

              },
              "singularName": {
                "default": "",
                "description": "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
                "type": "string"
              },
              "storageVersionHash": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: apiextensionsv1.CustomResourceDefinitionNames{
    			Plural: "multiversion", Singular: "multiversion", Kind: "MultiVersion", ShortNames: []string{"mv"}, ListKind: "MultiVersionList", Categories: []string{"all"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

    metadata:
      name: bgpconfigurations.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: BGPConfiguration
        listKind: BGPConfigurationList
        plural: bgpconfigurations
        singular: bgpconfiguration
      preserveUnknownFields: false
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    	r.info, r.err = infos, err
    	return infos, err
    }
    
    // Object returns a single object representing the output of a single visit to all
    // found resources.  If the Builder was a singular context (expected to return a
    // single resource by user input) and only a single resource was found, the resource
    // will be returned as is.  Otherwise, the returned resources will be part of an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // Must be all lowercase.
      optional string plural = 1;
    
      // singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.
      // +optional
      optional string singular = 2;
    
      // shortNames are short names for the resource, exposed in API discovery documents,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("plural"), names.Plural, strings.Join(errs, ",")))
    	}
    	if errs := utilvalidation.IsDNS1035Label(names.Singular); len(names.Singular) > 0 && len(errs) > 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("singular"), names.Singular, strings.Join(errs, ",")))
    	}
    	if errs := utilvalidation.IsDNS1035Label(strings.ToLower(names.Kind)); len(names.Kind) > 0 && len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	out.Plural = in.Plural
    	out.Singular = in.Singular
    	out.ShortNames = *(*[]string)(unsafe.Pointer(&in.ShortNames))
    	out.Kind = in.Kind
    	out.ListKind = in.ListKind
    	out.Categories = *(*[]string)(unsafe.Pointer(&in.Categories))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // Must be all lowercase.
      optional string plural = 1;
    
      // singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.
      // +optional
      optional string singular = 2;
    
      // shortNames are short names for the resource, exposed in API discovery documents,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top