Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 364 for Implementation (0.32 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/errors/errors.go

    type Aggregate interface {
    	error
    	Errors() []error
    	Is(error) bool
    }
    
    // NewAggregate converts a slice of errors into an Aggregate interface, which
    // is itself an implementation of the error interface.  If the slice is empty,
    // this returns nil.
    // It will check if any of the element of input error list is nil, to avoid
    // nil pointer panic when call Error().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    		// jitter is applied per step and is not cumulative over multiple steps
    		nextDuration, duration, steps = delay(steps, duration, cap, factor, jitter)
    		return nextDuration
    	}
    }
    
    // Timer returns a timer implementation appropriate to this backoff's parameters
    // for use with wait functions.
    func (b Backoff) Timer() Timer {
    	if b.Steps > 1 || b.Jitter != 0 {
    		return &variableTimer{new: internalClock.NewTimer, fn: b.DelayFunc()}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram.go

    // When scraped it produces a histogram of samples of the ratio
    // taken at the end of every nanosecond.
    // `*TimingRatioHistogram` implements both Registerable and RatioedGauge.
    type TimingRatioHistogram struct {
    	// The implementation is layered on TimingHistogram,
    	// adding the division by an occasionally adjusted denominator.
    
    	// Registerable is the registerable aspect.
    	// That is the registerable aspect of the underlying TimingHistogram.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. pkg/printers/tablegenerator.go

    }
    
    type handlerEntry struct {
    	columnDefinitions []metav1.TableColumnDefinition
    	printFunc         reflect.Value
    }
    
    // HumanReadableGenerator is an implementation of TableGenerator used to generate
    // a table for a specific resource. The table is printed with a TablePrinter using
    // PrintObj().
    type HumanReadableGenerator struct {
    	handlerMap map[reflect.Type]*handlerEntry
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1alpha1/types_swagger_doc_generated.go

    */
    
    package v1alpha1
    
    // 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: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/certs.go

    			Use:   handler.Name,
    			Short: fmt.Sprintf("Renew the %s", handler.LongName),
    			Long:  fmt.Sprintf(genericCertRenewLongDesc, handler.LongName),
    		}
    		addRenewFlags(cmd, flags)
    		// get the implementation of renewing this certificate
    		renewalFunc := func(handler *renewal.CertificateRenewHandler) func() error {
    			return func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1beta1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// handler specifies the underlying runtime and configuration that the CRI
    	// implementation will use to handle pods of this class. The possible values
    	// are specific to the node & CRI configuration.  It is assumed that all
    	// handlers are available on every node, and handlers of the same name are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // traversed field paths. It is necessary to build the tree to take advantage of
    // DeepEqual checks performed by lower levels of the object during validation without
    // greatly modifying `kube-openapi`'s implementation.
    //
    // The tree, and all cache storage/scratch space for the validation of a single
    // call to `Validate` is thrown away at the end of the top-level call
    // to `Validate`.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager.go

    	GetNodeConfig() NodeConfig
    
    	// Status returns internal Status.
    	Status() Status
    
    	// NewPodContainerManager is a factory method which returns a podContainerManager object
    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top