Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 616 for typev3 (0.11 sec)

  1. staging/src/k8s.io/api/scheduling/v1beta1/types.go

    // DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass.
    // PriorityClass defines mapping from a priority class name to the priority
    // integer value. The value can be any valid integer.
    type PriorityClass struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 13 13:16:35 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/types.go

    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    	// Type of the condition.
    	Type MigrationConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=MigrationConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/volume/util/types/types.go

    limitations under the License.
    */
    
    // Package types defines types used only by volume components
    package types
    
    import (
    	"errors"
    
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/mount-utils"
    )
    
    // UniquePodName defines the type to key pods off of
    type UniquePodName types.UID
    
    // UniquePVCName defines the type to key pvc off
    type UniquePVCName types.UID
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/types.go

    // labels, which must be joined to produce the full set of endpoints.
    type EndpointSlice struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// addressType specifies the type of address carried by this EndpointSlice.
    	// All addresses in this slice must be the same type. This field is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/types.go

    }
    
    // PriorityLevelConfigurationCondition defines the condition of priority level.
    type PriorityLevelConfigurationCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    	Type PriorityLevelConfigurationConditionType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type"`
    	// `status` is the status of the condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/internal/runtime/atomic/types.go

    // Note that because of the atomicity guarantees, stores to values
    // of this type never trigger a write barrier, and the relevant
    // methods are suffixed with "NoWB" to indicate that explicitly.
    // As a result, this type should be used carefully, and sparingly,
    // mostly with values that do not live in the Go heap anyway.
    //
    // An UnsafePointer must not be copied.
    type UnsafePointer struct {
    	noCopy noCopy
    	value  unsafe.Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top