Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 395 for Implementation (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    		// (b) do specify field selector with the value equal to the value
    		//     coming from the processed object
    		//
    		// TODO(wojtek-t): For the sake of making progress and initially
    		// simplifying the implementation, we approximate (b) for all values
    		// as the value for an empty string. The assumption we're making here
    		// is that the difference between the actual number of watchers that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. pkg/registry/core/serviceaccount/storage/storage_test.go

    // Currently this getter only panics as the only test case doesn't actually need the getters to function.
    // When more test cases are added, this getter will need extending/replacing to have a real test implementation.
    type panicGetter struct{}
    
    func (f panicGetter) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
    	panic("not implemented")
    }
    
    var _ rest.Getter = panicGetter{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top