Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 364 for Implementation (0.17 sec)

  1. pkg/apis/policy/types.go

    	// +optional
    	MaxUnavailable *intstr.IntOrString
    
    	// UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
    	// should be considered for eviction. Current implementation considers healthy pods,
    	// as pods that have status.conditions item with type="Ready",status="True".
    	//
    	// Valid policies are IfHealthyBudget and AlwaysAllow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    }
    
    // ResourceTransformers returns a transformer for the provided resource.
    type ResourceTransformers interface {
    	TransformerForResource(resource schema.GroupResource) Transformer
    }
    
    // DefaultContext is a simple implementation of Context for a slice of bytes.
    type DefaultContext []byte
    
    // AuthenticatedData returns itself.
    func (c DefaultContext) AuthenticatedData() []byte { return c }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    */
    
    package v1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    //
    // Plugins that make pod unschedulable (PreEnqueue, PreFilter, Filter, Reserve, and Permit plugins) should implement this interface,
    // otherwise the default implementation will be used, which is less efficient in requeueing Pods rejected by the plugin.
    // And, if plugins other than above extension points support this interface, they are just ignored.
    type EnqueueExtensions interface {
    	Plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// Routing for a Service. Well known values are "Auto" and "Disabled".
    	// Implementations may choose to develop new topology approaches, exposing
    	// them with domain-prefixed values. For example, "example.com/lowest-rtt"
    	// could be a valid implementation-specific value for this annotation. These
    	// heuristics will often populate topology hints on EndpointSlices, but that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/initsystem/initsystem_windows.go

    */
    
    package initsystem
    
    import (
    	"fmt"
    	"time"
    
    	"github.com/pkg/errors"
    	"golang.org/x/sys/windows/svc"
    	"golang.org/x/sys/windows/svc/mgr"
    )
    
    // WindowsInitSystem is the windows implementation of InitSystem
    type WindowsInitSystem struct{}
    
    // EnableCommand return a string describing how to enable a service
    func (sysd WindowsInitSystem) EnableCommand(service string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 08:56:16 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. hack/verify-prometheus-imports.sh

    # somewhere else that actually isn't an import, you can use backticks / a raw
    # string literal instead (which cannot be used in imports, only double quotes).
    #
    # NOTE: we previously had an implementation that checked for an actual import
    # as a post-processing step on the matching files, which is cheap enough and
    # accurate, except that it's difficult to guarantee we check for all supported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    		if err == nil {
    			t.Errorf("expected error, got: %v", err)
    		}
    	})
    }
    
    type cacheSyncWaiterStub struct {
    	startedByInformerType map[reflect.Type]bool
    }
    
    // WaitForCacheSync is a stub implementation of the corresponding func
    // that simply returns the value passed during stub initialization.
    func (s cacheSyncWaiterStub) WaitForCacheSync(_ <-chan struct{}) map[reflect.Type]bool {
    	return s.startedByInformerType
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. pkg/controlplane/reconcilers/lease.go

    }
    
    func (s *storageLeases) Destroy() {
    	s.destroyFn()
    }
    
    // NewLeases creates a new etcd-based Leases implementation.
    func NewLeases(config *storagebackend.ConfigForResource, baseKey string, leaseTime time.Duration) (Leases, error) {
    	// note that newFunc, newListFunc and resourcePrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1beta1/types.go

    	// UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
    	// should be considered for eviction. Current implementation considers healthy pods,
    	// as pods that have status.conditions item with type="Ready",status="True".
    	//
    	// Valid policies are IfHealthyBudget and AlwaysAllow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top