Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for shortNames (0.27 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/shortnames.go

    Cherry Mui <******@****.***> 1669138745 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller_test.go

    				NewOrDie(),
    			existing: []*apiextensionsv1.CustomResourceDefinition{
    				newCRD("alfa.bravo.com").
    					SpecNames("alfa", "delta-singular", "echo-kind", "foxtrot-listkind", "golf-shortname-1", "hotel-shortname-2").
    					StatusNames("alfa", "delta-singular", "echo-kind", "foxtrot-listkind", "golf-shortname-1", "hotel-shortname-2").
    					NewOrDie(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 15.7K bytes
    - Viewed (0)
  4. api/discovery/apis__apps__v1.json

            "update",
            "watch"
          ]
        },
        {
          "categories": [
            "all"
          ],
          "kind": "DaemonSet",
          "name": "daemonsets",
          "namespaced": true,
          "shortNames": [
            "ds"
          ],
          "singularName": "daemonset",
          "storageVersionHash": "dd7pWHUlMKQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. api/discovery/api__v1.json

          "name": "componentstatuses",
          "namespaced": false,
          "shortNames": [
            "cs"
          ],
          "singularName": "componentstatus",
          "verbs": [
            "get",
            "list"
          ]
        },
        {
          "kind": "ConfigMap",
          "name": "configmaps",
          "namespaced": true,
          "shortNames": [
            "cm"
          ],
          "singularName": "configmap",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinitionnames.go

    // with apply.
    type CustomResourceDefinitionNamesApplyConfiguration struct {
    	Plural     *string  `json:"plural,omitempty"`
    	Singular   *string  `json:"singular,omitempty"`
    	ShortNames []string `json:"shortNames,omitempty"`
    	Kind       *string  `json:"kind,omitempty"`
    	ListKind   *string  `json:"listKind,omitempty"`
    	Categories []string `json:"categories,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionnames.go

    // with apply.
    type CustomResourceDefinitionNamesApplyConfiguration struct {
    	Plural     *string  `json:"plural,omitempty"`
    	Singular   *string  `json:"singular,omitempty"`
    	ShortNames []string `json:"shortNames,omitempty"`
    	Kind       *string  `json:"kind,omitempty"`
    	ListKind   *string  `json:"listKind,omitempty"`
    	Categories []string `json:"categories,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. api/discovery/aggregated_v2.json

                  "responseKind": {
                    "group": "",
                    "kind": "DaemonSet",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "ds"
                  ],
                  "singularResource": "daemonset",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2beta1.json

                  "responseKind": {
                    "group": "",
                    "kind": "DaemonSet",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "ds"
                  ],
                  "singularResource": "daemonset",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	}
    	if !reflect.DeepEqual(requestedNames.ShortNames, acceptedNames.ShortNames) {
    		errs := []error{}
    		existingShortNames := sets.NewString(acceptedNames.ShortNames...)
    		for _, shortName := range requestedNames.ShortNames {
    			// if the shortname is already ours, then we're fine
    			if existingShortNames.Has(shortName) {
    				continue
    			}
    			if err := equalToAcceptedOrFresh(shortName, "", allResources); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top