Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 4,958 for ktypes (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types.go

    type AdmissionConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Plugins allows specifying a configuration per admission control plugin.
    	// +optional
    	Plugins []AdmissionPluginConfiguration `json:"plugins"`
    }
    
    // AdmissionPluginConfiguration provides the configuration for a single plug-in.
    type AdmissionPluginConfiguration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 12 14:05:50 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/config/apis/webhookadmission/v1alpha1/types.go

    package v1alpha1
    
    import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // WebhookAdmission provides configuration for the webhook admission controller.
    type WebhookAdmission struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// KubeConfigFile is the path to the kubeconfig file.
    	KubeConfigFile string `json:"kubeConfigFile"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 21 17:25:24 UTC 2017
    - 966 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    type Configuration struct {
    	metav1.TypeMeta
    
    	// LimitedResources whose consumption is limited by default.
    	// +optional
    	LimitedResources []LimitedResource
    }
    
    // LimitedResource matches a resource whose consumption is limited by default.
    // To consume the resource, there must exist an associated quota that limits
    // its consumption.
    type LimitedResource struct {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  4. fastapi/types.py

    import types
    from enum import Enum
    from typing import Any, Callable, Dict, Set, Type, TypeVar, Union
    
    from pydantic import BaseModel
    
    DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any])
    UnionType = getattr(types, "UnionType", Union)
    ModelNameMap = Dict[Union[Type[BaseModel], Type[Enum]], str]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Dec 12 00:29:03 UTC 2023
    - 383 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/type.go

    func (n *typeNode) Sym() *types.Sym   { return n.typ.Sym() }
    
    // TypeNode returns the Node representing the type t.
    func TypeNode(t *types.Type) Node {
    	if n := t.Obj(); n != nil {
    		if n.Type() != t {
    			base.Fatalf("type skew: %v has type %v, but expected %v", n, n.Type(), t)
    		}
    		return n.(*Name)
    	}
    	return newTypeNode(t)
    }
    
    // A DynamicType represents a type expression whose exact type must be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 20 05:56:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. pkg/controller/certificates/signer/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // CSRSigningControllerConfiguration contains elements describing CSRSigningController.
    type CSRSigningControllerConfiguration struct {
    	// clusterSigningCertFile is the filename containing a PEM-encoded
    	// X509 CA certificate used to issue cluster-scoped certificates
    	ClusterSigningCertFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  7. pkg/controller/daemon/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // DaemonSetControllerConfiguration contains elements describing DaemonSetController.
    type DaemonSetControllerConfiguration struct {
    	// concurrentDaemonSetSyncs is the number of daemonset objects that are
    	// allowed to sync concurrently. Larger number = more responsive daemonset,
    	// but more CPU (and network) load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 941 bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/metaonly/types.go

    // JSON data.
    // TODO: enable meta-only decoding for protobuf.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type MetadataOnlyObject struct {
    	metav1.TypeMeta `json:",inline"`
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty"`
    }
    
    // MetadataOnlyObjectList allows decoding from JSON data only the typemeta and metadata of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  9. pkg/controller/namespace/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // NamespaceControllerConfiguration contains elements describing NamespaceController.
    type NamespaceControllerConfiguration struct {
    	// namespaceSyncPeriod is the period for syncing namespace life-cycle
    	// updates.
    	NamespaceSyncPeriod metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // NodeIPAMControllerConfiguration contains elements describing NodeIPAMController.
    type NodeIPAMControllerConfiguration struct {
    	// serviceCIDR is CIDR Range for Services in cluster.
    	ServiceCIDR string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 15 23:38:06 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top