Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for Implementation (0.85 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    */
    
    package v1alpha2
    
    // 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 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// kep: https://kep.k8s.io/2364
    	// alpha: v1.23
    	//
    	// Configures the Kubelet to use the CRI to populate pod and container stats, instead of supplimenting with stats from cAdvisor.
    	// Requires the CRI implementation supports supplying the required stats.
    	PodAndContainerStatsFromCRI featuregate.Feature = "PodAndContainerStatsFromCRI"
    
    	// owner: @ahg-g
    	// alpha: v1.21
    	// beta: v1.22
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler_test.go

    				}
    			}
    		})
    	}
    }
    
    var _ framework.QueueSortPlugin = &fakeQueueSortPlugin{}
    
    // fakeQueueSortPlugin is a no-op implementation for QueueSort extension point.
    type fakeQueueSortPlugin struct{}
    
    func (pl *fakeQueueSortPlugin) Name() string {
    	return queueSort
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. pkg/volume/hostpath/host_path.go

    func (c *hostPathUnmounter) TearDownAt(dir string) error {
    	return fmt.Errorf("TearDownAt() does not make sense for host paths")
    }
    
    // hostPathProvisioner implements a Provisioner for the HostPath plugin
    // This implementation is meant for testing only and only works in a single node cluster.
    type hostPathProvisioner struct {
    	host     volume.VolumeHost
    	options  volume.VolumeOptions
    	plugin   *hostPathPlugin
    	basePath string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/fit.go

    	// preScoreStateKey is the key in CycleState to NodeResourcesFit pre-computed data for Scoring.
    	preScoreStateKey = "PreScore" + Name
    )
    
    // nodeResourceStrategyTypeMap maps strategy to scorer implementation
    var nodeResourceStrategyTypeMap = map[config.ScoringStrategyType]scorer{
    	config.LeastAllocated: func(args *config.NodeResourcesFitArgs) *resourceAllocationScorer {
    		resources := args.ScoringStrategy.Resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    		},
    		eventBroadcaster,
    	)
    }
    
    // NewBaseController is the implementation of NewReplicaSetController with additional injected
    // parameters so that it can also serve as the implementation of NewReplicationController.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_pod_control.go

    }
    
    // StatefulPodControl defines the interface that StatefulSetController uses to create, update, and delete Pods,
    // and to update the Status of a StatefulSet. It follows the design paradigms used for PodControl, but its
    // implementation provides for PVC creation, ordered Pod creation, ordered Pod termination, and Pod identity enforcement.
    // Manipulation of objects is provided through objectMgr, which allows the k8s API to be mocked out for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    func (w *fakeWaiter) WaitForPodToDisappear(podName string) error {
    	return nil
    }
    
    // SetTimeout is a no-op; we don't use it in this implementation
    func (w *fakeWaiter) SetTimeout(_ time.Duration) {}
    
    // WaitForStaticPodControlPlaneHashes returns an error if set from errsToReturn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    // Actual State of World.
    // This type is used as external representation of attach state (specifically
    // as the return type of GetAttachState only); the state is represented
    // differently in the internal cache implementation.
    type AttachState int
    
    const (
    	// AttachStateAttached represents the state in which the volume is attached to
    	// the node.
    	AttachStateAttached AttachState = iota
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // form, or don't diff.)
    //
    // This format is intended to make it difficult to use these numbers without
    // writing some sort of special handling code in the hopes that that will
    // cause implementors to also use a fixed point implementation.
    //
    // +protobuf=true
    // +protobuf.embed=string
    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen=true
    // +k8s:openapi-gen=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top