Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for listkind2 (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy_test.go

    	}
    }
    
    const listTypeResourceSchema = `
    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:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/listtype_test.go

    				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
    	listTypeResourceSchema = `
    type: object
    properties:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/nodes.go

    	BadExpr struct {
    		expr
    	}
    
    	// Value
    	Name struct {
    		Value string
    		expr
    	}
    
    	// Value
    	BasicLit struct {
    		Value string
    		Kind  LitKind
    		Bad   bool // true means the literal Value has syntax errors
    		expr
    	}
    
    	// Type { ElemList[0], ElemList[1], ... }
    	CompositeLit struct {
    		Type     Expr // nil means no literal type
    		ElemList []Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top