Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,898 for typeA (0.87 sec)

  1. pkg/controller/ttlafterfinished/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // TTLAfterFinishedControllerConfiguration contains elements describing TTLAfterFinishedController.
    type TTLAfterFinishedControllerConfiguration struct {
    	// concurrentTTLSyncs is the number of TTL-after-finished collector workers that are
    	// allowed to sync concurrently.
    	ConcurrentTTLSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 889 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    // (only `type` and one other matching field should be set at once).
    type MetricSpec struct {
    	// type is the type of metric source.  It should be one of "ContainerResource",
    	// "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object.
    	// Note: "ContainerResource" type is available on when the feature-gate
    	// HPAContainerMetrics is enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1/types.go

    	// type is the type of this event (Normal, Warning), new types could be added in the future.
    	// It is machine-readable.
    	// This field cannot be empty for new Events.
    	Type string `json:"type,omitempty" protobuf:"bytes,11,opt,name=type"`
    
    	// deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/coordination/v1/types.go

    )
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.14
    
    // Lease defines a lease concept.
    type Lease struct {
    	metav1.TypeMeta `json:",inline"`
    	// 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: Thu May 23 17:42:49 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/apis/node/types.go

    }
    
    // Overhead structure represents the resource overhead associated with running a pod.
    type Overhead struct {
    	// podFixed represents the fixed resource overhead associated with running a pod.
    	// +optional
    	PodFixed core.ResourceList
    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    type Scheduling struct {
    	// nodeSelector lists labels that must be present on nodes that support this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/api/types.go

    // (for a given signal, the decision to evict will be made when crossing the threshold
    // from either above or below, never both). There is thus no reason to expose the
    // operator in the Kubelet's public API. Instead, we internally map signal types to operators.
    var OpForSignal = map[Signal]ThresholdOperator{
    	SignalMemoryAvailable:            OpLessThan,
    	SignalNodeFsAvailable:            OpLessThan,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. pkg/kubelet/oom/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package oom
    
    import v1 "k8s.io/api/core/v1"
    
    // Watcher defines the interface of OOM watchers.
    type Watcher interface {
    	Start(ref *v1.ObjectReference) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:00:07 UTC 2019
    - 731 bytes
    - Viewed (0)
  8. pkg/kubelet/images/types.go

    // managing, and deleting container images.
    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    	// EnsureImageExists ensures that image specified in `container` exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. plugin/pkg/admission/eventratelimit/apis/eventratelimit/types.go

    import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    // LimitType is the type of the limit (e.g., per-namespace)
    type LimitType string
    
    const (
    	// ServerLimitType is a type of limit where there is one bucket shared by
    	// all of the event queries received by the API Server.
    	ServerLimitType LimitType = "Server"
    	// NamespaceLimitType is a type of limit where there is one bucket used by
    	// each namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/types.go

    	// Status NetworkPolicyStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // PolicyType string describes the NetworkPolicy type
    // This type is beta-level in 1.8
    // +enum
    type PolicyType string
    
    const (
    	// PolicyTypeIngress is a NetworkPolicy that affects ingress traffic on selected pods
    	PolicyTypeIngress PolicyType = "Ingress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top